Lines Matching defs:udp_sock
33 struct udp_sock { struct
35 struct inet_sock inet;
39 int pending; /* Any pending frames ? */
40 unsigned int corkflag; /* Cork is required */
41 __u8 encap_type; /* Is this an Encapsulation socket? */
42 unsigned char no_check6_tx:1,/* Send zero UDP6 checksums on TX? */
43 no_check6_rx:1,/* Allow zero UDP6 checksums on RX? */
44 encap_enabled:1, /* This socket enabled encap
49 gro_enabled:1, /* Request GRO aggregation */
50 accept_udp_l4:1,
51 accept_udp_fraglist:1;
56 __u16 len; /* total length of pending frames */
57 __u16 gso_size;
61 __u16 pcslen;
62 __u16 pcrlen;
67 __u8 pcflag; /* marks socket as UDP-Lite if > 0 */
68 __u8 unused[3];
94 static inline struct udp_sock *udp_sk(const struct sock *sk) in udp_sk() argument