Changeset 721 for pjproject/trunk/pjlib/include/pj/addr_resolv.h
- Timestamp:
- Sep 14, 2006 6:51:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/addr_resolv.h
r65 r721 22 22 /** 23 23 * @file addr_resolv.h 24 * @brief Address resolve (pj_gethostbyname()).24 * @brief IP address resolution. 25 25 */ 26 26 27 #include <pj/ types.h>27 #include <pj/sock.h> 28 28 29 29 PJ_BEGIN_DECL … … 85 85 86 86 87 /** 88 * Resolve the primary IP address of local host. 89 * 90 * @param ip_addr On successful resolution, this will be filled up with 91 * the host IP address, in network byte order. 92 * 93 * @return PJ_SUCCESS on success, or the appropriate error code. 94 */ 95 PJ_DECL(pj_status_t) pj_gethostip(pj_in_addr *ip_addr); 96 97 87 98 /** @} */ 88 99
Note: See TracChangeset
for help on using the changeset viewer.