WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / bpf / test_tcpbpf.h
blob9dd9b5590f9dd6d56d57cd622537f526e5cd0798
1 // SPDX-License-Identifier: GPL-2.0
3 #ifndef _TEST_TCPBPF_H
4 #define _TEST_TCPBPF_H
6 struct tcpbpf_globals {
7 __u32 event_map;
8 __u32 total_retrans;
9 __u32 data_segs_in;
10 __u32 data_segs_out;
11 __u32 bad_cb_test_rv;
12 __u32 good_cb_test_rv;
13 __u64 bytes_received;
14 __u64 bytes_acked;
15 __u32 num_listen;
16 __u32 num_close_events;
17 __u32 tcp_save_syn;
18 __u32 tcp_saved_syn;
19 __u32 window_clamp_client;
20 __u32 window_clamp_server;
22 #endif