interface FindGatewaysOptions {
    searchInterval?: number;
    signal?: AbortSignal;
}

Hierarchy

Properties

searchInterval?: number

How often to broadcast SSDP M-SEARCH messages while finding gateways.

By default it is done once at the beginning of the search, pass a ms value here to broadcast it on an interval.

This may be necessary if devices on your network do not always respond to search messages.

signal?: AbortSignal