summaryrefslogtreecommitdiff
path: root/ngx_stream_lua-0.0.16/src/ngx_stream_lua_ssl.h
blob: 352b709ea661f07a8ef813702c1956f8c3edc622 (plain)
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
52
53
54
55
56
57
58
59
60
61
/*
 * !!! DO NOT EDIT DIRECTLY !!!
 * This file was automatically generated from the following template:
 *
 * src/subsys/ngx_subsys_lua_ssl.h.tt2
 */


/*
 * Copyright (C) Yichun Zhang (agentzh)
 */


#ifndef _NGX_STREAM_LUA_SSL_H_INCLUDED_
#define _NGX_STREAM_LUA_SSL_H_INCLUDED_


#include "ngx_stream_lua_common.h"


#if (NGX_STREAM_SSL)


typedef struct {
    ngx_connection_t            *connection; /* original true connection */
    ngx_stream_lua_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_client_hello_cb or
                                            set_cert_cb callback */

    int                      ctx_ref;    /* reference to anchor
                                            request ctx data in lua
                                            registry */

    unsigned                 done:1;
    unsigned                 aborted:1;

    unsigned                 entered_client_hello_handler:1;
    unsigned                 entered_cert_handler:1;
    unsigned                 entered_sess_fetch_handler:1;
} ngx_stream_lua_ssl_ctx_t;


ngx_int_t ngx_stream_lua_ssl_init(ngx_log_t *log);


extern int ngx_stream_lua_ssl_ctx_index;


#endif


#endif  /* _NGX_STREAM_LUA_SSL_H_INCLUDED_ */