Interface SocketProxy

Represents a host, port and proxyUrl. Used when a SWF file tries to use a Socket.

interface SocketProxy {
    host: string;
    port: number;
    proxyUrl: string;
}

Properties

Properties

host: string

Host used by the SWF.

port: number

Port used by the SWF.

proxyUrl: string

The proxy URL to use when SWF file tries to connect to the specified host and port.