diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-13 17:21:54 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-09-13 17:21:54 +0000 |
commit | 3b40219431d3442123e04f9eded596be44ada830 (patch) | |
tree | 9ed1d2413d6ba3c294d25049335c4e9395bd88fd /src/htscore.c | |
parent | 9f0340968f1c48895048ab3da72e0c74acc55f3c (diff) |
Removed MMS (Microsoft Media Server) ripping code (mmsrip)
* protocol was finally dropped in Windows Media Services 2008
* mmsrip is not supported anymore
* some licensing issues regarding the protocol (ha-ha)
Diffstat (limited to 'src/htscore.c')
-rw-r--r-- | src/htscore.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/htscore.c b/src/htscore.c index ae60b37..f2a3585 100644 --- a/src/htscore.c +++ b/src/htscore.c @@ -1038,7 +1038,7 @@ int httpmirror(char *url1, httrackp * opt) { if ((is_hypertext_mime(opt, r.contenttype, urlfil)) /* Is HTML or Js, .. */ - /* NO - real media is real media, and mms is mms, not HTML */ + /* NO - real media is real media, not HTML */ /*|| (may_be_hypertext_mime(r.contenttype, urlfil) && (r.adr) ) */ /* Is real media, .. */ ) { @@ -3581,11 +3581,6 @@ HTSEXT_API int copy_htsopt(const httrackp * from, httrackp * to) { if (from->maxtime > -1) to->maxtime = from->maxtime; -#if HTS_USEMMS - if (from->mms_maxtime > -1) - to->mms_maxtime = from->mms_maxtime; -#endif - if (from->maxrate > -1) to->maxrate = from->maxrate; |