Skip to main content
Open topic with navigation CAPL Functions » MOST » outputMostPktThis

outputMostPktThis

Valid for: CANoe DE Note: outputMostPktThis() may only be called within the OnMostPkt() event procedure.

Function Syntax

outputMostPktThis();

Description

Passes the packet on to the next node in the nodal sequence.

Parameters

Return Values

Example

Packet filter in CAPL:
OnMostPkt(long pktdatalen)
{
   // filter destination address 0x100
   if(mostPktDestAdr() == 0x100)
   {
      // forward packet to the successor
      outputMostPktThis(); 
   }
}
outputoutputMostPkt