comparison src/stream/ngx_stream_ssl_module.h @ 6115:61d7ae76647d

Stream: port from NGINX+.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 20 Apr 2015 13:05:11 +0300
parents
children 51e1f047d15d
comparison
equal deleted inserted replaced
6114:4a640716f4e2 6115:61d7ae76647d
1
2 /*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) Nginx, Inc.
5 */
6
7
8 #ifndef _NGX_STREAM_SSL_H_INCLUDED_
9 #define _NGX_STREAM_SSL_H_INCLUDED_
10
11
12 #include <ngx_config.h>
13 #include <ngx_core.h>
14 #include <ngx_stream.h>
15
16
17 typedef struct {
18 ngx_msec_t handshake_timeout;
19
20 ngx_flag_t prefer_server_ciphers;
21
22 ngx_ssl_t ssl;
23
24 ngx_uint_t protocols;
25
26 ssize_t builtin_session_cache;
27
28 time_t session_timeout;
29
30 ngx_str_t certificate;
31 ngx_str_t certificate_key;
32 ngx_str_t dhparam;
33 ngx_str_t ecdh_curve;
34
35 ngx_str_t ciphers;
36
37 ngx_array_t *passwords;
38
39 ngx_shm_zone_t *shm_zone;
40
41 ngx_flag_t session_tickets;
42 ngx_array_t *session_ticket_keys;
43 } ngx_stream_ssl_conf_t;
44
45
46 extern ngx_module_t ngx_stream_ssl_module;
47
48
49 #endif /* _NGX_STREAM_SSL_H_INCLUDED_ */