diff options
Diffstat (limited to 'net/dccp/ccids/ccid3.h')
-rw-r--r-- | net/dccp/ccids/ccid3.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/net/dccp/ccids/ccid3.h b/net/dccp/ccids/ccid3.h index 2268785ae8ee..ae210786c895 100644 --- a/net/dccp/ccids/ccid3.h +++ b/net/dccp/ccids/ccid3.h | |||
@@ -70,11 +70,6 @@ enum ccid3_options { | |||
70 | TFRC_OPT_RECEIVE_RATE = 194, | 70 | TFRC_OPT_RECEIVE_RATE = 194, |
71 | }; | 71 | }; |
72 | 72 | ||
73 | struct ccid3_options_received { | ||
74 | u32 ccid3or_loss_event_rate; | ||
75 | u32 ccid3or_receive_rate; | ||
76 | }; | ||
77 | |||
78 | /* TFRC sender states */ | 73 | /* TFRC sender states */ |
79 | enum ccid3_hc_tx_states { | 74 | enum ccid3_hc_tx_states { |
80 | TFRC_SSTATE_NO_SENT = 1, | 75 | TFRC_SSTATE_NO_SENT = 1, |
@@ -101,7 +96,6 @@ enum ccid3_hc_tx_states { | |||
101 | * @t_ld - Time last doubled during slow start | 96 | * @t_ld - Time last doubled during slow start |
102 | * @t_nom - Nominal send time of next packet | 97 | * @t_nom - Nominal send time of next packet |
103 | * @hist - Packet history | 98 | * @hist - Packet history |
104 | * @options_received - Parsed set of retrieved options | ||
105 | */ | 99 | */ |
106 | struct ccid3_hc_tx_sock { | 100 | struct ccid3_hc_tx_sock { |
107 | u64 x; | 101 | u64 x; |
@@ -119,7 +113,6 @@ struct ccid3_hc_tx_sock { | |||
119 | ktime_t t_ld; | 113 | ktime_t t_ld; |
120 | ktime_t t_nom; | 114 | ktime_t t_nom; |
121 | struct tfrc_tx_hist_entry *hist; | 115 | struct tfrc_tx_hist_entry *hist; |
122 | struct ccid3_options_received options_received; | ||
123 | }; | 116 | }; |
124 | 117 | ||
125 | static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) | 118 | static inline struct ccid3_hc_tx_sock *ccid3_hc_tx_sk(const struct sock *sk) |