Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/nil/eth/eth.h

    r4eca056 r6067284  
    5454typedef struct eth_device eth_device_t;
    5555
     56/** Type definition of the Ethernet device specific data pointer.
     57 * @see eth_device
     58 */
     59typedef eth_device_t *eth_device_ref;
     60
    5661/** Type definition of the Ethernet protocol specific data.
    5762 * @see eth_proto
    5863 */
    5964typedef struct eth_proto eth_proto_t;
     65
     66/** Type definition of the Ethernet protocol specific data pointer.
     67 * @see eth_proto
     68 */
     69typedef eth_proto_t *eth_proto_ref;
    6070
    6171/** Ethernet device map.
     
    90100       
    91101        /** Actual device hardware address. */
    92         measured_string_t *addr;
     102        measured_string_ref addr;
    93103        /** Actual device hardware address data. */
    94104        char *addr_data;
     
    123133       
    124134        /** Broadcast device hardware address. */
    125         measured_string_t *broadcast_addr;
     135        measured_string_ref broadcast_addr;
    126136};
    127137
Note: See TracChangeset for help on using the changeset viewer.