Searched refs:auto_ip_ptr (Results 1 – 3 of 3) sorted by relevance
/NetX-Duo-v6.3.0/addons/auto_ip/ |
D | nx_auto_ip.c | 98 UINT _nxe_auto_ip_create(NX_AUTO_IP *auto_ip_ptr, CHAR *name, NX_IP *ip_ptr, VOID *stack_ptr, ULON… in _nxe_auto_ip_create() argument 106 (auto_ip_ptr == NX_NULL) || (auto_ip_ptr -> nx_auto_ip_id == NX_AUTO_IP_ID)) in _nxe_auto_ip_create() 113 status = _nx_auto_ip_create(auto_ip_ptr, name, ip_ptr, stack_ptr, stack_size, priority); in _nxe_auto_ip_create() 167 UINT _nx_auto_ip_create(NX_AUTO_IP *auto_ip_ptr, CHAR *name, NX_IP *ip_ptr, VOID *stack_ptr, ULONG… in _nx_auto_ip_create() argument 174 memset((void *) auto_ip_ptr, 0, sizeof(NX_AUTO_IP)); in _nx_auto_ip_create() 177 …status = tx_event_flags_create(&(auto_ip_ptr -> nx_auto_ip_conflict_event), "NetX AutoIP Collisio… in _nx_auto_ip_create() 188 …status = tx_thread_create(&(auto_ip_ptr -> nx_auto_ip_thread), "NetX AutoIP", _nx_auto_ip_thread_… in _nx_auto_ip_create() 196 tx_event_flags_delete(&(auto_ip_ptr -> nx_auto_ip_conflict_event)); in _nx_auto_ip_create() 203 auto_ip_ptr -> nx_auto_ip_ip_ptr = ip_ptr; in _nx_auto_ip_create() 206 auto_ip_ptr -> nx_ip_interface_index = 0; in _nx_auto_ip_create() [all …]
|
D | nx_auto_ip.h | 185 UINT nx_auto_ip_create(NX_AUTO_IP *auto_ip_ptr, CHAR *name, NX_IP *ip_ptr, VOID *stack_ptr, … 186 UINT nx_auto_ip_get_address(NX_AUTO_IP *auto_ip_ptr, ULONG *local_ip_address); 187 UINT nx_auto_ip_set_interface(NX_AUTO_IP *auto_ip_ptr, UINT interface_index); 188 UINT nx_auto_ip_start(NX_AUTO_IP *auto_ip_ptr, ULONG starting_local_address); 189 UINT nx_auto_ip_stop(NX_AUTO_IP *auto_ip_ptr); 190 UINT nx_auto_ip_delete(NX_AUTO_IP *auto_ip_ptr); 197 UINT _nxe_auto_ip_create(NX_AUTO_IP *auto_ip_ptr, CHAR *name, NX_IP *ip_ptr, VOID *stack_ptr… 198 UINT _nx_auto_ip_create(NX_AUTO_IP *auto_ip_ptr, CHAR *name, NX_IP *ip_ptr, VOID *stack_ptr,… 199 UINT _nxe_auto_ip_get_address(NX_AUTO_IP *auto_ip_ptr, ULONG *local_ip_address); 200 UINT _nx_auto_ip_get_address(NX_AUTO_IP *auto_ip_ptr, ULONG *local_ip_address); [all …]
|
/NetX-Duo-v6.3.0/samples/ |
D | demo_netx_auto_ip.c | 303 NX_AUTO_IP *auto_ip_ptr; in ip_address_changed() local 307 auto_ip_ptr = (NX_AUTO_IP *) auto_ip_address; in ip_address_changed() 318 nx_auto_ip_get_address(auto_ip_ptr, &ip_address); in ip_address_changed() 321 nx_auto_ip_start(auto_ip_ptr, ip_address); in ip_address_changed() 329 nx_auto_ip_stop(auto_ip_ptr); in ip_address_changed()
|