Changeset 858fc90 in mainline for uspace/srv/net/include/in6.h


Ignore:
Timestamp:
2010-03-15T19:35:25Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6092b56e
Parents:
92307f1 (diff), 4684368 (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 from bzr://bzr.helenos.org/head.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/include/in6.h

    r92307f1 r858fc90  
    4545/** INET6 string address maximum length.
    4646 */
    47 #define INET6_ADDRSTRLEN        ( 8 * 4 + 7 + 1 )
     47#define INET6_ADDRSTRLEN        (8 * 4 + 7 + 1)
    4848
    4949/** Type definition of the INET6 address.
     
    6262        /** 16 byte IPv6 address.
    6363         */
    64         unsigned char   s6_addr[ 16 ];
     64        unsigned char s6_addr[16];
    6565};
    6666
     
    7272         *  Should be AF_INET6.
    7373         */
    74         uint16_t                sin6_family;
     74        uint16_t sin6_family;
    7575        /** Port number.
    7676         */
    77         uint16_t                sin6_port;
     77        uint16_t sin6_port;
    7878        /** IPv6 flow information.
    7979         */
    80         uint32_t                sin6_flowinfo;
     80        uint32_t sin6_flowinfo;
    8181        /** IPv6 address.
    8282         */
    83         struct in6_addr sin6_addr;
     83        struct in6_addr sin6_addr;
    8484        /** Scope identifier.
    8585         */
    86         uint32_t                sin6_scope_id;
     86        uint32_t sin6_scope_id;
    8787};
    8888
Note: See TracChangeset for help on using the changeset viewer.