Skip to content

Update function names in libslirp interface. #990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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