/NetX-Duo-v6.2.1/test/regression/bsd_test/ |
D | netx_bsd_ntop_test.c | 91 CHAR dst[46]; in ntest_0_entry() local 97 rt_ptr = inet_ntop(AF_INET6, ((VOID *)(&ipv6_addr1[0])), dst, 46); in ntest_0_entry() 98 if((rt_ptr == NX_NULL) || (strcmp(dst, "fe80::74ac:2217:530:5d7f") != 0)) in ntest_0_entry() 101 rt_ptr = inet_ntop(AF_INET6, (VOID *)(&ipv6_addr2[0]), dst, 46); in ntest_0_entry() 102 if((rt_ptr == NX_NULL) || (strcmp(dst, "fe80::74ac:0:530:5d7f") != 0)) in ntest_0_entry() 105 rt_ptr = inet_ntop(AF_INET6, (VOID *)(&ipv6_addr3[0]), dst, 46); in ntest_0_entry() 106 if((rt_ptr == NX_NULL) || (strcmp(dst, "::ffff:1.2.3.4") != 0)) in ntest_0_entry() 109 rt_ptr = inet_ntop(AF_INET6, (VOID *)(&ipv6_addr4[0]), dst, 46); in ntest_0_entry() 110 if((rt_ptr == NX_NULL) || (strcmp(dst, "::1.2.3.4") != 0)) in ntest_0_entry() 113 rt_ptr = inet_ntop(AF_INET6, (VOID *)(&ipv6_addr5[0]), dst, 46); in ntest_0_entry() [all …]
|
/NetX-Duo-v6.2.1/test/regression/netxduo_test/ |
D | netx_icmpv6_redirect_test.c | 196 NXD_ADDRESS src, dst, dst_2, router; in thread_0_entry() local 209 dst.nxd_ip_version = NX_IP_VERSION_V6; in thread_0_entry() 210 dst.nxd_ip_address.v6[0] = 0x3ffe0501; in thread_0_entry() 211 dst.nxd_ip_address.v6[1] = 0xffff0000; in thread_0_entry() 212 dst.nxd_ip_address.v6[2] = 0x020000ff; in thread_0_entry() 213 dst.nxd_ip_address.v6[3] = 0xfe000100; in thread_0_entry() 322 status = nxd_icmp_ping(&ip_0, &dst, "", 0, &packet_ptr, NX_NO_WAIT); in thread_0_entry()
|
/NetX-Duo-v6.2.1/crypto_libraries/inc/ |
D | nx_crypto_huge_number.h | 157 #define NX_CRYPTO_HUGE_NUMBER_COPY(dst, src) \ argument 158 (dst) -> nx_crypto_huge_number_size = (src) -> nx_crypto_huge_number_size; \ 159 (dst) -> nx_crypto_huge_number_is_negative = (src) -> nx_crypto_huge_number_is_negative; \ 160 …NX_CRYPTO_MEMCPY((dst) -> nx_crypto_huge_number_data, …
|
/NetX-Duo-v6.2.1/addons/BSD/ |
D | nxd_bsd.c | 171 static INT inet_ntoa_internal(const VOID *src, CHAR *dst, ULONG dst_size); 13620 INT nx_bsd_inet_pton(INT af, const CHAR *src, VOID *dst) in nx_bsd_inet_pton() argument 13647 *((ULONG *)dst) = ipv4_addr.s_addr; in nx_bsd_inet_pton() 13663 dst_cur_ptr = dst; in nx_bsd_inet_pton() 13665 dst_end_ptr = (UCHAR*)dst + 15; in nx_bsd_inet_pton() 13819 dst_long_ptr = (ULONG *)dst; in nx_bsd_inet_pton() 13890 const CHAR *nx_bsd_inet_ntop(INT af, const VOID *src, CHAR *dst, nx_bsd_socklen_t size) in nx_bsd_inet_ntop() argument 13906 if(inet_ntoa_internal(src, dst, size)) in nx_bsd_inet_ntop() 13907 return dst; in nx_bsd_inet_ntop() 13997 dst[index++] = ':'; in nx_bsd_inet_ntop() [all …]
|
D | nxd_bsd.h | 1021 INT nx_bsd_inet_pton(INT af, const CHAR *src, VOID *dst); 1022 const CHAR *nx_bsd_inet_ntop(INT af, const VOID *src, CHAR *dst, nx_bsd_socklen_t size);
|
/NetX-Duo-v6.2.1/addons/dns/ |
D | nxd_dns.c | 80 static UINT _nx_dns_name_match(UCHAR *src, UCHAR *dst, UINT length); 10851 static UINT _nx_dns_name_match(UCHAR *src, UCHAR *dst, UINT length) in _nx_dns_name_match() argument 10858 while (*dst != '\0') in _nx_dns_name_match() 10860 if((*src) != (*dst)) in _nx_dns_name_match() 10865 if(((*src) | 0x20) != ((*dst) | 0x20)) in _nx_dns_name_match() 10874 dst ++; in _nx_dns_name_match()
|
/NetX-Duo-v6.2.1/addons/mdns/ |
D | nxd_mdns.c | 84 static UINT _nx_mdns_name_match(UCHAR *src, UCHAR *dst, UINT length); 13552 static UINT _nx_mdns_name_match(UCHAR *src, UCHAR *dst, UINT length) in _nx_mdns_name_match() argument 13559 while (*dst != '\0') in _nx_mdns_name_match() 13561 if((*src) != (*dst)) in _nx_mdns_name_match() 13566 if(((*src) | 0x20) != ((*dst) | 0x20)) in _nx_mdns_name_match() 13575 dst ++; in _nx_mdns_name_match()
|
/NetX-Duo-v6.2.1/docs/ |
D | revision_history.txt | 4110 … inet_pton - Corrected dst buffer check.
|