ext/soup/gstsouphttpsrc.c: Add support for WebDAV.

Original commit message from CVS:
* ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols):
Add support for WebDAV.
This commit is contained in:
Sebastian Dröge 2008-01-18 05:32:26 +00:00
parent 4632459428
commit 82b7cfd662
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-01-18 Sebastian Dröge <slomo@circular-chaos.org>
* ext/soup/gstsouphttpsrc.c: (gst_souphttp_src_uri_get_protocols):
Add support for WebDAV.
2008-01-18 Sebastian Dröge <slomo@circular-chaos.org>
Patch by: Wouter Cloetens <wouter at mind dot be>

View file

@ -782,7 +782,7 @@ gst_souphttp_src_uri_get_type (void)
static gchar **
gst_souphttp_src_uri_get_protocols (void)
{
static gchar *protocols[] = { "http", "https", NULL };
static gchar *protocols[] = { "http", "https", "dav", "davs", NULL };
return protocols;
}