Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16-rc7 19 lines 273 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#ifndef _TEST_TCPBPF_H 4#define _TEST_TCPBPF_H 5 6struct tcpnotify_globals { 7 __u32 total_retrans; 8 __u32 ncalls; 9}; 10 11struct tcp_notifier { 12 __u8 type; 13 __u8 subtype; 14 __u8 source; 15 __u8 hash; 16}; 17 18#define TESTPORT 12877 19#endif