I'm looking for a way to get hold of network stats in C on Linux and MacOSX. Specifically, I need to monitor the number of bytes uploaded and downloaded from each network adapter on the system - I don't need to do packet inspection, or differentiate between protocols, just a 'total bytes' counter which I can poll at intervals would be fine. In Windows I can do this using the iphlpapi.dll library via GetIfTable (to list the network adapters) and GetIfEntry (to read the stats), but I can't find the Linux/OSX equivalents. My knowledge of C is fairly basic so I would appreciate a solution that isn't too involved. Any help would be much appreciated!
|
feedback
|
|
The Darwin netstat source code uses sysctl. Here's some code that prints the number of bytes in and out on OSX:
| |||
|
feedback
|
|
on Linux: | |||
|
feedback
|
|
I can't speak to OSX but on linux take a look at /proc/net/dev. If you do 'cat /proc/net/dev' you should see statistics including 'bytes' - the total number of bytes of data transmitted or received by the interface. You can read the file within your own program. EDIT: I didn't read your whole question. This article should help you get started with /proc and has a section on /proc/net/dev. Also, to list the interfaces you can call ioctl with the SIOCGIFCONF option. You can Google for a decent code example on how to loop through the returned data. Or you can simply pull it out of the /proc.net/dev data mentioned above, which should be easier. | ||||
|
feedback
|