diff options
author | Nathan Neulinger <nneul@umr.edu> | 1999-11-10 17:23:55 +0000 |
---|---|---|
committer | Nathan Neulinger <nneul@umr.edu> | 1999-11-10 17:23:55 +0000 |
commit | a7fc895437bd4a330a2c9c8135a6398a665de483 (patch) | |
tree | 0a036fb7fdc3baa48712e5737a86dd04a6858d37 /packet-bootparams.h | |
parent | abc9101b4113568229098123fa8979a417102d20 (diff) | |
download | wireshark-a7fc895437bd4a330a2c9c8135a6398a665de483.tar.gz wireshark-a7fc895437bd4a330a2c9c8135a6398a665de483.tar.bz2 wireshark-a7fc895437bd4a330a2c9c8135a6398a665de483.zip |
Added stubs for various RPC routines:
portmap
ypserv
ypxfr
ypserv
bootparams
Stubs currently just map procedure numbers to names. I'll add some more
decoding of the actual procedure call/reply contents eventually.
svn path=/trunk/; revision=998
Diffstat (limited to 'packet-bootparams.h')
-rw-r--r-- | packet-bootparams.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packet-bootparams.h b/packet-bootparams.h new file mode 100644 index 0000000000..9b060e3d63 --- /dev/null +++ b/packet-bootparams.h @@ -0,0 +1,13 @@ +/* packet-bootparams.h */ +/* $Id: packet-bootparams.h,v 1.1 1999/11/10 17:23:53 nneul Exp $ */ + +#ifndef PACKET_BOOTPARAMS_H +#define PACKET_BOOTPARAMS_H + +#define BOOTPARAMSPROC_NULL 0 +#define BOOTPARAMSPROC_WHOAMI 1 +#define BOOTPARAMSPROC_GETFILE 2 + +#define BOOTPARAMS_PROGRAM 100026 + +#endif |