Home
last modified time | relevance | path

Searched refs:ip_address (Results 1 – 25 of 206) sorted by relevance

123456789

/NetX-Duo-v6.2.1/test/regression/netxduo_test/
Dnetx_icmp_nxe_api_test.c116 NXD_ADDRESS ip_address; in thread_0_entry() local
326 ip_address.nxd_ip_version = NX_IP_VERSION_V4; in thread_0_entry()
327 ip_address.nxd_ip_address.v4 = IP_ADDRESS(1, 2, 3, 5); in thread_0_entry()
330 …status = nxd_icmp_ping(NX_NULL, &ip_address, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 28, &my_packet, NX_IP_P… in thread_0_entry()
344 …status = nxd_icmp_ping(&invalid_ip, &ip_address, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 28, &my_packet, NX_… in thread_0_entry()
355 …status = nxd_icmp_ping(&ip_0, &ip_address, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 28, NX_NULL, NX_IP_PERIOD… in thread_0_entry()
377 ip_address.nxd_ip_version = 0x80; in thread_0_entry()
378 ip_address.nxd_ip_address.v4 = IP_ADDRESS(1, 2, 3, 5); in thread_0_entry()
381 …status = nxd_icmp_ping(&ip_0, &ip_address, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 28, &my_packet, NX_IP_PER… in thread_0_entry()
392 ip_address.nxd_ip_version = NX_IP_VERSION_V4; in thread_0_entry()
[all …]
/NetX-Duo-v6.2.1/common/src/
Dnx_ipv6_util.c788 ULONG IPv6_Address_Type(ULONG *ip_address) in IPv6_Address_Type() argument
805 if ((ip_address[0] & (ULONG)0xFF000000) == (ULONG)0xFF000000) in IPv6_Address_Type()
811 if (((ip_address[0] == (ULONG)0xFF010000) || in IPv6_Address_Type()
812 (ip_address[0] == (ULONG)0xFF020000)) && in IPv6_Address_Type()
813 (ip_address[1] == (ULONG)0) && in IPv6_Address_Type()
814 (ip_address[2] == (ULONG)0) && in IPv6_Address_Type()
815 (ip_address[3] == (ULONG)1)) in IPv6_Address_Type()
821 if ((ip_address[0] == (ULONG)0xFF050000) && /* All DHCPv6 relay and server hosts */ in IPv6_Address_Type()
822 (ip_address[1] == (ULONG)0) && in IPv6_Address_Type()
823 (ip_address[2] == (ULONG)0) && in IPv6_Address_Type()
[all …]
Dnx_arp_dynamic_entry_set.c84 UINT _nx_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, in _nx_arp_dynamic_entry_set() argument
98 …NX_TRACE_IN_LINE_INSERT(NX_TRACE_ARP_DYNAMIC_ENTRY_SET, ip_ptr, ip_address, physical_msw, physical… in _nx_arp_dynamic_entry_set()
104 if (_nx_ip_route_find(ip_ptr, ip_address, &nx_interface, &next_hop_address) != NX_SUCCESS) in _nx_arp_dynamic_entry_set()
111 if (next_hop_address != ip_address) in _nx_arp_dynamic_entry_set()
122 index = (UINT)((ip_address + (ip_address >> 8)) & NX_ARP_TABLE_MASK); in _nx_arp_dynamic_entry_set()
134 if (search_ptr -> nx_arp_ip_address == ip_address) in _nx_arp_dynamic_entry_set()
198 arp_ptr -> nx_arp_ip_address = ip_address; in _nx_arp_dynamic_entry_set()
217 _nx_arp_packet_send(ip_ptr, ip_address, nx_interface); in _nx_arp_dynamic_entry_set()
236 NX_PARAMETER_NOT_USED(ip_address); in _nx_arp_dynamic_entry_set()
Dnxd_udp_source_extract.c77 UINT _nxd_udp_source_extract(NX_PACKET *packet_ptr, NXD_ADDRESS *ip_address, UINT *port) in _nxd_udp_source_extract() argument
95 ip_address -> nxd_ip_version = packet_ptr -> nx_packet_ip_version; in _nxd_udp_source_extract()
98 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_source_extract()
108 ip_address -> nxd_ip_address.v4 = ipv4_header -> nx_ip_header_source_ip; in _nxd_udp_source_extract()
112 ip_address_word3 = ip_address -> nxd_ip_address.v4; in _nxd_udp_source_extract()
117 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_source_extract()
127 ip_address -> nxd_ip_address.v6); in _nxd_udp_source_extract()
131 ip_address_word3 = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_source_extract()
Dnxde_udp_socket_send.c92 …ket_send(NX_UDP_SOCKET *socket_ptr, NX_PACKET **packet_ptr_ptr, NXD_ADDRESS *ip_address, UINT port) in _nxde_udp_socket_send() argument
104 …if ((socket_ptr == NX_NULL) || (socket_ptr -> nx_udp_socket_id != NX_UDP_ID) || (ip_address == NX_… in _nxde_udp_socket_send()
126 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_udp_socket_send()
127 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_udp_socket_send()
133 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxde_udp_socket_send()
135 if (ip_address -> nxd_ip_address.v4 == 0) in _nxde_udp_socket_send()
145 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_udp_socket_send()
148 if (CHECK_UNSPECIFIED_ADDRESS(&ip_address -> nxd_ip_address.v6[0])) in _nxde_udp_socket_send()
201 status = _nxd_udp_socket_send(socket_ptr, packet_ptr, ip_address, port); in _nxde_udp_socket_send()
Dnxde_icmp_ping.c82 UINT _nxde_icmp_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, in _nxde_icmp_ping() argument
97 if (ip_address == NX_NULL) in _nxde_icmp_ping()
103 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_icmp_ping()
104 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_icmp_ping()
114 if ((ip_address -> nxd_ip_version == NX_IP_VERSION_V4) && in _nxde_icmp_ping()
124 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_icmp_ping()
143 status = _nxd_icmp_ping(ip_ptr, ip_address, data_ptr, data_size, in _nxde_icmp_ping()
Dnxde_ipv6_address_set.c86 UINT _nxde_ipv6_address_set(NX_IP *ip_ptr, UINT if_index, NXD_ADDRESS *ip_address, ULONG prefix_le… in _nxde_ipv6_address_set() argument
103 if ((ip_address != NULL) && (prefix_length != 10)) in _nxde_ipv6_address_set()
107 if (ip_address -> nxd_ip_version != NX_IP_VERSION_V6) in _nxde_ipv6_address_set()
122 if (ip_address) in _nxde_ipv6_address_set()
124 AddressType = IPv6_Address_Type(ip_address -> nxd_ip_address.v6); in _nxde_ipv6_address_set()
136 status = _nxd_ipv6_address_set(ip_ptr, if_index, ip_address, prefix_length, address_index); in _nxde_ipv6_address_set()
144 NX_PARAMETER_NOT_USED(ip_address); in _nxde_ipv6_address_set()
Dnxe_ip_address_set.c77 UINT _nxe_ip_address_set(NX_IP *ip_ptr, ULONG ip_address, ULONG network_mask) in _nxe_ip_address_set() argument
91 if (((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_address_set()
92 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_address_set()
93 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_address_set()
102 status = _nx_ip_address_set(ip_ptr, ip_address, network_mask); in _nxe_ip_address_set()
108 NX_PARAMETER_NOT_USED(ip_address); in _nxe_ip_address_set()
Dnxd_udp_socket_send.c287 NXD_ADDRESS *ip_address, in _nxd_udp_socket_send() argument
355 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_socket_send()
357 ip_address_log = ip_address -> nxd_ip_address.v4; in _nxd_udp_socket_send()
364 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_socket_send()
366 ip_address_log = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_socket_send()
379 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_socket_send()
383 …_nx_ip_route_find(ip_ptr, ip_address -> nxd_ip_address.v4, &packet_ptr -> nx_packet_address.nx_pac… in _nxd_udp_socket_send()
397 ip_dest_addr = &ip_address -> nxd_ip_address.v4; in _nxd_udp_socket_send()
408 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_socket_send()
415 status = _nxd_ipv6_interface_find(ip_ptr, ip_address -> nxd_ip_address.v6, in _nxd_udp_socket_send()
[all …]
Dnxe_ip_interface_attach.c80 UINT _nxe_ip_interface_attach(NX_IP *ip_ptr, CHAR *interface_name, ULONG ip_address, ULONG network_… in _nxe_ip_interface_attach() argument
94 if ((ip_address != 0) && in _nxe_ip_interface_attach()
95 ((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_interface_attach()
96 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_interface_attach()
97 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_interface_attach()
106 …status = _nx_ip_interface_attach(ip_ptr, interface_name, ip_address, network_mask, ip_link_driver… in _nxe_ip_interface_attach()
Dnxe_arp_dynamic_entry_set.c80 UINT _nxe_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, in _nxe_arp_dynamic_entry_set() argument
95 if (!ip_address) in _nxe_arp_dynamic_entry_set()
101 if (((ip_address & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE) || in _nxe_arp_dynamic_entry_set()
102 (ip_address == NX_IP_LIMITED_BROADCAST)) in _nxe_arp_dynamic_entry_set()
117 status = _nx_arp_dynamic_entry_set(ip_ptr, ip_address, physical_msw, physical_lsw); in _nxe_arp_dynamic_entry_set()
123 NX_PARAMETER_NOT_USED(ip_address); in _nxe_arp_dynamic_entry_set()
Dnxde_icmp_source_ping.c84 UINT _nxde_icmp_source_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, UINT address_index, in _nxde_icmp_source_ping() argument
99 if (ip_address == NX_NULL) in _nxde_icmp_source_ping()
105 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_icmp_source_ping()
106 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_icmp_source_ping()
114 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxde_icmp_source_ping()
133 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_icmp_source_ping()
157 status = _nxd_icmp_source_ping(ip_ptr, ip_address, address_index, data_ptr, data_size, in _nxde_icmp_source_ping()
Dnxe_arp_static_entry_create.c80 UINT _nxe_arp_static_entry_create(NX_IP *ip_ptr, ULONG ip_address, in _nxe_arp_static_entry_create() argument
95 if (!ip_address) in _nxe_arp_static_entry_create()
101 if (((ip_address & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE) || in _nxe_arp_static_entry_create()
102 (ip_address == NX_IP_LIMITED_BROADCAST)) in _nxe_arp_static_entry_create()
123 status = _nx_arp_static_entry_create(ip_ptr, ip_address, physical_msw, physical_lsw); in _nxe_arp_static_entry_create()
129 NX_PARAMETER_NOT_USED(ip_address); in _nxe_arp_static_entry_create()
Dnxd_udp_packet_info_extract.c82 UINT _nxd_udp_packet_info_extract(NX_PACKET *packet_ptr, NXD_ADDRESS *ip_address, in _nxd_udp_packet_info_extract() argument
100 if (ip_address) in _nxd_udp_packet_info_extract()
110 ip_address -> nxd_ip_version = NX_IP_VERSION_V4; in _nxd_udp_packet_info_extract()
113 ip_address -> nxd_ip_address.v4 = ipv4_header -> nx_ip_header_source_ip; in _nxd_udp_packet_info_extract()
116 address = ip_address -> nxd_ip_address.v4; in _nxd_udp_packet_info_extract()
129 ip_address -> nxd_ip_version = NX_IP_VERSION_V6; in _nxd_udp_packet_info_extract()
132 … COPY_IPV6_ADDRESS(ipv6_header -> nx_ip_header_source_ip, ip_address -> nxd_ip_address.v6); in _nxd_udp_packet_info_extract()
135 address = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_packet_info_extract()
Dnxd_ipv6_address_set.c91 UINT _nxd_ipv6_address_set(NX_IP *ip_ptr, UINT interface_index, NXD_ADDRESS *ip_address, ULONG pre… in _nxd_ipv6_address_set() argument
109 if (ip_address) in _nxd_ipv6_address_set()
116 … (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[0] == ip_address -> nxd_ip_address.v6[0]) && in _nxd_ipv6_address_set()
117 … (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[1] == ip_address -> nxd_ip_address.v6[1]) && in _nxd_ipv6_address_set()
118 … (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[2] == ip_address -> nxd_ip_address.v6[2]) && in _nxd_ipv6_address_set()
119 … (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[3] == ip_address -> nxd_ip_address.v6[3])) in _nxd_ipv6_address_set()
157 if ((!ip_address) && (prefix_length == 10)) in _nxd_ipv6_address_set()
202 else if (ip_address != NX_NULL) in _nxd_ipv6_address_set()
204 ipv6_addr -> nxd_ipv6_address[0] = ip_address -> nxd_ip_address.v6[0]; in _nxd_ipv6_address_set()
205 ipv6_addr -> nxd_ipv6_address[1] = ip_address -> nxd_ip_address.v6[1]; in _nxd_ipv6_address_set()
[all …]
Dnxe_ip_interface_address_set.c81 UINT _nxe_ip_interface_address_set(NX_IP *ip_ptr, UINT interface_index, ULONG ip_address, ULONG n… in _nxe_ip_interface_address_set() argument
95 if (((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_interface_address_set()
96 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_interface_address_set()
97 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_interface_address_set()
118 status = _nx_ip_interface_address_set(ip_ptr, interface_index, ip_address, network_mask); in _nxe_ip_interface_address_set()
125 NX_PARAMETER_NOT_USED(ip_address); in _nxe_ip_interface_address_set()
/NetX-Duo-v6.2.1/nx_secure/src/
Dnx_secure_dtls_session_cache.c74 …_session_cache_delete(NX_SECURE_DTLS_SERVER *dtls_server, NXD_ADDRESS *ip_address, UINT remote_por… in nx_secure_dtls_session_cache_delete() argument
97 ip_address -> nxd_ip_version) in nx_secure_dtls_session_cache_delete()
102 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in nx_secure_dtls_session_cache_delete()
105 ip_address -> nxd_ip_address.v4) in nx_secure_dtls_session_cache_delete()
113 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in nx_secure_dtls_session_cache_delete()
115 …sion_array[i].nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[0] != ip_address -> nxd_ip_addres… in nx_secure_dtls_session_cache_delete()
116 …sion_array[i].nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[1] != ip_address -> nxd_ip_addres… in nx_secure_dtls_session_cache_delete()
117 …sion_array[i].nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[2] != ip_address -> nxd_ip_addres… in nx_secure_dtls_session_cache_delete()
118 …sion_array[i].nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[3] != ip_address -> nxd_ip_addres… in nx_secure_dtls_session_cache_delete()
184 …RVER *dtls_server, NX_SECURE_DTLS_SESSION **dtls_session, NXD_ADDRESS *ip_address, UINT remote_por… in nx_secure_dtls_session_cache_get_new() argument
[all …]
Dnx_secure_dtls_session_send.c78 NXD_ADDRESS *ip_address, UINT port) in _nx_secure_dtls_session_send() argument
91 …NX_SECURE_MEMCPY(&dtls_session -> nx_secure_dtls_remote_ip_address, ip_address, sizeof(NXD_ADDRESS… in _nx_secure_dtls_session_send()
94 …else if ((dtls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_version != ip_address -> nxd_ip_… in _nx_secure_dtls_session_send()
107 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_session_send()
109 …if (dtls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v4 != ip_address -> nxd_ip_add… in _nx_secure_dtls_session_send()
122 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_session_send()
124 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[0] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
125 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[1] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
126 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[2] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
127 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[3] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
[all …]
Dnx_secure_dtls_session_client_info_get.c75 NXD_ADDRESS *ip_address; in _nx_secure_dtls_session_client_info_get() local
88 ip_address = &(dtls_session->nx_secure_dtls_remote_ip_address); in _nx_secure_dtls_session_client_info_get()
91 client_ip_address -> nxd_ip_version = ip_address -> nxd_ip_version; in _nx_secure_dtls_session_client_info_get()
94 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_session_client_info_get()
97 client_ip_address -> nxd_ip_address.v4 = ip_address -> nxd_ip_address.v4; in _nx_secure_dtls_session_client_info_get()
102 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_session_client_info_get()
104 COPY_IPV6_ADDRESS(ip_address -> nxd_ip_address.v6, in _nx_secure_dtls_session_client_info_get()
Dnx_secure_dtls_client_session_start.c71 …RE_DTLS_SESSION *dtls_session, NX_UDP_SOCKET *udp_socket, NXD_ADDRESS *ip_address, UINT port, UINT… in _nx_secure_dtls_client_session_start() argument
81 remote_ip -> nxd_ip_version = ip_address -> nxd_ip_version; in _nx_secure_dtls_client_session_start()
84 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_client_session_start()
87 remote_ip -> nxd_ip_address.v4 = ip_address -> nxd_ip_address.v4; in _nx_secure_dtls_client_session_start()
93 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_client_session_start()
95 COPY_IPV6_ADDRESS(ip_address -> nxd_ip_address.v6, in _nx_secure_dtls_client_session_start()
115 NX_PARAMETER_NOT_USED(ip_address); in _nx_secure_dtls_client_session_start()
/NetX-Duo-v6.2.1/samples/
Ddemo_netx_duo_multihome_tcp.c304 NXD_ADDRESS ip_address; in thread_0_entry() local
358 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in thread_0_entry()
359 ip_address.nxd_ip_address.v6[0] = 0x20010000; in thread_0_entry()
360 ip_address.nxd_ip_address.v6[1] = 0; in thread_0_entry()
361 ip_address.nxd_ip_address.v6[2] = 0; in thread_0_entry()
362 ip_address.nxd_ip_address.v6[3] = 4; in thread_0_entry()
364 …status = nxd_ipv6_address_set(&ip_0, PRIMARY_INTERFACE, &ip_address, 64, &ip0_primary_global_addre… in thread_0_entry()
372 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in thread_0_entry()
373 ip_address.nxd_ip_address.v6[0] = 0x20010000; in thread_0_entry()
374 ip_address.nxd_ip_address.v6[1] = 0; in thread_0_entry()
[all …]
Ddemo_netx_duo_multihome_udp.c315 NXD_ADDRESS ip_address; in thread_0_entry() local
369 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in thread_0_entry()
370 ip_address.nxd_ip_address.v6[0] = 0x20010000; in thread_0_entry()
371 ip_address.nxd_ip_address.v6[1] = 0; in thread_0_entry()
372 ip_address.nxd_ip_address.v6[2] = 0; in thread_0_entry()
373 ip_address.nxd_ip_address.v6[3] = 4; in thread_0_entry()
375 …status = nxd_ipv6_address_set(&ip_0, PRIMARY_INTERFACE, &ip_address, 64, &ip0_primary_global_addre… in thread_0_entry()
383 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in thread_0_entry()
384 ip_address.nxd_ip_address.v6[0] = 0x20010000; in thread_0_entry()
385 ip_address.nxd_ip_address.v6[1] = 0; in thread_0_entry()
[all …]
Ddemo_netx_duo_udp.c61 NXD_ADDRESS ip_address; in tx_application_define() local
163 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in tx_application_define()
164 ip_address.nxd_ip_address.v6[0] = 0x20010000; in tx_application_define()
165 ip_address.nxd_ip_address.v6[1] = 0; in tx_application_define()
166 ip_address.nxd_ip_address.v6[2] = 0; in tx_application_define()
167 ip_address.nxd_ip_address.v6[3] = 1; in tx_application_define()
173 status = nxd_ipv6_global_address_set(&ip_0, &ip_address, 64); in tx_application_define()
182 ip_address.nxd_ip_version = NX_IP_VERSION_V6; in tx_application_define()
183 ip_address.nxd_ip_address.v6[0] = 0x20010000; in tx_application_define()
184 ip_address.nxd_ip_address.v6[1] = 0; in tx_application_define()
[all …]
/NetX-Duo-v6.2.1/common/inc/
Dnx_arp.h112 UINT _nx_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, ULONG physical_msw, ULONG physical_…
114 UINT _nx_arp_entry_delete(NX_IP *ip_ptr, ULONG ip_address);
116 UINT _nx_arp_hardware_address_find(NX_IP *ip_ptr, ULONG ip_address, ULONG *physical_msw, ULONG *ph…
121 UINT _nx_arp_ip_address_find(NX_IP *ip_ptr, ULONG *ip_address, ULONG physical_msw, ULONG physical_l…
123 UINT _nx_arp_static_entry_create(NX_IP *ip_ptr, ULONG ip_address, ULONG physical_msw, ULONG physic…
124 UINT _nx_arp_static_entry_delete(NX_IP *ip_ptr, ULONG ip_address, ULONG physical_msw, ULONG physic…
132 UINT _nxe_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, ULONG physical_msw, ULONG physical…
134 UINT _nxe_arp_entry_delete(NX_IP *ip_ptr, ULONG ip_address);
136 UINT _nxe_arp_hardware_address_find(NX_IP *ip_ptr, ULONG ip_address, ULONG *physical_msw, ULONG *ph…
141 UINT _nxe_arp_ip_address_find(NX_IP *ip_ptr, ULONG *ip_address, ULONG physical_msw, ULONG physical_…
[all …]
/NetX-Duo-v6.2.1/addons/http/
Dnxd_http_client.h239 UINT nx_http_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, …
240 UINT nx_http_client_get_start_extended(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *r…
242 UINT nx_http_client_put_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource, …
243 UINT nx_http_client_put_start_extended(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *r…
246 UINT nxd_http_client_get_start(NX_HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *re…
247 UINT nxd_http_client_get_start_extended(NX_HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address,…
248 UINT nxd_http_client_put_start(NX_HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address, CHAR *re…
249 UINT nxd_http_client_put_start_extended(NX_HTTP_CLIENT *client_ptr, NXD_ADDRESS *ip_address,…
259 UINT _nxe_http_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource…
260 UINT _nx_http_client_get_start(NX_HTTP_CLIENT *client_ptr, ULONG ip_address, CHAR *resource,…
[all …]

123456789