diff --git a/packet-rx.c b/packet-rx.c index 9c95ce418c..d8a39e474c 100644 --- a/packet-rx.c +++ b/packet-rx.c @@ -4,7 +4,7 @@ * Based on routines from tcpdump patches by * Ken Hornstein * - * $Id: packet-rx.c,v 1.32 2002/02/01 16:37:18 nneul Exp $ + * $Id: packet-rx.c,v 1.33 2002/02/03 15:59:42 nneul Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -71,6 +71,7 @@ static const value_string rx_flags[] = { { RX_LAST_PACKET, "last-pckt" }, { RX_MORE_PACKETS, "more-pckts" }, { RX_FREE_PACKET, "free-pckt" }, + { RX_SLOW_START_OR_JUMBO, "slow-start/jumbogram" }, { 0, NULL } }; diff --git a/packet-rx.h b/packet-rx.h index 187af98d04..17b6d5b18c 100644 --- a/packet-rx.h +++ b/packet-rx.h @@ -1,7 +1,7 @@ /* packet-rx.h * Definitions for packet disassembly structures and routines * - * $Id: packet-rx.h,v 1.7 2001/08/20 02:11:13 guy Exp $ + * $Id: packet-rx.h,v 1.8 2002/02/03 15:59:42 nneul Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -62,6 +62,7 @@ struct rxinfo { #define RX_LAST_PACKET 4 #define RX_MORE_PACKETS 8 #define RX_FREE_PACKET 16 +#define RX_SLOW_START_OR_JUMBO 32 #define RX_ACK_TYPE_NACK 0 #define RX_ACK_TYPE_ACK 1