Skip to content

Commit

Permalink
Fix CBMC
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed Feb 28, 2024
1 parent e289c19 commit 10683c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ BaseType_t NetworkInterfaceOutputFunction_Stub( struct xNetworkInterface * pxDes
}

/* Abstraction of this functions creates and return an endpoint, real endpoint doesn't matter in this test. */
NetworkEndPoint_t * FreeRTOS_FindEndPointOnIP_IPv6( const IPv6_Address_t * pxIPAddress )
NetworkEndPoint_t * FreeRTOS_InterfaceEndPointOnNetMask_IPv6( const NetworkInterface_t * pxInterface,
const IPv6_Address_t * pxIPAddress,
uint32_t ulWhere )
{
NetworkEndPoint_t * pxEndPoints = NULL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ BaseType_t NetworkInterfaceOutputFunction_Stub( struct xNetworkInterface * pxDes
}

/* Abstraction of this functions creates and return an endpoint, real endpoint doesn't matter in this test. */
NetworkEndPoint_t * FreeRTOS_FindEndPointOnIP_IPv6( const IPv6_Address_t * pxIPAddress )
NetworkEndPoint_t * FreeRTOS_InterfaceEndPointOnNetMask_IPv6( const NetworkInterface_t * pxInterface,
const IPv6_Address_t * pxIPAddress,
uint32_t ulWhere )
{
NetworkEndPoint_t * pxEndPoints = NULL;

Expand Down

0 comments on commit 10683c0

Please sign in to comment.