summaryrefslogtreecommitdiff
path: root/include/http_log.h
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2005-05-20 10:50:17 +0000
committerJeff Trawick <trawick@apache.org>2005-05-20 10:50:17 +0000
commitb5ed63df6080ab87bcf710a1d41cc84b75ad1fe2 (patch)
treea6b2832e3fedafd2f58fb91d5cf0386015edc9c8 /include/http_log.h
parentdce9ea54e0230b2108f9dbd1de679271e9bf787a (diff)
downloadhttpd-b5ed63df6080ab87bcf710a1d41cc84b75ad1fe2.tar.gz
The new function ap_logs_child_init() is intended for use
only by the core server. Require CORE_PRIVATE to obtain the prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@171093 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_log.h')
-rw-r--r--include/http_log.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/http_log.h b/include/http_log.h
index b6b5a7affb..8912beca0b 100644
--- a/include/http_log.h
+++ b/include/http_log.h
@@ -116,6 +116,8 @@ AP_DECLARE(apr_status_t) ap_replace_stderr_log(apr_pool_t *p,
int ap_open_logs(apr_pool_t *pconf, apr_pool_t *plog,
apr_pool_t *ptemp, server_rec *s_main);
+#ifdef CORE_PRIVATE
+
/**
* Perform special processing for piped loggers in MPM child
* processes.
@@ -126,6 +128,8 @@ int ap_open_logs(apr_pool_t *pconf, apr_pool_t *plog,
*/
void ap_logs_child_init(apr_pool_t *p, server_rec *s);
+#endif /* CORE_PRIVATE */
+
/*
* The primary logging functions, ap_log_error, ap_log_rerror, ap_log_cerror,
* and ap_log_perror use a printf style format string to build the log message.