You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2008/12/12 09:33:31 UTC

svn commit: r725943 - in /httpd/httpd/trunk/modules/proxy: mod_proxy_fdpass.c mod_proxy_fdpass.h

Author: pquerna
Date: Fri Dec 12 00:33:31 2008
New Revision: 725943

URL: http://svn.apache.org/viewvc?rev=725943&view=rev
Log:
Move the provider interface to a separate header file for mod_proxy_fdpass.

Added:
    httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h   (with props)
Modified:
    httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.c

Modified: httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.c?rev=725943&r1=725942&r2=725943&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.c (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.c Fri Dec 12 00:33:31 2008
@@ -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;
 

Added: httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h?rev=725943&view=auto
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h (added)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h Fri Dec 12 00:33:31 2008
@@ -0,0 +1,41 @@
+/* Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * @file mod_proxy_fdpass.h
+ * @brief FD Passing interfaces
+ *
+ * @addtogroup FDPass_provider
+ * @{
+ */
+
+#include "mod_proxy.h"
+
+#ifndef _PROXY_FDPASS_H_
+#define _PROXY_FDPASS_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;
+};
+
+#endif /* _PROXY_FDPASS_H_ */
+/** @} */
+

Propchange: httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: httpd/httpd/trunk/modules/proxy/mod_proxy_fdpass.h
------------------------------------------------------------------------------
    svn:mime-type = text/plain