Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
bc9ec45e
Commit
bc9ec45e
authored
Jan 12, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
access_ftp: cleanup.
parent
ead147e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
modules/access/ftp.c
modules/access/ftp.c
+11
-11
No files found.
modules/access/ftp.c
View file @
bc9ec45e
...
...
@@ -39,7 +39,7 @@
#include <vlc_interface.h>
#include <vlc_network.h>
#include
"vlc_url.h"
#include
<vlc_url.h>
#include <vlc_sout.h>
#ifndef IPPORT_FTP
...
...
@@ -75,23 +75,23 @@ vlc_module_begin ()
set_category
(
CAT_INPUT
)
set_subcategory
(
SUBCAT_INPUT_ACCESS
)
add_integer
(
"ftp-caching"
,
2
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
;
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
add_string
(
"ftp-user"
,
"anonymous"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
;
false
)
add_string
(
"ftp-pwd"
,
"anonymous@example.com"
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
;
PASS_LONGTEXT
,
false
)
add_string
(
"ftp-account"
,
"anonymous"
,
NULL
,
ACCOUNT_TEXT
,
ACCOUNT_LONGTEXT
,
false
)
;
ACCOUNT_LONGTEXT
,
false
)
add_shortcut
(
"ftp"
)
set_callbacks
(
InOpen
,
InClose
)
add_submodule
()
set_shortname
(
"FTP"
)
set_description
(
N_
(
"FTP upload output"
)
)
set_capability
(
"sout access"
,
0
)
set_category
(
CAT_SOUT
)
set_subcategory
(
SUBCAT_SOUT_ACO
)
set_callbacks
(
OutOpen
,
OutClose
)
set_shortname
(
"FTP"
)
set_description
(
N_
(
"FTP upload output"
)
)
set_capability
(
"sout access"
,
0
)
set_category
(
CAT_SOUT
)
set_subcategory
(
SUBCAT_SOUT_ACO
)
set_callbacks
(
OutOpen
,
OutClose
)
vlc_module_end
()
/*****************************************************************************
...
...
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