comparison src/core/ngx_config.h @ 4041:f87edc142316 stable-1.0

Merge of r3960, r3961, r3962, r3963, r3965: SSL related fixes: *) MSIE export versions are rare now, so RSA 512 key is generated on demand and is shared among all hosts instead of pregenerating for every HTTPS host on configuraiton phase. This decreases start time for configuration with large number of HTTPS hosts. *) ECDHE support; patch by Adrian Kotelba *) fix build by gcc46 with -Wunused-value option *) fix SSL connection issues on platforms with 32-bit off_t *) do not try to reuse and save a SSL session for a peer created on the fly by ngx_http_upstream_create_round_robin_peer(), since the peer lives only during request so the saved SSL session will never be used again and just causes memory leak
author Igor Sysoev <igor@sysoev.ru>
date Mon, 29 Aug 2011 12:35:53 +0000
parents fb7995c7bdd9
children d620f497c50f
comparison
equal deleted inserted replaced
4040:0094c8636d5f 4041:f87edc142316
125 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffffLL 125 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffffLL
126 #else 126 #else
127 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffff 127 #define NGX_MAX_UINT32_VALUE (uint32_t) 0xffffffff
128 #endif 128 #endif
129 129
130 #define NGX_MAX_INT32_VALUE (uint32_t) 0x7fffffff
131
130 132
131 #endif /* _NGX_CONFIG_H_INCLUDED_ */ 133 #endif /* _NGX_CONFIG_H_INCLUDED_ */