listen.c revision 283cab4ec4c440fe33ce47778d85b1208e169a87
* Copyright (c) 1998-1999 The Apache Group. All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the Apache Group * 4. The names "Apache Server" and "Apache Group" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * 6. Redistributions of any form whatsoever must retain the following * "This product includes software developed by the Apache Group * THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Group and was originally based * on public domain software written at the National Center for * Supercomputing Applications, University of Illinois, Urbana-Champaign. * For more information on the Apache Group and the Apache HTTP server /* TODO: make_sock is just begging and screaming for APR abstraction */ "make_sock: for %s, setsockopt: (SO_REUSEADDR)",
addr);
"make_sock: for %s, setsockopt: (SO_KEEPALIVE)",
addr);
* To send data over high bandwidth-delay connections at full * speed we must force the TCP window to open wide enough to keep the * pipe full. The default window size on many systems * is only 4kB. Cross-country WAN connections of 100ms * at 1Mb/s are not impossible for well connected sites. * If we assume 100ms cross-country latency, * a 4kB buffer limits throughput to 40kB/s. * To avoid this problem I've added the SendBufferSize directive * to allow the web master to configure send buffer size. * The trade-off of larger buffers is that more kernel memory * is consumed. YMMV, know your customers and your network! * -John Heidemann <johnh@isi.edu> 25-Oct-96 * If no size is specified, use the kernel default. "make_sock: failed to set SendBufferSize for %s, " "make_sock: could not bind to %s",
addr);
"make_sock: unable to listen for connections on %s",
addr);
/* see if we've got an old listener for this address:port */ /* re-use existing record */ /* this has to survive restarts */ /* XXX - We need to deal with freeing this structure properly. */ "make_sock: failed to get a socket for %s",
addr);
/* allocate a default listener if necessary */ /* close the old listeners */ return "Missing IP address";
else if (
ports[
1] ==
'\0') {
return "Address must end in :<port-number>";
return "Port must be numeric";
return "ListenBacklog must be > 0";
return "SendBufferSize must be >= 512 bytes, or 0 for system default.";