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
optionCode
interfaceId int
multicastAddr L3Address
filterMode UdpSourceFilterMode
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
{
    optionCode = UDP_C_SETOPTION_SET_MCAST_SRC_FILTER;
    int interfaceId;
    L3Address multicastAddr;
    UdpSourceFilterMode filterMode;
    L3Address sourceList[];
}
File: src/inet/transportlayer/contract/udp/UdpControlInfo.msg