Interface FwPacket<T>

A logical packet in the logical forwarder.

interface FwPacket<T> {
    cancel?: boolean;
    congestionMark?: number;
    l3: T;
    reject?: Reason;
    token?: unknown;
}

Type Parameters

  • T extends L3Pkt = L3Pkt

Implemented by

Properties

cancel?: boolean
congestionMark?: number
l3: T
reject?: Reason
token?: unknown