diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-09-18 11:18:52 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-09-18 11:18:52 +0400 |
commit | 561713cf475de1f671cc89c437927ec008a20209 (patch) | |
tree | f0485a84b71e2e14f02c9c87e792b187e28b6fdd /include/linux/dccp.h | |
parent | 65299d6c3cfb49cc3eee4fc483e7edd23ea7b2ed (diff) | |
download | linux-561713cf475de1f671cc89c437927ec008a20209.tar.xz |
[DCCP]: Don't use necessarily the same CCID for tx and rx
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/dccp.h')
-rw-r--r-- | include/linux/dccp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/dccp.h b/include/linux/dccp.h index 8c8e029095a5..13f9b78483fc 100644 --- a/include/linux/dccp.h +++ b/include/linux/dccp.h @@ -330,7 +330,8 @@ static inline unsigned int dccp_hdr_len(const struct sk_buff *skb) */ struct dccp_options { __u64 dccpo_sequence_window; - __u8 dccpo_ccid; + __u8 dccpo_rx_ccid; + __u8 dccpo_tx_ccid; __u8 dccpo_send_ack_vector; __u8 dccpo_send_ndp_count; }; |