diff options
author | Max Kellermann <max@duempel.org> | 2009-01-29 21:42:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-29 21:42:10 +0100 |
commit | caa4d28f044d70012cd113f324e6500c0b57d491 (patch) | |
tree | 5f904a7668b602480c660d04e4cbc3b075b4be99 /src/ls.c | |
parent | 36ca114629d8e9bef2faff3716ccdf8f7641fd10 (diff) | |
download | mpd-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 '')
-rw-r--r-- | src/ls.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -27,6 +27,12 @@ static const char *remoteUrlPrefixes[] = { #ifdef HAVE_CURL "http://", #endif +#ifdef ENABLE_MMS + "mms://", + "mmsh://", + "mmst://", + "mmsu://", +#endif NULL }; |