test_tcpnotify.h 273 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0
  2. #ifndef _TEST_TCPBPF_H
  3. #define _TEST_TCPBPF_H
  4. struct tcpnotify_globals {
  5. __u32 total_retrans;
  6. __u32 ncalls;
  7. };
  8. struct tcp_notifier {
  9. __u8 type;
  10. __u8 subtype;
  11. __u8 source;
  12. __u8 hash;
  13. };
  14. #define TESTPORT 12877
  15. #endif