aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-15 21:12:17 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-15 21:12:17 +0000
commit400f44cad5bf7e0d2225fcf6fd4b35702afb8411 (patch)
tree2263d93d808b661906cbfde6e1f95dfa073ae194 /packet-ncp.h
parenta26d210859c146e75b8a939a70c24d3fcc72a00f (diff)
I'm preparing ncp for expansion (i.e., cleaning up my old code). I also
changed the summary line so that "Reply"/"Request" is printed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@60 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp.h')
-rw-r--r--packet-ncp.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/packet-ncp.h b/packet-ncp.h
index 92020c97be..021402cf81 100644
--- a/packet-ncp.h
+++ b/packet-ncp.h
@@ -2,7 +2,7 @@
* Routines for NetWare Core Protocol
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
- * $Id: packet-ncp.h,v 1.1 1998/09/23 05:25:11 gram Exp $
+ * $Id: packet-ncp.h,v 1.2 1998/10/15 21:12:17 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@@ -38,12 +38,19 @@
#define NCP_REQUEST (0x2222)
#define NCP_DEALLOC_SLOT_REQUEST (0x5555)
-struct ncp_request_header {
+struct ncp_common_header {
guint16 type ;
guint8 sequence ;
guint8 conn_low ;
guint8 task ;
guint8 conn_high ;
+};
+struct ncp_request_header {
+/* guint16 type ;
+ guint8 sequence ;
+ guint8 conn_low ;
+ guint8 task ;
+ guint8 conn_high ;*/
guint8 function ;
guint8 data[0] ;
};
@@ -52,11 +59,11 @@ struct ncp_request_header {
#define NCP_POSITIVE_ACK (0x9999)
struct ncp_reply_header {
- guint16 type ;
+/* guint16 type ;
guint8 sequence ;
guint8 conn_low ;
guint8 task ;
- guint8 conn_high ;
+ guint8 conn_high ;*/
guint8 completion_code ;
guint8 connection_state ;
guint8 data[0] ;