@@ -372,41 +372,11 @@ h2_config *h2_config_rget(request_rec *r)
372
372
h2_config * h2_config_get (conn_rec * c )
373
373
{
374
374
h2_ctx * ctx = h2_ctx_get (c );
375
+
375
376
if (ctx -> config ) {
376
377
return ctx -> config ;
377
378
}
378
- if (!ctx -> server && ctx -> hostname ) {
379
- /* We have a host agreed upon via TLS SNI, but no request yet.
380
- * The sni host was accepted and therefore does match a server record
381
- * (vhost) for it. But we need to know which one.
382
- * Normally, it is enough to be set on the initial request on a
383
- * connection, but we need it earlier. Simulate a request and call
384
- * the vhost matching stuff.
385
- */
386
- apr_uri_t uri ;
387
- request_rec r ;
388
- memset (& uri , 0 , sizeof (uri ));
389
- uri .scheme = (char * )"https" ;
390
- uri .hostinfo = (char * )ctx -> hostname ;
391
- uri .hostname = (char * )ctx -> hostname ;
392
- uri .port_str = (char * )"" ;
393
- uri .port = c -> local_addr -> port ;
394
- uri .path = (char * )"/" ;
395
-
396
- memset (& r , 0 , sizeof (r ));
397
- r .uri = (char * )"/" ;
398
- r .connection = c ;
399
- r .pool = c -> pool ;
400
- r .hostname = ctx -> hostname ;
401
- r .headers_in = apr_table_make (c -> pool , 1 );
402
- r .parsed_uri = uri ;
403
- r .status = HTTP_OK ;
404
- r .server = r .connection -> base_server ;
405
- ap_update_vhost_from_headers (& r );
406
- ctx -> server = r .server ;
407
- }
408
-
409
- if (ctx -> server ) {
379
+ else if (ctx -> server ) {
410
380
ctx -> config = h2_config_sget (ctx -> server );
411
381
return ctx -> config ;
412
382
}
0 commit comments