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
a053ede0
Commit
a053ede0
authored
Apr 01, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused httpd_UrlNew()
parent
9effd9e7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
18 deletions
+0
-18
include/vlc_httpd.h
include/vlc_httpd.h
+0
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/missing.c
src/missing.c
+0
-8
src/network/httpd.c
src/network/httpd.c
+0
-8
No files found.
include/vlc_httpd.h
View file @
a053ede0
...
...
@@ -101,7 +101,6 @@ VLC_API httpd_host_t *vlc_rtsp_HostNew( vlc_object_t * ) VLC_USED;
VLC_API
void
httpd_HostDelete
(
httpd_host_t
*
);
/* register a new url */
VLC_API
httpd_url_t
*
httpd_UrlNew
(
httpd_host_t
*
,
const
char
*
psz_url
,
const
char
*
psz_user
,
const
char
*
psz_password
,
const
vlc_acl_t
*
p_acl
)
VLC_USED
;
VLC_API
httpd_url_t
*
httpd_UrlNewUnique
(
httpd_host_t
*
,
const
char
*
psz_url
,
const
char
*
psz_user
,
const
char
*
psz_password
,
const
vlc_acl_t
*
p_acl
)
VLC_USED
;
/* register callback on a url */
VLC_API
int
httpd_UrlCatch
(
httpd_url_t
*
,
int
i_msg
,
httpd_callback_t
,
httpd_callback_sys_t
*
);
...
...
src/libvlccore.sym
View file @
a053ede0
...
...
@@ -176,7 +176,6 @@ httpd_StreamNew
httpd_StreamSend
httpd_UrlCatch
httpd_UrlDelete
httpd_UrlNew
httpd_UrlNewUnique
image_Ext2Fourcc
image_HandlerCreate
...
...
src/missing.c
View file @
a053ede0
...
...
@@ -183,14 +183,6 @@ void httpd_UrlDelete (httpd_url_t *url)
assert
(
0
);
}
httpd_url_t
*
httpd_UrlNew
(
httpd_host_t
*
host
,
const
char
*
url
,
const
char
*
login
,
const
char
*
password
,
const
vlc_acl_t
*
acl
)
{
(
void
)
host
;
(
void
)
url
;
(
void
)
login
;
(
void
)
password
;
(
void
)
acl
;
assert
(
0
);
}
httpd_url_t
*
httpd_UrlNewUnique
(
httpd_host_t
*
host
,
const
char
*
url
,
const
char
*
login
,
const
char
*
password
,
const
vlc_acl_t
*
acl
)
...
...
src/network/httpd.c
View file @
a053ede0
...
...
@@ -1241,14 +1241,6 @@ static httpd_url_t *httpd_UrlNewPrivate( httpd_host_t *host, const char *psz_url
return
url
;
}
httpd_url_t
*
httpd_UrlNew
(
httpd_host_t
*
host
,
const
char
*
psz_url
,
const
char
*
psz_user
,
const
char
*
psz_password
,
const
vlc_acl_t
*
p_acl
)
{
return
httpd_UrlNewPrivate
(
host
,
psz_url
,
psz_user
,
psz_password
,
p_acl
,
false
);
}
httpd_url_t
*
httpd_UrlNewUnique
(
httpd_host_t
*
host
,
const
char
*
psz_url
,
const
char
*
psz_user
,
const
char
*
psz_password
,
const
vlc_acl_t
*
p_acl
)
...
...
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