Changeset fdbc3ff in mainline for uspace/srv/net/nil/eth/eth.h
- Timestamp:
- 2010-11-19T23:50:06Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46d4d9f
- Parents:
- b4c9c61 (diff), a9c6b966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/eth/eth.h
rb4c9c61 rfdbc3ff 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.