Home
last modified time | relevance | path

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

12345

/NetX-Duo-v6.3.0/common/src/
Dnx_ipv6_util.c789 ULONG IPv6_Address_Type(ULONG *ip_address) in IPv6_Address_Type() argument
806 if ((ip_address[0] & (ULONG)0xFF000000) == (ULONG)0xFF000000) in IPv6_Address_Type()
812 if (((ip_address[0] == (ULONG)0xFF010000) || in IPv6_Address_Type()
813 (ip_address[0] == (ULONG)0xFF020000)) && in IPv6_Address_Type()
814 (ip_address[1] == (ULONG)0) && in IPv6_Address_Type()
815 (ip_address[2] == (ULONG)0) && in IPv6_Address_Type()
816 (ip_address[3] == (ULONG)1)) in IPv6_Address_Type()
822 if ((ip_address[0] == (ULONG)0xFF050000) && /* All DHCPv6 relay and server hosts */ in IPv6_Address_Type()
823 (ip_address[1] == (ULONG)0) && in IPv6_Address_Type()
824 (ip_address[2] == (ULONG)0) && in IPv6_Address_Type()
[all …]
Dnxd_udp_source_extract.c78 UINT _nxd_udp_source_extract(NX_PACKET *packet_ptr, NXD_ADDRESS *ip_address, UINT *port) in _nxd_udp_source_extract() argument
96 ip_address -> nxd_ip_version = packet_ptr -> nx_packet_ip_version; in _nxd_udp_source_extract()
99 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_source_extract()
109 ip_address -> nxd_ip_address.v4 = ipv4_header -> nx_ip_header_source_ip; in _nxd_udp_source_extract()
113 ip_address_word3 = ip_address -> nxd_ip_address.v4; in _nxd_udp_source_extract()
118 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_source_extract()
128 ip_address -> nxd_ip_address.v6); in _nxd_udp_source_extract()
132 ip_address_word3 = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_source_extract()
Dnx_arp_dynamic_entry_set.c85 UINT _nx_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, in _nx_arp_dynamic_entry_set() argument
99 …NX_TRACE_IN_LINE_INSERT(NX_TRACE_ARP_DYNAMIC_ENTRY_SET, ip_ptr, ip_address, physical_msw, physical… in _nx_arp_dynamic_entry_set()
105 if (_nx_ip_route_find(ip_ptr, ip_address, &nx_interface, &next_hop_address) != NX_SUCCESS) in _nx_arp_dynamic_entry_set()
112 if (next_hop_address != ip_address) in _nx_arp_dynamic_entry_set()
123 index = (UINT)((ip_address + (ip_address >> 8)) & NX_ARP_TABLE_MASK); in _nx_arp_dynamic_entry_set()
135 if (search_ptr -> nx_arp_ip_address == ip_address) in _nx_arp_dynamic_entry_set()
199 arp_ptr -> nx_arp_ip_address = ip_address; in _nx_arp_dynamic_entry_set()
218 _nx_arp_packet_send(ip_ptr, ip_address, nx_interface); in _nx_arp_dynamic_entry_set()
237 NX_PARAMETER_NOT_USED(ip_address); in _nx_arp_dynamic_entry_set()
Dnxde_udp_socket_send.c93 …ket_send(NX_UDP_SOCKET *socket_ptr, NX_PACKET **packet_ptr_ptr, NXD_ADDRESS *ip_address, UINT port) in _nxde_udp_socket_send() argument
105 …if ((socket_ptr == NX_NULL) || (socket_ptr -> nx_udp_socket_id != NX_UDP_ID) || (ip_address == NX_… in _nxde_udp_socket_send()
127 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_udp_socket_send()
128 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_udp_socket_send()
134 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxde_udp_socket_send()
136 if (ip_address -> nxd_ip_address.v4 == 0) in _nxde_udp_socket_send()
146 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_udp_socket_send()
149 if (CHECK_UNSPECIFIED_ADDRESS(&ip_address -> nxd_ip_address.v6[0])) in _nxde_udp_socket_send()
202 status = _nxd_udp_socket_send(socket_ptr, packet_ptr, ip_address, port); in _nxde_udp_socket_send()
Dnxe_ip_address_set.c78 UINT _nxe_ip_address_set(NX_IP *ip_ptr, ULONG ip_address, ULONG network_mask) in _nxe_ip_address_set() argument
92 if (((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_address_set()
93 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_address_set()
94 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_address_set()
103 status = _nx_ip_address_set(ip_ptr, ip_address, network_mask); in _nxe_ip_address_set()
109 NX_PARAMETER_NOT_USED(ip_address); in _nxe_ip_address_set()
Dnxde_ipv6_address_set.c87 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
104 if ((ip_address != NULL) && (prefix_length != 10)) in _nxde_ipv6_address_set()
108 if (ip_address -> nxd_ip_version != NX_IP_VERSION_V6) in _nxde_ipv6_address_set()
123 if (ip_address) in _nxde_ipv6_address_set()
125 AddressType = IPv6_Address_Type(ip_address -> nxd_ip_address.v6); in _nxde_ipv6_address_set()
137 status = _nxd_ipv6_address_set(ip_ptr, if_index, ip_address, prefix_length, address_index); in _nxde_ipv6_address_set()
145 NX_PARAMETER_NOT_USED(ip_address); in _nxde_ipv6_address_set()
Dnxde_icmp_ping.c83 UINT _nxde_icmp_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, in _nxde_icmp_ping() argument
98 if (ip_address == NX_NULL) in _nxde_icmp_ping()
104 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_icmp_ping()
105 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_icmp_ping()
115 if ((ip_address -> nxd_ip_version == NX_IP_VERSION_V4) && in _nxde_icmp_ping()
125 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_icmp_ping()
144 status = _nxd_icmp_ping(ip_ptr, ip_address, data_ptr, data_size, in _nxde_icmp_ping()
Dnxe_ip_interface_attach.c81 UINT _nxe_ip_interface_attach(NX_IP *ip_ptr, CHAR *interface_name, ULONG ip_address, ULONG network_… in _nxe_ip_interface_attach() argument
95 if ((ip_address != 0) && in _nxe_ip_interface_attach()
96 ((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_interface_attach()
97 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_interface_attach()
98 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_interface_attach()
107 …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.c81 UINT _nxe_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address, in _nxe_arp_dynamic_entry_set() argument
96 if (!ip_address) in _nxe_arp_dynamic_entry_set()
102 if (((ip_address & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE) || in _nxe_arp_dynamic_entry_set()
103 (ip_address == NX_IP_LIMITED_BROADCAST)) in _nxe_arp_dynamic_entry_set()
118 status = _nx_arp_dynamic_entry_set(ip_ptr, ip_address, physical_msw, physical_lsw); in _nxe_arp_dynamic_entry_set()
124 NX_PARAMETER_NOT_USED(ip_address); in _nxe_arp_dynamic_entry_set()
Dnxe_arp_static_entry_create.c81 UINT _nxe_arp_static_entry_create(NX_IP *ip_ptr, ULONG ip_address, in _nxe_arp_static_entry_create() argument
96 if (!ip_address) in _nxe_arp_static_entry_create()
102 if (((ip_address & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE) || in _nxe_arp_static_entry_create()
103 (ip_address == NX_IP_LIMITED_BROADCAST)) in _nxe_arp_static_entry_create()
124 status = _nx_arp_static_entry_create(ip_ptr, ip_address, physical_msw, physical_lsw); in _nxe_arp_static_entry_create()
130 NX_PARAMETER_NOT_USED(ip_address); in _nxe_arp_static_entry_create()
Dnxe_ip_interface_address_set.c82 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
96 if (((ip_address & NX_IP_CLASS_A_MASK) != NX_IP_CLASS_A_TYPE) && in _nxe_ip_interface_address_set()
97 ((ip_address & NX_IP_CLASS_B_MASK) != NX_IP_CLASS_B_TYPE) && in _nxe_ip_interface_address_set()
98 ((ip_address & NX_IP_CLASS_C_MASK) != NX_IP_CLASS_C_TYPE)) in _nxe_ip_interface_address_set()
119 status = _nx_ip_interface_address_set(ip_ptr, interface_index, ip_address, network_mask); in _nxe_ip_interface_address_set()
126 NX_PARAMETER_NOT_USED(ip_address); in _nxe_ip_interface_address_set()
Dnxde_icmp_source_ping.c85 UINT _nxde_icmp_source_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, UINT address_index, in _nxde_icmp_source_ping() argument
100 if (ip_address == NX_NULL) in _nxde_icmp_source_ping()
106 if ((ip_address -> nxd_ip_version != NX_IP_VERSION_V4) && in _nxde_icmp_source_ping()
107 (ip_address -> nxd_ip_version != NX_IP_VERSION_V6)) in _nxde_icmp_source_ping()
115 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxde_icmp_source_ping()
134 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_icmp_source_ping()
158 status = _nxd_icmp_source_ping(ip_ptr, ip_address, address_index, data_ptr, data_size, in _nxde_icmp_source_ping()
Dnxde_udp_socket_source_send.c90 NXD_ADDRESS *ip_address, UINT port, UINT address_index) in _nxde_udp_socket_source_send() argument
98 …if ((socket_ptr == NX_NULL) || (packet_ptr == NX_NULL) || (ip_address == NX_NULL) || (socket_ptr -… in _nxde_udp_socket_source_send()
111 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxde_udp_socket_source_send()
118 if (ip_address -> nxd_ip_address.v4 == 0) in _nxde_udp_socket_source_send()
129 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxde_udp_socket_source_send()
136 if (CHECK_UNSPECIFIED_ADDRESS(&ip_address -> nxd_ip_address.v6[0])) in _nxde_udp_socket_source_send()
193 status = _nxd_udp_socket_source_send(socket_ptr, packet_ptr, ip_address, port, address_index); in _nxde_udp_socket_source_send()
Dnxd_icmp_source_ping.c86 UINT _nxd_icmp_source_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, UINT address_index, in _nxd_icmp_source_ping() argument
98 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_icmp_source_ping()
105 … _nx_ip_route_find(ip_ptr, ip_address -> nxd_ip_address.v4, &interface_ptr, &next_hop_address); in _nxd_icmp_source_ping()
108 …status = _nx_icmp_interface_ping(ip_ptr, ip_address -> nxd_ip_address.v4, interface_ptr, next_hop_… in _nxd_icmp_source_ping()
114 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_icmp_source_ping()
117 status = _nx_icmp_interface_ping6(ip_ptr, ip_address, data_ptr, data_size, in _nxd_icmp_source_ping()
Dnxd_udp_packet_info_extract.c83 UINT _nxd_udp_packet_info_extract(NX_PACKET *packet_ptr, NXD_ADDRESS *ip_address, in _nxd_udp_packet_info_extract() argument
101 if (ip_address) in _nxd_udp_packet_info_extract()
111 ip_address -> nxd_ip_version = NX_IP_VERSION_V4; in _nxd_udp_packet_info_extract()
114 ip_address -> nxd_ip_address.v4 = ipv4_header -> nx_ip_header_source_ip; in _nxd_udp_packet_info_extract()
117 address = ip_address -> nxd_ip_address.v4; in _nxd_udp_packet_info_extract()
130 ip_address -> nxd_ip_version = NX_IP_VERSION_V6; in _nxd_udp_packet_info_extract()
133 … COPY_IPV6_ADDRESS(ipv6_header -> nx_ip_header_source_ip, ip_address -> nxd_ip_address.v6); in _nxd_udp_packet_info_extract()
136 address = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_packet_info_extract()
Dnxd_icmp_ping.c81 UINT _nxd_icmp_ping(NX_IP *ip_ptr, NXD_ADDRESS *ip_address, CHAR *data_ptr, ULONG data_size, in _nxd_icmp_ping() argument
88 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_icmp_ping()
90 status = _nx_icmp_ping(ip_ptr, ip_address -> nxd_ip_address.v4, data_ptr, data_size, in _nxd_icmp_ping()
96 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_icmp_ping()
98 status = _nx_icmp_ping6(ip_ptr, ip_address, data_ptr, data_size, in _nxd_icmp_ping()
Dnx_arp_entry_delete.c76 UINT _nx_arp_entry_delete(NX_IP *ip_ptr, ULONG ip_address) in _nx_arp_entry_delete() argument
96 index = (UINT)((ip_address + (ip_address >> 8)) & NX_ARP_TABLE_MASK); in _nx_arp_entry_delete()
109 if (search_ptr -> nx_arp_ip_address == ip_address) in _nx_arp_entry_delete()
148 status = _nx_arp_static_entry_delete(ip_ptr, ip_address, in _nx_arp_entry_delete()
166 NX_PARAMETER_NOT_USED(ip_address); in _nx_arp_entry_delete()
Dnx_ip_interface_address_set.c80 UINT _nx_ip_interface_address_set(NX_IP *ip_ptr, UINT interface_index, ULONG ip_address, ULONG net… in _nx_ip_interface_address_set() argument
94 …NX_TRACE_IN_LINE_INSERT(NX_TRACE_IP_ADDRESS_SET, ip_ptr, ip_address, network_mask, 0, NX_TRACE_IP_… in _nx_ip_interface_address_set()
115 ip_ptr -> nx_ip_interface[interface_index].nx_interface_ip_address = ip_address; in _nx_ip_interface_address_set()
117 …ip_ptr -> nx_ip_interface[interface_index].nx_interface_ip_network = ip_address & network_ma… in _nx_ip_interface_address_set()
132 ((ip_address != previous_ip_address) || (network_mask != previous_network_mask))) in _nx_ip_interface_address_set()
142 ((ip_address != previous_ip_address) || (network_mask != previous_network_mask))) in _nx_ip_interface_address_set()
157 NX_PARAMETER_NOT_USED(ip_address); in _nx_ip_interface_address_set()
Dnxd_udp_socket_send.c285 NXD_ADDRESS *ip_address, in _nxd_udp_socket_send() argument
353 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_socket_send()
355 ip_address_log = ip_address -> nxd_ip_address.v4; in _nxd_udp_socket_send()
362 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_socket_send()
364 ip_address_log = ip_address -> nxd_ip_address.v6[3]; in _nxd_udp_socket_send()
377 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nxd_udp_socket_send()
381 …_nx_ip_route_find(ip_ptr, ip_address -> nxd_ip_address.v4, &packet_ptr -> nx_packet_address.nx_pac… in _nxd_udp_socket_send()
395 ip_dest_addr = &ip_address -> nxd_ip_address.v4; in _nxd_udp_socket_send()
406 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nxd_udp_socket_send()
413 status = _nxd_ipv6_interface_find(ip_ptr, ip_address -> nxd_ip_address.v6, in _nxd_udp_socket_send()
[all …]
/NetX-Duo-v6.3.0/nx_secure/src/
Dnx_secure_dtls_session_send.c79 NXD_ADDRESS *ip_address, UINT port) in _nx_secure_dtls_session_send() argument
92 …NX_SECURE_MEMCPY(&dtls_session -> nx_secure_dtls_remote_ip_address, ip_address, sizeof(NXD_ADDRESS… in _nx_secure_dtls_session_send()
95 …else if ((dtls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_version != ip_address -> nxd_ip_… in _nx_secure_dtls_session_send()
108 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_session_send()
110 …if (dtls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v4 != ip_address -> nxd_ip_add… in _nx_secure_dtls_session_send()
123 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_session_send()
125 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[0] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
126 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[1] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
127 …ls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_address.v6[2] != ip_address -> nxd_ip_addres… in _nx_secure_dtls_session_send()
128 …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_cache.c75 …_session_cache_delete(NX_SECURE_DTLS_SERVER *dtls_server, NXD_ADDRESS *ip_address, UINT remote_por… in nx_secure_dtls_session_cache_delete() argument
98 ip_address -> nxd_ip_version) in nx_secure_dtls_session_cache_delete()
103 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in nx_secure_dtls_session_cache_delete()
106 ip_address -> nxd_ip_address.v4) in nx_secure_dtls_session_cache_delete()
114 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in nx_secure_dtls_session_cache_delete()
116 …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()
117 …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()
118 …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()
119 …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()
185 …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_client_info_get.c76 NXD_ADDRESS *ip_address; in _nx_secure_dtls_session_client_info_get() local
89 ip_address = &(dtls_session->nx_secure_dtls_remote_ip_address); in _nx_secure_dtls_session_client_info_get()
92 client_ip_address -> nxd_ip_version = ip_address -> nxd_ip_version; in _nx_secure_dtls_session_client_info_get()
95 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_session_client_info_get()
98 client_ip_address -> nxd_ip_address.v4 = ip_address -> nxd_ip_address.v4; in _nx_secure_dtls_session_client_info_get()
103 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_session_client_info_get()
105 COPY_IPV6_ADDRESS(ip_address -> nxd_ip_address.v6, in _nx_secure_dtls_session_client_info_get()
Dnx_secure_dtls_client_session_start.c72 …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
82 remote_ip -> nxd_ip_version = ip_address -> nxd_ip_version; in _nx_secure_dtls_client_session_start()
85 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) in _nx_secure_dtls_client_session_start()
88 remote_ip -> nxd_ip_address.v4 = ip_address -> nxd_ip_address.v4; in _nx_secure_dtls_client_session_start()
94 if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) in _nx_secure_dtls_client_session_start()
96 COPY_IPV6_ADDRESS(ip_address -> nxd_ip_address.v6, in _nx_secure_dtls_client_session_start()
116 NX_PARAMETER_NOT_USED(ip_address); in _nx_secure_dtls_client_session_start()
/NetX-Duo-v6.3.0/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 …]

12345