Skip to content
Snippets Groups Projects
Commit c4820d37 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

smb2: add help and finer description

parent 209b21e3
No related branches found
No related tags found
No related merge requests found
......@@ -64,14 +64,15 @@ static int Open(vlc_object_t *);
static void Close(vlc_object_t *);
vlc_module_begin()
set_shortname(N_("smb2"))
set_description(N_("SMB2 input"))
set_shortname("smb2")
set_description(N_("SMB2 / SMB3 input"))
set_help(N_("Samba (Windows network shares) input via libsmb2"))
set_capability("access", 21)
set_category(CAT_INPUT)
set_subcategory(SUBCAT_INPUT_ACCESS)
add_string("smb-user", NULL, SMB_USER_TEXT, SMB_USER_LONGTEXT, false)
add_password("smb-pwd", NULL, SMB_PASS_TEXT, SMB_PASS_LONGTEXT)
add_string("smb-domain", NULL, SMB_DOMAIN_TEXT, SMB_DOMAIN_LONGTEXT, false)
set_capability("access", 21)
add_shortcut("smb", "smb2")
set_callbacks(Open, Close)
vlc_module_end()
......
......@@ -211,6 +211,7 @@ modules/access/sdp.c
modules/access/sftp.c
modules/access/shm.c
modules/access/smb_common.h
modules/access/smb2.c
modules/access/srt.c
modules/access/tcp.c
modules/access/timecode.c
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment