/NetX-Duo-v6.3.0/crypto_libraries/src/ |
D | nx_crypto_method_self_test.c | 67 #define NX_CRYPTO_FUNCTIONAL_TEST_CHECK(status) \ argument 68 if(status) \ 122 UINT status; in _nx_crypto_method_self_test() local 134 status = _nx_crypto_method_self_test_des(&crypto_method_des, metadata, metadata_size); in _nx_crypto_method_self_test() local 135 NX_CRYPTO_FUNCTIONAL_TEST_CHECK(status) in _nx_crypto_method_self_test() 137 status = _nx_crypto_method_self_test_aes(&crypto_method_aes_cbc_256, metadata, metadata_size); in _nx_crypto_method_self_test() 138 NX_CRYPTO_FUNCTIONAL_TEST_CHECK(status) in _nx_crypto_method_self_test() 140 status = _nx_crypto_method_self_test_3des(&crypto_method_3des, metadata, metadata_size); in _nx_crypto_method_self_test() 141 NX_CRYPTO_FUNCTIONAL_TEST_CHECK(status) in _nx_crypto_method_self_test() 143 status = _nx_crypto_method_self_test_rsa(&crypto_method_rsa, metadata, metadata_size); in _nx_crypto_method_self_test() [all …]
|
/NetX-Duo-v6.3.0/nx_secure/src/ |
D | nx_secure_tls_1_3_server_handshake.c | 122 UINT status; in _nx_secure_tls_1_3_server_handshake() local 194 …status = _nx_secure_tls_process_handshake_header(packet_buffer, &message_type, &header_bytes, &mes… in _nx_secure_tls_1_3_server_handshake() 196 if (status != NX_SECURE_TLS_SUCCESS) in _nx_secure_tls_1_3_server_handshake() 198 return(status); in _nx_secure_tls_1_3_server_handshake() 222 status = NX_SECURE_TLS_SUCCESS; in _nx_secure_tls_1_3_server_handshake() 230 status = _nx_secure_tls_process_clienthello(tls_session, packet_buffer, message_length); in _nx_secure_tls_1_3_server_handshake() 232 if(status != NX_SUCCESS) in _nx_secure_tls_1_3_server_handshake() 260 …status = _nx_secure_tls_process_remote_certificate(tls_session, packet_buffer, message_length, dat… in _nx_secure_tls_1_3_server_handshake() 263 if (status == NX_SECURE_TLS_EMPTY_REMOTE_CERTIFICATE_RECEIVED) in _nx_secure_tls_1_3_server_handshake() 265 status = NX_SECURE_TLS_CERTIFICATE_REQUIRED; in _nx_secure_tls_1_3_server_handshake() [all …]
|
D | nx_secure_tls_1_3_client_handshake.c | 157 UINT status; in _nx_secure_tls_1_3_client_handshake() local 233 …status = _nx_secure_tls_process_handshake_header(packet_buffer, &message_type, &header_bytes, &mes… in _nx_secure_tls_1_3_client_handshake() 235 if (status != NX_SECURE_TLS_SUCCESS) in _nx_secure_tls_1_3_client_handshake() 237 return(status); in _nx_secure_tls_1_3_client_handshake() 269 status = NX_SECURE_TLS_HANDSHAKE_FAILURE; in _nx_secure_tls_1_3_client_handshake() 274 status = _nx_secure_tls_process_serverhello(tls_session, packet_buffer, message_length); in _nx_secure_tls_1_3_client_handshake() 279 if ((status == NX_SUCCESS) && (tls_session -> nx_secure_tls_1_3 == NX_FALSE)) in _nx_secure_tls_1_3_client_handshake() 293 status = NX_SECURE_TLS_DOWNGRADE_DETECTED; in _nx_secure_tls_1_3_client_handshake() 314 … status = _nx_secure_tls_process_encrypted_extensions(tls_session, packet_buffer, message_length); in _nx_secure_tls_1_3_client_handshake() 318 …status = _nx_secure_tls_process_remote_certificate(tls_session, packet_buffer, message_length, pac… in _nx_secure_tls_1_3_client_handshake() [all …]
|
D | nx_secure_tls_client_handshake.c | 132 UINT status; in _nx_secure_tls_client_handshake() local 161 …status = _nx_secure_tls_process_handshake_header(packet_buffer, &message_type, &header_bytes, &mes… in _nx_secure_tls_client_handshake() 163 if (status != NX_SECURE_TLS_SUCCESS) in _nx_secure_tls_client_handshake() 165 return(status); in _nx_secure_tls_client_handshake() 198 status = NX_SECURE_TLS_HANDSHAKE_FAILURE; in _nx_secure_tls_client_handshake() 203 status = _nx_secure_tls_process_serverhello(tls_session, packet_buffer, message_length); in _nx_secure_tls_client_handshake() 207 …status = _nx_secure_tls_process_remote_certificate(tls_session, packet_buffer, message_length, pac… in _nx_secure_tls_client_handshake() 213 status = NX_SECURE_TLS_SUCCESS; in _nx_secure_tls_client_handshake() 217 … status = _nx_secure_tls_process_server_key_exchange(tls_session, packet_buffer, message_length); in _nx_secure_tls_client_handshake() 221 … status = _nx_secure_tls_process_certificate_request(tls_session, packet_buffer, message_length); in _nx_secure_tls_client_handshake() [all …]
|
D | nx_secure_tls_server_handshake.c | 121 UINT status; in _nx_secure_tls_server_handshake() local 147 …status = _nx_secure_tls_process_handshake_header(packet_buffer, &message_type, &header_bytes, &mes… in _nx_secure_tls_server_handshake() 149 if (status != NX_SECURE_TLS_SUCCESS) in _nx_secure_tls_server_handshake() 151 return(status); in _nx_secure_tls_server_handshake() 184 status = NX_SECURE_TLS_SUCCESS; in _nx_secure_tls_server_handshake() 189 status = _nx_secure_tls_process_clienthello(tls_session, packet_buffer, message_length); in _nx_secure_tls_server_handshake() 195 …status = _nx_secure_tls_process_remote_certificate(tls_session, packet_buffer, message_length, dat… in _nx_secure_tls_server_handshake() 200 … status = _nx_secure_tls_process_certificate_verify(tls_session, packet_buffer, message_length); in _nx_secure_tls_server_handshake() 202 if(status == NX_SUCCESS) in _nx_secure_tls_server_handshake() 214 …status = _nx_secure_tls_process_client_key_exchange(tls_session, packet_buffer, message_length, NX… in _nx_secure_tls_server_handshake() [all …]
|
/NetX-Duo-v6.3.0/samples/ |
D | demo_netx_secure_tls.c | 385 UINT status; in tx_application_define() local 404 status = nx_packet_pool_create(&server_pool, "TLS Server Packet Pool", NX_PACKET_SIZE, in tx_application_define() 407 if (status) in tx_application_define() 411 status = nx_ip_create(&server_ip, "TLS Server IP", TLS_SERVER_ADDRESS, in tx_application_define() 415 if (status) in tx_application_define() 419 status = nx_arp_enable(&server_ip, (void *) pointer, 1024); in tx_application_define() 421 if (status) in tx_application_define() 425 status = nx_tcp_enable(&server_ip); in tx_application_define() 426 if (status) in tx_application_define() 430 status = tx_thread_create(&client_thread, "TLS Client", tls_client_thread_entry, 0, in tx_application_define() [all …]
|
D | demo_netxduo_dhcpv6.c | 72 UINT status; in tx_application_define() local 81 status = tx_thread_create(&thread_client, "Client thread", thread_client_entry, 0, in tx_application_define() 87 if (status) in tx_application_define() 91 status = tx_thread_create(&thread_server, "Server thread", thread_server_entry, 0, in tx_application_define() 97 if (status) in tx_application_define() 101 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 1024, pointer, NX_DHCPV6_PACKET_… in tx_application_define() 105 if (status) in tx_application_define() 109 status = nx_ip_create(&client_ip, "Client IP", IP_ADDRESS(0, 0, 0, 0), in tx_application_define() 115 if (status) in tx_application_define() 119 status = nx_ip_create(&server_ip, "Server IP", IP_ADDRESS(1, 2, 3, 4), in tx_application_define() [all …]
|
D | demo_netxduo_tftp.c | 93 UINT status; in tx_application_define() local 102 status = tx_thread_create(&server_thread, "TFTP Server Thread", server_thread_entry, 0, in tx_application_define() 109 if (status) in tx_application_define() 114 status = tx_thread_create(&client_thread, "TFTP Client Thread", client_thread_entry, 0, in tx_application_define() 121 if (status) in tx_application_define() 131 …status = nx_packet_pool_create(&server_pool, "TFTP Server Packet Pool", NX_TFTP_PACKET_SIZE, poin… in tx_application_define() 135 if (status) in tx_application_define() 139 status = nx_ip_create(&server_ip, "NetX Server IP Instance", SERVER_ADDRESS, 0xFFFFFF00UL, in tx_application_define() 144 if (status) in tx_application_define() 149 status = nx_arp_enable(&server_ip, (void *) pointer, 1024); in tx_application_define() [all …]
|
D | demo_netxduo_multihome_dhcp_client.c | 88 UINT status; in tx_application_define() local 104 …status = nx_packet_pool_create(&client_pool, "NetX Main Packet Pool", 1024, pointer, NX_PACKET_POO… in tx_application_define() 108 if (status) in tx_application_define() 112 …status = nx_ip_create(&client_ip, "DHCP Client", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &client_poo… in tx_application_define() 116 if (status) in tx_application_define() 120 status = nx_arp_enable(&client_ip, (void *) pointer, 1024); in tx_application_define() 124 if (status) in tx_application_define() 128 status = nx_udp_enable(&client_ip); in tx_application_define() 131 if (status) in tx_application_define() 135 status = nx_tcp_enable(&client_ip); in tx_application_define() [all …]
|
D | main.c | 216 UINT status; in tx_application_define() local 224 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", SAMPLE_PACKET_SIZE, in tx_application_define() 228 if (status) in tx_application_define() 230 printf("nx_packet_pool_create fail: %u\r\n", status); in tx_application_define() 235 status = nx_ip_create(&ip_0, "NetX IP Instance 0", in tx_application_define() 242 if (status) in tx_application_define() 244 printf("nx_ip_create fail: %u\r\n", status); in tx_application_define() 250 status = nx_arp_enable(&ip_0, (VOID *)sample_arp_cache_area, sizeof(sample_arp_cache_area)); in tx_application_define() 253 if (status) in tx_application_define() 255 printf("nx_arp_enable fail: %u\r\n", status); in tx_application_define() [all …]
|
D | demo_netx_duo_tcp.c | 63 UINT status; in tx_application_define() local 90 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 92 if (status) in tx_application_define() 98 …status = nx_ip_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, … in tx_application_define() 103 …status += nx_ip_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0,… in tx_application_define() 107 if (status) in tx_application_define() 114 status = nx_arp_enable(&ip_0, (void *)pointer, 1024); in tx_application_define() 118 status += nx_arp_enable(&ip_1, (void *)pointer, 1024); in tx_application_define() 122 if (status) in tx_application_define() 130 status = nxd_ipv6_enable(&ip_0); in tx_application_define() [all …]
|
D | demo_netx_duo_multihome_tcp.c | 173 UINT status; in tx_application_define() local 198 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 200 if (status) in tx_application_define() 206 …status = nx_ip_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, … in tx_application_define() 211 …status += nx_ip_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0,… in tx_application_define() 215 if (status) in tx_application_define() 230 …status = nx_ip_interface_attach(&ip_0, "IP_0 Secondary Interface", IP_ADDRESS(2, 2, 3, 4), 0xFFFFF… in tx_application_define() 232 if (status) in tx_application_define() 239 status = nx_arp_enable(&ip_0, (void *)pointer, 1024); in tx_application_define() 243 status += nx_arp_enable(&ip_1, (void *)pointer, 1024); in tx_application_define() [all …]
|
D | demo_netx_auto_ip.c | 63 UINT status; in tx_application_define() local 86 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 256, pointer, 4096); in tx_application_define() 89 if (status) in tx_application_define() 93 …status = nx_ip_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &pool_0, … in tx_application_define() 98 …status += nx_ip_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &pool_0,… in tx_application_define() 102 if (status) in tx_application_define() 106 status = nx_arp_enable(&ip_0, (void *) pointer, 1024); in tx_application_define() 110 status += nx_arp_enable(&ip_1, (void *) pointer, 1024); in tx_application_define() 114 if (status) in tx_application_define() 118 status = nx_udp_enable(&ip_0); in tx_application_define() [all …]
|
D | demo_netxduo_dhcp.c | 85 UINT status; in tx_application_define() local 107 …status = nx_packet_pool_create(&client_pool, "NetX Main Packet Pool", 1024, pointer, NX_PACKET_POO… in tx_application_define() 111 if (status) in tx_application_define() 115 …status = nx_packet_pool_create(&server_pool, "NetX Main Packet Pool", 1024, pointer, NX_PACKET_POO… in tx_application_define() 119 if (status) in tx_application_define() 123 …status = nx_ip_create(&client_ip, "DHCP Client", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &client_poo… in tx_application_define() 127 if (status) in tx_application_define() 131 …status = nx_ip_create(&server_ip, "DHCP Server", NX_DHCP_SERVER_IP_ADDRESS_0, 0xFFFFFF00UL, &serve… in tx_application_define() 135 if (status) in tx_application_define() 139 status = nx_arp_enable(&client_ip, (void *) pointer, 1024); in tx_application_define() [all …]
|
D | demo_netxduo_dhcpv6_client.c | 83 UINT status; in tx_application_define() local 89 status = tx_thread_create(&thread_client, "Client thread", thread_client_entry, 0, in tx_application_define() 93 if (status) in tx_application_define() 105 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 1024, pointer, PACKET_POOL_SIZE… in tx_application_define() 110 if (status) in tx_application_define() 117 status = nx_ip_create(&client_ip, "Client IP", IP_ADDRESS(0, 0, 0, 0), in tx_application_define() 124 if (status) in tx_application_define() 131 status = nx_udp_enable(&client_ip); in tx_application_define() 134 if (status) in tx_application_define() 141 status = nx_icmp_enable(&client_ip); in tx_application_define() [all …]
|
D | demo_netx_duo_udp.c | 58 UINT status; in tx_application_define() local 82 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 85 if (status) in tx_application_define() 91 …status = nx_ip_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFF000UL, &pool_0, … in tx_application_define() 96 …status += nx_ip_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFF000UL, &pool_0,… in tx_application_define() 101 if (status) in tx_application_define() 108 status = nx_arp_enable(&ip_0, (void *)pointer, 1024); in tx_application_define() 112 status += nx_arp_enable(&ip_1, (void *)pointer, 1024); in tx_application_define() 116 if (status) in tx_application_define() 125 status = nxd_ipv6_enable(&ip_0); in tx_application_define() [all …]
|
D | demo_netxduo_snmp.c | 82 UINT status; in tx_application_define() local 88 status = tx_thread_create(&thread_0, "agent thread", thread_agent_entry, 0, in tx_application_define() 91 if (status != NX_SUCCESS) in tx_application_define() 103 status = nx_packet_pool_create(&pool_0, "NetX Packet Pool 0", 2048, pointer, 20000); in tx_application_define() 105 if (status != NX_SUCCESS) in tx_application_define() 113 status = nx_ip_create(&ip_0, "SNMP Agent IP Instance", AGENT_PRIMARY_ADDRESS, in tx_application_define() 117 if (status != NX_SUCCESS) in tx_application_define() 137 status = nx_snmp_agent_create(&my_agent, "SNMP Agent", &ip_0, pointer, 4096, &pool_0, in tx_application_define() 141 if (status != NX_SUCCESS) in tx_application_define() 149 status = nx_snmp_agent_context_engine_set(&my_agent, context_engine_id, context_engine_size); in tx_application_define() [all …]
|
D | demo_netx_duo_multihome_udp.c | 184 UINT status; in tx_application_define() local 209 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 211 if (status) in tx_application_define() 217 …status = nx_ip_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, … in tx_application_define() 222 …status += nx_ip_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0,… in tx_application_define() 226 if (status) in tx_application_define() 241 …status = nx_ip_interface_attach(&ip_0, "IP_0 Secondary Interface", IP_ADDRESS(2, 2, 3, 4), 0xFFFFF… in tx_application_define() 243 if (status) in tx_application_define() 250 status = nx_arp_enable(&ip_0, (void *)pointer, 1024); in tx_application_define() 254 status += nx_arp_enable(&ip_1, (void *)pointer, 1024); in tx_application_define() [all …]
|
D | demo_netxduo_http.c | 106 UINT status; in tx_application_define() local 123 status = nx_packet_pool_create(&server_pool, "HTTP Server Packet Pool", SERVER_PACKET_SIZE, in tx_application_define() 129 if (status) in tx_application_define() 136 status = nx_ip_create(&server_ip, "HTTP Server IP", HTTP_SERVER_ADDRESS, in tx_application_define() 143 if (status) in tx_application_define() 150 status = nx_arp_enable(&server_ip, (void *) pointer, 1024); in tx_application_define() 154 if (status) in tx_application_define() 161 status = nx_tcp_enable(&server_ip); in tx_application_define() 163 if (status) in tx_application_define() 184 status = nx_http_server_create(&my_server, "My HTTP Server", &server_ip, &ram_disk, in tx_application_define() [all …]
|
D | demo_netx_ppp.c | 75 UINT status; in tx_application_define() local 97 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 128, pointer, 2048); in tx_application_define() 101 if (status) in tx_application_define() 105 …status = nx_ppp_create(&ppp_0, "NetX PPP Instance 0", &ip_0, pointer, 2048, 1, &pool_0, invalid_p… in tx_application_define() 109 if (status) in tx_application_define() 113 status = nx_ppp_ip_address_assign(&ppp_0, IP_ADDRESS(1, 2, 3, 4), IP_ADDRESS(1, 2, 3, 5)); in tx_application_define() 116 if (status) in tx_application_define() 120 status = nx_ppp_link_up_notify(&ppp_0, link_up_callback); in tx_application_define() 121 status += nx_ppp_link_down_notify(&ppp_0, link_down_callback); in tx_application_define() 124 if (status) in tx_application_define() [all …]
|
D | demo_netx_pppoe_client.c | 137 UINT status; in tx_application_define() local 146 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", in tx_application_define() 152 if (status) in tx_application_define() 156 …status = nx_ip_create(&ip_0, "NetX IP Instance", IP_ADDRESS(192, 168, 100, 44), 0xFFFFFF00UL, &poo… in tx_application_define() 161 if (status) in tx_application_define() 165 …status = nx_ppp_create(&ppp_client, "PPP Instance", &ip_0, pointer, 2048, 1, &pool_0, NX_NULL, NX_… in tx_application_define() 169 if (status) in tx_application_define() 173 status = nx_ppp_packet_send_set(&ppp_client, ppp_client_packet_send); in tx_application_define() 176 if (status) in tx_application_define() 180 status = nx_ppp_ip_address_assign(&ppp_client, IP_ADDRESS(0, 0, 0, 0), IP_ADDRESS(0, 0, 0, 0)); in tx_application_define() [all …]
|
D | demo_netxduo_sntp_client.c | 83 UINT status; in tx_application_define() local 90 status = nx_packet_pool_create(&client_packet_pool, "SNTP Client Packet Pool", in tx_application_define() 95 if (status != NX_SUCCESS) in tx_application_define() 108 status = nx_ip_create(&client_ip, "SNTP IP Instance", CLIENT_IP_ADDRESS, in tx_application_define() 113 if (status != NX_SUCCESS) in tx_application_define() 123 status = nx_arp_enable(&client_ip, (void **) free_memory_pointer, 2048); in tx_application_define() 126 if (status != NX_SUCCESS) in tx_application_define() 137 status = nx_udp_enable(&client_ip); in tx_application_define() 140 if (status != NX_SUCCESS) in tx_application_define() 147 status = nx_icmp_enable(&client_ip); in tx_application_define() [all …]
|
/NetX-Duo-v6.3.0/addons/azure_iot/samples/ |
D | sample_azure_iot_embedded_sdk_pnp.c | 149 … UINT status, ULONG version, UCHAR *description_ptr, in sample_send_target_temperature_report() argument 175 status, version, in sample_send_target_temperature_report() 205 UINT status; in sample_parse_writable_temp_property() local 209 while ((status = nx_azure_iot_hub_client_properties_component_property_next_get(hub_client_ptr, in sample_parse_writable_temp_property() 219 if ((status = nx_azure_iot_json_reader_next_token(json_reader_ptr)) || in sample_parse_writable_temp_property() 220 … (status = nx_azure_iot_json_reader_token_double_get(json_reader_ptr, &parsed_value))) in sample_parse_writable_temp_property() 222 return(status); in sample_parse_writable_temp_property() 243 if (status) in sample_parse_writable_temp_property() 245 return(status); in sample_parse_writable_temp_property() 275 UINT status; in sample_get_maxmin_report() local [all …]
|
D | sample_azure_iot_embedded_sdk.c | 137 static VOID connection_status_callback(NX_AZURE_IOT_HUB_CLIENT *hub_client_ptr, UINT status) in connection_status_callback() argument 140 if (status) in connection_status_callback() 142 printf("Disconnected from IoTHub!: error code = 0x%08x\r\n", status); in connection_status_callback() 149 sample_connection_status = status; in connection_status_callback() 154 UINT status; in sample_initialize_iothub() local 170 if ((status = sample_dps_entry(&iothub_hostname, &iothub_hostname_length, in sample_initialize_iothub() 173 printf("Failed on sample_dps_entry!: error code = 0x%08x\r\n", status); in sample_initialize_iothub() 174 return(status); in sample_initialize_iothub() 182 if ((status = nx_azure_iot_hub_client_initialize(iothub_client_ptr, &nx_azure_iot, in sample_initialize_iothub() 194 printf("Failed on nx_azure_iot_hub_client_initialize!: error code = 0x%08x\r\n", status); in sample_initialize_iothub() [all …]
|
/NetX-Duo-v6.3.0/utility/iperf/ |
D | nx_iperf.c | 116 UINT status; in nx_iperf_entry() local 127 status = nx_tcp_socket_create(nx_iperf_test_ip, &tcp_server_socket, "TCP Server Socket", in nx_iperf_entry() 132 if (status) in nx_iperf_entry() 139 status = nx_tcp_socket_create(nx_iperf_test_ip, &tcp_client_socket, "TCP Client Socket", in nx_iperf_entry() 144 if (status) in nx_iperf_entry() 151 …status = nx_udp_socket_create(nx_iperf_test_ip, &udp_server_socket, "UDP Server Socket", NX_IP_NOR… in nx_iperf_entry() 154 if (status) in nx_iperf_entry() 161 …status = nx_udp_socket_create(nx_iperf_test_ip, &udp_client_socket, "UDP Client Socket", NX_IP_NOR… in nx_iperf_entry() 164 if (status) in nx_iperf_entry() 171 …status = nx_web_http_server_create(&nx_iperf_web_server, "My HTTP Server", ip_ptr, NX_WEB_HTTP_SE… in nx_iperf_entry() [all …]
|