Changes in uspace/srv/net/il/arp/arp.h [6b82009:609243f4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp.h
r6b82009 r609243f4 92 92 struct arp_device { 93 93 /** Actual device hardware address. */ 94 measured_string_t *addr;95 /** Actual device hardware address data. */96 uint8_t *addr_data;94 uint8_t addr[NIC_MAX_ADDRESS_LENGTH]; 95 /** Actual device hardware address length. */ 96 size_t addr_len; 97 97 /** Broadcast device hardware address. */ 98 measured_string_t *broadcast_addr;99 /** Broadcast device hardware address data. */100 uint8_t *broadcast_data;98 uint8_t broadcast_addr[NIC_MAX_ADDRESS_LENGTH]; 99 /** Broadcast device hardware address length. */ 100 size_t broadcast_addr_len; 101 101 /** Device identifier. */ 102 device_id_t device_id;102 nic_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.