|
Wireshark 4.7.0
The Wireshark network protocol analyzer
|
Unified record describing a single detected VoIP call across all supported protocols. More...
#include <voip_calls.h>
Public Attributes | |
| voip_call_state | call_state |
| voip_call_active_state | call_active_state |
| char * | call_id |
| char * | from_identity |
| char * | to_identity |
| void * | prot_info |
| void(* | free_prot_info )(void *) |
| address | initial_speaker |
| uint32_t | npackets |
| voip_protocol | protocol |
| char * | protocol_name |
| char * | call_comment |
| uint16_t | call_num |
| frame_data * | start_fd |
| nstime_t | start_rel_ts |
| frame_data * | stop_fd |
| nstime_t | stop_rel_ts |
Unified record describing a single detected VoIP call across all supported protocols.
| voip_call_active_state _voip_calls_info::call_active_state |
Active/inactive classification of the call.
| char* _voip_calls_info::call_comment |
Optional free-text comment annotating this call.
| char* _voip_calls_info::call_id |
Protocol-level call identifier string.
| uint16_t _voip_calls_info::call_num |
Sequential call index assigned by the tap for display purposes.
| voip_call_state _voip_calls_info::call_state |
High-level signalling state of the call (e.g. CALL_SETUP, IN_CALL, COMPLETED).
| void(* _voip_calls_info::free_prot_info) (void *) |
Destructor callback for prot_info; called when the record is freed.
| char* _voip_calls_info::from_identity |
Calling party identity (e.g. SIP From URI, ISUP CgPN).
| address _voip_calls_info::initial_speaker |
Network address of the party that initiated the call.
| uint32_t _voip_calls_info::npackets |
Total number of packets attributed to this call.
| void* _voip_calls_info::prot_info |
Pointer to the protocol-specific info struct (e.g. sip_calls_info_t).
| voip_protocol _voip_calls_info::protocol |
Signalling protocol of this call; selects the active prot_info type.
| char* _voip_calls_info::protocol_name |
Human-readable protocol name string.
| frame_data* _voip_calls_info::start_fd |
Frame data of the first packet of this call.
| nstime_t _voip_calls_info::start_rel_ts |
Relative timestamp of the first packet of this call.
| frame_data* _voip_calls_info::stop_fd |
Frame data of the last packet of this call.
| nstime_t _voip_calls_info::stop_rel_ts |
Relative timestamp of the last packet of this call.
| char* _voip_calls_info::to_identity |
Called party identity (e.g. SIP To URI, ISUP CdPN).