forked from openresty/lua-nginx-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathngx_http_lua_ssl.h
More file actions
47 lines (25 loc) · 1.02 KB
/
Copy pathngx_http_lua_ssl.h
File metadata and controls
47 lines (25 loc) · 1.02 KB
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
/*
* Copyright (C) Yichun Zhang (agentzh)
*/
#ifndef _NGX_HTTP_LUA_SSL_H_INCLUDED_
#define _NGX_HTTP_LUA_SSL_H_INCLUDED_
#include "ngx_http_lua_common.h"
#if (NGX_HTTP_SSL)
typedef struct {
ngx_connection_t *connection; /* original true connection */
ngx_http_request_t *request; /* fake request */
ngx_pool_cleanup_pt *cleanup;
ngx_ssl_session_t *session; /* retrurn value for openssl's
* session_get_cb */
ngx_str_t session_id;
int exit_code; /* exit code for openssl's
set_cert_cb callback */
unsigned done:1;
unsigned aborted:1;
unsigned entered_cert_handler:1;
unsigned entered_sess_fetch_handler:1;
} ngx_http_lua_ssl_ctx_t;
ngx_int_t ngx_http_lua_ssl_init(ngx_log_t *log);
extern int ngx_http_lua_ssl_ctx_index;
#endif
#endif /* _NGX_HTTP_LUA_SSL_H_INCLUDED_ */