blob: 788ecdba2e4fed158b3ec5dc1e82ee09e88bf614 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* packet-dcerpc-tapi.h
* Routines for DCERPC TAPI packet disassembly
* Copyright 2002, Ronnie Sahlberg
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_DCERPC_TAPI_H
#define __PACKET_DCERPC_TAPI_H
#define TAPI_CLIENT_ATTACH 0x00
#define TAPI_CLIENT_REQUEST 0x01
#define TAPI_CLIENT_DETACH 0x02
#endif
|