Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
http
>
pound
> pound_2.6_SNI_Optimization.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File pound_2.6_SNI_Optimization.patch of Package pound
index 19335e0..ff879aa 100644 --- a/config.c +++ b/config.c @@ -1100,9 +1100,11 @@ parse_HTTPS(void) if(!has_addr || !has_port || res->ctx == NULL) conf_err("ListenHTTPS missing Address, Port or Certificate - aborted"); #ifdef SSL_CTRL_SET_TLSEXT_SERVERNAME_CB - if(!SSL_CTX_set_tlsext_servername_callback(res->ctx->ctx, SNI_server_name) - || !SSL_CTX_set_tlsext_servername_arg(res->ctx->ctx, res->ctx)) - conf_err("ListenHTTPS: can't set SNI callback"); + // Only set callback if we have more than one cert + if(res->ctx->next) + if(!SSL_CTX_set_tlsext_servername_callback(res->ctx->ctx, SNI_server_name) + || !SSL_CTX_set_tlsext_servername_arg(res->ctx->ctx, res->ctx)) + conf_err("ListenHTTPS: can't set SNI callback"); #endif for(pc = res->ctx; pc; pc = pc->next) { SSL_CTX_set_mode(pc->ctx, SSL_MODE_AUTO_RETRY); -- 1.7.7.4