mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-22 21:43:04 +00:00
BUG/MINOR: backend: fix compilation without ssl
sni_smp/sni_hash are reported as unused on compilation without USE_OPENSL and may cause compilation failure This does not need to be backported.
This commit is contained in:
parent
d773a4ee23
commit
edadf192fe
@ -1265,12 +1265,17 @@ int connect_server(struct stream *s)
|
|||||||
int reuse = 0;
|
int reuse = 0;
|
||||||
int init_mux = 0;
|
int init_mux = 0;
|
||||||
int err;
|
int err;
|
||||||
|
#ifdef USE_OPENSSL
|
||||||
struct sample *sni_smp = NULL;
|
struct sample *sni_smp = NULL;
|
||||||
|
#endif
|
||||||
struct sockaddr_storage *bind_addr;
|
struct sockaddr_storage *bind_addr;
|
||||||
int proxy_line_ret;
|
int proxy_line_ret;
|
||||||
int64_t hash = 0;
|
int64_t hash = 0;
|
||||||
struct conn_hash_params hash_params;
|
struct conn_hash_params hash_params;
|
||||||
XXH64_hash_t sni_hash, proxy_hash;
|
#ifdef USE_OPENSSL
|
||||||
|
XXH64_hash_t sni_hash;
|
||||||
|
#endif
|
||||||
|
XXH64_hash_t proxy_hash;
|
||||||
|
|
||||||
/* first, set unique connection parameters and then calculate hash */
|
/* first, set unique connection parameters and then calculate hash */
|
||||||
memset(&hash_params, 0, sizeof(hash_params));
|
memset(&hash_params, 0, sizeof(hash_params));
|
||||||
|
Loading…
Reference in New Issue
Block a user