Changeset 71b00dcc in mainline for uspace/srv/net/include/netdb.h
- Timestamp:
- 2010-03-07T22:51:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ab6c3
- Parents:
- b5cbff4 (diff), 31c80a5 (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/include/netdb.h
rb5cbff4 r71b00dcc 46 46 /** Official host name. 47 47 */ 48 char * 48 char * h_name; 49 49 /** Alias list. 50 50 */ … … 52 52 /** Host address type. 53 53 */ 54 int 54 int h_addrtype; 55 55 /** Address length. 56 56 */ 57 int 57 int h_length; 58 58 /** List of addresses from name server. 59 59 */ … … 61 61 /** Address, for backward compatiblity. 62 62 */ 63 #define h_addr h_addr_list[ 0]63 #define h_addr h_addr_list[0] 64 64 }; 65 65 … … 96 96 * @returns Host entry information. 97 97 */ 98 //struct hostent * gethostbyaddr( const void * address, int len, int type);98 //struct hostent * gethostbyaddr(const void * address, int len, int type); 99 99 100 100 /** Returns host entry by the host name. … … 102 102 * @returns Host entry information. 103 103 */ 104 //struct hostent * gethostbyname( const char * name);104 //struct hostent * gethostbyname(const char * name); 105 105 106 106 #endif
Note:
See TracChangeset
for help on using the changeset viewer.