1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
* This is taken from ifconfig.c:
* Version: @(#)ifconfig.c 2.30 10/07/93
*
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
* Copyright 1993 MicroWalt Corporation
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at
* your option) any later version.
*/
#if !(defined(__GLIBC__) && __GLIBC__ >= 2)
#include <linux/if_ether.h>
#else
+
#include <netinet/if_ether.h>
#endif
#include <stdio.h>
#include <string.h>
#if !( defined(__GLIBC__) && __GLIBC__ >= 2 )
#include <linux/netdevice.h>
#endif
/* Modified to use "struct enet_statistics" instead of "struct interface". */
/* sewilco@fieldday.mn.org 95/12/27 */
/* Modified to use "struct net_device_stats" instead of "struct enet_statistics". */
/* sewilco@fieldday.mn.org 98/07/27 */
#if !(defined(__GLIBC__) && __GLIBC__ >= 2)
void
if_getstats (char *ifname, struct enet_statistics *stats)
#else
void
if_getstats (char *ifname, struct net_device_stats *stats)
#endif
{
FILE *f = fopen ("/proc/net/dev", "r");
char buf[256];
char *bp;
if (f == NULL)
return;
while (fgets (buf, 255, f))
{
bp = buf;
while (*bp && isspace (*bp))
bp++;
if (strncmp (bp, ifname, strlen (ifname)) == 0 && bp[strlen (ifname)] == ':')
{
bp = strchr (bp, ':');
bp++;
sscanf (bp, "%d %d %d %d %d %d %d %d %d %d %d",
&stats->rx_packets,
&stats->rx_errors,
&stats->rx_dropped,
&stats->rx_fifo_errors,
&stats->rx_frame_errors,
&stats->tx_packets,
&stats->tx_errors,
&stats->tx_dropped,
&stats->tx_fifo_errors,
&stats->collisions,
&stats->tx_carrier_errors
);
fclose (f);
return;
}
}
fclose (f);
}
|