pamoja for TypeScript - v0.1.18
    Preparing search index...

    Interface NetworkEvent

    What a forwarded packet turned out to be, and where its answer goes.

    interface NetworkEvent {
        accept?: Txpk;
        confirmed?: boolean;
        devAddr: number;
        devEui?: string;
        fcnt?: number;
        fport?: number;
        outcome: GatewayNetworkOutcome;
        payload?: Buffer<ArrayBufferLike>;
        slot?: Slot;
    }
    Index
    accept?: Txpk

    The packet carrying the accept, for a join.

    confirmed?: boolean

    Whether the device asked to be acknowledged.

    devAddr: number

    The address granted, or the address a frame claimed.

    devEui?: string

    The device that joined, as sixteen hexadecimal digits.

    fcnt?: number

    The counter the frame carried, reconstructed to its full width.

    fport?: number

    The port the frame was sent on, absent for a frame carrying only options.

    Which of the three this was.

    payload?: Buffer<ArrayBufferLike>

    What the device sent, decrypted.

    slot?: Slot

    Where an answer goes, for a join or for data.