summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dccp.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2012-03-14 01:39:24 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2012-03-14 01:39:24 +0000
commit18f0ab61cb5a194908f11789f45564812342c567 (patch)
treea796483835d19e85cdb5cacf212cb56b6125a5e4 /epan/dissectors/packet-dccp.h
parent603b4d43486e6ecf06f93182a4bbee2b9678a9cb (diff)
downloadwireshark-18f0ab61cb5a194908f11789f45564812342c567.tar.gz
From Francesco Fondelli via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6946 :
Support for DCCP Simultaneous-Open for NAT Traversal, RFC 5596. A new packet format is supported. I did a little code cleanup too. svn path=/trunk/; revision=41543
Diffstat (limited to 'epan/dissectors/packet-dccp.h')
-rw-r--r--epan/dissectors/packet-dccp.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dccp.h b/epan/dissectors/packet-dccp.h
index 151beb360e..a3c5e0f334 100644
--- a/epan/dissectors/packet-dccp.h
+++ b/epan/dissectors/packet-dccp.h
@@ -1,6 +1,6 @@
/* packet-dccp.h
* Definitions for Datagram Congestion Control Protocol, "DCCP" dissection:
- * it should be conformance to draft-ietf-dccp-spec-11.txt
+ * it should conform to RFC 4340
*
* Copyright 2005 _FF_
*
@@ -33,8 +33,7 @@
#define __PACKET_DCCP_H__
/* DCCP structs and definitions */
-typedef struct _e_dccphdr
-{
+typedef struct _e_dccphdr {
guint16 sport;
guint16 dport;
guint8 data_offset;
@@ -64,3 +63,16 @@ typedef struct _e_dccphdr
} e_dccphdr;
#endif /* __PACKET_DCCP_H__ */
+
+/*
+ * Editor modelines - http://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * vi: set shiftwidth=4 tabstop=4 expandtab:
+ * :indentSize=4:tabSize=4:noTabs=true:
+ */