mod_echo.c revision 2fc50921b88defeb7127985dfe4b4130175e069e
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher/* ====================================================================
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * The Apache Software License, Version 1.1
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * Copyright (c) 2000-2002 The Apache Software Foundation. All rights
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * Redistribution and use in source and binary forms, with or without
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * modification, are permitted provided that the following conditions
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * 1. Redistributions of source code must retain the above copyright
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * notice, this list of conditions and the following disclaimer.
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * 2. Redistributions in binary form must reproduce the above copyright
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * notice, this list of conditions and the following disclaimer in
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * the documentation and/or other materials provided with the
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * distribution.
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * 3. The end-user documentation included with the redistribution,
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * if any, must include the following acknowledgment:
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * "This product includes software developed by the
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * Apache Software Foundation (http://www.apache.org/)."
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * Alternately, this acknowledgment may appear in the software itself,
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * if and wherever such third-party acknowledgments normally appear.
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * 4. The names "Apache" and "Apache Software Foundation" must
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * not be used to endorse or promote products derived from this
291a6c8af9759e41cec6f332cb72606ca90768c3Pavel Březina * software without prior written permission. For written
65e8f538ad35ba7d86cd9e60a3d86aec34537027Stephen Gallagher * permission, please contact apache@apache.org.
#include "ap_config.h"
#include "ap_mmn.h"
#include "httpd.h"
#include "http_config.h"
#include "http_connection.h"
#include "apr_buckets.h"
#include "util_filter.h"
int bEnabled;
} EchoConfig;
return pConfig;
&echo_module);
return NULL;
apr_bucket *b;
&echo_module);
return DECLINED;
return OK;
{ NULL }