Changeset bdae198 in mainline for uspace/srv/net/ethip/ethip.h
- Timestamp:
- 2013-08-04T12:01:10Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ea509069
- Parents:
- b08879c2 (diff), d856110 (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/ethip/ethip.h
rb08879c2 rbdae198 46 46 47 47 typedef struct { 48 link_t addr_list;48 link_t link; 49 49 inet_addr_t addr; 50 50 } ethip_link_addr_t; 51 51 52 52 typedef struct ethip_nic { 53 link_t nic_list;53 link_t link; 54 54 service_id_t svc_id; 55 55 char *svc_name; … … 61 61 /** MAC address */ 62 62 addr48_t mac_addr; 63 /** List of IP addresses configured on this link */ 64 list_t addr_list; /* of ethip_link_addr_t */ 63 64 /** 65 * List of IP addresses configured on this link 66 * (of the type ethip_link_addr_t) 67 */ 68 list_t addr_list; 65 69 } ethip_nic_t; 66 70
Note:
See TracChangeset
for help on using the changeset viewer.