1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Integrate mod_ssl into the Autoconf facility.

(currently only stub files are compiled)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89002 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ralf S. Engelschall
2001-05-05 09:25:52 +00:00
parent 4a0f798361
commit 680f9c0157
5 changed files with 236 additions and 2 deletions

View File

@@ -60,6 +60,11 @@
others think that what you
are doing is honourable.''
-- Ben Laurie, Apache-SSL author */
#include "httpd.h"
#include "http_config.h"
#if 0 /* XXX */
#include "mod_ssl.h"
/* _________________________________________________________________
@@ -72,7 +77,7 @@
* identify the module to SCCS `what' and RCS `ident' commands
*/
static char const sccsid[] = "@(#) mod_ssl/" MOD_SSL_VERSION " >";
static char const rcsid[] = "$Id: mod_ssl.c,v 1.2 2001/05/04 22:20:45 rse Exp $";
static char const rcsid[] = "$Id: mod_ssl.c,v 1.3 2001/05/05 09:25:52 rse Exp $";
/*
* the table of configuration directives we provide
@@ -244,3 +249,15 @@ module MODULE_VAR_EXPORT ssl_module = {
ssl_hook_CloseConnection /* socket connection close */
};
#endif /* XXX */
module AP_MODULE_DECLARE_DATA ssl_module = {
STANDARD20_MODULE_STUFF,
NULL, /* create per-directory config structure */
NULL, /* merge per-directory config structures */
NULL, /* create per-server config structure */
NULL, /* merge per-server config structures */
NULL, /* command apr_table_t */
NULL /* register hooks */
};