UNPKG

497 BTypeScriptView Raw
1/// <reference types="node" />
2/**
3 * Class describing the wish to discover available services on a network. A
4 * response to such search request is sent via unicast addressing to the
5 * originating address and port number of the multicast request.
6 */
7export declare class MSearch {
8 /**
9 * The M-SEARCH payload for searching for Axis devices on the network.
10 */
11 private static Payload;
12 /**
13 * Converts the M-SEARCH request into a buffer.
14 */
15 toBuffer(): Buffer;
16}