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
2e6858af
Commit
2e6858af
authored
Oct 22, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add_password: remove callback parameter
parent
981a8542
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
include/vlc_plugin.h
include/vlc_plugin.h
+1
-1
modules/access/dvb/access.c
modules/access/dvb/access.c
+1
-1
modules/access/http.c
modules/access/http.c
+1
-1
modules/access/smb.c
modules/access/smb.c
+1
-1
modules/access_output/http.c
modules/access_output/http.c
+1
-1
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-1
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+1
-1
modules/misc/lua/vlc.c
modules/misc/lua/vlc.c
+1
-1
modules/misc/notify/growl_udp.c
modules/misc/notify/growl_udp.c
+1
-1
modules/stream_out/raop.c
modules/stream_out/raop.c
+1
-1
modules/video_filter/remoteosd.c
modules/video_filter/remoteosd.c
+1
-1
No files found.
include/vlc_plugin.h
View file @
2e6858af
...
...
@@ -303,7 +303,7 @@ enum vlc_module_properties
add_string_inner( CONFIG_ITEM_STRING, name, text, longtext, advc, \
value )
#define add_password( name, value,
p_callback,
text, longtext, advc ) \
#define add_password( name, value, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_PASSWORD, name, text, longtext, advc, \
value )
...
...
modules/access/dvb/access.c
View file @
2e6858af
...
...
@@ -258,7 +258,7 @@ vlc_module_begin ()
true
)
add_string
(
"dvb-http-user"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
add_password
(
"dvb-http-password"
,
NULL
,
NULL
,
PASSWORD_TEXT
,
add_password
(
"dvb-http-password"
,
NULL
,
PASSWORD_TEXT
,
PASSWORD_LONGTEXT
,
true
)
add_string
(
"dvb-http-acl"
,
NULL
,
ACL_TEXT
,
ACL_LONGTEXT
,
true
)
...
...
modules/access/http.c
View file @
2e6858af
...
...
@@ -114,7 +114,7 @@ vlc_module_begin ()
add_string
(
"http-proxy"
,
NULL
,
PROXY_TEXT
,
PROXY_LONGTEXT
,
false
)
add_password
(
"http-proxy-pwd"
,
NULL
,
NULL
,
add_password
(
"http-proxy-pwd"
,
NULL
,
PROXY_PASS_TEXT
,
PROXY_PASS_LONGTEXT
,
false
)
add_integer
(
"http-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
...
...
modules/access/smb.c
View file @
2e6858af
...
...
@@ -85,7 +85,7 @@ vlc_module_begin ()
change_safe
()
add_string
(
"smb-user"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
add_password
(
"smb-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
add_password
(
"smb-pwd"
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_string
(
"smb-domain"
,
NULL
,
DOMAIN_TEXT
,
DOMAIN_LONGTEXT
,
false
)
...
...
modules/access_output/http.c
View file @
2e6858af
...
...
@@ -100,7 +100,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_SOUT_ACO
)
add_string
(
SOUT_CFG_PREFIX
"user"
,
""
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
add_password
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
NULL
,
add_password
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"mime"
,
""
,
MIME_TEXT
,
MIME_LONGTEXT
,
true
)
...
...
modules/demux/live555.cpp
View file @
2e6858af
...
...
@@ -140,7 +140,7 @@ vlc_module_begin ()
add_string
(
"rtsp-user"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
change_safe
()
add_password
(
"rtsp-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
add_password
(
"rtsp-pwd"
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
change_safe
()
vlc_module_end
()
...
...
modules/misc/audioscrobbler.c
View file @
2e6858af
...
...
@@ -164,7 +164,7 @@ vlc_module_begin ()
set_description
(
N_
(
"Submission of played songs to last.fm"
)
)
add_string
(
"lastfm-username"
,
""
,
USERNAME_TEXT
,
USERNAME_LONGTEXT
,
false
)
add_password
(
"lastfm-password"
,
""
,
NULL
,
add_password
(
"lastfm-password"
,
""
,
PASSWORD_TEXT
,
PASSWORD_LONGTEXT
,
false
)
add_string
(
"scrobbler-url"
,
"post.audioscrobbler.com"
,
URL_TEXT
,
URL_LONGTEXT
,
false
)
...
...
modules/misc/lua/vlc.c
View file @
2e6858af
...
...
@@ -116,7 +116,7 @@ vlc_module_begin ()
TELNETHOST_LONGTEXT
,
true
)
add_integer
(
"telnet-port"
,
TELNETPORT_DEFAULT
,
NULL
,
TELNETPORT_TEXT
,
TELNETPORT_LONGTEXT
,
true
)
add_password
(
"telnet-password"
,
TELNETPWD_DEFAULT
,
NULL
,
TELNETPWD_TEXT
,
add_password
(
"telnet-password"
,
TELNETPWD_DEFAULT
,
TELNETPWD_TEXT
,
TELNETPWD_LONGTEXT
,
true
)
set_callbacks
(
Open_LuaIntf
,
Close_LuaIntf
)
...
...
modules/misc/notify/growl_udp.c
View file @
2e6858af
...
...
@@ -83,7 +83,7 @@ vlc_module_begin ()
add_string
(
"growl-server"
,
SERVER_DEFAULT
,
SERVER_TEXT
,
SERVER_LONGTEXT
,
false
)
add_password
(
"growl-password"
,
PASS_DEFAULT
,
NULL
,
add_password
(
"growl-password"
,
PASS_DEFAULT
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_integer
(
"growl-port"
,
9887
,
NULL
,
PORT_TEXT
,
PORT_LONGTEXT
,
true
)
...
...
modules/stream_out/raop.c
View file @
2e6858af
...
...
@@ -166,7 +166,7 @@ vlc_module_begin();
set_subcategory
(
SUBCAT_SOUT_STREAM
)
add_string
(
SOUT_CFG_PREFIX
"host"
,
""
,
HOST_TEXT
,
HOST_LONGTEXT
,
false
)
add_password
(
SOUT_CFG_PREFIX
"password"
,
NULL
,
NULL
,
add_password
(
SOUT_CFG_PREFIX
"password"
,
NULL
,
PASSWORD_TEXT
,
PASSWORD_LONGTEXT
,
false
)
add_loadfile
(
SOUT_CFG_PREFIX
"password-file"
,
NULL
,
NULL
,
PASSWORD_FILE_TEXT
,
PASSWORD_FILE_LONGTEXT
,
false
)
...
...
modules/video_filter/remoteosd.c
View file @
2e6858af
...
...
@@ -126,7 +126,7 @@ vlc_module_begin ()
RMTOSD_HOST_LONGTEXT
,
false
)
add_integer_with_range
(
RMTOSD_CFG
"port"
,
20001
,
1
,
0xFFFF
,
NULL
,
RMTOSD_PORT_TEXT
,
RMTOSD_PORT_LONGTEXT
,
false
)
add_password
(
RMTOSD_CFG
"password"
,
""
,
NULL
,
RMTOSD_PASSWORD_TEXT
,
add_password
(
RMTOSD_CFG
"password"
,
""
,
RMTOSD_PASSWORD_TEXT
,
RMTOSD_PASSWORD_LONGTEXT
,
false
)
add_integer_with_range
(
RMTOSD_CFG
"update"
,
RMTOSD_UPDATE_DEFAULT
,
RMTOSD_UPDATE_MIN
,
RMTOSD_UPDATE_MAX
,
NULL
,
RMTOSD_UPDATE_TEXT
,
...
...
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