Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_Sockets.c624 BaseType_t xProtocolCpy = xProtocol; in FreeRTOS_socket() local
642 xProtocolCpy = FREERTOS_IPPROTO_UDP; in FreeRTOS_socket()
646 xProtocolCpy = FREERTOS_IPPROTO_TCP; in FreeRTOS_socket()
658 if( prvDetermineSocketSize( xDomain, xType, xProtocolCpy, &uxSocketSize ) == pdFAIL ) in FreeRTOS_socket()
730 if( xProtocolCpy == FREERTOS_IPPROTO_UDP ) in FreeRTOS_socket()
744 …else if( xProtocolCpy == FREERTOS_IPPROTO_TCP ) /* LCOV_EXCL_BR_LINE Exclude else case because pro… in FreeRTOS_socket()
760 pxSocket->ucProtocol = ( uint8_t ) xProtocolCpy; /* protocol: UDP or TCP */ in FreeRTOS_socket()