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
8664025f
Commit
8664025f
authored
May 11, 2011
by
Rogério Carvalho Schneider
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Including license notice into the source
parent
25303f10
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
335 additions
and
18 deletions
+335
-18
config
config
+25
-0
ngx_http_push_stream_module.h
include/ngx_http_push_stream_module.h
+20
-3
ngx_http_push_stream_module_ipc.h
include/ngx_http_push_stream_module_ipc.h
+20
-2
ngx_http_push_stream_module_publisher.h
include/ngx_http_push_stream_module_publisher.h
+20
-2
ngx_http_push_stream_module_setup.h
include/ngx_http_push_stream_module_setup.h
+20
-2
ngx_http_push_stream_module_subscriber.h
include/ngx_http_push_stream_module_subscriber.h
+20
-2
ngx_http_push_stream_module_utils.h
include/ngx_http_push_stream_module_utils.h
+20
-2
ngx_http_push_stream_rbtree_util.h
include/ngx_http_push_stream_rbtree_util.h
+20
-2
ngx_http_push_stream_module.c
src/ngx_http_push_stream_module.c
+25
-0
ngx_http_push_stream_module_ipc.c
src/ngx_http_push_stream_module_ipc.c
+25
-1
ngx_http_push_stream_module_publisher.c
src/ngx_http_push_stream_module_publisher.c
+25
-0
ngx_http_push_stream_module_setup.c
src/ngx_http_push_stream_module_setup.c
+20
-2
ngx_http_push_stream_module_subscriber.c
src/ngx_http_push_stream_module_subscriber.c
+25
-0
ngx_http_push_stream_module_utils.c
src/ngx_http_push_stream_module_utils.c
+25
-0
ngx_http_push_stream_rbtree_util.c
src/ngx_http_push_stream_rbtree_util.c
+25
-0
No files found.
config
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* config
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
ngx_feature="http_push_stream_module"
ngx_feature="http_push_stream_module"
ngx_feature_name=
ngx_feature_name=
ngx_feature_run=no
ngx_feature_run=no
...
...
include/ngx_http_push_stream_module.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module.h
* ngx_http_push_stream_module.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_H_
...
@@ -13,7 +31,6 @@
...
@@ -13,7 +31,6 @@
#include <ngx_http.h>
#include <ngx_http.h>
#include <nginx.h>
#include <nginx.h>
typedef
struct
{
typedef
struct
{
size_t
shm_size
;
size_t
shm_size
;
}
ngx_http_push_stream_main_conf_t
;
}
ngx_http_push_stream_main_conf_t
;
...
...
include/ngx_http_push_stream_module_ipc.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_ipc.h
* ngx_http_push_stream_module_ipc.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_IPC_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_IPC_H_
...
...
include/ngx_http_push_stream_module_publisher.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_publisher.h
* ngx_http_push_stream_module_publisher.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_PUBLISHER_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_PUBLISHER_H_
...
...
include/ngx_http_push_stream_module_setup.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_setup.h
* ngx_http_push_stream_module_setup.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_SETUP_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_SETUP_H_
...
...
include/ngx_http_push_stream_module_subscriber.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_subscriber.h
* ngx_http_push_stream_module_subscriber.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_SUBSCRIBER_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_SUBSCRIBER_H_
...
...
include/ngx_http_push_stream_module_utils.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_utils.h
* ngx_http_push_stream_module_utils.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_UTILS_H_
#ifndef NGX_HTTP_PUSH_STREAM_MODULE_UTILS_H_
...
...
include/ngx_http_push_stream_rbtree_util.h
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_rbtree_util.h
* ngx_http_push_stream_rbtree_util.h
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#ifndef NGX_HTTP_PUSH_STREAM_RBTREE_UTIL_H_
#ifndef NGX_HTTP_PUSH_STREAM_RBTREE_UTIL_H_
...
...
src/ngx_http_push_stream_module.c
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_module.h>
#include <ngx_http_push_stream_module.h>
#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>
...
...
src/ngx_http_push_stream_module_ipc.c
View file @
8664025f
#include <ngx_http_push_stream_module_ipc.h>
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_ipc.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_module_ipc.h>
static
ngx_int_t
static
ngx_int_t
ngx_http_push_stream_init_ipc
(
ngx_cycle_t
*
cycle
,
ngx_int_t
workers
)
ngx_http_push_stream_init_ipc
(
ngx_cycle_t
*
cycle
,
ngx_int_t
workers
)
...
...
src/ngx_http_push_stream_module_publisher.c
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_publisher.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_module_publisher.h>
#include <ngx_http_push_stream_module_publisher.h>
static
ngx_int_t
static
ngx_int_t
...
...
src/ngx_http_push_stream_module_setup.c
View file @
8664025f
/*
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_setup.c
* ngx_http_push_stream_module_setup.c
*
*
*
Created on
: Oct 26, 2010
*
Created
: Oct 26, 2010
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com> & Rogéri
o Schneider <stockrt@gmail.com>
*
Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalh
o Schneider <stockrt@gmail.com>
*/
*/
#include <ngx_http_push_stream_module_setup.h>
#include <ngx_http_push_stream_module_setup.h>
...
...
src/ngx_http_push_stream_module_subscriber.c
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_subscriber.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_module_subscriber.h>
#include <ngx_http_push_stream_module_subscriber.h>
static
ngx_int_t
static
ngx_int_t
...
...
src/ngx_http_push_stream_module_utils.c
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_module_utils.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_module_utils.h>
#include <ngx_http_push_stream_module_utils.h>
static
ngx_inline
void
static
ngx_inline
void
...
...
src/ngx_http_push_stream_rbtree_util.c
View file @
8664025f
/*
* Copyright (C) 2010-2011 Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*
* This file is part of Nginx Push Stream Module.
*
* Nginx Push Stream Module 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 3 of the License, or
* (at your option) any later version.
*
* Nginx Push Stream Module 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 Nginx Push Stream Module. If not, see <http://www.gnu.org/licenses/>.
*
*
* ngx_http_push_stream_rbtree_util.c
*
* Created: Oct 26, 2010
* Authors: Wandenberg Peixoto <wandenberg@gmail.com>, Rogério Carvalho Schneider <stockrt@gmail.com>
*/
#include <ngx_http_push_stream_rbtree_util.h>
#include <ngx_http_push_stream_rbtree_util.h>
static
ngx_http_push_stream_channel_t
*
static
ngx_http_push_stream_channel_t
*
...
...
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