Changes in uspace/srv/net/ethip/ethip.h [b4edc96:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/ethip/ethip.h
rb4edc96 ra35b458 1 1 /* 2 * Copyright (c) 20 21Jiri Svoboda2 * Copyright (c) 2012 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 40 40 #include <adt/list.h> 41 41 #include <async.h> 42 #include <inet/iplink_srv.h> 42 43 #include <inet/addr.h> 43 #include <inet/eth_addr.h>44 #include <inet/iplink_srv.h>45 44 #include <loc.h> 46 45 #include <stddef.h> … … 62 61 63 62 /** MAC address */ 64 eth_addr_t mac_addr;63 addr48_t mac_addr; 65 64 66 65 /** … … 74 73 typedef struct { 75 74 /** Destination Address */ 76 eth_addr_t dest;75 addr48_t dest; 77 76 /** Source Address */ 78 eth_addr_t src;77 addr48_t src; 79 78 /** Ethertype or Length */ 80 79 uint16_t etype_len; … … 101 100 arp_opcode_t opcode; 102 101 /** Sender hardware address */ 103 eth_addr_t sender_hw_addr;102 addr48_t sender_hw_addr; 104 103 /** Sender protocol address */ 105 104 addr32_t sender_proto_addr; 106 105 /** Target hardware address */ 107 eth_addr_t target_hw_addr;106 addr48_t target_hw_addr; 108 107 /** Target protocol address */ 109 108 addr32_t target_proto_addr; … … 114 113 link_t atrans_list; 115 114 addr32_t ip_addr; 116 eth_addr_t mac_addr;115 addr48_t mac_addr; 117 116 } ethip_atrans_t; 118 117
Note:
See TracChangeset
for help on using the changeset viewer.