Skip to content

Commit

Permalink
Update function names in libslirp interface. (FreeRTOS#990)
Browse files Browse the repository at this point in the history
  • Loading branch information
ActoryOu authored Aug 8, 2023
1 parent 67b9e1c commit 40c16fe
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void vNetifReceiveTask( void * pvParameters );
*
* @return BaseType_t pdTRUE on success
*/
BaseType_t xNetworkInterfaceInitialise( NetworkInterface_t * pxNetif )
static BaseType_t xNetworkInterfaceInitialise( NetworkInterface_t * pxNetif )
{
BaseType_t xResult = pdTRUE;

Expand Down Expand Up @@ -271,9 +271,9 @@ static void vNetifReceiveTask( void * pvParameters )
* selected interface
* @return pdTRUE if successful else pdFALSE
*/
BaseType_t xNetworkInterfaceOutput( NetworkInterface_t * pxNetif,
NetworkBufferDescriptor_t * const pxNetworkBuffer,
BaseType_t xReleaseAfterSend )
static BaseType_t xNetworkInterfaceOutput( NetworkInterface_t * pxNetif,
NetworkBufferDescriptor_t * const pxNetworkBuffer,
BaseType_t xReleaseAfterSend )
{
BaseType_t xResult = pdFALSE;

Expand Down Expand Up @@ -381,8 +381,8 @@ BaseType_t xGetPhyLinkStatus( NetworkInterface_t * pxNetif )
return xResult;
}

NetworkInterface_t * pxFillInterfaceDescriptor( BaseType_t xEMACIndex,
NetworkInterface_t * pxInterface )
NetworkInterface_t * pxLibslirp_FillInterfaceDescriptor( BaseType_t xEMACIndex,
NetworkInterface_t * pxInterface )
{
configASSERT( pxInterface != NULL );
static char pcName[ 17 ];
Expand Down

0 comments on commit 40c16fe

Please sign in to comment.