OK, now use DCCP rather than DCP for the Datagram Congestion Control

Protocol.  (Better late than never....)

svn path=/trunk/; revision=24646
This commit is contained in:
Guy Harris 2008-03-16 00:03:13 +00:00
parent bcd666a74f
commit d589b0523b
3 changed files with 346 additions and 350 deletions

View File

@ -268,6 +268,7 @@ CLEAN_DISSECTOR_SRC = \
packet-data.c \
packet-daytime.c \
packet-dcc.c \
packet-dccp.c \
packet-dcerpc-bossvr.c \
packet-dcerpc-browser.c \
packet-dcerpc-cds_clerkserver.c \
@ -334,7 +335,6 @@ CLEAN_DISSECTOR_SRC = \
packet-dcom-remact.c \
packet-dcom-remunkn.c \
packet-dcom-sysact.c \
packet-dcp.c \
packet-dcp-etsi.c \
packet-ddtp.c \
packet-dec-bpdu.c \

View File

@ -1,4 +1,4 @@
/* packet-dcp.h
/* packet-dccp.h
* Definitions for Datagram Congestion Control Protocol, "DCCP" dissection:
* it should be conformance to draft-ietf-dccp-spec-11.txt
*
@ -29,11 +29,11 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __PACKET_DCP_H__
#define __PACKET_DCP_H__
#ifndef __PACKET_DCCP_H__
#define __PACKET_DCCP_H__
/* DCCP structs and definitions */
typedef struct _e_dcphdr {
typedef struct _e_dccphdr {
guint16 sport;
guint16 dport;
guint8 data_offset;
@ -57,6 +57,6 @@ typedef struct _e_dcphdr {
address ip_src;
address ip_dst;
} e_dcphdr;
} e_dccphdr;
#endif /* __PACKET_DCP_H__ */
#endif /* __PACKET_DCCP_H__ */