Documentation Index
Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Open topic with navigation
CAPL Functions » Ethernet » Function Overview » IP_Address::IsMulticast
IP_Address::IsMulticast
Valid for: CANoe DE • CANoe4SW DE
Method Syntax
long IP_Address::IsMulticast();
Description
Checks if the current address is a multicast address.
Parameters
—
Return Values
Returns 1 if the object’s address value is a multicast address.
Example
on start
{
DoSomething( IP_Address(239.0.0.1) );
}
void DoSomething( IP_Address addr )
{
if (addr.IsMulticast())
{
// ...
}
else if (addr.IsBroadcast())
{
// ...
}
}