Rolled back temporary log statements.
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3240 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
f166c40a6d
commit
eca44d8983
|
@ -683,10 +683,7 @@ public class SslSelectChannelEndPoint extends SelectChannelEndPoint
|
||||||
int filled=super.fill(_inNIOBuffer);
|
int filled=super.fill(_inNIOBuffer);
|
||||||
if (_debug) __log.debug(_session+" unwrap filled "+filled);
|
if (_debug) __log.debug(_session+" unwrap filled "+filled);
|
||||||
if (filled < 0)
|
if (filled < 0)
|
||||||
{
|
|
||||||
__log.info("{} fill() returned -1, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
|
|
||||||
remoteClosed = true;
|
remoteClosed = true;
|
||||||
}
|
|
||||||
// break the loop if no progress is made (we have read everything there is to read)
|
// break the loop if no progress is made (we have read everything there is to read)
|
||||||
if (filled<=0)
|
if (filled<=0)
|
||||||
break;
|
break;
|
||||||
|
@ -732,13 +729,9 @@ public class SslSelectChannelEndPoint extends SelectChannelEndPoint
|
||||||
freeOutBuffer();
|
freeOutBuffer();
|
||||||
throw new EofException();
|
throw new EofException();
|
||||||
}
|
}
|
||||||
__log.info("{} uwrap() returning false, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (remoteClosed)
|
|
||||||
__log.info("{} uwrapping, _inNIOBuffer {}", _socket, _inNIOBuffer); // TODO: remove this
|
|
||||||
|
|
||||||
// We have some in data, so try to unwrap it.
|
// We have some in data, so try to unwrap it.
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue