Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d4b11055
Commit
d4b11055
authored
Oct 04, 2011
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtsp: Basic authentication
parent
c1e371c8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+11
-0
modules/stream_out/rtsp.c
modules/stream_out/rtsp.c
+13
-2
No files found.
modules/stream_out/rtp.c
View file @
d4b11055
...
...
@@ -175,6 +175,13 @@ static const char *const ppsz_protocols[] = {
"negative value or zero disables timeouts. The default is 60 (one " \
"minute)." )
#define RTSP_USER_TEXT N_("Username")
#define RTSP_USER_LONGTEXT N_("User name that will be " \
"requested to access the stream." )
#define RTSP_PASS_TEXT N_("Password")
#define RTSP_PASS_LONGTEXT N_("Password that will be " \
"requested to access the stream." )
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
...
...
@@ -250,6 +257,10 @@ vlc_module_begin ()
RTSP_HOST_LONGTEXT
,
true
)
add_integer
(
"rtsp-timeout"
,
60
,
RTSP_TIMEOUT_TEXT
,
RTSP_TIMEOUT_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"user"
,
""
,
RTSP_USER_TEXT
,
RTSP_USER_LONGTEXT
,
true
)
add_password
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
RTSP_PASS_TEXT
,
RTSP_PASS_LONGTEXT
,
true
)
vlc_module_end
()
...
...
modules/stream_out/rtsp.c
View file @
d4b11055
...
...
@@ -121,8 +121,13 @@ rtsp_stream_t *RtspSetup( vlc_object_t *owner, vod_media_t *media,
if
(
rtsp
->
host
==
NULL
)
goto
error
;
char
*
user
=
var_InheritString
(
owner
,
"rtsp-user"
);
char
*
pwd
=
var_InheritString
(
owner
,
"rtsp-pwd"
);
rtsp
->
url
=
httpd_UrlNewUnique
(
rtsp
->
host
,
rtsp
->
psz_path
,
NULL
,
NULL
,
NULL
);
user
,
pwd
,
NULL
);
free
(
user
);
free
(
pwd
);
if
(
rtsp
->
url
==
NULL
)
goto
error
;
...
...
@@ -248,7 +253,13 @@ rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid,
}
msg_Dbg
(
rtsp
->
owner
,
"RTSP: adding %s"
,
urlbuf
);
url
=
id
->
url
=
httpd_UrlNewUnique
(
rtsp
->
host
,
urlbuf
,
NULL
,
NULL
,
NULL
);
char
*
user
=
var_InheritString
(
rtsp
->
owner
,
"rtsp-user"
);
char
*
pwd
=
var_InheritString
(
rtsp
->
owner
,
"rtsp-pwd"
);
url
=
id
->
url
=
httpd_UrlNewUnique
(
rtsp
->
host
,
urlbuf
,
user
,
pwd
,
NULL
);
free
(
user
);
free
(
pwd
);
free
(
urlbuf
);
if
(
url
==
NULL
)
...
...
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