summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
Diffstat (limited to 'stream')
-rw-r--r--stream/network.c2
-rw-r--r--stream/url.c23
-rw-r--r--stream/url.h1
3 files changed, 24 insertions, 2 deletions
diff --git a/stream/network.c b/stream/network.c
index 184be96682..1da6f24ca9 100644
--- a/stream/network.c
+++ b/stream/network.c
@@ -210,7 +210,7 @@ http_send_request( URL_t *url, off_t pos ) {
mp_msg(MSGT_NETWORK, MSGL_ERR, "Invalid URL '%s' to proxify\n", url->file+1);
goto err_out;
}
- http_set_uri( http_hdr, server_url->url );
+ http_set_uri( http_hdr, server_url->noauth_url );
} else {
server_url = url;
http_set_uri( http_hdr, server_url->file );
diff --git a/stream/url.c b/stream/url.c
index 0d64382e2f..92ea058831 100644
--- a/stream/url.c
+++ b/stream/url.c
@@ -57,9 +57,19 @@ URL_t *url_redirect(URL_t **url, const char *redir) {
return res;
}
+static int make_noauth_url(URL_t *url, char *dst, int dst_size)
+{
+ if (url->port)
+ return snprintf(dst, dst_size, "%s://%s:%d%s", url->protocol,
+ url->hostname, url->port, url->file);
+ else
+ return snprintf(dst, dst_size, "%s://%s%s", url->protocol,
+ url->hostname, url->file);
+}
+
URL_t*
url_new(const char* url) {
- int pos1, pos2,v6addr = 0;
+ int pos1, pos2,v6addr = 0, noauth_len;
URL_t* Curl = NULL;
char *escfilename=NULL;
char *ptr1=NULL, *ptr2=NULL, *ptr3=NULL, *ptr4=NULL;
@@ -231,6 +241,17 @@ url_new(const char* url) {
strcpy(Curl->file, "/");
}
+ noauth_len = make_noauth_url(Curl, NULL, 0);
+ if (noauth_len > 0) {
+ noauth_len++;
+ Curl->noauth_url = malloc(noauth_len);
+ if (!Curl->noauth_url) {
+ mp_msg(MSGT_NETWORK, MSGL_FATAL, "Memory allocation failed.\n");
+ goto err_out;
+ }
+ make_noauth_url(Curl, Curl->noauth_url, noauth_len);
+ }
+
free(escfilename);
return Curl;
err_out:
diff --git a/stream/url.h b/stream/url.h
index fab81ecace..c89d91a663 100644
--- a/stream/url.h
+++ b/stream/url.h
@@ -27,6 +27,7 @@
typedef struct {
char *url;
+ char *noauth_url;
char *protocol;
char *hostname;
char *file;