summaryrefslogtreecommitdiffstats
path: root/server/listen.c
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2001-02-10 15:04:21 +0100
committerGreg Stein <gstein@apache.org>2001-02-10 15:04:21 +0100
commit5dc34feb12e4147e47140881ba18964dc27d687f (patch)
tree5d3b3a81132a120a922c4987782be1c31c78cf72 /server/listen.c
parentClean up some of the includes: (diff)
downloadapache2-5dc34feb12e4147e47140881ba18964dc27d687f.tar.xz
apache2-5dc34feb12e4147e47140881ba18964dc27d687f.zip
*) continued header revamping
*) torch some headers (and some libs) from the autoconf stuff git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88061 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/listen.c')
-rw-r--r--server/listen.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/server/listen.c b/server/listen.c
index 3617e08da3..46aafe083a 100644
--- a/server/listen.c
+++ b/server/listen.c
@@ -57,19 +57,20 @@
*/
#include "apr_network_io.h"
+#include "apr_strings.h"
+
+#define APR_WANT_STRFUNC
+#include "apr_want.h"
#define CORE_PRIVATE
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"
#include "ap_listen.h"
-#include "apr_strings.h"
#include "http_log.h"
#include "mpm.h"
#include "mpm_common.h"
-#ifdef HAVE_STRING_H
-#include <string.h>
-#endif
+
ap_listen_rec *ap_listeners;
#if APR_HAVE_IPV6