I have a piece of software which periodically (every second or so) is
responsible for determining the total amount of network traffic (in
bytes) which are sent and received through all interfaces on a
machine.
I have routines which determine this data on various different systems
(Linux, IRIX, Solaris, Win32) but am unable to determine how to do
this on Tru64 (the way this is done is different across all
platforms).
My question is how can I determine this information? I am looking for
something like the following which could be called periodically to
retrieve total traffic and therefore the traffic delta's could be
easily computed:
int getTotalBytesSent (const char* interfaceName);
I am currently runnint Tru64 V5.1a patch kit 4.
Hints (or code snippets) greatly appreciated.