cvs commit: apache-1.3/src/main buff.c

2000-01-11 Thread martin
martin 00/01/11 07:51:33 Modified:src CHANGES src/main buff.c Log: Thanks a lot to Dean for his chunked-code regression test! Sorry I found this so late, apparently browsers swallowed it. The trailing CRLF in the last chunk was not converted. Revision

cvs commit: apache-1.3/src/main buff.c

1999-12-01 Thread martin
martin 99/12/01 12:24:58 Modified:src CHANGES src/main buff.c Log: On BS2000, currently the send() call has slightly better performance than write(), and it doesn't have a maximum transfer size of 16kB. Revision ChangesPath 1.1464+4 -0

cvs commit: apache-1.3/src/main buff.c

1999-10-22 Thread stoddard
stoddard99/10/21 22:10:09 Modified:src/main buff.c Log: Apache for Windows can get caught in a tight loop whild handling CGI requests. Here's how: sendwithtimeout() sets errno to EINTR on a timeout and returns SOCKET_ERROR (-1) to the caller. The caller reissues

cvs commit: apache-1.3/src/main buff.c http_main.c util.c

1999-07-29 Thread randy
randy 99/07/29 11:13:58 Modified:.config.layout src CHANGES src/include httpd.h src/main buff.c http_main.c util.c Log: BeOS portability changes. Submitted by: David Reid [EMAIL PROTECTED] Reviewed by: Randy Terbush

cvs commit: apache-1.3/src/main buff.c http_config.c http_main.c util.c

1999-02-20 Thread jim
jim 99/02/20 10:12:37 Modified:.STATUS src CHANGES src/main buff.c http_config.c http_main.c util.c Log: Added informative error messages when malloc() fails... some of these most probably should also exit :/ Revision Changes

cvs commit: apache-1.3/src/main buff.c

1998-10-05 Thread fielding
fielding98/10/05 10:48:45 Modified:src CHANGES src/main buff.c Log: Fix a possible race condition between timed-out requests and the ap_bhalfduplex select that might result in an infinite loop on platforms that do not validate the descriptor. Revision

cvs commit: apache-1.3/src/main buff.c

1998-09-04 Thread martin
martin 98/09/04 09:47:47 Modified:src/main buff.c Log: Move buffer allocation test behind the 'simple' tests Revision ChangesPath 1.82 +7 -6 apache-1.3/src/main/buff.c Index: buff.c ===

cvs commit: apache-1.3/src/main buff.c http_protocol.c

1998-07-04 Thread ben
ben 98/07/04 09:07:28 Modified:src CHANGES src/include buff.h compat.h src/main buff.c http_protocol.c Log: Another missed API rename: bgetflag. Revision ChangesPath 1.945 +2 -2 apache-1.3/src/CHANGES Index: CHANGES

cvs commit: apache-1.3/src/main buff.c

1998-07-04 Thread dgaudet
dgaudet 98/07/04 11:22:12 Modified:src/main buff.c Log: fix comment pointed out by ben l. Revision ChangesPath 1.81 +2 -1 apache-1.3/src/main/buff.c Index: buff.c === RCS file:

cvs commit: apache-1.3/src/main buff.c

1998-07-01 Thread dgaudet
dgaudet 98/07/01 11:18:27 Modified:src CHANGES src/main buff.c Log: It's definately wrong to start ap_bprintf() on a connection that's got an error, or one which is not buffered. It's wrong for ap_bflush() to return 0 when B_EOUT is set -- B_EOUT can be

cvs commit: apache-1.3/src/main buff.c

1998-07-01 Thread dgaudet
dgaudet 98/07/01 11:22:34 Modified:src/main buff.c Log: more efficient comparisons Revision ChangesPath 1.79 +2 -5 apache-1.3/src/main/buff.c Index: buff.c === RCS file:

cvs commit: apache-1.3/src/main buff.c

1998-05-08 Thread brian
brian 98/05/08 15:54:52 Modified:src/main buff.c Log: PR: 2207 Marc's suggestion that we move this to debug, which I agree with. Revision ChangesPath 1.75 +1 -1 apache-1.3/src/main/buff.c Index: buff.c

cvs commit: apache-1.3/src/main buff.c

1998-04-03 Thread martin
martin 98/04/03 06:55:46 Modified:src/main buff.c Log: Integrate EBCDIC conversion into new bprintf() and friends. Fix an old bug with EBCDIC translation (sometimes, a necessary conversion was forgotten). Revision ChangesPath 1.72 +30 -2

cvs commit: apache-1.3/src/main buff.c

1998-02-12 Thread dgaudet
dgaudet 98/02/12 13:13:19 Modified:src/main buff.c Log: fix an unsigned char * / signed char * mistake. Revision ChangesPath 1.64 +1 -1 apache-1.3/src/main/buff.c Index: buff.c === RCS

cvs commit: apache-1.3/src/main buff.c

1998-02-07 Thread dgaudet
dgaudet 98/02/07 02:34:47 Modified:src/main buff.c Log: Sorry guys I know we're trying to get 1.3b4 rolled, but I really really really want chunking to work since it is affecting the deployment of HTTP/1.1. I've stressed this patch a fair amount with a module I'll check in

cvs commit: apache-1.3/src/main buff.c

1998-02-03 Thread randy
randy 98/02/02 18:41:22 Modified:src/ap Makefile.tmpl src/include ap.h src/main buff.c Added: src/ap ap_read.c ap_write.c Log: Abstract read() and write() to the ap library to make it easier to add in different types of read/write