Changeset 7715994 in mainline for uspace/srv/net/include/in.h


Ignore:
Timestamp:
2010-03-13T12:17:02Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ba20a6b
Parents:
d0febca (diff), 2070570 (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 mainline changes.

File:
1 edited

Legend:

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

    rd0febca r7715994  
    4545/** INET string address maximum length.
    4646 */
    47 #define INET_ADDRSTRLEN         ( 4 * 3 + 3 + 1 )
     47#define INET_ADDRSTRLEN         (4 * 3 + 3 + 1)
    4848
    4949/** Type definition of the INET address.
     
    6262        /** 4 byte IP address.
    6363         */
    64         uint32_t                s_addr;
     64        uint32_t s_addr;
    6565};
    6666
     
    7272         *  Should be AF_INET.
    7373         */
    74         uint16_t                sin_family;
     74        uint16_t sin_family;
    7575        /** Port number.
    7676         */
    77         uint16_t                sin_port;
     77        uint16_t sin_port;
    7878        /** Internet address.
    7979         */
    80         struct in_addr  sin_addr;
     80        struct in_addr sin_addr;
    8181        /** Padding to meet the sockaddr size.
    8282         */
    83         uint8_t                 sin_zero[ 8 ];
     83        uint8_t sin_zero[8];
    8484};
    8585
Note: See TracChangeset for help on using the changeset viewer.