Changeset 04e6e65 in mod_gnutls
- Timestamp:
- Jun 3, 2016, 6:49:21 PM (5 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, master, proxy-ticket, upstream
- Children:
- f785704
- Parents:
- 379a297
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
include/mod_gnutls.h.in
r379a297 r04e6e65 345 345 346 346 /** 347 * Init the Cache after Configuration is done348 */349 int mgs_cache_post_config(apr_pool_t *p, server_rec *s,350 mgs_srvconf_rec *sc);351 /**352 * Init the Cache inside each Process353 */354 int mgs_cache_child_init(apr_pool_t *p, server_rec *s,355 mgs_srvconf_rec *sc);356 /**357 * Setup the Session Caching358 */359 int mgs_cache_session_init(mgs_handle_t *ctxt);360 361 #define GNUTLS_SESSION_ID_STRING_LEN \362 ((GNUTLS_MAX_SESSION_ID + 1) * 2)363 364 /**365 347 * Perform any reinitialization required in PKCS #11 366 348 */ 367 349 int mgs_pkcs11_reinit(server_rec * s); 368 350 369 /**370 * Convert a SSL Session ID into a Null Terminated Hex Encoded String371 * @param id raw SSL Session ID372 * @param idlen Length of the raw Session ID373 * @param str Location to store the Hex Encoded String374 * @param strsize The Maximum Length that can be stored in str375 */376 char *mgs_session_id2sz(unsigned char *id, int idlen,377 char *str, int strsize);378 379 /**380 * Convert a time_t into a Null Terminated String381 * @param t time_t time382 * @param str Location to store the Hex Encoded String383 * @param strsize The Maximum Length that can be stored in str384 */385 char *mgs_time2sz(time_t t, char *str, int strsize);386 351 387 352 -
src/Makefile.am
r379a297 r04e6e65 10 10 mod_gnutls_la_CFLAGS = -Wall ${MODULE_CFLAGS} 11 11 mod_gnutls_la_LDFLAGS = -module -avoid-version ${MODULE_LIBS} 12 noinst_HEADERS = gnutls_ ocsp.h12 noinst_HEADERS = gnutls_cache.h gnutls_ocsp.h 13 13 14 14 apmodpkglib_LTLIBRARIES = mod_gnutls.la -
src/gnutls_cache.c
r379a297 r04e6e65 19 19 */ 20 20 21 #include "gnutls_cache.h" 21 22 #include "mod_gnutls.h" 22 23 -
src/gnutls_hooks.c
r379a297 r04e6e65 21 21 22 22 #include "mod_gnutls.h" 23 #include "gnutls_cache.h" 23 24 #include "gnutls_ocsp.h" 24 25 #include "http_vhost.h"
Note: See TracChangeset
for help on using the changeset viewer.