Changeset 4aa63a4 in mod_gnutls
- Timestamp:
- Apr 19, 2018, 2:08:30 PM (3 years ago)
- Branches:
- asyncio, debian/master, master, proxy-ticket
- Children:
- 5c62a6a
- Parents:
- e00a037
- Location:
- src
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Makefile.am
re00a037 r4aa63a4 7 7 8 8 mod_gnutls_la_SOURCES = mod_gnutls.c gnutls_io.c gnutls_cache.c \ 9 gnutls_config.c gnutls_hooks.c gnutls_ocsp.c gnutls_util.c 9 gnutls_config.c gnutls_hooks.c gnutls_ocsp.c gnutls_util.c \ 10 gnutls_watchdog.c 10 11 mod_gnutls_la_CFLAGS = -Wall ${MODULE_CFLAGS} 11 12 mod_gnutls_la_LDFLAGS = -module -avoid-version ${MODULE_LIBS} 12 noinst_HEADERS = gnutls_cache.h gnutls_config.h gnutls_ocsp.h gnutls_util.h 13 noinst_HEADERS = gnutls_cache.h gnutls_config.h gnutls_ocsp.h gnutls_util.h \ 14 gnutls_watchdog.h 13 15 14 16 apmodpkglib_LTLIBRARIES = mod_gnutls.la -
src/mod_gnutls.c
re00a037 r4aa63a4 30 30 int proxy, int enable); 31 31 32 #define MOD_HTTP2 "mod_http2.c" 32 33 static const char * const mod_proxy[] = { "mod_proxy.c", NULL }; 33 static const char * const mod_http2[] = { "mod_http2.c", NULL };34 static const char * const mod_http2[] = { MOD_HTTP2, NULL }; 34 35 35 36 static void gnutls_hooks(apr_pool_t * p __attribute__((unused))) 36 37 { 37 /* Try Run Post-Config Hook After mod_proxy */ 38 ap_hook_post_config(mgs_hook_post_config, mod_proxy, mod_http2, 38 /* Watchdog callbacks must be configured before post_config of 39 * mod_watchdog runs, or the watchdog won't be started. */ 40 static const char * const post_conf_succ[] = 41 { MOD_HTTP2, "mod_watchdog.c", NULL }; 42 ap_hook_post_config(mgs_hook_post_config, mod_proxy, post_conf_succ, 39 43 APR_HOOK_MIDDLE); 40 44 /* HTTP Scheme Hook */
Note: See TracChangeset
for help on using the changeset viewer.