Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

IP

serenity.IP
pub const IP = struct

File

lib/std/c/serenity.zig:71

Code

pub const IP = struct {
    pub const TOS = 1;
    pub const TTL = 2;
    pub const MULTICAST_LOOP = 3;
    pub const ADD_MEMBERSHIP = 4;
    pub const DROP_MEMBERSHIP = 5;
    pub const MULTICAST_IF = 6;
    pub const MULTICAST_TTL = 7;
    pub const BLOCK_SOURCE = 8;
    pub const ADD_SOURCE_MEMBERSHIP = 7;
    pub const DROP_SOURCE_MEMBERSHIP = 8;
    pub const UNBLOCK_SOURCE = 9;
    pub const OPTIONS = 10;
}