Skip to main content
Open topic with navigation CAPL Functions » Ethernet » Function Overview » ethernetPacket::GetInt64

ethernetPacket::GetInt64

Valid for: CANoe DE • CANoe4SW DE

Method Syntax

int ethernetPacket.GetInt64(char protocol[], char field[]);

Description

Returns the value of the specified field as int64. If protocol or field is not contained in the packet, the measurement is stopped with a runtime error. ethernetPacket::IsAvailable can be used to find out if the field is available.

Parameters

  • protocol: Name of the protocol.
  • field: Name of the field.

Return Values

Value of the field.

Example

on ethernetPacket *
{
  if(this.IsAvailable("ipv4", "source"))
  {
    Write("ipv4.source has value 0x%lX", this.GetInt64("ipv4", "source"));
  }
}
See Also