struct UDP [src]
Members
- CORK (Constant)
- ENCAP (Constant)
- GRO (Constant)
- NO_CHECK6_RX (Constant)
- NO_CHECK6_TX (Constant)
- SEGMENT (Constant)
Source
pub const UDP = struct {
/// Never send partially complete segments
pub const CORK = 1;
/// Set the socket to accept encapsulated packets
pub const ENCAP = 100;
/// Disable sending checksum for UDP6X
pub const NO_CHECK6_TX = 101;
/// Disable accepting checksum for UDP6
pub const NO_CHECK6_RX = 102;
/// Set GSO segmentation size
pub const SEGMENT = 103;
/// This socket can receive UDP GRO packets
pub const GRO = 104;
}