cvs commit: apache-apr/pthreads/src/main http_config.c http_main.c

1999-02-16 Thread manoj
manoj 99/02/15 22:07:10 Modified:pthreads/src/main http_config.c http_main.c Log: The code used to assume that a 0 fd is an error, which is not the case. Now, -1 is used as the error state instead (as in apache-1.3). Revision ChangesPath 1.8 +1 -1

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-16 Thread manoj
manoj 99/02/15 23:10:29 Modified:pthreads/src/main http_main.c Log: Clean up a nasty memory leak. Now apache-apr uses a per-connection pool (ptrans) just like Apache 1.3. Previously, pchild was used, and in my tests, there was anywhere from 12-24k of memory lost per request.

cvs commit: apache-apr/pthreads/src/modules/standard mod_status.c

1999-02-16 Thread manoj
manoj 99/02/15 23:41:10 Modified:pthreads/src/modules/standard mod_status.c Log: Add some description of new scoreboard modes of operation. Revision ChangesPath 1.6 +2 -0 apache-apr/pthreads/src/modules/standard/mod_status.c Index: mod_status.c

cvs commit: apache-1.3/src/os/win32/installer/installdll install.c

1999-02-16 Thread pcs
pcs 99/02/16 04:09:21 Modified:src/os/win32/installer/installdll install.c Log: Write a log of what INSTALL.DLL does. The log file will be called install.log in the installed Apache directory. Revision ChangesPath 1.3 +79 -0

cvs commit: apache-1.3/src/os/win32/installer/installdll install.c install.dsp install.mak

1999-02-16 Thread pcs
pcs 99/02/16 04:28:11 Modified:src/os/win32/installer/installdll install.c install.dsp install.mak Log: Use ap_snprintf when writing printf formats to fixed length buffers, so avoid potential buffer overruns. Revision ChangesPath 1.4

cvs commit: apache-1.3/src/os/win32/installer/installdll/test resource.h test.c test.mak test.rc

1999-02-16 Thread pcs
pcs 99/02/16 04:31:45 Modified:src/os/win32/installer/installdll/test resource.h test.c test.mak test.rc Log: Make test.exe INSTALL.DLL tester a bit more end-user friendly. The menu option to run the INSTALL.DLL function is now Configure|Configure.

cvs commit: apache-apr/docs impl.txt

1999-02-16 Thread rbb
rbb 99/02/16 04:57:00 Added: docs impl.txt Log: A first stab at some implementation suggestions for APR types. The only one I have really thought about is the APRFile, but I am putting the rest out as well. Everybody have a look and make some comments. Revision

cvs commit: apache-apr/docs dir_struct.txt

1999-02-16 Thread rbb
rbb 99/02/16 05:10:08 Added: docs dir_struct.txt Log: Just a very basic outline for the directory structure for APR. When people start working on it, it is better to have everything laid out for them. Plus, I really wanted to get some of my ideas out in the open

cvs commit: apache-apr/docs apr-function.txt

1999-02-16 Thread rbb
rbb 99/02/16 05:11:01 Modified:docs apr-function.txt Log: Added some Design principles to this document. These are important things that nobody has mentioned yet. Revision ChangesPath 1.6 +11 -0 apache-apr/docs/apr-function.txt Index:

cvs commit: apache-1.3/src/support suexec.c

1999-02-16 Thread martin
martin 99/02/16 05:41:01 Modified:src/support suexec.c Log: Initialize Job Environment on BS2000 (not relevant for any other platform) Revision ChangesPath 1.49 +27 -0 apache-1.3/src/support/suexec.c Index: suexec.c

cvs commit: apache-1.3/src/modules/proxy proxy_util.c

1999-02-16 Thread martin
martin 99/02/16 06:29:53 Modified:.STATUS src CHANGES src/main http_protocol.c src/modules/proxy proxy_util.c Log: Allow apache acting as a proxy server to relay the real reason of a failure to a client rather than the

cvs commit: apache-site LICENSE.txt

1999-02-16 Thread coar
coar99/02/16 06:52:28 Added: .LICENSE.txt Log: I'm tired of having to tell people to unpack the distribution in order to find this. With it on the main site, we can at least give them a URL. Revision ChangesPath 1.1

cvs commit: apache-1.3/src/support ab.c

1999-02-16 Thread martin
martin 99/02/16 07:05:41 Modified:src/support ab.c Log: Allow running ab with HTML output generation. Submitted by: David N. Welton [EMAIL PROTECTED] Reviewed by: Martin Kraemer Revision ChangesPath 1.19 +110 -11 apache-1.3/src/support/ab.c Index:

cvs commit: apache-1.3/htdocs/manual/misc FAQ.html

1999-02-16 Thread coar
coar99/02/16 07:11:31 Modified:htdocs/manual/misc FAQ.html Log: Add the licence question to the FAQ.. Revision ChangesPath 1.140 +15 -1 apache-1.3/htdocs/manual/misc/FAQ.html Index: FAQ.html

cvs commit: apache-site index.html ABOUT_APACHE.html

1999-02-16 Thread coar
coar99/02/16 07:13:41 Modified:.index.html ABOUT_APACHE.html Log: Add the LICENSE pointers. Revision ChangesPath 1.74 +19 -20apache-site/index.html Index: index.html ===

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-16 Thread rbb
rbb 99/02/16 07:34:04 Modified:pthreads/src/main http_main.c Log: First pass at accept loop serialization. Right now, it is one mutex for the whole server. This should be one mutex per socket, but I just wanted to get the basic code in, I'll clean it up later.

cvs commit: apache-apr/pthreads/src/main http_config.c http_main.c

1999-02-16 Thread rbb
rbb 99/02/16 08:00:50 Modified:pthreads/src/include httpd.h pthreads/src/main http_config.c http_main.c Log: Removing index from listeners_rec. This was left over from the original threading port, but is no longer used anywhere in the code. Revision

cvs commit: apache-apr STATUS

1999-02-16 Thread rbb
rbb 99/02/16 08:04:11 Modified:.STATUS Log: Update the STATUS file.Update the STATUS file. Revision ChangesPath 1.7 +24 -13apache-apr/STATUS Index: STATUS === RCS file:

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-16 Thread rbb
rbb 99/02/16 10:31:58 Modified:pthreads/src/main http_main.c Log: Code to properly finish a child process. This makes sure the child process calls the proper module functions, and sets the scoreboard to SERVER_DEAD for all threads. Submitted by: Manoj Kasichainula and

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-16 Thread rbb
rbb 99/02/16 10:42:02 Modified:pthreads/src/main http_main.c Log: Fix compile errors associated with last patch. Submitted by: Manoj and Ryan Revision ChangesPath 1.33 +2 -4 apache-apr/pthreads/src/main/http_main.c Index: http_main.c

cvs commit: apache-apr/pthreads/src/main http_main.c

1999-02-16 Thread rbb
rbb 99/02/16 13:37:33 Modified:pthreads/src/main http_main.c Log: Added back the accept_mutex_init line. Don't know how I forgot it in my first patch for inter-process serialization. Revision ChangesPath 1.34 +1 -0

Re: cvs commit: apache-site LICENSE.txt

1999-02-16 Thread Brian Behlendorf
On 16 Feb 1999 [EMAIL PROTECTED] wrote: Added: .LICENSE.txt Log: I'm tired of having to tell people to unpack the distribution in order to find this. With it on the main site, we can at least give them a URL. It was always available as