Changes in uspace/srv/net/include/arp_interface.h [aadf01e:21580dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/include/arp_interface.h
raadf01e r21580dd 67 67 * @returns Other error codes as defined for the nil_get_broadcast_addr() function. 68 68 */ 69 int arp_device_req(int arp_phone, device_id_t device_id, services_t protocol, services_t netif, measured_string_ref address);69 int arp_device_req( int arp_phone, device_id_t device_id, services_t protocol, services_t netif, measured_string_ref address ); 70 70 71 71 /** Translates the given protocol address to the network interface address. … … 83 83 * @returns ENOENT if the mapping is not found. 84 84 */ 85 int arp_translate_req(int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address, measured_string_ref * translation, char ** data);85 int arp_translate_req( int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address, measured_string_ref * translation, char ** data ); 86 86 87 87 /** Clears the device cache. … … 91 91 * @returns ENOENT if the device is not found. 92 92 */ 93 int arp_clear_device_req(int arp_phone, device_id_t device_id);93 int arp_clear_device_req( int arp_phone, device_id_t device_id ); 94 94 95 95 /** Clears the given protocol address from the cache. … … 101 101 * @returns ENOENT if the mapping is not found. 102 102 */ 103 int arp_clear_address_req(int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address);103 int arp_clear_address_req( int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address ); 104 104 105 105 /** Cleans the cache. … … 107 107 * @returns EOK on success. 108 108 */ 109 int arp_clean_cache_req(int arp_phone);109 int arp_clean_cache_req( int arp_phone ); 110 110 111 111 /** Connects to the ARP module. … … 114 114 * @returns 0 if called by the bundle module. 115 115 */ 116 int arp_connect_module(services_t service);116 int arp_connect_module( services_t service ); 117 117 118 118 /** Returns the ARP task identifier. … … 120 120 * @returns 0 if called by the remote module. 121 121 */ 122 task_id_t arp_task_get_id(void);122 task_id_t arp_task_get_id( void ); 123 123 124 124 /*@}*/
Note:
See TracChangeset
for help on using the changeset viewer.