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