Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4755 → Rev 4756

/branches/network/uspace/srv/net/include/netdb.h
90,19 → 90,18
/*@}*/
 
/** Returns host entry by the host address.
* \todo address type?
* @param address The host address. Input parameter.
* @param len The address length. Input parameter.
* @param type The address type. Input parameter.
* @param[in] address The host address.
* @param[in] len The address length.
* @param[in] type The address type.
* @returns Host entry information.
*/
struct hostent * gethostbyaddr( const void * address, int len, int type );
//struct hostent * gethostbyaddr( const void * address, int len, int type );
 
/** Returns host entry by the host name.
* @param name The host name. Input parameter.
* @param[in] name The host name.
* @returns Host entry information.
*/
struct hostent * gethostbyname( const char * name );
//struct hostent * gethostbyname( const char * name );
 
#endif