UDPSetMulticastSourceFilterCommand

Namespace inet

UDPSetMulticastSourceFilterCommand

class

Control info for letting an UDP socket to specify the excluded/included sources for a multicast group.

Unlike Block/Unblock/Join/LeaveMulticastSource commands, this method is not incremental.

Extends

Name Type Description
UDPSetOptionCommand (unknown -- not in documented files)

Fields

Name Type Description
interfaceId int
multicastAddr L3Address
filterMode int
sourceList L3Address[]

Source code

//
// Control info for letting an UDP socket to specify the excluded/included
// sources for a multicast group.
//
// Unlike Block/Unblock/Join/LeaveMulticastSource commands, this method is
// not incremental.
//
class UDPSetMulticastSourceFilterCommand extends UDPSetOptionCommand
{
    int interfaceId;
    L3Address multicastAddr;
    int filterMode @enum(UDPSourceFilterMode);
    L3Address sourceList[];
}
File: src/inet/transportlayer/contract/udp/UDPControlInfo.msg