Skip to content

Commit 40c16fe

Browse files
authored
Update function names in libslirp interface. (FreeRTOS#990)
1 parent 67b9e1c commit 40c16fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/portable/NetworkInterface/libslirp/MBuffNetworkInterface.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static void vNetifReceiveTask( void * pvParameters );
8282
*
8383
* @return BaseType_t pdTRUE on success
8484
*/
85-
BaseType_t xNetworkInterfaceInitialise( NetworkInterface_t * pxNetif )
85+
static BaseType_t xNetworkInterfaceInitialise( NetworkInterface_t * pxNetif )
8686
{
8787
BaseType_t xResult = pdTRUE;
8888

@@ -271,9 +271,9 @@ static void vNetifReceiveTask( void * pvParameters )
271271
* selected interface
272272
* @return pdTRUE if successful else pdFALSE
273273
*/
274-
BaseType_t xNetworkInterfaceOutput( NetworkInterface_t * pxNetif,
275-
NetworkBufferDescriptor_t * const pxNetworkBuffer,
276-
BaseType_t xReleaseAfterSend )
274+
static BaseType_t xNetworkInterfaceOutput( NetworkInterface_t * pxNetif,
275+
NetworkBufferDescriptor_t * const pxNetworkBuffer,
276+
BaseType_t xReleaseAfterSend )
277277
{
278278
BaseType_t xResult = pdFALSE;
279279

@@ -381,8 +381,8 @@ BaseType_t xGetPhyLinkStatus( NetworkInterface_t * pxNetif )
381381
return xResult;
382382
}
383383

384-
NetworkInterface_t * pxFillInterfaceDescriptor( BaseType_t xEMACIndex,
385-
NetworkInterface_t * pxInterface )
384+
NetworkInterface_t * pxLibslirp_FillInterfaceDescriptor( BaseType_t xEMACIndex,
385+
NetworkInterface_t * pxInterface )
386386
{
387387
configASSERT( pxInterface != NULL );
388388
static char pcName[ 17 ];

0 commit comments

Comments
 (0)