From 7379529084fec3ce173e07ad4543ffcf14686b17 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Sat, 6 Jul 2019 15:45:20 -0400 Subject: [PATCH] srt: Fix confusing typo in FIXME comment SRT does not support IPv6, but the comment said IPv4 which was the opposite of the following code. --- ext/srt/gstsrtobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/srt/gstsrtobject.c b/ext/srt/gstsrtobject.c index 164ca89..f497a79 100644 --- a/ext/srt/gstsrtobject.c +++ b/ext/srt/gstsrtobject.c @@ -1000,7 +1000,7 @@ gst_srt_object_open_full (GstSRTObject * srtobject, goto out; } - /* FIXME: Unfortunately, SRT doesn't support IPv4 currently. */ + /* FIXME: Unfortunately, SRT doesn't support IPv6 currently. */ if (g_socket_address_get_family (socket_address) != G_SOCKET_FAMILY_IPV4) { g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_OPEN_READ, "SRT supports IPv4 only"); -- 2.7.4