|
Wireshark
4.3.0
The Wireshark network protocol analyzer
|
Go to the source code of this file.
Classes | |
| struct | segment |
| struct | tcp_graph |
| struct | rtt_unack |
Macros | |
| #define | COMPARE_CURR_DIR 0 |
| #define | COMPARE_ANY_DIR 1 |
Typedefs | |
| typedef enum tcp_graph_type_ | tcp_graph_type |
Enumerations | |
| enum | tcp_graph_type_ { GRAPH_TSEQ_STEVENS , GRAPH_TSEQ_TCPTRACE , GRAPH_THROUGHPUT , GRAPH_RTT , GRAPH_WSCALE , GRAPH_UNDEFINED } |
Functions | |
| void | graph_segment_list_get (capture_file *cf, struct tcp_graph *tg) |
| void | graph_segment_list_free (struct tcp_graph *) |
| int | compare_headers (address *saddr1, address *daddr1, guint16 sport1, guint16 dport1, const address *saddr2, const address *daddr2, guint16 sport2, guint16 dport2, int dir) |
| int | get_num_dsegs (struct tcp_graph *) |
| int | get_num_acks (struct tcp_graph *, int *) |
| guint32 | select_tcpip_session (capture_file *) |
| int | rtt_is_retrans (struct rtt_unack *, unsigned int) |
| struct rtt_unack * | rtt_get_new_unack (double, unsigned int, unsigned int) |
| void | rtt_put_unack_on_list (struct rtt_unack **, struct rtt_unack *) |
| void | rtt_delete_unack_from_list (struct rtt_unack **, struct rtt_unack *) |
| void | rtt_destroy_unack_list (struct rtt_unack **) |
TCP stream statistics Originally from tcp_graph.c by Pavel Mores pvl@uh.cz Win32 port: rwh@unifiedtech.com
Wireshark - Network traffic analyzer By Gerald Combs gerald@wireshark.org Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
| void graph_segment_list_get | ( | capture_file * | cf, |
| struct tcp_graph * | tg | ||
| ) |
Fill in the segment list for a TCP graph
| cf | Capture file to scan |
| tg | TCP graph. A valid stream must be set. If either the source or destination address types are AT_NONE the address and port information will be filled in using the first packet in the specified stream. |