Rev 4558 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4558 | Rev 4695 | ||
---|---|---|---|
Line 67... | Line 67... | ||
67 | 67 | ||
68 | int arp_clear_device_req( int arp_phone, device_id_t device_id ){ |
68 | int arp_clear_device_req( int arp_phone, device_id_t device_id ){ |
69 | return ( int ) async_req_1_0( arp_phone, NET_ARP_CLEAR_DEVICE, ( ipcarg_t ) device_id ); |
69 | return ( int ) async_req_1_0( arp_phone, NET_ARP_CLEAR_DEVICE, ( ipcarg_t ) device_id ); |
70 | } |
70 | } |
71 | 71 | ||
- | 72 | int arp_clear_address_req( int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address ){ |
|
- | 73 | aid_t message_id; |
|
- | 74 | ipcarg_t result; |
|
- | 75 | ||
- | 76 | message_id = async_send_2( arp_phone, NET_ARP_CLEAR_ADDRESS, ( ipcarg_t ) device_id, protocol, NULL ); |
|
- | 77 | measured_strings_send( arp_phone, address, 1 ); |
|
- | 78 | async_wait_for( message_id, & result ); |
|
- | 79 | return ( int ) result; |
|
- | 80 | } |
|
- | 81 | ||
72 | int arp_clean_cache_req( int arp_phone ){ |
82 | int arp_clean_cache_req( int arp_phone ){ |
73 | return ( int ) async_req_0_0( arp_phone, NET_ARP_CLEAN_CACHE ); |
83 | return ( int ) async_req_0_0( arp_phone, NET_ARP_CLEAN_CACHE ); |
74 | } |
84 | } |
75 | 85 | ||
76 | int arp_connect_module( services_t service ){ |
86 | int arp_connect_module( services_t service ){ |