Changes in uspace/srv/net/include/netdb.h [21580dd:aadf01e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/include/netdb.h
r21580dd raadf01e 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.