Interface IUDPConnectionContext

Basic UDP connection information

interface IUDPConnectionContext {
    ip: string;
    port: number;
    sent: boolean;
    send(payload, options): Promise<void>;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

ip: string

Returns the connection ip addres

port: number

Returns the connection port

sent: boolean

Has an answer been sent

Methods