Changeset b0f00a9 in mainline for uspace/srv/net/il/arp/arp.h
- Timestamp:
- 2011-11-06T22:21:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 898e847
- Parents:
- 2bdf8313 (diff), 7b5f4c9 (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
-
uspace/srv/net/il/arp/arp.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp.h
r2bdf8313 rb0f00a9 38 38 #define NET_ARP_H_ 39 39 40 #include <async.h> 40 41 #include <fibril_synch.h> 41 42 #include <ipc/services.h> … … 91 92 struct arp_device { 92 93 /** Actual device hardware address. */ 93 measured_string_t *addr;94 /** Actual device hardware address data. */95 uint8_t *addr_data;94 uint8_t addr[NIC_MAX_ADDRESS_LENGTH]; 95 /** Actual device hardware address length. */ 96 size_t addr_len; 96 97 /** Broadcast device hardware address. */ 97 measured_string_t *broadcast_addr;98 /** Broadcast device hardware address data. */99 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; 100 101 /** Device identifier. */ 101 device_id_t device_id;102 nic_device_id_t device_id; 102 103 /** Hardware type. */ 103 104 hw_type_t hardware; 104 105 /** Packet dimension. */ 105 106 packet_dimension_t packet_dimension; 106 /** Device module phone. */107 int phone;107 /** Device module session. */ 108 async_sess_t *sess; 108 109 109 110 /** … … 122 123 arp_cache_t cache; 123 124 124 /** Networking module phone. */ 125 int net_phone; 125 /** Networking module session. */ 126 async_sess_t *net_sess; 127 126 128 /** Safety lock. */ 127 129 fibril_mutex_t lock;
Note:
See TracChangeset
for help on using the changeset viewer.
