blob: eb7b0473d429b9c69e315ccabb22c003e0e84fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* packet-rtse.h
* Routines for RTSE packet dissection
* Graeme Lunt 2005
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_RTSE_H
#define PACKET_RTSE_H
#include "packet-rtse-exp.h"
void register_rtse_oid_dissector_handle(const char *oid, dissector_handle_t dissector, int proto _U_, const char *name, gboolean uses_ros);
#endif /* PACKET_RTSE_H */
|