BUG/MINOR: ssl: CO_FL_EARLY_DATA removal is managed by stream

Manage BoringSSL early_data as it is with openssl 1.1.1.
This commit is contained in:
Emmanuel Hocdet 2017-11-27 16:14:40 +01:00 committed by Willy Tarreau
parent 903ddfd9c8
commit cebd7962e2

View File

@ -5386,7 +5386,7 @@ static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int coun
if (ret > 0)
conn->flags |= CO_FL_EARLY_DATA;
} else {
conn->flags &= ~(CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA);
conn->flags &= ~(CO_FL_EARLY_SSL_HS);
}
}
#endif