Changeset 5a6446d in mod_gnutls
- Timestamp:
- Apr 8, 2005, 5:15:51 PM (17 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, master, msva, proxy-ticket, upstream
- Children:
- 482f47f
- Parents:
- a8c1310
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
ra8c1310 r5a6446d 5 5 AC_CONFIG_SRCDIR([src/mod_gnutls.c]) 6 6 AC_CONFIG_AUX_DIR(config) 7 OOO_MAINTAIN_MODE 7 8 AM_MAINTAINER_MODE 8 9 AC_CANONICAL_TARGET -
include/mod_gnutls.h.in
ra8c1310 r5a6446d 44 44 45 45 #define MOD_GNUTLS_VERSION "@MOD_GNUTLS_VERSION@" 46 47 #define MOD_GNUTLS_DEBUG @OOO_MAINTAIN@ 46 48 47 49 typedef enum -
src/mod_gnutls.c
ra8c1310 r5a6446d 22 22 #endif 23 23 24 #if MOD_GNUTLS_DEBUG 24 25 static apr_file_t* debug_log_fp; 26 #endif 25 27 26 28 static apr_status_t mod_gnutls_cleanup_pre_config(void *data) … … 30 32 } 31 33 34 #if MOD_GNUTLS_DEBUG 32 35 static void gnutls_debug_log_all( int level, const char* str) 33 36 { 34 37 apr_file_printf(debug_log_fp, "<%d> %s\n", level, str); 35 38 } 39 #endif 36 40 37 41 static int mod_gnutls_hook_pre_config(apr_pool_t * pconf, … … 49 53 apr_pool_cleanup_null); 50 54 55 #if MOD_GNUTLS_DEBUG 51 56 apr_file_open(&debug_log_fp, "/tmp/gnutls_debug", 52 57 APR_APPEND|APR_WRITE|APR_CREATE, APR_OS_DEFAULT, pconf); … … 54 59 gnutls_global_set_log_level(9); 55 60 gnutls_global_set_log_function(gnutls_debug_log_all); 61 #endif 56 62 57 63 return OK;
Note: See TracChangeset
for help on using the changeset viewer.