aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ncp.h
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-22 04:50:21 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>1998-10-22 04:50:21 +0000
commit61d0fbdcce812208d603cd8250c39bee9b60f9f8 (patch)
tree6327d2f7017402e9aa5d19eee434c0b8dcc0a142 /packet-ncp.h
parent5052114c3ed9ac4ce9762e48ca0d45b77f352a2a (diff)
An NCP READ is now decoded. This is the first function to be decoded.
I expect much of the packet-ncp.c file to change. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@69 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ncp.h')
-rw-r--r--packet-ncp.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/packet-ncp.h b/packet-ncp.h
index 021402cf81..d5d6f77133 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.2 1998/10/15 21:12:17 gram Exp $
+ * $Id: packet-ncp.h,v 1.3 1998/10/22 04:50:21 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@@ -327,4 +327,9 @@ struct print_job_record {
char Path[80] ;
};
-
+/* ethereal additions */
+struct ncp_read_header {
+ guint8 handle[6];
+ guint32 offset;
+ guint16 bytes;
+};