Changes in uspace/srv/net/il/arp/arp.h [e9caf47:4eca056] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/il/arp/arp.h
re9caf47 r4eca056 55 55 typedef struct arp_device arp_device_t; 56 56 57 /** Type definition of the ARP device specific data pointer.58 * @see arp_device59 */60 typedef arp_device_t *arp_device_ref;61 62 57 /** Type definition of the ARP global data. 63 58 * @see arp_globals … … 69 64 */ 70 65 typedef struct arp_proto arp_proto_t; 71 72 /** Type definition of the ARP protocol specific data pointer.73 * @see arp_proto74 */75 typedef arp_proto_t *arp_proto_ref;76 66 77 67 /** ARP address map. … … 99 89 struct arp_device { 100 90 /** Actual device hardware address. */ 101 measured_string_ refaddr;91 measured_string_t * addr; 102 92 /** Actual device hardware address data. */ 103 93 char *addr_data; 104 94 /** Broadcast device hardware address. */ 105 measured_string_ refbroadcast_addr;95 measured_string_t * broadcast_addr; 106 96 /** Broadcast device hardware address data. */ 107 97 char *broadcast_data; … … 145 135 struct arp_proto { 146 136 /** Actual device protocol address. */ 147 measured_string_ refaddr;137 measured_string_t *addr; 148 138 /** Actual device protocol address data. */ 149 139 char *addr_data;
Note:
See TracChangeset
for help on using the changeset viewer.