UdpSetMulticastSourceFilterCommand

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.

Usage diagram

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
UdpSetOptionCommand class

Base class for UDP socket option control info classes.

Fields

Name Type Description
optionCode UdpSetOptionSubcode
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