aboutsummaryrefslogtreecommitdiff
path: root/src/stream/ngx_stream_ssl_module.h
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2015-04-20 13:05:11 +0300
committerRuslan Ermilov <ru@nginx.com>2015-04-20 13:05:11 +0300
commitc799c82faad507e5f6082669b02f14d332f23a61 (patch)
tree39a38e1f2995952d24e7beef216c77963aaa7a30 /src/stream/ngx_stream_ssl_module.h
parenta2dac51398b4442437bccbdf01c103ae958600a7 (diff)
downloadnginx-c799c82faad507e5f6082669b02f14d332f23a61.tar.gz
nginx-c799c82faad507e5f6082669b02f14d332f23a61.zip
Stream: port from NGINX+.
Diffstat (limited to 'src/stream/ngx_stream_ssl_module.h')
-rw-r--r--src/stream/ngx_stream_ssl_module.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/stream/ngx_stream_ssl_module.h b/src/stream/ngx_stream_ssl_module.h
new file mode 100644
index 000000000..85e8b6ede
--- /dev/null
+++ b/src/stream/ngx_stream_ssl_module.h
@@ -0,0 +1,49 @@
+
+/*
+ * Copyright (C) Igor Sysoev
+ * Copyright (C) Nginx, Inc.
+ */
+
+
+#ifndef _NGX_STREAM_SSL_H_INCLUDED_
+#define _NGX_STREAM_SSL_H_INCLUDED_
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+#include <ngx_stream.h>
+
+
+typedef struct {
+ ngx_msec_t handshake_timeout;
+
+ ngx_flag_t prefer_server_ciphers;
+
+ ngx_ssl_t ssl;
+
+ ngx_uint_t protocols;
+
+ ssize_t builtin_session_cache;
+
+ time_t session_timeout;
+
+ ngx_str_t certificate;
+ ngx_str_t certificate_key;
+ ngx_str_t dhparam;
+ ngx_str_t ecdh_curve;
+
+ ngx_str_t ciphers;
+
+ ngx_array_t *passwords;
+
+ ngx_shm_zone_t *shm_zone;
+
+ ngx_flag_t session_tickets;
+ ngx_array_t *session_ticket_keys;
+} ngx_stream_ssl_conf_t;
+
+
+extern ngx_module_t ngx_stream_ssl_module;
+
+
+#endif /* _NGX_STREAM_SSL_H_INCLUDED_ */