/NetX-Duo-v6.2.1/samples/ |
D | demo_netx_ppp.c | 23 NX_PACKET_POOL pool_0; variable 97 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 128, pointer, 2048); 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() 135 …p_create(&ip_0, "NetX IP Instance 0", IP_ADDRESS(0, 0, 0, 0), 0xFFFFF000UL, &pool_0, nx_ppp_driver, in tx_application_define() 140 …status = nx_ppp_create(&ppp_1, "NetX PPP Instance 1", &ip_1, pointer, 2048, 1, &pool_0, invalid_p… in tx_application_define() 170 …p_create(&ip_1, "NetX IP Instance 1", IP_ADDRESS(0, 0, 0, 0), 0xFFFFF000UL, &pool_0, nx_ppp_driver, in tx_application_define() 233 status = nx_packet_allocate(&pool_0, &my_packet, NX_UDP_PACKET, TX_WAIT_FOREVER); in thread_0_entry() 240 nx_packet_data_append(my_packet, DEMO_DATA, sizeof(DEMO_DATA), &pool_0, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netx_pppoe_client.c | 70 NX_PACKET_POOL pool_0; variable 146 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", in tx_application_define() 156 …&ip_0, "NetX IP Instance", IP_ADDRESS(192, 168, 100, 44), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… 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() 239 …status = nx_pppoe_client_create(&pppoe_client, (UCHAR *)"PPPoE Client", &ip_0, 0, &pool_0, poin… in thread_0_entry()
|
D | demo_netx_duo_udp.c | 19 NX_PACKET_POOL pool_0; variable 82 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 91 …eate(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFF000UL, &pool_0, _nx_ram_network_d… in tx_application_define() 96 …eate(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFF000UL, &pool_0, _nx_ram_network_d… in tx_application_define() 275 status = nx_packet_allocate(&pool_0, &my_packet, NX_UDP_PACKET, TX_WAIT_FOREVER); in thread_0_entry() 284 nx_packet_data_append(my_packet, DEMO_DATA, sizeof(DEMO_DATA), &pool_0, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netx_auto_ip.c | 17 NX_PACKET_POOL pool_0; variable 86 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 256, pointer, 4096); in tx_application_define() 93 …eate(&ip_0, "NetX IP Instance 0", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 98 …eate(&ip_1, "NetX IP Instance 1", IP_ADDRESS(0, 0, 0, 0), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 205 status = nx_packet_allocate(&pool_0, &my_packet, NX_UDP_PACKET, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netx_pppoe_server.c | 74 NX_PACKET_POOL pool_0; variable 156 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", in tx_application_define() 166 …&ip_0, "NetX IP Instance", IP_ADDRESS(192, 168, 100, 43), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 175 …status = nx_ppp_create(&ppp_server, "PPP Instance", &ip_0, pointer, 2048, 1, &pool_0, NX_NULL, NX_… in tx_application_define() 249 …oe_server, (UCHAR *)"PPPoE Server", &ip_0, 0, _nx_ram_network_driver, &pool_0, pointer, PPPOE_TH… in thread_0_entry()
|
D | demo_netxduo_dhcpv6.c | 19 NX_PACKET_POOL pool_0; variable 101 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 1024, pointer, NX_DHCPV6_PACKET_… in tx_application_define() 110 0xFFFFFF00UL, &pool_0, _nx_ram_network_driver, in tx_application_define() 120 0xFFFFFF00UL, &pool_0, _nx_ram_network_driver, in tx_application_define() 189 …status = nx_dhcpv6_client_create(&dhcp_client, &client_ip, "DHCPv6 Client", &pool_0, pointer, NX_… in thread_client_entry() 382 …status = nx_dhcpv6_server_create(&dhcp_server, &server_ip, "DHCPv6 Server", &pool_0, pointer, NX_… in thread_server_entry()
|
D | demo_netx_duo_tcp.c | 21 NX_PACKET_POOL pool_0; variable 90 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 98 …eate(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 103 …eate(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 293 status = nx_packet_allocate(&pool_0, &my_packet, NX_TCP_PACKET, NX_WAIT_FOREVER); in thread_0_entry() 302 nx_packet_data_append(my_packet, DEMO_DATA, sizeof(DEMO_DATA), &pool_0, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netx_duo_ptp_client.c | 20 static NX_PACKET_POOL pool_0; variable 107 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 1536, (ULONG*)(((int)packet_poo… in tx_application_define() 118 &pool_0, in tx_application_define() 175 nx_ptp_client_create(&ptp_client, &ip_0, 0, &pool_0, in thread_0_entry()
|
D | demo_netxduo_dhcpv6_client.c | 28 NX_PACKET_POOL pool_0; variable 105 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 1024, pointer, PACKET_POOL_SIZE… in tx_application_define() 118 0xFFFFFF00UL, &pool_0, _nx_ram_network_driver, in tx_application_define() 152 &pool_0, pointer, 2048, dhcpv6_state_change_notify, in tx_application_define() 452 0xFFFFFF00UL, &pool_0, _nx_ram_network_driver, in thread_client_entry() 512 &pool_0, pointer, 2048, dhcpv6_state_change_notify, in thread_client_entry()
|
D | demo_netx_duo_multihome_udp.c | 78 NX_PACKET_POOL pool_0; variable 209 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 217 …eate(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 222 …eate(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 506 status = nx_packet_allocate(&pool_0, &my_packet, NX_UDP_PACKET, TX_WAIT_FOREVER); in thread_0_entry() 515 nx_packet_data_append(my_packet, DEMO_DATA, sizeof(DEMO_DATA), &pool_0, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netx_duo_multihome_tcp.c | 78 NX_PACKET_POOL pool_0; variable 198 …status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", PACKET_SIZE, pool_buffer, POOL_S… in tx_application_define() 206 …eate(&ip_0, "NetX IP Instance 0", IP_ADDRESS(1, 2, 3, 4), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 211 …eate(&ip_1, "NetX IP Instance 1", IP_ADDRESS(1, 2, 3, 5), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 519 status = nx_packet_allocate(&pool_0, &my_packet, NX_TCP_PACKET, NX_WAIT_FOREVER); in thread_0_entry() 528 nx_packet_data_append(my_packet, DEMO_DATA, sizeof(DEMO_DATA), &pool_0, TX_WAIT_FOREVER); in thread_0_entry()
|
D | demo_netxduo_snmp.c | 16 NX_PACKET_POOL pool_0; variable 103 status = nx_packet_pool_create(&pool_0, "NetX Packet Pool 0", 2048, pointer, 20000); in tx_application_define() 114 0xFFFFFF00UL, &pool_0, _nx_ram_network_driver, in tx_application_define() 137 status = nx_snmp_agent_create(&my_agent, "SNMP Agent", &ip_0, pointer, 4096, &pool_0, in tx_application_define()
|
D | demo_netx_duo_mdns.c | 17 static NX_PACKET_POOL pool_0; variable 121 …status = nx_packet_pool_create(&pool_0, "NetX Client Packet Pool", NX_PACKET_SIZE, pool_memory, N… in tx_application_define() 132 &pool_0, _nx_ram_network_driver, pointer, 2048, 1); in tx_application_define() 589 status = nx_mdns_create(&mdns, &ip_0, &pool_0, MDNS_PRIORITY, mdns_thread_stack, in thread_0_entry()
|
/NetX-Duo-v6.2.1/utility/iperf/ |
D | demo_iperf.c | 32 NX_PACKET_POOL pool_0; variable 75 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", in tx_application_define() 85 …p_0, "NetX IP Instance 0", IP_ADDRESS(192, 168, 100, 18), 0xFFFFFF00UL, &pool_0, _nx_ram_network_d… in tx_application_define() 166 nx_iperf_entry(&pool_0, &ip_0, http_stack, HTTP_STACK_SIZE, iperf_stack, IPERF_STACK_SIZE); in thread_0_entry()
|
/NetX-Duo-v6.2.1/addons/azure_iot/samples/ |
D | main.c | 139 static NX_PACKET_POOL pool_0; variable 224 status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", SAMPLE_PACKET_SIZE, in tx_application_define() 237 &pool_0, SAMPLE_NETWORK_DRIVER, in tx_application_define() 412 sample_entry(&ip_0, &pool_0, &dns_0, unix_time_get); in sample_helper_thread_entry() 518 status = nx_sntp_client_create(&sntp_client, &ip_0, 0, &pool_0, in sntp_time_sync_internal()
|