Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nginx-push-stream-module
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
nginx-push-stream-module
Commits
69415086
Commit
69415086
authored
Jun 05, 2011
by
Wandenberg Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename function push_stream_channels_statistics_handler
parent
6a63c718
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
ngx_http_push_stream_module_publisher.h
include/ngx_http_push_stream_module_publisher.h
+1
-1
ngx_http_push_stream_module_setup.h
include/ngx_http_push_stream_module_setup.h
+1
-1
ngx_http_push_stream_module_publisher.c
src/ngx_http_push_stream_module_publisher.c
+1
-1
ngx_http_push_stream_module_setup.c
src/ngx_http_push_stream_module_setup.c
+3
-3
No files found.
include/ngx_http_push_stream_module_publisher.h
View file @
69415086
...
...
@@ -28,7 +28,7 @@
#include <ngx_http_push_stream_module.h>
static
ngx_int_t
push_stream_channels_statistics_handler
(
ngx_http_request_t
*
r
);
static
ngx_int_t
ngx_http_
push_stream_channels_statistics_handler
(
ngx_http_request_t
*
r
);
static
ngx_int_t
ngx_http_push_stream_publisher_handler
(
ngx_http_request_t
*
r
);
static
void
ngx_http_push_stream_publisher_body_handler
(
ngx_http_request_t
*
r
);
...
...
include/ngx_http_push_stream_module_setup.h
View file @
69415086
...
...
@@ -47,7 +47,7 @@ static time_t NGX_HTTP_PUSH_STREAM_DEFAULT_MEMORY_CLEANUP_TIMEOUT = 30; // 30 se
static
ngx_str_t
ngx_http_push_stream_channel_id
=
ngx_string
(
"push_stream_channel_id"
);
static
ngx_str_t
ngx_http_push_stream_channels_path
=
ngx_string
(
"push_stream_channels_path"
);
static
char
*
push_stream_channels_statistics
(
ngx_conf_t
*
cf
,
ngx_command_t
*
cmd
,
void
*
conf
);
static
char
*
ngx_http_
push_stream_channels_statistics
(
ngx_conf_t
*
cf
,
ngx_command_t
*
cmd
,
void
*
conf
);
// publisher
static
char
*
ngx_http_push_stream_publisher
(
ngx_conf_t
*
cf
,
ngx_command_t
*
cmd
,
void
*
conf
);
...
...
src/ngx_http_push_stream_module_publisher.c
View file @
69415086
...
...
@@ -210,7 +210,7 @@ ngx_http_push_stream_publisher_body_handler(ngx_http_request_t *r)
}
static
ngx_int_t
push_stream_channels_statistics_handler
(
ngx_http_request_t
*
r
)
ngx_http_
push_stream_channels_statistics_handler
(
ngx_http_request_t
*
r
)
{
ngx_str_t
*
id
=
NULL
;
ngx_http_push_stream_channel_t
*
channel
=
NULL
;
...
...
src/ngx_http_push_stream_module_setup.c
View file @
69415086
...
...
@@ -28,7 +28,7 @@
static
ngx_command_t
ngx_http_push_stream_commands
[]
=
{
{
ngx_string
(
"push_stream_channels_statistics"
),
NGX_HTTP_SRV_CONF
|
NGX_HTTP_LOC_CONF
|
NGX_CONF_NOARGS
,
push_stream_channels_statistics
,
ngx_http_
push_stream_channels_statistics
,
NGX_HTTP_LOC_CONF_OFFSET
,
0
,
NULL
},
...
...
@@ -496,9 +496,9 @@ ngx_http_push_stream_setup_handler(ngx_conf_t *cf, void *conf, ngx_int_t (*handl
}
static
char
*
push_stream_channels_statistics
(
ngx_conf_t
*
cf
,
ngx_command_t
*
cmd
,
void
*
conf
)
ngx_http_
push_stream_channels_statistics
(
ngx_conf_t
*
cf
,
ngx_command_t
*
cmd
,
void
*
conf
)
{
char
*
rc
=
ngx_http_push_stream_setup_handler
(
cf
,
conf
,
&
push_stream_channels_statistics_handler
);
char
*
rc
=
ngx_http_push_stream_setup_handler
(
cf
,
conf
,
&
ngx_http_
push_stream_channels_statistics_handler
);
if
(
rc
==
NGX_CONF_OK
)
{
ngx_http_push_stream_loc_conf_t
*
pslcf
=
conf
;
...
...
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