Changeset 4963516 in mod_gnutls
- Timestamp:
- Nov 6, 2018, 1:36:22 AM (4 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- a26d3f6
- Parents:
- d4c1a4e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
rd4c1a4e r4963516 183 183 const apr_array_header_t *pupgrades = NULL; 184 184 apr_status_t ret = 185 ap_get_protocol_upgrades(ctxt->c, NULL, ctxt-> c->base_server,185 ap_get_protocol_upgrades(ctxt->c, NULL, ctxt->sc->s, 186 186 /*report_all*/ 0, &pupgrades); 187 187 if (ret != APR_SUCCESS) … … 254 254 apr_pstrndup(ctxt->c->pool, (char*) alpn_proto.data, alpn_proto.size); 255 255 const char *selected = 256 ap_select_protocol(ctxt->c, NULL, ctxt->c->base_server, 257 client_protos); 256 ap_select_protocol(ctxt->c, NULL, ctxt->sc->s, client_protos); 258 257 259 258 /* ap_select_protocol() will return NULL if none of the ALPN … … 288 287 __func__, selected); 289 288 apr_status_t status = ap_switch_protocol(ctxt->c, NULL, 290 ctxt-> c->base_server,289 ctxt->sc->s, 291 290 selected); 292 291 if (status != APR_SUCCESS)
Note: See TracChangeset
for help on using the changeset viewer.