Skip to main content

IPRouteDeleteInterface

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

  • long IPRouteDeleteInterface( dword dest, dword mask ); // form 1
  • long IPRouteDeleteInterface( byte dest[], dword prefix ); // form 2
  • long IPRouteDeleteInterface( IP_Address destination, dword prefix ); // form 3

Description

With this function, it is possible to delete a route to an interface from the routing table in the TCP/IP stack.

Parameters

  • destination: The IPv4 or IPv6 destination address of the route.
  • mask: Mask for the given IPv4 address. If an all ones mask is given, an interface route for a single host is installed. Otherwise, a network interface route will be installed.
  • prefix: Prefix for the given IPv6 destination address. If the prefix 128 is given, an interface route for a single host is installed. Otherwise, a network interface route will be installed.

Return Values

  • 0: The function completed successfully.
  • 1: The function is not supported on the selected TCP/IP stack.
  • WSA_INVALID_PARAMETER (87): Invalid parameter given.
  • SOCKET_ERROR (-1): The function failed. Call IpGetLastError to get a more specific error code.

Example