Ignore:
File:
1 edited

Legend:

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

    r4eca056 re9caf47  
    5555typedef struct arp_device arp_device_t;
    5656
     57/** Type definition of the ARP device specific data pointer.
     58 * @see arp_device
     59 */
     60typedef arp_device_t *arp_device_ref;
     61
    5762/** Type definition of the ARP global data.
    5863 * @see arp_globals
     
    6469 */
    6570typedef struct arp_proto arp_proto_t;
     71
     72/** Type definition of the ARP protocol specific data pointer.
     73 * @see arp_proto
     74 */
     75typedef arp_proto_t *arp_proto_ref;
    6676
    6777/** ARP address map.
     
    8999struct arp_device {
    90100        /** Actual device hardware address. */
    91         measured_string_t * addr;
     101        measured_string_ref addr;
    92102        /** Actual device hardware address data. */
    93103        char *addr_data;
    94104        /** Broadcast device hardware address. */
    95         measured_string_t * broadcast_addr;
     105        measured_string_ref broadcast_addr;
    96106        /** Broadcast device hardware address data. */
    97107        char *broadcast_data;
     
    135145struct arp_proto {
    136146        /** Actual device protocol address. */
    137         measured_string_t *addr;
     147        measured_string_ref addr;
    138148        /** Actual device protocol address data. */
    139149        char *addr_data;
Note: See TracChangeset for help on using the changeset viewer.