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

    Interface Route

    A learned way to reach one node.

    interface Route {
        cost: number;
        dst: number;
        nextHop: number;
    }
    Index
    cost: number

    What the route costs, usually in hops.

    dst: number

    The node this route reaches.

    nextHop: number

    The neighbour to send a packet to on the way there.