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
365a7bce
Commit
365a7bce
authored
Sep 21, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* remove interaction from the update
parent
5a25ed20
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
18 deletions
+1
-18
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-18
No files found.
modules/demux/live555.cpp
View file @
365a7bce
...
...
@@ -29,7 +29,6 @@
#include <vlc/vlc.h>
#include <vlc/input.h>
#include "vlc_interaction.h"
#include "network.h"
#include <iostream>
...
...
@@ -746,23 +745,7 @@ describe:
if
(
i_code
==
401
)
{
char
*
psz_login
=
NULL
;
char
*
psz_password
=
NULL
;
msg_Dbg
(
p_demux
,
"authentication failed"
);
i_ret
=
intf_UserLoginPassword
(
p_demux
,
_
(
"RTSP authentication"
),
_
(
"Please enter a valid login name and a password."
),
&
psz_login
,
&
psz_password
);
if
(
i_ret
==
DIALOG_OK_YES
)
{
msg_Dbg
(
p_demux
,
"retrying with user=%s, pwd=%s"
,
psz_login
,
psz_password
);
if
(
psz_login
)
psz_user
=
psz_login
;
if
(
psz_password
)
psz_pwd
=
psz_password
;
goto
describe
;
}
if
(
psz_login
)
free
(
psz_login
);
if
(
psz_password
)
free
(
psz_password
);
msg_Err
(
p_demux
,
"RTSP authentication failed"
);
}
else
if
(
!
var_CreateGetBool
(
p_demux
,
"rtsp-http"
)
)
{
...
...
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