Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
7c88ee37
Commit
7c88ee37
authored
Jul 16, 2013
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
access: ftp: add TLS support (fix #137)
parent
01caa671
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
235 additions
and
61 deletions
+235
-61
modules/access/ftp.c
modules/access/ftp.c
+232
-60
modules/demux/playlist/m3u.c
modules/demux/playlist/m3u.c
+3
-1
No files found.
modules/access/ftp.c
View file @
7c88ee37
This diff is collapsed.
Click to expand it.
modules/demux/playlist/m3u.c
View file @
7c88ee37
...
...
@@ -115,7 +115,9 @@ static bool ContainsURL( demux_t *p_demux )
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"mms://"
,
6
)
||
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"rtsp://"
,
7
)
||
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"https://"
,
8
)
||
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"ftp://"
,
6
)
)
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"ftp://"
,
6
)
||
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"ftps://"
,
7
)
||
!
strncasecmp
(
(
const
char
*
)
p_peek
,
"ftpes://"
,
8
)
)
{
return
true
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment