Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-nlm.h
blob5fec462c90679d4fc3a07b4b80f6f4fc43b7adae
1 /* packet-nlm.h (c) 1999 Uwe Girlich */
2 /*
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef __PACKET_NLM_H__
11 #define __PACKET_NLM_H__
13 #define NLM_PROGRAM 100021
15 /* synchronous procedures */
16 #define NLM_NULL 0
17 #define NLM_TEST 1
18 #define NLM_LOCK 2
19 #define NLM_CANCEL 3
20 #define NLM_UNLOCK 4
21 #define NLM_GRANTED 5
23 /* asynchronous requests */
24 #define NLM_TEST_MSG 6
25 #define NLM_LOCK_MSG 7
26 #define NLM_CANCEL_MSG 8
27 #define NLM_UNLOCK_MSG 9
28 #define NLM_GRANTED_MSG 10
30 /* asynchronous responses */
31 #define NLM_TEST_RES 11
32 #define NLM_LOCK_RES 12
33 #define NLM_CANCEL_RES 13
34 #define NLM_UNLOCK_RES 14
35 #define NLM_GRANTED_RES 15
37 /* 16-19 not assigned */
39 /* DOS file sharing */
40 #define NLM_SHARE 20
41 #define NLM_UNSHARE 21
42 #define NLM_NM_LOCK 22
43 #define NLM_FREE_ALL 23
45 #endif /* packet-nlm.h */