tcp_vegas.h 889 B

12345678910111213141516171819202122232425
  1. /*
  2. * TCP Vegas congestion control interface
  3. */
  4. #ifndef __TCP_VEGAS_H
  5. #define __TCP_VEGAS_H 1
  6. /* Vegas variables */
  7. struct vegas {
  8. u32 beg_snd_nxt; /* right edge during last RTT */
  9. u32 beg_snd_una; /* left edge during last RTT */
  10. u32 beg_snd_cwnd; /* saves the size of the cwnd */
  11. u8 doing_vegas_now;/* if true, do vegas for this RTT */
  12. u16 cntRTT; /* # of RTTs measured within last RTT */
  13. u32 minRTT; /* min of RTTs measured within last RTT (in usec) */
  14. u32 baseRTT; /* the min of all Vegas RTT measurements seen (in usec) */
  15. };
  16. void tcp_vegas_init(struct sock *sk);
  17. void tcp_vegas_state(struct sock *sk, u8 ca_state);
  18. void tcp_vegas_pkts_acked(struct sock *sk, u32 cnt, s32 rtt_us);
  19. void tcp_vegas_cwnd_event(struct sock *sk, enum tcp_ca_event event);
  20. size_t tcp_vegas_get_info(struct sock *sk, u32 ext, int *attr,
  21. union tcp_cc_info *info);
  22. #endif /* __TCP_VEGAS_H */