costin      01/02/28 11:41:24

  Modified:    src/share/org/apache/tomcat/modules/server Ajp13.java
  Log:
  Thanks again, Dan.
  
  I'll be running a number of tests with ajp13 after M2, it seems there are some
  issues related with multi processor machines and special configurations,
  and if we want ajp13 to be the default protocol for 3.3 it's important
  to make sure it works in all cases.
  
  Revision  Changes    Path
  1.17      +3 -3      
jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java
  
  Index: Ajp13.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Ajp13.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Ajp13.java        2001/02/27 05:28:08     1.16
  +++ Ajp13.java        2001/02/28 19:41:23     1.17
  @@ -376,14 +376,14 @@
        if(contentLength > 0) {
            req.setContentLength( contentLength );
            /* Read present data */
  -         int err = receive(msg);
  +         int err = receive(inBuf);
               if(err < 0) {
                return 500;
            }
            
  -         blen = msg.peekInt();
  +         blen = inBuf.peekInt();
            pos = 0;
  -         msg.getBytes(bodyBuff);
  +         inBuf.getBytes(bodyBuff);
        }
       
           return 200; // Success
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to