Issue #1463
This commit is contained in:
parent
23a9c6c1be
commit
6a10b4272b
|
@ -176,7 +176,7 @@ public class SslConnection extends AbstractConnection
|
|||
|
||||
/**
|
||||
* @return The number of renegotions allowed for this connection. When the limit
|
||||
* is 0 renegotiation will be denied. If the limit is <0 then no limit is applied.
|
||||
* is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied.
|
||||
*/
|
||||
public int getRenegotiationLimit()
|
||||
{
|
||||
|
@ -185,7 +185,7 @@ public class SslConnection extends AbstractConnection
|
|||
|
||||
/**
|
||||
* @param renegotiationLimit The number of renegotions allowed for this connection.
|
||||
* When the limit is 0 renegotiation will be denied. If the limit is <0 then no limit is applied.
|
||||
* When the limit is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied.
|
||||
* Default -1.
|
||||
*/
|
||||
public void setRenegotiationLimit(int renegotiationLimit)
|
||||
|
|
|
@ -933,7 +933,7 @@ public class SslContextFactory extends AbstractLifeCycle implements Dumpable
|
|||
|
||||
/**
|
||||
* @return The number of renegotions allowed for this connection. When the limit
|
||||
* is 0 renegotiation will be denied. If the limit is <0 then no limit is applied.
|
||||
* is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied.
|
||||
*/
|
||||
public int getRenegotiationLimit()
|
||||
{
|
||||
|
@ -942,7 +942,7 @@ public class SslContextFactory extends AbstractLifeCycle implements Dumpable
|
|||
|
||||
/**
|
||||
* @param renegotiationLimit The number of renegotions allowed for this connection.
|
||||
* When the limit is 0 renegotiation will be denied. If the limit is <0 then no limit is applied.
|
||||
* When the limit is 0 renegotiation will be denied. If the limit is less than 0 then no limit is applied.
|
||||
* Default 5.
|
||||
*/
|
||||
public void setRenegotiationLimit(int renegotiationLimit)
|
||||
|
|
Loading…
Reference in New Issue