Searched full:tcpstates (Results 1 – 13 of 13) sorted by relevance
/aosp_15_r20/external/bcc/tools/ |
H A D | tcpstates_example.txt | 1 Demonstrations of tcpstates, the Linux BPF/bcc version. 4 tcpstates prints TCP state change information, including the duration in each 7 # tcpstates 28 # tcpstates -h 29 usage: tcpstates.py [-h] [-T] [-t] [-w] [-s] [-L LOCALPORT] [-D REMOTEPORT] 49 ./tcpstates # trace all TCP state changes 50 ./tcpstates -t # include timestamp column 51 ./tcpstates -T # include time column (HH:MM:SS) 52 ./tcpstates -w # wider columns (fit IPv6) 53 ./tcpstates -stT # csv output, with times & timestamps [all …]
|
H A D | tcpstates.py | 5 # tcpstates Trace the TCP session state changes with durations. 8 # USAGE: tcpstates [-h] [-C] [-S] [interval [count]] [-4 | -6] 27 ./tcpstates # trace all TCP state changes 28 ./tcpstates -t # include timestamp column 29 ./tcpstates -T # include time column (HH:MM:SS) 30 ./tcpstates -w # wider columns (fit IPv6) 31 ./tcpstates -stT # csv output, with times & timestamps 32 ./tcpstates -Y # log events to the systemd journal 33 ./tcpstates -L 80 # only trace local port 80 34 ./tcpstates -L 80,81 # only trace local ports 80 and 81 [all …]
|
/aosp_15_r20/external/bcc/man/man8/ |
H A D | tcpstates.8 | 1 .TH tcpstates 8 "2018-03-20" "USER COMMANDS" 3 tcpstates \- Trace TCP session state changes with durations. Uses Linux eBPF/bcc. 5 .B tcpstates [\-h] [\-T] [\-t] [\-w] [\-s] [\-D PORTS] [\-L PORTS] [\-Y] [\-4 | \-6] 57 .B tcpstates 61 .B tcpstates \-tw 65 .B tcpstates \-L 80,81 69 .B tcpstates \-D 80 73 .B tcpstates -4 77 .B tcpstates -6
|
/aosp_15_r20/external/bcc/libbpf-tools/ |
H A D | tcpstates.c | 4 * tcpstates Trace TCP session state changes with durations. 7 * Based on tcpstates(8) from BCC by Brendan Gregg. 21 #include "tcpstates.h" 22 #include "tcpstates.skel.h" 53 const char *argp_program_version = "tcpstates 1.0"; 59 "USAGE: tcpstates [-4] [-6] [-T] [-L lport] [-D dport]\n" 62 " tcpstates # trace all TCP state changes\n" 63 " tcpstates -T # include timestamps\n" 64 " tcpstates -L 80 # only trace local port 80\n" 65 " tcpstates -D 80 # only trace remote port 80\n";
|
H A D | .gitignore | 59 /tcpstates
|
H A D | tcpstates.bpf.c | 7 #include "tcpstates.h"
|
H A D | Makefile | 86 tcpstates \
|
/aosp_15_r20/packages/modules/Virtualization/guest/forwarder_guest_launcher/src/ |
D | main.rs | 122 .arg("/usr/sbin/tcpstates-bpfcc") in report_active_ports() 126 let stdout = cmd.stdout.take().context("Failed to get stdout of tcpstates")?; in report_active_ports()
|
/aosp_15_r20/external/bcc/snap/ |
H A D | snapcraft.yaml | 313 tcpstates: 314 command: bcc-wrapper tcpstates
|
/aosp_15_r20/external/bcc/debian/ |
H A D | changelog | 36 * new libbpf-tools: tcptop, tcpstates, biotop, capable 92 * fix tcpstates for incorrect display of dport
|
/aosp_15_r20/external/openthread/third_party/tcplp/bsdtcp/ |
H A D | tcp_subr.c | 84 tcplp_sys_log("Socket %p: %s --> %s", tp, tcpstates[tp->t_state], tcpstates[newstate]); in tcp_state_change()
|
H A D | tcp_fsm.h | 106 static char const * const tcpstates[] = { variable
|
/aosp_15_r20/external/bcc/ |
H A D | README.md | 167 - tools/[tcpstates](tools/tcpstates.py): Trace TCP session state changes with durations. [Examples]…
|