aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp-int.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-23 17:47:31 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2002-08-23 17:47:31 +0000
commit16a973eb572e98b29a725d30bdad35b3dc5807c1 (patch)
tree97a508856c93b29427970b09a53f33516bd6488e /packet-ncp-int.h
parentea63bfb84d1ab14fa6ccb1978af72702b0c43eb7 (diff)
From Greg Morris:
1. Secret Store Services (NCP 94) (ncp2222.py) 2. NMAS (NCP 92) (ncp2222.py) 3. NDS information in summary screen (packet-ncp.c & packet-ncp2222.inc) 4. Sever broadcast packets (NCP type 0xbbbb) to notify workstation to clear op-lock (packet-ncp.c) 5. Large Internet Packets (LIP) (packet-ncp.c) 6. Unicode Support. (unicode_to_string function in packet-ncp2222.inc & ncp2222.py) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6069 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp-int.h')
-rw-r--r--packet-ncp-int.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/packet-ncp-int.h b/packet-ncp-int.h
index d48f10c605..1bee9bf700 100644
--- a/packet-ncp-int.h
+++ b/packet-ncp-int.h
@@ -2,7 +2,7 @@
* Structures and functions for NetWare Core Protocol.
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-ncp-int.h,v 1.9 2002/05/17 23:17:22 gram Exp $
+ * $Id: packet-ncp-int.h,v 1.10 2002/08/23 17:47:31 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -43,6 +43,7 @@ struct _ptvc_record {
#define NCP_FMT_NONE 0
#define NCP_FMT_NW_DATE 1
#define NCP_FMT_NW_TIME 2
+#define NCP_FMT_UNICODE 3
struct _sub_ptvc_record {
gint *ett;
@@ -87,6 +88,9 @@ void dissect_ncp_request(tvbuff_t*, packet_info*, guint16,
void dissect_ncp_reply(tvbuff_t *, packet_info*, guint16, guint8,
guint16, proto_tree*);
+void dissect_nds_request(tvbuff_t*, packet_info*, guint16,
+ guint8, guint16, proto_tree*);
+
extern int proto_ncp;
extern gint ett_ncp;
@@ -100,5 +104,7 @@ extern gint ett_ncp;
#define NCP_DEALLOCATE_SLOT 0x5555
#define NCP_BURST_MODE_XFER 0x7777
#define NCP_POSITIVE_ACK 0x9999
+#define NCP_BROADCAST_SLOT 0xbbbb
+#define NCP_LIP_ECHO 0x4c69
#endif