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
This commit is contained in:
Jeff Morriss 2012-03-14 01:39:24 +00:00
parent 603b4d4348
commit 18f0ab61cb
3 changed files with 1228 additions and 926 deletions

View File

@ -2360,6 +2360,7 @@ Francesco Fondelli <francesco.fondelli [AT] gmail.com> {
RSVP IF_ID ERROR_STRING TLV support, RFC 4783
Support for Vendor Private objects, RFC 3936
Support for MPLS Packet Loss and Delay Measurement, RFC 6374
Support for DCCP Simultaneous-Open for NAT Traversal, RFC 5596
}
Artem Tamazov <artem.tamazov [AT] tellabs.com> {

File diff suppressed because it is too large Load Diff

View File

@ -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:
*/