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.

IPV6

serenity.IPV6
pub const IPV6 = struct

File

lib/std/c/serenity.zig:87

Code

pub const IPV6 = struct {
    pub const UNICAST_HOPS = 1;
    pub const MULTICAST_HOPS = 2;
    pub const MULTICAST_LOOP = 3;
    pub const MULTICAST_IF = 4;
    pub const ADD_MEMBERSHIP = 5;
    pub const DROP_MEMBERSHIP = 6;
    pub const V6ONLY = 9;
    pub const JOIN_GROUP = 5;
    pub const LEAVE_GROUP = 6;
    pub const RECVPKTINFO = 10;
    pub const PKTINFO = 11;
    pub const RECVHOPLIMIT = 12;
    pub const HOPLIMIT = 13;
}