2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _NETINET_UDP_H
|
|
|
|
#define _NETINET_UDP_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-02-05 22:25:39 +00:00
|
|
|
#include <features.h>
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-02-05 22:25:39 +00:00
|
|
|
#ifdef _GNU_SOURCE
|
2011-02-12 05:22:29 +00:00
|
|
|
#define uh_sport source
|
|
|
|
#define uh_dport dest
|
|
|
|
#define uh_ulen len
|
|
|
|
#define uh_sum check
|
2014-02-05 22:25:39 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
struct udphdr {
|
|
|
|
uint16_t uh_sport;
|
|
|
|
uint16_t uh_dport;
|
|
|
|
uint16_t uh_ulen;
|
|
|
|
uint16_t uh_sum;
|
|
|
|
};
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#define UDP_CORK 1
|
|
|
|
#define UDP_ENCAP 100
|
2018-08-21 22:34:08 +00:00
|
|
|
#define UDP_NO_CHECK6_TX 101
|
|
|
|
#define UDP_NO_CHECK6_RX 102
|
|
|
|
#define UDP_SEGMENT 103
|
2019-03-06 22:24:05 +00:00
|
|
|
#define UDP_GRO 104
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#define UDP_ENCAP_ESPINUDP_NON_IKE 1
|
|
|
|
#define UDP_ENCAP_ESPINUDP 2
|
|
|
|
#define UDP_ENCAP_L2TPINUDP 3
|
2016-08-20 15:04:25 +00:00
|
|
|
#define UDP_ENCAP_GTP0 4
|
|
|
|
#define UDP_ENCAP_GTP1U 5
|
2019-03-06 22:03:42 +00:00
|
|
|
#define UDP_ENCAP_RXRPC 6
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
#define SOL_UDP 17
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|