BaseIoSession.increaseReadBytes(int) resets a wrong idle count.
---------------------------------------------------------------

         Key: DIRMINA-171
         URL: http://issues.apache.org/jira/browse/DIRMINA-171
     Project: Directory MINA
        Type: Bug
    Versions: 0.9, 0.9.1    
    Reporter: Trustin Lee
 Assigned to: Trustin Lee 
     Fix For: 0.9.2


    public void increaseReadBytes( int increment )
    {
        readBytes += increment;
        lastReadTime = System.currentTimeMillis();
        idleCountForBoth = 0;
        idleCountForWrite = 0;
    }
 
idleCountForWrite -> idleCountForRead  : right?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to