Ignore:
File:
1 edited

Legend:

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

    r797b704 rfc3dba14  
    9696        measured_string_t *addr;
    9797        /** Actual device hardware address data. */
    98         uint8_t *addr_data;
     98        char *addr_data;
    9999        /** Broadcast device hardware address. */
    100100        measured_string_t *broadcast_addr;
    101101        /** Broadcast device hardware address data. */
    102         uint8_t *broadcast_data;
     102        char *broadcast_data;
    103103        /** Device identifier. */
    104104        device_id_t device_id;
     
    125125        arp_cache_t cache;
    126126       
     127        /**
     128         * The client connection processing function.
     129         * The module skeleton propagates its own one.
     130         */
     131        async_client_conn_t client_connection;
     132       
    127133        /** Networking module phone. */
    128134        int net_phone;
     
    136142        measured_string_t *addr;
    137143        /** Actual device protocol address data. */
    138         uint8_t *addr_data;
     144        char *addr_data;
    139145        /** Address map. */
    140146        arp_addr_t addresses;
     
    148154         * Hardware address for the translation. NULL denotes an incomplete
    149155         * record with possible waiters.
    150          */
     156         */ 
    151157        measured_string_t *hw_addr;
    152158        /** Condition variable used for waiting for completion of the record. */
Note: See TracChangeset for help on using the changeset viewer.