diff options
author | David S. Miller <davem@davemloft.net> | 2010-11-15 10:59:49 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-15 10:59:49 -0800 |
commit | 6c1b6c6b873d66d353ef47a054156dfde3f4c075 (patch) | |
tree | e07e4286cab3df4738951fae2e9f82e8a4578d43 /include | |
parent | fe8222406c8277a21172479d3a8283d31c209028 (diff) | |
parent | 7e87fe84303cc54ecf3c7b688cb08ca24322a41d (diff) | |
download | linux-6c1b6c6b873d66d353ef47a054156dfde3f4c075.tar.bz2 |
Merge branch 'dccp' of git://eden-feed.erg.abdn.ac.uk/net-next-2.6
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/dccp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/dccp.h b/include/linux/dccp.h index 749f01ccd26e..eed52bcd35d0 100644 --- a/include/linux/dccp.h +++ b/include/linux/dccp.h @@ -462,6 +462,7 @@ struct dccp_ackvec; * @dccps_hc_rx_insert_options - receiver wants to add options when acking * @dccps_hc_tx_insert_options - sender wants to add options when sending * @dccps_server_timewait - server holds timewait state on close (RFC 4340, 8.3) + * @dccps_sync_scheduled - flag which signals "send out-of-band message soon" * @dccps_xmitlet - tasklet scheduled by the TX CCID to dequeue data packets * @dccps_xmit_timer - used by the TX CCID to delay sending (rate-based pacing) * @dccps_syn_rtt - RTT sample from Request/Response exchange (in usecs) @@ -503,6 +504,7 @@ struct dccp_sock { __u8 dccps_hc_rx_insert_options:1; __u8 dccps_hc_tx_insert_options:1; __u8 dccps_server_timewait:1; + __u8 dccps_sync_scheduled:1; struct tasklet_struct dccps_xmitlet; struct timer_list dccps_xmit_timer; }; |