Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_DNS_Parser.c816 usFlags = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usFlags ) ] ) ); in DNS_TreatNBNS()
820 … usType = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usType ) ] ) ); in DNS_TreatNBNS()
821 … usClass = usChar2u16( &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usClass ) ] ) ); in DNS_TreatNBNS()
833 offsetof( NBNSRequest_t, ucName ) ] ); in DNS_TreatNBNS()
924 … pxAnswer = ( ( NBNSAnswer_t * ) &( pucUDPPayloadBuffer[ offsetof( NBNSRequest_t, usType ) ] ) ); in DNS_TreatNBNS()
937 … usLength = ( uint16_t ) ( sizeof( NBNSAnswer_t ) + ( size_t ) offsetof( NBNSRequest_t, usType ) ); in DNS_TreatNBNS()
DFreeRTOS_DNS.c808 size_t uxBytesNeeded = sizeof( UDPPacket_t ) + sizeof( NBNSRequest_t ); in ulNBNSHandlePacket()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_DNS_Parser/
DFreeRTOS_DNS_Parser_utest.c693 offsetof( NBNSRequest_t, ucName ) ] = 2 + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name()
695 offsetof( NBNSRequest_t, ucName ) + 1 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name()
718 offsetof( NBNSRequest_t, ucName ) ] = 2 + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
721 offsetof( NBNSRequest_t, ucName ) + 1 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
724 offsetof( NBNSRequest_t, ucName ) - 1 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
727 offsetof( NBNSRequest_t, ucName ) - 2 ] = ' ' + 0x42U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
730 offsetof( NBNSRequest_t, ucName ) - 3 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
733 offsetof( NBNSRequest_t, ucName ) - 4 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
736 offsetof( NBNSRequest_t, ucName ) - 5 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
739 offsetof( NBNSRequest_t, ucName ) - 6 ] = ' ' + 0x41U; in test_DNS_TreatNBNS_success_empty_char_nbns_name2()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_DNS/
DFreeRTOS_DNS_utest.c464 size_t uxBytesNeeded = sizeof( UDPPacket_t ) + sizeof( NBNSRequest_t ); in test_ulNBNSHandlePacket_success()
483 size_t uxBytesNeeded = sizeof( UDPPacket_t ) + sizeof( NBNSRequest_t ); in test_ulNBNSHandlePacket_fail_small_buffer()
587 size_t uxBytesNeeded = sizeof( UDPPacket_t ) + sizeof( NBNSRequest_t ); in test_FreeRTOS_gethostbyname_a_no_callback_retry_once()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_DNS_Globals.h195 typedef struct xNBNSRequest NBNSRequest_t; variable