Changes in uspace/srv/net/il/arp/arp.h [609243f4:6b82009] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp.h
r609243f4 r6b82009 92 92 struct arp_device { 93 93 /** Actual device hardware address. */ 94 uint8_t addr[NIC_MAX_ADDRESS_LENGTH];95 /** Actual device hardware address length. */96 size_t addr_len;94 measured_string_t *addr; 95 /** Actual device hardware address data. */ 96 uint8_t *addr_data; 97 97 /** Broadcast device hardware address. */ 98 uint8_t broadcast_addr[NIC_MAX_ADDRESS_LENGTH];99 /** Broadcast device hardware address length. */100 size_t broadcast_addr_len;98 measured_string_t *broadcast_addr; 99 /** Broadcast device hardware address data. */ 100 uint8_t *broadcast_data; 101 101 /** Device identifier. */ 102 nic_device_id_t device_id;102 device_id_t device_id; 103 103 /** Hardware type. */ 104 104 hw_type_t hardware;
Note:
See TracChangeset
for help on using the changeset viewer.