changed numbers to bullets and removed nbp dissector item - in progress
[obnox/wireshark/wip.git] / packet-portmap.h
1 /* packet-portmap.h */
2 /* $Id: packet-portmap.h,v 1.3 1999/11/15 14:17:19 nneul Exp $ */
3
4 #ifndef PACKET_PORTMAP_H
5 #define PACKET_PORTMAP_H
6
7 #define PORTMAP_PROGRAM  100000
8
9 #define PORTMAPPROC_NULL     0
10 #define PORTMAPPROC_SET      1
11 #define PORTMAPPROC_UNSET    2
12 #define PORTMAPPROC_GETPORT  3
13 #define PORTMAPPROC_DUMP     4
14 #define PORTMAPPROC_CALLIT   5
15
16 /* RFC 1833, Page 7 */
17 #define RPCBPROC_NULL           0
18 #define RPCBPROC_SET            1
19 #define RPCBPROC_UNSET          2
20 #define RPCBPROC_GETADDR        3
21 #define RPCBPROC_DUMP           4
22 #define RPCBPROC_CALLIT         5
23 #define RPCBPROC_GETTIME        6
24 #define RPCBPROC_UADDR2TADDR    7
25 #define RPCBPROC_TADDR2UADDR    8
26
27 /* RFC 1833, Page 8 */
28 #define RPCBPROC_BCAST          RPCBPROC_CALLIT
29 #define RPCBPROC_GETVERSADDR    9
30 #define RPCBPROC_INDIRECT       10
31 #define RPCBPROC_GETADDRLIST    11
32 #define RPCBPROC_GETSTAT        12
33
34 struct pmap {
35         guint32 pm_prog;
36         guint32 pm_vers;
37         guint32 pm_prot;
38         guint32 pm_port;
39 };
40
41 #endif