edgeport - v1.0.6
    Preparing search index...

    Interface EdnsOption

    One EDNS0 option (a code and its value), carried in an OPT record's rdata.

    interface EdnsOption {
        code: number;
        value: Uint8Array;
    }
    Index
    code: number

    The option code (e.g. 3=NSID, 8=Client Subnet, 10=Cookie).

    value: Uint8Array

    The raw option value bytes.