traffic.h 291 B

123456789101112131415
  1. #ifndef _TRAFFIC_H_
  2. #define _TRAFFIC_H_
  3. typedef struct {
  4. struct {
  5. unsigned long irc;
  6. unsigned long bn;
  7. unsigned long dcc;
  8. unsigned long filesys;
  9. unsigned long trans;
  10. unsigned long unknown;
  11. } in_total, in_today, out_total, out_today;
  12. } egg_traffic_t;
  13. #endif /* _TRAFFIC_H_ */