Changed protocol names to all lowercase. It looks weird in listing though.
[obnox/wireshark/wip.git] / packet-portmap.h
1 /* packet-portmap.h */
2 /* $Id: packet-portmap.h,v 1.2 1999/11/10 21:05:10 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 struct pmap {
17         guint32 pm_prog;
18         guint32 pm_vers;
19         guint32 pm_prot;
20         guint32 pm_port;
21 };
22
23 #endif