Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef rfc3dba14  
    3939
    4040#include <fibril_synch.h>
     41
     42#include <ipc/ipc.h>
    4143#include <ipc/services.h>
     44
    4245#include <net/device.h>
    4346#include <net/packet.h>
     
    9396        measured_string_t *addr;
    9497        /** Actual device hardware address data. */
    95         uint8_t *addr_data;
     98        char *addr_data;
    9699        /** Broadcast device hardware address. */
    97100        measured_string_t *broadcast_addr;
    98101        /** Broadcast device hardware address data. */
    99         uint8_t *broadcast_data;
     102        char *broadcast_data;
    100103        /** Device identifier. */
    101104        device_id_t device_id;
     
    122125        arp_cache_t cache;
    123126       
     127        /**
     128         * The client connection processing function.
     129         * The module skeleton propagates its own one.
     130         */
     131        async_client_conn_t client_connection;
     132       
    124133        /** Networking module phone. */
    125134        int net_phone;
     
    133142        measured_string_t *addr;
    134143        /** Actual device protocol address data. */
    135         uint8_t *addr_data;
     144        char *addr_data;
    136145        /** Address map. */
    137146        arp_addr_t addresses;
     
    145154         * Hardware address for the translation. NULL denotes an incomplete
    146155         * record with possible waiters.
    147          */
     156         */ 
    148157        measured_string_t *hw_addr;
    149158        /** Condition variable used for waiting for completion of the record. */
Note: See TracChangeset for help on using the changeset viewer.