billbarker 02/04/25 20:26:21
Modified: http11/src/java/org/apache/coyote/http11
Http11Processor.java
Log:
Note to self: Remember to take debugging statements out before ci
Revision Changes Path
1.33 +0 -2
jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java
Index: Http11Processor.java
===================================================================
RCS file:
/home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- Http11Processor.java 26 Apr 2002 03:23:46 -0000 1.32
+++ Http11Processor.java 26 Apr 2002 03:26:21 -0000 1.33
@@ -374,13 +374,11 @@
int soTimeout = socket.getSoTimeout();
boolean keptAlive = false;
socket.setSoTimeout(timeout);
- log.warn("soTimeout = " + soTimeout + " timeout = " + timeout);
while (started && !error && keepAlive) {
try {
if( keptAlive && soTimeout > 0 ) {
socket.setSoTimeout(soTimeout);
}
- log.warn("timeout = " + socket.getSoTimeout());
inputBuffer.parseRequestLine();
keptAlive = true;
socket.setSoTimeout(timeout);
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>