Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_ICMP.c202 uint16_t usDataLength, usCount; in prvProcessICMPEchoReply() local
206 usDataLength = pxICMPPacket->xIPHeader.usLength; in prvProcessICMPEchoReply()
207 usDataLength = FreeRTOS_ntohs( usDataLength ); in prvProcessICMPEchoReply()
211 usDataLength = ( uint16_t ) ( ( ( uint32_t ) usDataLength ) - ipSIZE_OF_IPv4_HEADER ); in prvProcessICMPEchoReply()
215 usDataLength = ( uint16_t ) ( ( ( uint32_t ) usDataLength ) - ipSIZE_OF_ICMP_HEADER ); in prvProcessICMPEchoReply()
224 for( usCount = 0; usCount < usDataLength; usCount++ ) in prvProcessICMPEchoReply()
DFreeRTOS_DNS_Parser.c473 vSetField16( pxAnswer, LLMNRAnswer_t, usDataLength, 4 ); in DNS_ParseDNSReply()
555 uint16_t usDataLength; in parseDNSAnswer() local
623 if( FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength ) == in parseDNSAnswer()
704 usDataLength = FreeRTOS_ntohs( pxDNSAnswerRecord->usDataLength ); in parseDNSAnswer()
707 if( uxRxSourceByteRemaining >= usDataLength ) in parseDNSAnswer()
709 pucBuffer = &( pucBuffer[ usDataLength ] ); in parseDNSAnswer()
710 uxRxSourceByteRemaining -= usDataLength; in parseDNSAnswer()
930 …vSetField16( pxAnswer, NBNSAnswer_t, usDataLength, 6 ); /* 6 bytes including the length … in DNS_TreatNBNS()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_DNS_Globals.h140 uint16_t usDataLength; /**< Length of the data field. */ member
170 uint16_t usDataLength; /**< Length of the address in this record. */ member
203 uint16_t usDataLength; /**< Data length. */ member
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_DNS_Parser/
DFreeRTOS_DNS_Parser_utest.c1485 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_recordstored_gt_count()
1548 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_recordstored_gt_count2()
1553 pxDNSAnswerRecord2->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_recordstored_gt_count2()
1602 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_dns_nocallback_false()
1649 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_do_store_false()
1687 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS + 2 ); in test_parseDNSAnswer_dnsanswerrecord_datalength_ne_addresslength()
1726 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_remaining_gt_datalength()
1761 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_remaining_lt_uint16()
1797 pxDNSAnswerRecord->usDataLength = FreeRTOS_htons( ipSIZE_OF_IPv4_ADDRESS ); in test_parseDNSAnswer_remaining_lt_dnsanswerrecord()