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
39f8e0bc
Commit
39f8e0bc
authored
Jun 04, 2011
by
Wandenberg Peixoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change dependency order, putting setup file as the first one
parent
8e467fba
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
ngx_http_push_stream_module_ipc.h
include/ngx_http_push_stream_module_ipc.h
+2
-0
ngx_http_push_stream_module_setup.h
include/ngx_http_push_stream_module_setup.h
+3
-0
ngx_http_push_stream_module.c
src/ngx_http_push_stream_module.c
+1
-1
No files found.
include/ngx_http_push_stream_module_ipc.h
View file @
39f8e0bc
...
@@ -48,6 +48,8 @@ static ngx_channel_t NGX_CMD_HTTP_PUSH_STREAM_CENSUS_SUBSCRIBERS = {52, 0, 0, -1
...
@@ -48,6 +48,8 @@ static ngx_channel_t NGX_CMD_HTTP_PUSH_STREAM_CENSUS_SUBSCRIBERS = {52, 0, 0, -1
// worker processes of the world, unite.
// worker processes of the world, unite.
ngx_socket_t
ngx_http_push_stream_socketpairs
[
NGX_MAX_PROCESSES
][
2
];
ngx_socket_t
ngx_http_push_stream_socketpairs
[
NGX_MAX_PROCESSES
][
2
];
static
ngx_int_t
ngx_http_push_stream_register_worker_message_handler
(
ngx_cycle_t
*
cycle
);
static
void
ngx_http_push_stream_broadcast
(
ngx_http_push_stream_channel_t
*
channel
,
ngx_http_push_stream_msg_t
*
msg
,
ngx_log_t
*
log
);
static
void
ngx_http_push_stream_broadcast
(
ngx_http_push_stream_channel_t
*
channel
,
ngx_http_push_stream_msg_t
*
msg
,
ngx_log_t
*
log
);
static
ngx_int_t
ngx_http_push_stream_alert_worker
(
ngx_pid_t
pid
,
ngx_int_t
slot
,
ngx_log_t
*
log
,
ngx_channel_t
command
);
static
ngx_int_t
ngx_http_push_stream_alert_worker
(
ngx_pid_t
pid
,
ngx_int_t
slot
,
ngx_log_t
*
log
,
ngx_channel_t
command
);
...
...
include/ngx_http_push_stream_module_setup.h
View file @
39f8e0bc
...
@@ -27,6 +27,9 @@
...
@@ -27,6 +27,9 @@
#define NGX_HTTP_PUSH_STREAM_MODULE_SETUP_H_
#define NGX_HTTP_PUSH_STREAM_MODULE_SETUP_H_
#include <ngx_http_push_stream_module.h>
#include <ngx_http_push_stream_module.h>
#include <ngx_http_push_stream_rbtree_util.h>
#include <ngx_http_push_stream_module_utils.h>
#include <ngx_http_push_stream_module_ipc.h>
#include <ngx_http_push_stream_module_publisher.h>
#include <ngx_http_push_stream_module_publisher.h>
#include <ngx_http_push_stream_module_subscriber.h>
#include <ngx_http_push_stream_module_subscriber.h>
...
...
src/ngx_http_push_stream_module.c
View file @
39f8e0bc
...
@@ -24,10 +24,10 @@
...
@@ -24,10 +24,10 @@
*/
*/
#include <ngx_http_push_stream_module.h>
#include <ngx_http_push_stream_module.h>
#include <ngx_http_push_stream_module_setup.c>
#include <ngx_http_push_stream_rbtree_util.c>
#include <ngx_http_push_stream_rbtree_util.c>
#include <ngx_http_push_stream_module_utils.c>
#include <ngx_http_push_stream_module_utils.c>
#include <ngx_http_push_stream_module_ipc.c>
#include <ngx_http_push_stream_module_ipc.c>
#include <ngx_http_push_stream_module_setup.c>
#include <ngx_http_push_stream_module_publisher.c>
#include <ngx_http_push_stream_module_publisher.c>
#include <ngx_http_push_stream_module_subscriber.c>
#include <ngx_http_push_stream_module_subscriber.c>
...
...
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