Rev 4704 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4704 | Rev 4756 | ||
---|---|---|---|
Line 88... | Line 88... | ||
88 | #define NO_ADDRESS NO_DATA |
88 | #define NO_ADDRESS NO_DATA |
89 | 89 | ||
90 | /*@}*/ |
90 | /*@}*/ |
91 | 91 | ||
92 | /** Returns host entry by the host address. |
92 | /** Returns host entry by the host address. |
93 | * \todo address type? |
- | |
94 | * @param address The host address. Input parameter. |
93 | * @param[in] address The host address. |
95 | * @param len The address length. Input parameter. |
94 | * @param[in] len The address length. |
96 | * @param type The address type. Input parameter. |
95 | * @param[in] type The address type. |
97 | * @returns Host entry information. |
96 | * @returns Host entry information. |
98 | */ |
97 | */ |
99 | struct hostent * gethostbyaddr( const void * address, int len, int type ); |
98 | //struct hostent * gethostbyaddr( const void * address, int len, int type ); |
100 | 99 | ||
101 | /** Returns host entry by the host name. |
100 | /** Returns host entry by the host name. |
102 | * @param name The host name. Input parameter. |
101 | * @param[in] name The host name. |
103 | * @returns Host entry information. |
102 | * @returns Host entry information. |
104 | */ |
103 | */ |
105 | struct hostent * gethostbyname( const char * name ); |
104 | //struct hostent * gethostbyname( const char * name ); |
106 | 105 | ||
107 | #endif |
106 | #endif |
108 | 107 | ||
109 | /** @} |
108 | /** @} |
110 | */ |
109 | */ |