Port: Add Solaris compat for netdb
[lttng-tools.git] / src / common / uri.c
index 668e617d8b3fda5ea10b70e71878cd7d8ad4af99..ef68cd4fad28be8f3a26e82db2f8e10812739f46 100644 (file)
  * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#define _GNU_SOURCE
 #define _LGPL_SOURCE
 #include <assert.h>
 #include <arpa/inet.h>
-#include <netdb.h>
+#include <common/compat/netdb.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/socket.h>
@@ -116,7 +115,7 @@ static int set_ip_address(const char *addr, int af, char *dst, size_t size)
        ret = inet_pton(af, addr, buf);
        if (ret < 1) {
                /* We consider the dst to be an hostname or an invalid IP char */
-               record = gethostbyname2(addr, af);
+               record = lttng_gethostbyname2(addr, af);
                if (record == NULL) {
                        /* At this point, the IP or the hostname is bad */
                        ERR("URI parse bad hostname %s for af %d", addr, af);
This page took 0.024879 seconds and 5 git commands to generate.