Commit bc9ec45e authored by Rémi Duraffort's avatar Rémi Duraffort

access_ftp: cleanup.

parent ead147e1
......@@ -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,13 +75,13 @@ 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 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment