Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/arp/arp.h

    raadf01e r91478aa  
    8080 *  @see device.h
    8181 */
    82 DEVICE_MAP_DECLARE(arp_cache, arp_device_t)
     82DEVICE_MAP_DECLARE( arp_cache, arp_device_t )
    8383
    8484/** ARP protocol map.
     
    8686 *  @see int_map.h
    8787 */
    88 INT_MAP_DECLARE(arp_protos, arp_proto_t)
     88INT_MAP_DECLARE( arp_protos, arp_proto_t )
    8989
    9090/** ARP address map.
     
    9292 *  @see generic_char_map.h
    9393 */
    94 GENERIC_CHAR_MAP_DECLARE(arp_addr, measured_string_t)
     94GENERIC_CHAR_MAP_DECLARE( arp_addr, measured_string_t )
    9595
    9696/** ARP device specific data.
     
    9999        /** Device identifier.
    100100         */
    101         device_id_t device_id;
     101        device_id_t                     device_id;
    102102        /** Hardware type.
    103103         */
    104         hw_type_t hardware;
     104        hw_type_t                       hardware;
    105105        /** Packet dimension.
    106106         */
    107         packet_dimension_t packet_dimension;
     107        packet_dimension_t      packet_dimension;
    108108        /** Actual device hardware address.
    109109         */
    110         measured_string_ref addr;
     110        measured_string_ref     addr;
    111111        /** Actual device hardware address data.
    112112         */
    113         char * addr_data;
     113        char *                          addr_data;
    114114        /** Broadcast device hardware address.
    115115         */
    116         measured_string_ref broadcast_addr;
     116        measured_string_ref     broadcast_addr;
    117117        /** Broadcast device hardware address data.
    118118         */
    119         char * broadcast_data;
     119        char *                          broadcast_data;
    120120        /** Device module service.
    121121         */
    122         services_t service;
     122        services_t                      service;
    123123        /** Device module phone.
    124124         */
    125         int phone;
     125        int                                     phone;
    126126        /** Protocol map.
    127127         *  Address map for each protocol.
    128128         */
    129         arp_protos_t protos;
     129        arp_protos_t            protos;
    130130};
    131131
     
    135135        /** Protocol service.
    136136         */
    137         services_t service;
     137        services_t                      service;
    138138        /** Actual device protocol address.
    139139         */
    140         measured_string_ref addr;
     140        measured_string_ref     addr;
    141141        /** Actual device protocol address data.
    142142         */
    143         char * addr_data;
     143        char *                          addr_data;
    144144        /** Address map.
    145145         */
    146         arp_addr_t addresses;
     146        arp_addr_t                      addresses;
    147147};
    148148
     
    152152        /** Networking module phone.
    153153         */
    154         int net_phone;
     154        int                     net_phone;
    155155        /** Safety lock.
    156156         */
    157         fibril_rwlock_t lock;
     157        fibril_rwlock_t         lock;
    158158        /** ARP address cache.
    159159         */
    160         arp_cache_t cache;
     160        arp_cache_t     cache;
    161161        /** The client connection processing function.
    162162         *  The module skeleton propagates its own one.
Note: See TracChangeset for help on using the changeset viewer.