Ignore:
Timestamp:
2010-03-15T19:35:25Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6092b56e
Parents:
92307f1 (diff), 4684368 (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.
Message:

Merge from bzr://bzr.helenos.org/head.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/include/arp_interface.h

    r92307f1 r858fc90  
    6767 *  @returns Other error codes as defined for the nil_get_broadcast_addr() function.
    6868 */
    69 int     arp_device_req( int arp_phone, device_id_t device_id, services_t protocol, services_t netif, measured_string_ref address );
     69int arp_device_req(int arp_phone, device_id_t device_id, services_t protocol, services_t netif, measured_string_ref address);
    7070
    7171/** Translates the given protocol address to the network interface address.
     
    8383 *  @returns ENOENT if the mapping is not found.
    8484 */
    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 );
     85int arp_translate_req(int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address, measured_string_ref * translation, char ** data);
    8686
    8787/** Clears the device cache.
     
    9191 *  @returns ENOENT if the device is not found.
    9292 */
    93 int     arp_clear_device_req( int arp_phone, device_id_t device_id );
     93int arp_clear_device_req(int arp_phone, device_id_t device_id);
    9494
    9595/** Clears the given protocol address from the cache.
     
    101101 *  @returns ENOENT if the mapping is not found.
    102102 */
    103 int     arp_clear_address_req( int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address );
     103int arp_clear_address_req(int arp_phone, device_id_t device_id, services_t protocol, measured_string_ref address);
    104104
    105105/** Cleans the cache.
     
    107107 *  @returns EOK on success.
    108108 */
    109 int     arp_clean_cache_req( int arp_phone );
     109int arp_clean_cache_req(int arp_phone);
    110110
    111111/** Connects to the ARP module.
     
    114114 *  @returns 0 if called by the bundle module.
    115115 */
    116 int     arp_connect_module( services_t service );
     116int arp_connect_module(services_t service);
    117117
    118118/** Returns the ARP task identifier.
     
    120120 *  @returns 0 if called by the remote module.
    121121 */
    122 task_id_t       arp_task_get_id( void );
     122task_id_t arp_task_get_id(void);
    123123
    124124/*@}*/
Note: See TracChangeset for help on using the changeset viewer.