tfrc.h 924 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _LINUX_TFRC_H_
  2. #define _LINUX_TFRC_H_
  3. /*
  4. * include/linux/tfrc.h
  5. *
  6. * Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand.
  7. * Copyright (c) 2005 Ian McDonald <iam4@cs.waikato.ac.nz>
  8. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  9. * Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. */
  16. #include <linux/types.h>
  17. struct tfrc_rx_info {
  18. __u32 tfrcrx_x_recv;
  19. __u32 tfrcrx_rtt;
  20. __u32 tfrcrx_p;
  21. };
  22. struct tfrc_tx_info {
  23. __u32 tfrctx_x;
  24. __u32 tfrctx_x_recv;
  25. __u32 tfrctx_x_calc;
  26. __u32 tfrctx_rtt;
  27. __u32 tfrctx_p;
  28. __u32 tfrctx_rto;
  29. __u32 tfrctx_ipi;
  30. };
  31. #endif /* _LINUX_TFRC_H_ */