Changes in uspace/srv/net/nil/eth/eth.h [6067284:4eca056] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/eth/eth.h
r6067284 r4eca056 54 54 typedef struct eth_device eth_device_t; 55 55 56 /** Type definition of the Ethernet device specific data pointer.57 * @see eth_device58 */59 typedef eth_device_t *eth_device_ref;60 61 56 /** Type definition of the Ethernet protocol specific data. 62 57 * @see eth_proto 63 58 */ 64 59 typedef struct eth_proto eth_proto_t; 65 66 /** Type definition of the Ethernet protocol specific data pointer.67 * @see eth_proto68 */69 typedef eth_proto_t *eth_proto_ref;70 60 71 61 /** Ethernet device map. … … 100 90 101 91 /** Actual device hardware address. */ 102 measured_string_ refaddr;92 measured_string_t *addr; 103 93 /** Actual device hardware address data. */ 104 94 char *addr_data; … … 133 123 134 124 /** Broadcast device hardware address. */ 135 measured_string_ refbroadcast_addr;125 measured_string_t *broadcast_addr; 136 126 }; 137 127
Note:
See TracChangeset
for help on using the changeset viewer.