481006 - SSL requests intermittently fail with EOFException when SSL renegotiation is disallowed.

Deprecated HttpConnectionOverFCGI constructor just in case someone uses it.
This commit is contained in:
Simone Bordet 2015-11-04 13:44:40 +01:00
parent 0172b68301
commit a1e2d4e8c3
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,10 @@ public class HttpConnectionOverFCGI extends AbstractConnection implements Connec
private final ClientParser parser;
private ByteBuffer buffer;
/**
* @deprecated use {@link #HttpConnectionOverFCGI(EndPoint, HttpDestination, Promise, boolean)} instead
*/
@Deprecated
public HttpConnectionOverFCGI(EndPoint endPoint, HttpDestination destination, boolean multiplexed)
{
this(endPoint, destination, new Promise.Adapter<Connection>(), multiplexed);