diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-10-22 04:50:21 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-10-22 04:50:21 +0000 |
commit | 92057886bd7a8463a6c3cb9ca6a23477c00b69e3 (patch) | |
tree | 6327d2f7017402e9aa5d19eee434c0b8dcc0a142 /packet-ncp.h | |
parent | 392dd3f68b04557592c9be1241683b0d67172b45 (diff) | |
download | wireshark-92057886bd7a8463a6c3cb9ca6a23477c00b69e3.tar.gz wireshark-92057886bd7a8463a6c3cb9ca6a23477c00b69e3.tar.bz2 wireshark-92057886bd7a8463a6c3cb9ca6a23477c00b69e3.zip |
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.
svn path=/trunk/; revision=69
Diffstat (limited to 'packet-ncp.h')
-rw-r--r-- | packet-ncp.h | 9 |
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; +}; |