[#1392] Fix bug where SslHandler returned wrong value for getCloseNotifyTimeoutMillis()

This commit is contained in:
Norman Maurer 2013-05-24 23:18:14 +02:00
parent aa96b4b286
commit d9c700e9fe

View File

@ -267,7 +267,7 @@ public class SslHandler
}
public long getCloseNotifyTimeoutMillis() {
return handshakeTimeoutMillis;
return closeNotifyTimeoutMillis;
}
public void setCloseNotifyTimeout(long closeNotifyTimeout, TimeUnit unit) {