Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-unistim.h
1/* packet-unistim.h
2 * header field declarations, value_string definitions, true_false_string
3 * definitions and function prototypes for main dissectors
4 * Copyright 2007 Don Newton <[email protected]>
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
8 * Copyright 1998 Gerald Combs
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
13#ifndef PACKET_UNISTIM_H
14#define PACKET_UNISTIM_H
15
19typedef struct _unistim_info_t
20{
21 uint8_t rudp_type;
22 uint8_t payload_type;
23 uint32_t sequence;
24 uint32_t termid;
26 uint32_t it_port;
28 int key_val;
34 const uint8_t *string_data;
36 unsigned char *key_buffer;
37} unistim_info_t;
38
39#endif
40
struct _address address
Holds a network or link-layer address of any supported type.
Holds per-packet metadata captured by the UNISTIM dissector tap.
Definition packet-unistim.h:20
int stream_connect
Definition packet-unistim.h:31
uint32_t termid
Definition packet-unistim.h:24
int hook_state
Definition packet-unistim.h:30
address it_ip
Definition packet-unistim.h:25
address ni_ip
Definition packet-unistim.h:27
int key_state
Definition packet-unistim.h:29
uint8_t rudp_type
Definition packet-unistim.h:21
int set_termid
Definition packet-unistim.h:33
const uint8_t * string_data
Definition packet-unistim.h:34
int key_val
Definition packet-unistim.h:28
uint8_t payload_type
Definition packet-unistim.h:22
int trans_connect
Definition packet-unistim.h:32
uint32_t it_port
Definition packet-unistim.h:26
unsigned char * key_buffer
Definition packet-unistim.h:36
int call_state
Definition packet-unistim.h:35
uint32_t sequence
Definition packet-unistim.h:23