diff options
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | ext/neon/gstneonhttpsrc.c | 18 | ||||
-rw-r--r-- | ext/neon/gstneonhttpsrc.h | 1 |
3 files changed, 29 insertions, 1 deletions
@@ -1,3 +1,14 @@ +2007-09-28 Sebastian Dröge <slomo@circular-chaos.org> + + Patch by: Wouter Cloetens <wouter@mind.be> + + * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_dispose), + (gst_neonhttp_src_set_location), + (gst_neonhttp_src_send_request_and_redirect): + * ext/neon/gstneonhttpsrc.h: + Don't discard GET parameters from URL if existing. + Fixes #481200. + 2007-09-27 Thijs Vermeir <thijsvermeir@gmail.com> * gst/librfb/gstrfbsrc.c: diff --git a/ext/neon/gstneonhttpsrc.c b/ext/neon/gstneonhttpsrc.c index 2c1c6c3a..683b5ac0 100644 --- a/ext/neon/gstneonhttpsrc.c +++ b/ext/neon/gstneonhttpsrc.c @@ -287,6 +287,9 @@ gst_neonhttp_src_dispose (GObject * gobject) if (src->location) { ne_free (src->location); } + if (src->query_string) { + ne_free (src->query_string); + } G_OBJECT_CLASS (parent_class)->dispose (gobject); } @@ -706,6 +709,10 @@ gst_neonhttp_src_set_location (GstNeonhttpSrc * src, const gchar * uri) ne_free (src->location); src->location = NULL; } + if (src->query_string) { + ne_free (src->query_string); + src->query_string = NULL; + } if (ne_uri_parse (uri, &src->uri) != 0) goto parse_error; @@ -726,6 +733,11 @@ gst_neonhttp_src_set_location (GstNeonhttpSrc * src, const gchar * uri) if (!src->uri.path) src->uri.path = g_strdup (""); + if (src->uri.query) + src->query_string = g_strjoin ("?", src->uri.path, src->uri.query, NULL); + else + src->query_string = g_strdup (src->uri.path); + src->location = ne_uri_unparse (&src->uri); return TRUE; @@ -737,6 +749,10 @@ parse_error: ne_free (src->location); src->location = NULL; } + if (src->query_string) { + ne_free (src->query_string); + src->query_string = NULL; + } ne_uri_free (&src->uri); return FALSE; } @@ -804,7 +820,7 @@ gst_neonhttp_src_send_request_and_redirect (GstNeonhttpSrc * src, ne_set_session_flag (session, NE_SESSFLAG_ICYPROTO, 1); #endif - request = ne_request_create (session, "GET", src->uri.path); + request = ne_request_create (session, "GET", src->query_string); if (src->user_agent) { ne_add_request_header (request, "User-Agent", src->user_agent); diff --git a/ext/neon/gstneonhttpsrc.h b/ext/neon/gstneonhttpsrc.h index f5f759e4..68383485 100644 --- a/ext/neon/gstneonhttpsrc.h +++ b/ext/neon/gstneonhttpsrc.h @@ -49,6 +49,7 @@ struct _GstNeonhttpSrc { ne_request *request; ne_uri uri; gchar *location; + gchar *query_string; ne_uri proxy; gchar *user_agent; |