Changeset cf2af94 in mainline for uspace/lib/net/il/arp_remote.c
- Timestamp:
- 2011-02-09T11:46:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cb15135a
- Parents:
- a49c4002 (diff), 0b37882 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/net/il/arp_remote.c ¶
ra49c4002 rcf2af94 41 41 #include <async.h> 42 42 #include <errno.h> 43 #include <ipc/ipc.h>44 43 #include <ipc/services.h> 45 44 #include <ipc/arp.h> … … 86 85 { 87 86 aid_t message_id; 88 ipcarg_t result;87 sysarg_t result; 89 88 90 89 message_id = async_send_2(arp_phone, NET_ARP_CLEAR_ADDRESS, 91 ( ipcarg_t) device_id, protocol, NULL);90 (sysarg_t) device_id, protocol, NULL); 92 91 measured_strings_send(arp_phone, address, 1); 93 92 async_wait_for(message_id, &result); … … 106 105 { 107 106 return (int) async_req_1_0(arp_phone, NET_ARP_CLEAR_DEVICE, 108 ( ipcarg_t) device_id);107 (sysarg_t) device_id); 109 108 } 110 109 … … 136 135 { 137 136 aid_t message_id; 138 ipcarg_t result;137 sysarg_t result; 139 138 140 139 message_id = async_send_3(arp_phone, NET_ARP_DEVICE, 141 ( ipcarg_t) device_id, protocol, netif, NULL);140 (sysarg_t) device_id, protocol, netif, NULL); 142 141 measured_strings_send(arp_phone, address, 1); 143 142 async_wait_for(message_id, &result); … … 165 164 int 166 165 arp_translate_req(int arp_phone, device_id_t device_id, services_t protocol, 167 measured_string_t *address, measured_string_t **translation, char**data)166 measured_string_t *address, measured_string_t **translation, uint8_t **data) 168 167 { 169 168 return generic_translate_req(arp_phone, NET_ARP_TRANSLATE, device_id,
Note:
See TracChangeset
for help on using the changeset viewer.