@@ -82,7 +82,7 @@ static void vNetifReceiveTask( void * pvParameters );
82
82
*
83
83
* @return BaseType_t pdTRUE on success
84
84
*/
85
- BaseType_t xNetworkInterfaceInitialise ( NetworkInterface_t * pxNetif )
85
+ static BaseType_t xNetworkInterfaceInitialise ( NetworkInterface_t * pxNetif )
86
86
{
87
87
BaseType_t xResult = pdTRUE ;
88
88
@@ -271,9 +271,9 @@ static void vNetifReceiveTask( void * pvParameters )
271
271
* selected interface
272
272
* @return pdTRUE if successful else pdFALSE
273
273
*/
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 )
277
277
{
278
278
BaseType_t xResult = pdFALSE ;
279
279
@@ -381,8 +381,8 @@ BaseType_t xGetPhyLinkStatus( NetworkInterface_t * pxNetif )
381
381
return xResult ;
382
382
}
383
383
384
- NetworkInterface_t * pxFillInterfaceDescriptor ( BaseType_t xEMACIndex ,
385
- NetworkInterface_t * pxInterface )
384
+ NetworkInterface_t * pxLibslirp_FillInterfaceDescriptor ( BaseType_t xEMACIndex ,
385
+ NetworkInterface_t * pxInterface )
386
386
{
387
387
configASSERT ( pxInterface != NULL );
388
388
static char pcName [ 17 ];
0 commit comments