From ac843019cc56478c4423e0181e2ec1452d84e75b Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Wed, 22 Mar 2006 11:48:33 +0000 Subject: Added pj_inet_addr2() git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@348 74dad513-b988-da41-8d7b-12977e46ad98 --- pjlib/include/pj/sock.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'pjlib/include/pj') diff --git a/pjlib/include/pj/sock.h b/pjlib/include/pj/sock.h index 3e3307ab..05d1ef5e 100644 --- a/pjlib/include/pj/sock.h +++ b/pjlib/include/pj/sock.h @@ -327,6 +327,19 @@ PJ_DECL(int) pj_inet_aton(const pj_str_t *cp, struct pj_in_addr *inp); */ PJ_DECL(pj_in_addr) pj_inet_addr(const pj_str_t *cp); +/** + * Convert address string with numbers and dots to binary IP address. + * + * @param cp The IP address in numbers and dots notation. + * @return If success, the IP address is returned in network + * byte order. If failed, PJ_INADDR_NONE will be + * returned. + * @remark + * This is an obsolete interface to #pj_inet_aton(); it is obsolete + * because -1 is a valid address (255.255.255.255), and #pj_inet_aton() + * provides a cleaner way to indicate error return. + */ +PJ_DECL(pj_in_addr) pj_inet_addr2(const char *cp); /** * Get the transport layer port number of an Internet socket address. -- cgit v1.2.3