Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4694 → Rev 4695

/branches/network/uspace/srv/net/il/arp/arp_remote.c
69,6 → 69,16
return ( int ) async_req_1_0( arp_phone, NET_ARP_CLEAR_DEVICE, ( ipcarg_t ) device_id );
}
 
int arp_clear_address_req( int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address ){
aid_t message_id;
ipcarg_t result;
 
message_id = async_send_2( arp_phone, NET_ARP_CLEAR_ADDRESS, ( ipcarg_t ) device_id, protocol, NULL );
measured_strings_send( arp_phone, address, 1 );
async_wait_for( message_id, & result );
return ( int ) result;
}
 
int arp_clean_cache_req( int arp_phone ){
return ( int ) async_req_0_0( arp_phone, NET_ARP_CLEAN_CACHE );
}