aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipx.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-04-12 07:48:36 +0000
committerGuy Harris <guy@alum.mit.edu>2003-04-12 07:48:36 +0000
commite1e43d42dc6f3d52350271188f2db7941a505877 (patch)
treebdb596f018ff0dfaf333166a24805024e87043ad /packet-ipx.c
parent4f697a69f3bc87f6849893839631dbbdda757107 (diff)
Some packets (the ones I've seen have a datastream type of
"End-of-Connection Acknolwedgment") have none of the connection control bits set; describe them as "Data, No Ack Required" rather than "Unknown". svn path=/trunk/; revision=7443
Diffstat (limited to 'packet-ipx.c')
-rw-r--r--packet-ipx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ipx.c b/packet-ipx.c
index 0d0b2c43c6..dbc4cbad9b 100644
--- a/packet-ipx.c
+++ b/packet-ipx.c
@@ -6,7 +6,7 @@
* Portions Copyright (c) 2000-2002 by Gilbert Ramirez.
* Portions Copyright (c) Novell, Inc. 2002-2003
*
- * $Id: packet-ipx.c,v 1.128 2003/04/12 07:35:52 guy Exp $
+ * $Id: packet-ipx.c,v 1.129 2003/04/12 07:48:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -506,6 +506,7 @@ spx_conn_ctrl(guint8 ctrl)
const char *p;
static const value_string conn_vals[] = {
+ { 0x00, "Data, No Ack Required" },
{ SPX_EOM, "End-of-Message" },
{ SPX_ATTN, "Attention" },
{ SPX_SEND_ACK, "Acknowledgment Required"},