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

Changed pools to contexts. Tested with prefork and pthread mpm's. I'll

check this out tomorrow and make sure everything was checked in correctly.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83852 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
1999-08-31 05:35:52 +00:00
parent e6991d4075
commit c37f14ddf3
101 changed files with 821 additions and 809 deletions

View File

@@ -9,7 +9,7 @@ typedef struct
int bEnabled;
} EchoConfig;
static void *create_echo_server_config(pool *p,server_rec *s)
static void *create_echo_server_config(ap_context_t *p,server_rec *s)
{
EchoConfig *pConfig=ap_pcalloc(p,sizeof *pConfig);
@@ -67,7 +67,7 @@ API_VAR_EXPORT module echo_module = {
NULL, /* merge per-directory config structures */
create_echo_server_config, /* create per-server config structure */
NULL, /* merge per-server config structures */
echo_cmds, /* command table */
echo_cmds, /* command ap_table_t */
NULL, /* handlers */
register_hooks /* register hooks */
};