udp.h 547 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #ifndef _NETINET_UDP_H
  2. #define _NETINET_UDP_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #include <stdint.h>
  8. #ifdef _GNU_SOURCE
  9. #define uh_sport source
  10. #define uh_dport dest
  11. #define uh_ulen len
  12. #define uh_sum check
  13. #endif
  14. struct udphdr {
  15. uint16_t uh_sport;
  16. uint16_t uh_dport;
  17. uint16_t uh_ulen;
  18. uint16_t uh_sum;
  19. };
  20. #define UDP_CORK 1
  21. #define UDP_ENCAP 100
  22. #define UDP_ENCAP_ESPINUDP_NON_IKE 1
  23. #define UDP_ENCAP_ESPINUDP 2
  24. #define UDP_ENCAP_L2TPINUDP 3
  25. #define SOL_UDP 17
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif