*) mod_dav: Fix improper encoding in PROPFIND responses. PR 56480.
+1: breser, ylavic, covener
- * mod_ssl: The SNI callback already logs a debug message when the vhost
- is found or no vhost matches. Log one when no name is provided
- by the client.
- trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1608284
- 2.4.x patch: Trunk patch works after "svn resolved docs/log-message-tags"
- +1: trawick, covener, minfrin
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
{
const char *servername =
SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
+ conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
- if (servername) {
- conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
- if (c) {
+ if (c) {
+ if (servername) {
if (ap_vhost_iterate_given_conn(c, ssl_find_vhost,
(void *)servername)) {
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(02043)
*/
}
}
+ else {
+ ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(02645)
+ "Server name not provided via TLS extension "
+ "(using default/first virtual host)");
+ }
}
return SSL_TLSEXT_ERR_NOACK;