Changeset 858fc90 in mainline for uspace/srv/net/include/netdb.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/netdb.h

    r92307f1 r858fc90  
    4646        /** Official host name.
    4747         */
    48         char *  h_name;
     48        char * h_name;
    4949        /** Alias list.
    5050         */
     
    5252        /** Host address type.
    5353         */
    54         int             h_addrtype;
     54        int h_addrtype;
    5555        /** Address length.
    5656         */
    57         int             h_length;
     57        int h_length;
    5858        /** List of addresses from name server.
    5959         */
     
    6161        /** Address, for backward compatiblity.
    6262         */
    63 #define h_addr  h_addr_list[ 0 ]
     63#define h_addr  h_addr_list[0]
    6464};
    6565
     
    9696 *  @returns Host entry information.
    9797 */
    98 //struct hostent *      gethostbyaddr( const void * address, int len, int type );
     98//struct hostent *      gethostbyaddr(const void * address, int len, int type);
    9999
    100100/** Returns host entry by the host name.
     
    102102 *  @returns Host entry information.
    103103 */
    104 //struct hostent *      gethostbyname( const char * name );
     104//struct hostent *      gethostbyname(const char * name);
    105105
    106106#endif
Note: See TracChangeset for help on using the changeset viewer.