Uwe Girlich's ONC RPC and NFS dissectors.
[metze/wireshark/wip.git] / packet-nfs.h
1 /* packet-nfs.h (c) 1999 Uwe Girlich */
2 /* $Id: packet-nfs.h,v 1.1 1999/10/29 01:11:23 guy Exp $ */
3
4 #ifndef __PACKET_NFS_H__
5 #define __PACKET_NFS_H__
6
7 #include "packet-rpc.h"
8
9 #define NFS_PROGRAM 100003
10
11 #define FHSIZE 32
12
13 /* the RPC mount protocol needs both function to decode a MNT reply */
14 int dissect_fh2(const u_char *pd, int offset, frame_data *fd, proto_tree *tree);
15 int dissect_fh3(const u_char *pd, int offset, frame_data *fd, proto_tree *tree);
16
17 #endif /* packet-nfs.h */
18