Skip to main content

SomeIpGetDestinationAddress

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • dword SomeIpGetDestinationAddress ( dword messageHandle ); // form 1
  • long SomeIpGetDestinationAddress ( dword messageHandle, byte ipv6Address[] ); // form 2

Description

This function returns the IPv4 destination address.

Parameters

  • messageHandle: Handle of the received SOME/IP message. Note: This function can only be called within the OnSomeIpMessage callback function.
  • ipv6Address: The parameter to which the IPv6 address will be written to.

Return Values

  • IPv4 destination address (Network Byte Order)
  • In the event of an error, the function returns the value 0. The SomeIpGetLastError function can then be used to check whether the value is valid or an error has occurred. Note: The IpGetAddressAsString function can be used to convert the numerical return value to a character string in shorthand notation.
  • 0: The function was successfully executed
  • >0: Error code

Example

See Also