@gibme/multicast
    Preparing search index...

    Type Alias Options

    type Options = {
        dstAddress?: string | Address4 | Address6;
        dstPort?: number;
        srcAddress?: string | Address4 | Address6;
        useMulticastSocket?: boolean;
    }
    Index

    Properties

    dstAddress?: string | Address4 | Address6

    The unicast destination address to use for the outgoing packet.

    Note: if not specified, the packet is sent to the multicast address specified in the constructor options.

    dstPort?: number

    The destination port to use for the outgoing multicast packet.

    Note: if not specified, the packet is sent to the port specified in the constructor options.

    srcAddress?: string | Address4 | Address6

    The source address to use for the outgoing multicast packet.

    Note: if not specified, the packet is sent out of all the underlying unicast sockets so long as sendViaMulticast is not specified.

    useMulticastSocket?: boolean

    If set, will send the packet via the multicast socket.

    false