aboutsummaryrefslogtreecommitdiffstats
path: root/src/ls.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-29 21:42:10 +0100
committerMax Kellermann <max@duempel.org>2009-01-29 21:42:10 +0100
commitcaa4d28f044d70012cd113f324e6500c0b57d491 (patch)
tree5f904a7668b602480c660d04e4cbc3b075b4be99 /src/ls.c
parent36ca114629d8e9bef2faff3716ccdf8f7641fd10 (diff)
downloadmpd-caa4d28f044d70012cd113f324e6500c0b57d491.tar.gz
mpd-caa4d28f044d70012cd113f324e6500c0b57d491.tar.xz
mpd-caa4d28f044d70012cd113f324e6500c0b57d491.zip
added support for the MMS protocol
This patch implements the MMS protocol, by using libmms. It is quite experimental: it does not support seeking yet, and it is currently using synchronous I/O, which causes MPD to hang while waiting for the server.
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ls.c b/src/ls.c
index 039695d23..838680f60 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -27,6 +27,12 @@ static const char *remoteUrlPrefixes[] = {
#ifdef HAVE_CURL
"http://",
#endif
+#ifdef ENABLE_MMS
+ "mms://",
+ "mmsh://",
+ "mmst://",
+ "mmsu://",
+#endif
NULL
};