Changeset f94b24c8 in mainline for uspace/srv/net/ethip/ethip.h


Ignore:
Timestamp:
2013-07-29T13:54:20Z (11 years ago)
Author:
Manuele Conti <conti.ma@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1c95da
Parents:
09d6695 (diff), ccdc63e (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.
Message:

Merge with mainline branch.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/ethip/ethip.h

    r09d6695 rf94b24c8  
    4646
    4747typedef struct {
    48         link_t addr_list;
     48        link_t link;
    4949        inet_addr_t addr;
    5050} ethip_link_addr_t;
    5151
    5252typedef struct ethip_nic {
    53         link_t nic_list;
     53        link_t link;
    5454        service_id_t svc_id;
    5555        char *svc_name;
     
    6161        /** MAC address */
    6262        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;
    6569} ethip_nic_t;
    6670
Note: See TracChangeset for help on using the changeset viewer.