Home
last modified time | relevance | path

Searched refs:pucInterfaceName (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/linux/
HDNetworkInterface.c544 static char pucInterfaceName[ 256 ]; in prvOpenInterface() local
549 ( void ) strncpy( pucInterfaceName, pucName, sizeof( pucInterfaceName ) ); in prvOpenInterface()
550 pucInterfaceName[ sizeof( pucInterfaceName ) - ( size_t ) 1 ] = '\0'; in prvOpenInterface()
552 FreeRTOS_debug_printf( ( "opening interface %s\n", pucInterfaceName ) ); in prvOpenInterface()
554 pxOpenedInterfaceHandle = pcap_create( pucInterfaceName, errbuf ); in prvOpenInterface()
579 pucInterfaceName, errbuf ) ); in prvOpenInterface()
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/WinPCap/
HDNetworkInterface.c517 static char pucInterfaceName[ 256 ]; in prvOpenInterface() local
521 strncpy( pucInterfaceName, pucName, sizeof( pucInterfaceName ) ); in prvOpenInterface()
524 …pxOpenedInterfaceHandle = pcap_open( pucInterfaceName, /* The name of the selected inte… in prvOpenInterface()
540 printf( "\n%s is not supported by WinPcap and cannot be opened\n", pucInterfaceName ); in prvOpenInterface()