Interface FwFace

A socket or network interface associated with forwarding plane.

interface FwFace {
    attributes: FwFace.Attributes;
    fw: Forwarder;
    running: boolean;
    addAnnouncement(name): void;
    addRoute(name, announcement?): void;
    close(): void;
    hasRoute(name): boolean;
    removeAnnouncement(name): void;
    removeRoute(name, announcement?): void;
    toString(): string;
}

Hierarchy

  • TypedEventTarget<EventMap>
    • FwFace

Properties

attributes: FwFace.Attributes
running: boolean

Methods

  • Add a prefix announcement associated with the face.

    Parameters

    Returns void

  • Shutdown the face.

    Returns void

  • Determine if a route is present on the face.

    Parameters

    Returns boolean

  • Remove a prefix announcement associated with the face.

    Parameters

    Returns void

  • Returns string

Generated using TypeDoc