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
5d10806a
Commit
5d10806a
authored
Dec 01, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide some httpd structures from modules
parent
bc73810b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
73 additions
and
47 deletions
+73
-47
include/vlc_httpd.h
include/vlc_httpd.h
+1
-47
src/misc/objects.c
src/misc/objects.c
+1
-0
src/network/httpd.c
src/network/httpd.c
+1
-0
src/network/httpd.h
src/network/httpd.h
+70
-0
No files found.
include/vlc_httpd.h
View file @
5d10806a
/*****************************************************************************
* vlc_httpd.h: builtin HTTP/RTSP server.
*****************************************************************************
* Copyright (C) 2004 the VideoLAN team
* Copyright (C) 2004
-2006
the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -24,16 +24,6 @@
#ifndef _VLC_HTTPD_H
#define _VLC_HTTPD_H 1
/* NEVER touch that, it's here only because src/misc/objects.c
* need sizeof(httpd_t) */
struct
httpd_t
{
VLC_COMMON_MEMBERS
int
i_host
;
httpd_host_t
**
host
;
};
enum
{
HTTPD_MSG_NONE
,
...
...
@@ -62,42 +52,6 @@ enum
HTTPD_MSG_MAX
};
/* each host run in his own thread */
struct
httpd_host_t
{
VLC_COMMON_MEMBERS
httpd_t
*
httpd
;
/* ref count */
int
i_ref
;
/* address/port and socket for listening at connections */
char
*
psz_hostname
;
int
i_port
;
int
*
fd
;
/* Statistics */
counter_t
*
p_active_counter
;
counter_t
*
p_total_counter
;
vlc_mutex_t
lock
;
/* all registered url (becarefull that 2 httpd_url_t could point at the same url)
* This will slow down the url research but make my live easier
* All url will have their cb trigger, but only the first one can answer
* */
int
i_url
;
httpd_url_t
**
url
;
int
i_client
;
httpd_client_t
**
client
;
/* TLS data */
tls_server_t
*
p_tls
;
};
enum
{
HTTPD_PROTO_NONE
,
...
...
src/misc/objects.c
View file @
5d10806a
...
...
@@ -53,6 +53,7 @@
#include "vlc_filter.h"
#include "vlc_httpd.h"
#include "../network/httpd.h"
#include "vlc_vlm.h"
#include "vlc_vod.h"
#include "vlc_tls.h"
...
...
src/network/httpd.c
View file @
5d10806a
...
...
@@ -35,6 +35,7 @@
#include <vlc_network.h>
#include <vlc_tls.h>
#include <vlc_acl.h>
#include "httpd.h"
#include <string.h>
#include <errno.h>
...
...
src/network/httpd.h
0 → 100644
View file @
5d10806a
/*****************************************************************************
* httpd.h: builtin HTTP/RTSP server internals.
*****************************************************************************
* Copyright (C) 2004-2006 the VideoLAN team
* $Id$
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _LIBVLC_HTTPD_H
#define _LIBVLC_HTTPD_H 1
struct
httpd_t
{
VLC_COMMON_MEMBERS
int
i_host
;
httpd_host_t
**
host
;
};
/* each host run in his own thread */
struct
httpd_host_t
{
VLC_COMMON_MEMBERS
httpd_t
*
httpd
;
/* ref count */
int
i_ref
;
/* address/port and socket for listening at connections */
char
*
psz_hostname
;
int
i_port
;
int
*
fd
;
/* Statistics */
counter_t
*
p_active_counter
;
counter_t
*
p_total_counter
;
vlc_mutex_t
lock
;
/* all registered url (becarefull that 2 httpd_url_t could point at the same url)
* This will slow down the url research but make my live easier
* All url will have their cb trigger, but only the first one can answer
* */
int
i_url
;
httpd_url_t
**
url
;
int
i_client
;
httpd_client_t
**
client
;
/* TLS data */
tls_server_t
*
p_tls
;
};
#endif
/* _LIBVLC_HTTPD_H */
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