OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / user / miniupnpd / getifstats.h
1 /* MiniUPnP project
2  * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
3  * (c) 2006 Thomas Bernard 
4  * This software is subject to the conditions detailed
5  * in the LICENCE file provided within the distribution */
6
7 #ifndef __GETIFSTATS_H__
8 #define __GETIFSTATS_H__
9
10 struct ifdata {
11         unsigned long opackets;
12         unsigned long ipackets;
13         unsigned long obytes;
14         unsigned long ibytes;
15         unsigned long baudrate;
16 };
17
18 int
19 getifstats(const char * ifname, struct ifdata * data);
20
21 #endif
22