Lines Matching refs:status
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()
183 if (status) in tx_application_define()
187 status = nx_ppp_pap_enable(&ppp_client, generate_login, NX_NULL); in tx_application_define()
190 if (status) in tx_application_define()
194 …status = nx_ip_interface_attach(&ip_0, "Second Interface For PPP", IP_ADDRESS(0, 0, 0, 0), 0, nx_p… in tx_application_define()
197 if (status) in tx_application_define()
201 status = nx_arp_enable(&ip_0, (void *) pointer, 1024); in tx_application_define()
205 if (status) in tx_application_define()
209 status = nx_icmp_enable(&ip_0); in tx_application_define()
210 if(status) in tx_application_define()
214 status = nx_udp_enable(&ip_0); in tx_application_define()
215 if (status) in tx_application_define()
219 status = nx_tcp_enable(&ip_0); in tx_application_define()
220 if (status) in tx_application_define()
235 UINT status; in thread_0_entry() local
239 …status = nx_pppoe_client_create(&pppoe_client, (UCHAR *)"PPPoE Client", &ip_0, 0, &pool_0, poin… in thread_0_entry()
241 if (status) in thread_0_entry()
248 status = nx_pppoe_client_session_connect(&pppoe_client, NX_WAIT_FOREVER); in thread_0_entry()
249 if (status) in thread_0_entry()
256 …status = nx_ip_interface_status_check(&ip_0, 1, NX_IP_ADDRESS_RESOLVED, &ip_status, NX_WAIT_FOREVE… in thread_0_entry()
257 if (status) in thread_0_entry()