mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
rtspconnection: fix handling of x-server-ip-address
Fix handling of x-server-ip-address.
This commit is contained in:
parent
ce1e9f76e3
commit
f37b42b40d
1 changed files with 2 additions and 2 deletions
|
@ -710,7 +710,7 @@ setup_tunneling (GstRTSPConnection * conn, GTimeVal * timeout)
|
||||||
goto wrong_result;
|
goto wrong_result;
|
||||||
|
|
||||||
if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_X_SERVER_IP_ADDRESS,
|
if (gst_rtsp_message_get_header (&response, GST_RTSP_HDR_X_SERVER_IP_ADDRESS,
|
||||||
&value, 0) != GST_RTSP_OK) {
|
&value, 0) == GST_RTSP_OK) {
|
||||||
if (conn->proxy_host) {
|
if (conn->proxy_host) {
|
||||||
/* if we use a proxy we need to change the destination url */
|
/* if we use a proxy we need to change the destination url */
|
||||||
g_free (url->host);
|
g_free (url->host);
|
||||||
|
@ -719,7 +719,7 @@ setup_tunneling (GstRTSPConnection * conn, GTimeVal * timeout)
|
||||||
hostparam = g_strdup_printf ("%s:%d", url->host, url_port);
|
hostparam = g_strdup_printf ("%s:%d", url->host, url_port);
|
||||||
} else {
|
} else {
|
||||||
/* and resolve the new ip address */
|
/* and resolve the new ip address */
|
||||||
if (!(ip = do_resolve (conn->ip)))
|
if (!(ip = do_resolve (value)))
|
||||||
goto not_resolved;
|
goto not_resolved;
|
||||||
g_free (conn->ip);
|
g_free (conn->ip);
|
||||||
conn->ip = ip;
|
conn->ip = ip;
|
||||||
|
|
Loading…
Reference in a new issue