forked from AlexWoo/nginx-rtmp-module
-
Notifications
You must be signed in to change notification settings - Fork 42
/
ngx_live.h
42 lines (25 loc) · 832 Bytes
/
ngx_live.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright (C) AlexWoo(Wu Jie) [email protected]
*/
#ifndef _NGX_LIVE_H_INCLUDED_
#define _NGX_LIVE_H_INCLUDED_
#include "ngx_rtmp.h"
typedef struct {
size_t stream_buckets;
size_t server_buckets;
ngx_live_server_t **servers;
ngx_live_server_t *free_server;
ngx_live_stream_t *free_stream;
ngx_uint_t alloc_server_count;
ngx_uint_t free_server_count;
ngx_uint_t alloc_stream_count;
ngx_uint_t free_stream_count;
ngx_pool_t *pool;
} ngx_live_conf_t;
extern ngx_module_t ngx_live_module;
/*
* paras:
* r: http request to query status of rbuf
*/
ngx_chain_t *ngx_live_state(ngx_http_request_t *r);
#endif