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
70e482ea
Commit
70e482ea
authored
Mar 18, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Display IP of client in debug
parent
f9413617
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
35 deletions
+45
-35
include/vlc_httpd.h
include/vlc_httpd.h
+33
-0
include/vlc_objects.h
include/vlc_objects.h
+1
-0
src/misc/messages.c
src/misc/messages.c
+2
-1
src/misc/objects.c
src/misc/objects.c
+5
-1
src/network/httpd.c
src/network/httpd.c
+4
-33
No files found.
include/vlc_httpd.h
View file @
70e482ea
...
...
@@ -61,6 +61,39 @@ 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
;
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
,
...
...
include/vlc_objects.h
View file @
70e482ea
...
...
@@ -61,6 +61,7 @@
#define VLC_OBJECT_XML (-27)
#define VLC_OBJECT_OSDMENU (-28)
#define VLC_OBJECT_STATS (-29)
#define VLC_OBJECT_HTTPD_HOST (-30)
#define VLC_OBJECT_GENERIC (-666)
...
...
src/misc/messages.c
View file @
70e482ea
...
...
@@ -574,7 +574,8 @@ static void PrintMsg ( vlc_object_t * p_this, msg_item_t * p_item )
case
VLC_OBJECT_VOUT
:
psz_object
=
"video output"
;
break
;
case
VLC_OBJECT_AOUT
:
psz_object
=
"audio output"
;
break
;
case
VLC_OBJECT_SOUT
:
psz_object
=
"stream output"
;
break
;
case
VLC_OBJECT_HTTPD
:
psz_object
=
"http daemon"
;
break
;
case
VLC_OBJECT_HTTPD
:
psz_object
=
"http server"
;
break
;
case
VLC_OBJECT_HTTPD_HOST
:
psz_object
=
"http server"
;
break
;
case
VLC_OBJECT_DIALOGS
:
psz_object
=
"dialogs provider"
;
break
;
case
VLC_OBJECT_VLM
:
psz_object
=
"vlm"
;
break
;
case
VLC_OBJECT_ANNOUNCE
:
psz_object
=
"announce handler"
;
break
;
...
...
src/misc/objects.c
View file @
70e482ea
...
...
@@ -182,7 +182,11 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
break
;
case
VLC_OBJECT_HTTPD
:
i_size
=
sizeof
(
httpd_t
);
psz_type
=
"http daemon"
;
psz_type
=
"http server"
;
break
;
case
VLC_OBJECT_HTTPD_HOST
:
i_size
=
sizeof
(
httpd_host_t
);
psz_type
=
"http server"
;
break
;
case
VLC_OBJECT_VLM
:
i_size
=
sizeof
(
vlm_t
);
...
...
src/network/httpd.c
View file @
70e482ea
...
...
@@ -62,37 +62,6 @@
static
void
httpd_ClientClean
(
httpd_client_t
*
cl
);
/* 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
;
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
;
};
struct
httpd_url_t
{
httpd_host_t
*
host
;
...
...
@@ -1079,7 +1048,7 @@ httpd_host_t *httpd_TLSHostNew( vlc_object_t *p_this, const char *psz_hostname,
p_tls
=
NULL
;
/* create the new host */
host
=
vlc_object_create
(
p_this
,
sizeof
(
httpd_host_t
)
);
host
=
vlc_object_create
(
p_this
,
VLC_OBJECT_HTTPD_HOST
);
host
->
httpd
=
httpd
;
vlc_mutex_init
(
httpd
,
&
host
->
lock
);
host
->
i_ref
=
1
;
...
...
@@ -2441,7 +2410,6 @@ static void httpd_HostThread( httpd_host_t *host )
struct
sockaddr_storage
sock
;
fd
=
accept
(
fd
,
(
struct
sockaddr
*
)
&
sock
,
&
i_sock_size
);
msg_Info
(
host
,
"Accepting"
);
if
(
fd
>=
0
)
{
int
i_state
=
0
;
...
...
@@ -2480,11 +2448,14 @@ static void httpd_HostThread( httpd_host_t *host )
if
(
fd
>=
0
)
{
httpd_client_t
*
cl
;
char
ip
[
NI_MAXNUMERICHOST
];
stats_UpdateInteger
(
host
,
STATS_CLIENT_CONNECTIONS
,
1
,
NULL
);
stats_UpdateInteger
(
host
,
STATS_ACTIVE_CONNECTIONS
,
1
,
NULL
);
cl
=
httpd_ClientNew
(
fd
,
&
sock
,
i_sock_size
,
p_tls
);
httpd_ClientIP
(
cl
,
ip
);
msg_Dbg
(
host
,
"Connection from %s"
,
ip
);
p_tls
=
NULL
;
vlc_mutex_lock
(
&
host
->
lock
);
TAB_APPEND
(
host
->
i_client
,
host
->
client
,
cl
);
...
...
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