Commit 39f8e0bc authored by Wandenberg Peixoto's avatar Wandenberg Peixoto

change dependency order, putting setup file as the first one

parent 8e467fba
...@@ -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);
......
...@@ -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>
......
...@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment