Class UDPBlockMulticastSourcesCommand

File: src/inet/transportlayer/contract/udp/UDPControlInfo.msg

C++ definition

Control info for letting an UDP socket to block multicast traffic from specific sources after joining a multicast group.

see IP_BLOCK_SOURCE socket option

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
interfaceId int
multicastAddr L3Address
sourceList L3Address[]
sockId int

must uniquely identify the socket in the UDP module

Source code:

//
// Control info for letting an UDP socket to block multicast traffic from
// specific sources after joining a multicast group.
//
// see IP_BLOCK_SOURCE socket option
class UDPBlockMulticastSourcesCommand extends UDPSetOptionCommand
{
    int interfaceId;
    L3Address multicastAddr;
    L3Address sourceList[];
}