Changes in uspace/lib/net/il/arp_remote.c [79ae36dd:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/il/arp_remote.c
r79ae36dd rffa2c8ef 40 40 41 41 #include <async.h> 42 #include <async_obsolete.h>43 42 #include <errno.h> 44 43 #include <ipc/services.h> … … 69 68 int arp_clean_cache_req(int arp_phone) 70 69 { 71 return (int) async_ obsolete_req_0_0(arp_phone, NET_ARP_CLEAN_CACHE);70 return (int) async_req_0_0(arp_phone, NET_ARP_CLEAN_CACHE); 72 71 } 73 72 … … 88 87 sysarg_t result; 89 88 90 message_id = async_ obsolete_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS,89 message_id = async_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS, 91 90 (sysarg_t) device_id, protocol, NULL); 92 91 measured_strings_send(arp_phone, address, 1); … … 105 104 int arp_clear_device_req(int arp_phone, device_id_t device_id) 106 105 { 107 return (int) async_ obsolete_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE,106 return (int) async_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE, 108 107 (sysarg_t) device_id); 109 108 } … … 138 137 sysarg_t result; 139 138 140 message_id = async_ obsolete_send_3(arp_phone, NET_ARP_DEVICE,139 message_id = async_send_3(arp_phone, NET_ARP_DEVICE, 141 140 (sysarg_t) device_id, protocol, netif, NULL); 142 141 measured_strings_send(arp_phone, address, 1);
Note:
See TracChangeset
for help on using the changeset viewer.