Changes in uspace/srv/net/il/arp/arp.h [ffa2c8ef:fc3dba14] in mainline
- File:
-
- 1 edited
-
uspace/srv/net/il/arp/arp.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp.h
rffa2c8ef rfc3dba14 39 39 40 40 #include <fibril_synch.h> 41 42 #include <ipc/ipc.h> 41 43 #include <ipc/services.h> 44 42 45 #include <net/device.h> 43 46 #include <net/packet.h> … … 93 96 measured_string_t *addr; 94 97 /** Actual device hardware address data. */ 95 uint8_t*addr_data;98 char *addr_data; 96 99 /** Broadcast device hardware address. */ 97 100 measured_string_t *broadcast_addr; 98 101 /** Broadcast device hardware address data. */ 99 uint8_t*broadcast_data;102 char *broadcast_data; 100 103 /** Device identifier. */ 101 104 device_id_t device_id; … … 122 125 arp_cache_t cache; 123 126 127 /** 128 * The client connection processing function. 129 * The module skeleton propagates its own one. 130 */ 131 async_client_conn_t client_connection; 132 124 133 /** Networking module phone. */ 125 134 int net_phone; … … 133 142 measured_string_t *addr; 134 143 /** Actual device protocol address data. */ 135 uint8_t*addr_data;144 char *addr_data; 136 145 /** Address map. */ 137 146 arp_addr_t addresses; … … 145 154 * Hardware address for the translation. NULL denotes an incomplete 146 155 * record with possible waiters. 147 */ 156 */ 148 157 measured_string_t *hw_addr; 149 158 /** Condition variable used for waiting for completion of the record. */
Note:
See TracChangeset
for help on using the changeset viewer.
