add packet flag for slow-start/jumbogram

svn path=/trunk/; revision=4688
This commit is contained in:
Nathan Neulinger 2002-02-03 15:59:42 +00:00
parent 494f2f0a88
commit 5b0fe2e2ef
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* Based on routines from tcpdump patches by
* Ken Hornstein <kenh@cmf.nrl.navy.mil>
*
* $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 <gerald@ethereal.com>
@ -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 }
};

View File

@ -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 <gerald@ethereal.com>
@ -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