aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dccp.h
diff options
context:
space:
mode:
authorIan McDonald <ian.mcdonald@jandi.co.nz>2006-09-22 14:25:36 +1200
committerArnaldo Carvalho de Melo <acme@mandriva.com>2006-09-24 17:56:32 -0300
commitb83eff641ed39bd631535b9a8971e161b056f541 (patch)
tree3989df2905034c50f5f035cd884fe33f5c709749 /include/linux/dccp.h
parent[DCCP]: Allow default/fallback service code. (diff)
downloadlinux-dev-b83eff641ed39bd631535b9a8971e161b056f541.tar.xz
linux-dev-b83eff641ed39bd631535b9a8971e161b056f541.zip
[DCCP]: Introduce constants for CCID numbers
Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to '')
-rw-r--r--include/linux/dccp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/dccp.h b/include/linux/dccp.h
index 29f9291e45c0..d6f4ec467a4b 100644
--- a/include/linux/dccp.h
+++ b/include/linux/dccp.h
@@ -169,6 +169,12 @@ enum {
DCCPO_MAX_CCID_SPECIFIC = 255,
};
+/* DCCP CCIDS */
+enum {
+ DCCPC_CCID2 = 2,
+ DCCPC_CCID3 = 3,
+};
+
/* DCCP features */
enum {
DCCPF_RESERVED = 0,
@@ -320,7 +326,7 @@ static inline unsigned int dccp_hdr_len(const struct sk_buff *skb)
/* initial values for each feature */
#define DCCPF_INITIAL_SEQUENCE_WINDOW 100
#define DCCPF_INITIAL_ACK_RATIO 2
-#define DCCPF_INITIAL_CCID 2
+#define DCCPF_INITIAL_CCID DCCPC_CCID2
#define DCCPF_INITIAL_SEND_ACK_VECTOR 1
/* FIXME: for now we're default to 1 but it should really be 0 */
#define DCCPF_INITIAL_SEND_NDP_COUNT 1