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

Move the provider interface to a separate header file for mod_proxy_fdpass.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@725943 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Paul Querna
2008-12-12 08:33:31 +00:00
parent ad762da5ad
commit 3161002dc7
2 changed files with 42 additions and 8 deletions

View File

@@ -27,14 +27,7 @@
/* for apr_wait_for_io_or_timeout */
#include "apr_support.h"
#define PROXY_FDPASS_FLUSHER "proxy_fdpass_flusher"
typedef struct proxy_fdpass_flush proxy_fdpass_flush;
struct proxy_fdpass_flush {
const char *name;
int (*flusher)(request_rec *r);
void *context;
};
#include "mod_proxy_fdpass.h"
module AP_MODULE_DECLARE_DATA proxy_fdpass_module;