From 0ce82fc33a29426c7683cd58b0dd086bc980aec0 Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Thu, 29 Sep 2016 18:06:02 +0300 Subject: Modules compatibility: health check fields. --- src/stream/ngx_stream.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/stream') diff --git a/src/stream/ngx_stream.h b/src/stream/ngx_stream.h index deca8ae62..c4bb61726 100644 --- a/src/stream/ngx_stream.h +++ b/src/stream/ngx_stream.h @@ -226,8 +226,10 @@ struct ngx_stream_session_s { ngx_uint_t status; #if (NGX_STREAM_SSL) - ngx_uint_t ssl; /* unsigned ssl:1; */ + unsigned ssl:1; #endif + + unsigned health_check:1; }; -- cgit