reticulum-js
    Preparing search index...

    Interface WebSocketServerInterfaceOptions

    interface WebSocketServerInterfaceOptions {
        framing?: "raw" | "kiss";
        ifacSize?: number;
        listenIp?: string;
        listenPort?: number;
        name?: string;
    }
    Index
    framing?: "raw" | "kiss"

    Wire framing inherited by spawned client interfaces. Default "raw".

    ifacSize?: number

    Optional IFAC field size for spawned clients.

    listenIp?: string

    Address to bind the server to. Default 0.0.0.0.

    listenPort?: number

    Port to bind the server to.

    name?: string

    Interface name.