diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-03 15:25:40 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-03 15:25:40 +0000 |
commit | 3364dc6eb780a499e1a0c245330a843f15104510 (patch) | |
tree | 46375652692c718ee53ad9aaeaaa48791d7d6d29 /src/http/modules/ngx_http_ssl_module.h | |
parent | 528cdb7c2cfa53012da651e4c16b9bb7ba8ddcd2 (diff) | |
download | nginx-3364dc6eb780a499e1a0c245330a843f15104510.tar.gz nginx-3364dc6eb780a499e1a0c245330a843f15104510.zip |
move the session cache callbacks to the ngx_openssl_module
Diffstat (limited to 'src/http/modules/ngx_http_ssl_module.h')
-rw-r--r-- | src/http/modules/ngx_http_ssl_module.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/http/modules/ngx_http_ssl_module.h b/src/http/modules/ngx_http_ssl_module.h index 7a5c6d5ad..1ef1ffe0f 100644 --- a/src/http/modules/ngx_http_ssl_module.h +++ b/src/http/modules/ngx_http_ssl_module.h @@ -13,33 +13,6 @@ #include <ngx_http.h> -typedef struct ngx_http_ssl_cached_sess_s ngx_http_ssl_cached_sess_t; - - -typedef struct { - ngx_rbtree_node_t node; - u_char *id; - size_t len; - ngx_http_ssl_cached_sess_t *session; -} ngx_http_ssl_sess_id_t; - - -struct ngx_http_ssl_cached_sess_s { - ngx_http_ssl_cached_sess_t *prev; - ngx_http_ssl_cached_sess_t *next; - time_t expire; - ngx_http_ssl_sess_id_t *sess_id; - u_char asn1[1]; -}; - - -typedef struct { - ngx_rbtree_t *session_rbtree; - ngx_http_ssl_cached_sess_t session_cache_head; - ngx_http_ssl_cached_sess_t session_cache_tail; -} ngx_http_ssl_sesssion_cache_t; - - typedef struct { ngx_flag_t enable; |