-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathnginx_core.pxd
51 lines (38 loc) · 1.22 KB
/
nginx_core.pxd
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
43
44
45
46
47
48
49
50
51
from cpython.bytes cimport PyBytes_FromStringAndSize
from .nginx_config cimport ngx_int_t, ngx_uint_t
cdef extern from "ngx_core.h":
const ngx_int_t NGX_OK
const ngx_int_t NGX_ERROR
const ngx_int_t NGX_DECLINED
const ngx_int_t NGX_AGAIN
const int NGX_LOG_EMERG
const int NGX_LOG_ALERT
const int NGX_LOG_CRIT
const int NGX_LOG_ERR
const int NGX_LOG_WARN
const int NGX_LOG_NOTICE
const int NGX_LOG_INFO
const int NGX_LOG_DEBUG
ctypedef int ngx_err_t
ctypedef int ngx_msec_t
ctypedef struct ngx_str_t:
size_t len
char *data
ctypedef struct ngx_module_t:
pass
ctypedef struct ngx_log_t:
pass
ctypedef struct ngx_cycle_t:
ngx_log_t *log
ctypedef struct ngx_queue_t:
ngx_queue_t *prev
ngx_queue_t *next
void *ngx_calloc(size_t size, ngx_log_t *log)
void ngx_free(void *p)
void ngx_log_error(ngx_uint_t level,
ngx_log_t *log,
ngx_err_t err,
const char *fmt)
cdef inline str from_nginx_str(ngx_str_t str):
return PyBytes_FromStringAndSize(<char*>str.data,
str.len).decode('iso-8859-1')