Lines Matching defs:udp_sock
38 struct udp_sock { struct
40 struct inet_sock inet;
44 int pending; /* Any pending frames ? */
45 unsigned int corkflag; /* Cork is required */
46 __u8 encap_type; /* Is this an Encapsulation socket? */
47 unsigned char no_check6_tx:1,/* Send zero UDP6 checksums on TX? */
48 no_check6_rx:1,/* Allow zero UDP6 checksums on RX? */
49 encap_enabled:1, /* This socket enabled encap
54 gro_enabled:1; /* Can accept GRO packets */
59 __u16 len; /* total length of pending frames */
60 __u16 gso_size;
64 __u16 pcslen;
65 __u16 pcrlen;
70 __u8 pcflag; /* marks socket as UDP-Lite if > 0 */
71 __u8 unused[3];
96 static inline struct udp_sock *udp_sk(const struct sock *sk) in udp_sk() argument