aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/sctp/structs.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 67592072a32e..714dc43c0345 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -1051,7 +1051,7 @@ void sctp_transport_route(struct sctp_transport *, union sctp_addr *,
1051 struct sctp_sock *); 1051 struct sctp_sock *);
1052void sctp_transport_pmtu(struct sctp_transport *); 1052void sctp_transport_pmtu(struct sctp_transport *);
1053void sctp_transport_free(struct sctp_transport *); 1053void sctp_transport_free(struct sctp_transport *);
1054void sctp_transport_reset_timers(struct sctp_transport *); 1054void sctp_transport_reset_timers(struct sctp_transport *, int);
1055void sctp_transport_hold(struct sctp_transport *); 1055void sctp_transport_hold(struct sctp_transport *);
1056void sctp_transport_put(struct sctp_transport *); 1056void sctp_transport_put(struct sctp_transport *);
1057void sctp_transport_update_rto(struct sctp_transport *, __u32); 1057void sctp_transport_update_rto(struct sctp_transport *, __u32);
@@ -1141,6 +1141,9 @@ struct sctp_outq {
1141 /* How many unackd bytes do we have in-flight? */ 1141 /* How many unackd bytes do we have in-flight? */
1142 __u32 outstanding_bytes; 1142 __u32 outstanding_bytes;
1143 1143
1144 /* Are we doing fast-rtx on this queue */
1145 char fast_rtx;
1146
1144 /* Corked? */ 1147 /* Corked? */
1145 char cork; 1148 char cork;
1146 1149