blob: 1351282b04df50df2740b3386a7c80343d922d86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* packet-dtls.h
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_DTLS_H__
#define __PACKET_DTLS_H__
#include "ws_symbol_export.h"
#include <epan/packet.h>
WS_DLL_PUBLIC void dtls_dissector_add(guint port, dissector_handle_t handle);
WS_DLL_PUBLIC void dtls_dissector_delete(guint port, dissector_handle_t handle);
/* Shared with packet-tls-utils.c */
gint
dtls_dissect_hnd_hello_ext_use_srtp(packet_info *pinfo, tvbuff_t *tvb,
proto_tree *tree, guint32 offset,
guint32 ext_len, gboolean is_server);
#endif /* __PACKET_DTLS_H__ */
|