mod_echo.c revision 813bf7d72e14d04d4f40d4c5a6a2d93f203bf900
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik/* ====================================================================
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * The Apache Software License, Version 1.1
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * Copyright (c) 2000-2001 The Apache Software Foundation. All rights
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * Redistribution and use in source and binary forms, with or without
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * modification, are permitted provided that the following conditions
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * 1. Redistributions of source code must retain the above copyright
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * notice, this list of conditions and the following disclaimer.
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * 2. Redistributions in binary form must reproduce the above copyright
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * notice, this list of conditions and the following disclaimer in
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * the documentation and/or other materials provided with the
ae0a5011e2644eaa482ea1b9e1451eff05c676b9Lukas Slebodnik * distribution.
* Apache Software Foundation (http://www.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;
b = apr_bucket_flush_create();
return OK;
{ NULL }