Changeset e151b6f in mod_gnutls
- Timestamp:
- Jun 1, 2020, 6:18:25 AM (8 months ago)
- Branches:
- asyncio, master
- Children:
- f97f44c
- Parents:
- 764fef3
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/gnutls_hooks.c
r764fef3 re151b6f 1152 1152 } 1153 1153 1154 /* No cache means we cannot cache tickets. */ 1155 if (!ctxt->sc->cache_enable) 1156 return GNUTLS_E_SUCCESS; 1157 1154 1158 gnutls_datum_t ticket; 1155 1159 int ret = gnutls_session_get_data2(session, &ticket); -
src/gnutls_proxy.c
r764fef3 re151b6f 408 408 static void proxy_conn_load_session(mgs_handle_t *ctxt) 409 409 { 410 /* No cache means there cannot be a cached ticket. */ 411 if (!ctxt->sc->cache_enable) 412 return; 413 410 414 gnutls_datum_t data = {NULL, 0}; 411 415 data.data = gnutls_malloc(MGS_SESSION_FETCH_BUF_SIZE);
Note: See TracChangeset
for help on using the changeset viewer.