interface MulticastOptions {
    group?: string;
    intf: string;
    multicastLoopback?: boolean;
    multicastTtl?: number;
    port?: number;
}

Hierarchy (view full)

Properties

group?: string

Multicast group address.

Default Value

224.0.23.170
intf: string

IPv4 address of local network interface.

multicastLoopback?: boolean

MulticastLoopback flag.

Default Value

false

Remarks

Changing this option is inadvisable except for unit testing.

multicastTtl?: number

Multicast TTL.

Default Value

1

Remarks

Changing this option is inadvisable except for unit testing.

port?: number

Local and group port.

Default Value

56363