X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=formats%2Flttng-live%2Flttng-live-plugin.c;h=f2c7536ec0d4e6223f21d68985fa9fcbb0665b3b;hb=f3985ab106d89d8e764c1a8dd0c8bda09b755d10;hp=771801ce9c655d59bac690fd6b0e34863dd54105;hpb=220e0cbec97669ccfe4ed8a7e69c73c9ac72062d;p=babeltrace.git diff --git a/formats/lttng-live/lttng-live-plugin.c b/formats/lttng-live/lttng-live-plugin.c index 771801ce..f2c7536e 100644 --- a/formats/lttng-live/lttng-live-plugin.c +++ b/formats/lttng-live/lttng-live-plugin.c @@ -41,6 +41,14 @@ static volatile int should_quit; +void bt_lttng_live_hook(void) +{ + /* + * Dummy function to prevent the linker from discarding this format as + * "unused" in static builds. + */ +} + int lttng_live_should_quit(void) { return should_quit; @@ -119,6 +127,10 @@ int parse_url(const char *path, struct lttng_live_ctx *ctx) if (proto_offset > path_len) { goto end; } + if (proto == 6) { + fprintf(stderr, "[error] IPv6 is currently unsupported by lttng-live\n"); + goto end; + } /* TODO : parse for IPv6 as well */ /* Parse the hostname or IP */ ret = sscanf(&path[proto_offset], "%[a-zA-Z.0-9%-]%s", @@ -328,7 +340,7 @@ void __attribute__((constructor)) lttng_live_init(void) { int ret; - lttng_live_format.name = g_quark_from_static_string("lttng-live"); + lttng_live_format.name = g_quark_from_string("lttng-live"); ret = bt_register_format(<tng_live_format); assert(!ret); }