[Modify] Add it
This commit is contained in:
parent
1287df8ed6
commit
1388fd89d8
@ -71,6 +71,7 @@ namespace WebSocketSharp.Net
|
|||||||
private LineState _lineState;
|
private LineState _lineState;
|
||||||
private EndPointListener _listener;
|
private EndPointListener _listener;
|
||||||
private EndPoint _localEndPoint;
|
private EndPoint _localEndPoint;
|
||||||
|
private static readonly int _maxInputLength;
|
||||||
private ResponseStream _outputStream;
|
private ResponseStream _outputStream;
|
||||||
private int _position;
|
private int _position;
|
||||||
private EndPoint _remoteEndPoint;
|
private EndPoint _remoteEndPoint;
|
||||||
@ -86,6 +87,15 @@ namespace WebSocketSharp.Net
|
|||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region Static Constructor
|
||||||
|
|
||||||
|
static HttpConnection ()
|
||||||
|
{
|
||||||
|
_maxInputLength = 32768;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
#region Internal Constructors
|
#region Internal Constructors
|
||||||
|
|
||||||
internal HttpConnection (Socket socket, EndPointListener listener)
|
internal HttpConnection (Socket socket, EndPointListener listener)
|
||||||
|
Loading…
Reference in New Issue
Block a user