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-ypbind.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-ypbind.h')
-rw-r--r-- | packet-ypbind.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packet-ypbind.h b/packet-ypbind.h new file mode 100644 index 0000000000..aac98b3e2f --- /dev/null +++ b/packet-ypbind.h @@ -0,0 +1,13 @@ +/* packet-ypbind.h */ +/* $Id: packet-ypbind.h,v 1.1 1999/11/10 17:23:54 nneul Exp $ */ + +#ifndef PACKET_YPBIND_H +#define PACKET_YPBIND_H + +#define YPBINDPROC_NULL 0 +#define YPBINDPROC_DOMAIN 1 +#define YPBINDPROC_SETDOM 2 + +#define YPBIND_PROGRAM 100007 + +#endif |