Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
tap-voip.h
Go to the documentation of this file.
1
10#ifndef __TAP_VOIP_H__
11#define __TAP_VOIP_H__
12
13#include "ui/voip_calls.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
19/* store the chosen calls in a bit-array */
20#define VOIP_CONV_BITS (sizeof(int) * 8)
21#define VOIP_CONV_NUM ((1<<(sizeof(uint16_t) * 8))/VOIP_CONV_BITS)
22#define VOIP_CONV_MAX (VOIP_CONV_BITS * VOIP_CONV_NUM)
23
24extern voip_calls_tapinfo_t tapinfo_;
25extern int voip_conv_sel[VOIP_CONV_NUM];
26
33extern void voip_stat_init_tapinfo(void);
34
35#ifdef __cplusplus
36}
37#endif /* __cplusplus */
38
39#endif /* __TAP_VOIP_H__ */
40
41/*
42 * Editor modelines - https://www.wireshark.org/tools/modelines.html
43 *
44 * Local variables:
45 * c-basic-offset: 8
46 * tab-width: 8
47 * indent-tabs-mode: t
48 * End:
49 *
50 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
51 * :indentSize=8:tabSize=8:noTabs=false:
52 */
Definition voip_calls.h:173
void voip_stat_init_tapinfo(void)
Initializes VoIP statistics tap information.
Definition tap-voip.c:46