mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
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.
This commit is contained in:
parent
6ea4557271
commit
e5b6622546
1 changed files with 1 additions and 1 deletions
|
@ -1000,7 +1000,7 @@ gst_srt_object_open_full (GstSRTObject * srtobject,
|
||||||
goto out;
|
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) {
|
if (g_socket_address_get_family (socket_address) != G_SOCKET_FAMILY_IPV4) {
|
||||||
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_OPEN_READ,
|
g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_OPEN_READ,
|
||||||
"SRT supports IPv4 only");
|
"SRT supports IPv4 only");
|
||||||
|
|
Loading…
Reference in a new issue