Skip to main content

MulticastV4Membership

interface Deno.MulticastV4Membership
unstable

Represents membership of a IPv4 multicast group.

Properties Jump to heading

Jump to headingleave: () => Promise<void>

Leaves the multicast group.

Jump to headingsetLoopback: (loopback: boolean) => Promise<void>

Sets the multicast loopback option. If enabled, multicast packets will be looped back to the local socket.

Jump to headingsetTTL: (ttl: number) => Promise<void>

Sets the time-to-live of outgoing multicast packets for this socket.

Back to top