summaryrefslogtreecommitdiff
path: root/os/unix
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2009-03-29 14:41:02 +0000
committerJeff Trawick <trawick@apache.org>2009-03-29 14:41:02 +0000
commita1908585a8c3caa0438a917ac2f802b97d21e3a0 (patch)
tree70df0f73761758f0170ef3dfda8ca0a0edf569c7 /os/unix
parentf72c7532f1da9f1852249c781d07096bf4fc2925 (diff)
downloadhttpd-a1908585a8c3caa0438a917ac2f802b97d21e3a0.tar.gz
Core can specify a platform-specific rewrite args hook. Use that on Unix.
Windows continues to specify this in the MPM, at least until someone can separate out the MPM-specific bits. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@759699 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix')
-rw-r--r--os/unix/os.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/unix/os.h b/os/unix/os.h
index 029b1113d1..5c7fbdff32 100644
--- a/os/unix/os.h
+++ b/os/unix/os.h
@@ -40,6 +40,10 @@
* parent process. */
#define AP_NEED_SET_MUTEX_PERMS 1
+/* Define command-line rewriting for this platform, handled by core.
+ */
+#define AP_PLATFORM_REWRITE_ARGS_HOOK ap_mpm_rewrite_args
+
#ifdef _OSD_POSIX
pid_t os_fork(const char *user);
#endif