diff options
Diffstat (limited to 'src/stream/ngx_stream.h')
-rw-r--r-- | src/stream/ngx_stream.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index 15b96ff19..9e4169c38 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -49,9 +49,7 @@ typedef struct { unsigned bind:1; unsigned wildcard:1; -#if (NGX_STREAM_SSL) unsigned ssl:1; -#endif #if (NGX_HAVE_INET6) unsigned ipv6only:1; #endif @@ -71,9 +69,7 @@ typedef struct { typedef struct { ngx_stream_conf_ctx_t *ctx; ngx_str_t addr_text; -#if (NGX_STREAM_SSL) unsigned ssl:1; -#endif unsigned proxy_protocol:1; } ngx_stream_addr_conf_t; @@ -117,9 +113,7 @@ typedef enum { NGX_STREAM_POST_ACCEPT_PHASE = 0, NGX_STREAM_PREACCESS_PHASE, NGX_STREAM_ACCESS_PHASE, -#if (NGX_STREAM_SSL) NGX_STREAM_SSL_PHASE, -#endif NGX_STREAM_PREREAD_PHASE, NGX_STREAM_CONTENT_PHASE, NGX_STREAM_LOG_PHASE @@ -223,9 +217,7 @@ struct ngx_stream_session_s { ngx_int_t phase_handler; ngx_uint_t status; -#if (NGX_STREAM_SSL) unsigned ssl:1; -#endif unsigned stat_processing:1; |