Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-nlm.h
1/* packet-nlm.h (c) 1999 Uwe Girlich */
2/*
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10#ifndef __PACKET_NLM_H__
11#define __PACKET_NLM_H__
12
13#define NLM_PROGRAM 100021
14
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
22
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
29
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
36
37/* 16-19 not assigned */
38
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
44
45#endif /* packet-nlm.h */
46