Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-smb-sidsnooping.h
1 /* packet-smb-sidsnooping.h
2  * Routines for snooping SID to name mappings
3  * Copyright 2003, Ronnie Sahlberg
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef _PACKET_SMB_SID_SNOOPING_H_
13 #define _PACKET_SMB_SID_SNOOPING_H_
14 
15 #include "ws_symbol_export.h"
16 
17 /* With MSVC and a libwireshark.dll, we need a
18  * special declaration for sid_name_table.
19  */
20 WS_DLL_PUBLIC GHashTable *sid_name_table;
21 
22 WS_DLL_PUBLIC
23 const char *find_sid_name(const char *sid);
24 
25 #endif