Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/tools/tcp_utilities/
Dplus_tcp_demo_cli.c433 char * pcCopy = ( char * ) pvPortMalloc( uxLength + 3 ); in handle_udp() local
435 if( pcCopy != NULL ) in handle_udp()
437 memcpy( pcCopy, pcBuffer, uxLength ); in handle_udp()
438 pcCopy[ uxLength + 0 ] = '\r'; in handle_udp()
439 pcCopy[ uxLength + 1 ] = '\n'; in handle_udp()
440 pcCopy[ uxLength + 2 ] = 0; in handle_udp()
442 pcCopy, in handle_udp()
447 vPortFree( pcCopy ); in handle_udp()