netspeed.h 190 B

1234567891011121314
  1. #ifndef NETSPEED_H
  2. #define NETSPEED_H
  3. #include <stdio.h>
  4. #include <inttypes.h>
  5. struct netspeed_data {
  6. int fd;
  7. uintmax_t bytes;
  8. };
  9. #define NETSPEED_STATIC_SIZE
  10. #endif /* NETSPEED_H */