summaryrefslogtreecommitdiffstats
path: root/stream/asf_streaming.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/asf_streaming.c')
-rw-r--r--stream/asf_streaming.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/stream/asf_streaming.c b/stream/asf_streaming.c
index 73cff872b5..a9825cf20f 100644
--- a/stream/asf_streaming.c
+++ b/stream/asf_streaming.c
@@ -85,7 +85,8 @@ static int asf_streaming_start( stream_t *stream, int *demuxer_type) {
//Is protocol http, http_proxy, or mms?
if (!strcasecmp(proto, "http_proxy") || !strcasecmp(proto, "http") ||
- !strcasecmp(proto, "mms") || !strcasecmp(proto, "mmshttp"))
+ !strcasecmp(proto, "mms") || !strcasecmp(proto, "mmsh") ||
+ !strcasecmp(proto, "mmshttp"))
{
mp_msg(MSGT_NETWORK,MSGL_V,"Trying ASF/HTTP...\n");
fd = asf_http_streaming_start( stream, demuxer_type );
@@ -146,7 +147,7 @@ printf("0x%02X\n", stream_chunck->type );
}
static void close_s(stream_t *stream) {
- close(stream->fd);
+ closesocket(stream->fd);
stream->fd=-1;
}
@@ -847,7 +848,7 @@ const stream_info_t stream_info_asf = {
"Bertrand, Reimar Doeffinger, Albeu",
"originally based on work by Majormms (is that code still there?)",
open_s,
- {"mms", "mmsu", "mmst", "http", "http_proxy", "mmshttp", NULL},
+ {"mms", "mmsu", "mmst", "http", "http_proxy", "mmsh", "mmshttp", NULL},
NULL,
0 // Urls are an option string
};