X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Furi.c;h=fb61a5bbdc0c61138823fbae0fd143bffb328f65;hb=eecb9438e176fe991bacb70c923bb247bd62e465;hp=712339a5fded2efce62d2475f00282e63c061534;hpb=60782118cd8cf7149567669688370b4b2a6c0419;p=lttng-tools.git diff --git a/src/common/uri.c b/src/common/uri.c index 712339a5f..fb61a5bbd 100644 --- a/src/common/uri.c +++ b/src/common/uri.c @@ -15,10 +15,10 @@ * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#define _GNU_SOURCE +#define _LGPL_SOURCE #include #include -#include +#include #include #include #include @@ -68,7 +68,6 @@ static const inline char *strpbrk_or_eos(const char *s, const char *accept) return p; } - /* * Validate if proto is a supported protocol from proto_uri array. */ @@ -115,7 +114,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); @@ -201,7 +200,7 @@ int uri_to_str_url(struct lttng_uri *uri, char *dst, size_t size) } else { ipver = (uri->dtype == LTTNG_DST_IPV4) ? 4 : 6; addr = (ipver == 4) ? uri->dst.ipv4 : uri->dst.ipv6; - (void) snprintf(proto, sizeof(proto), "net%d", ipver); + (void) snprintf(proto, sizeof(proto), "tcp%d", ipver); (void) snprintf(port, sizeof(port), ":%d", uri->port); }