[Modify] Add it

This commit is contained in:
sta 2018-01-09 16:39:06 +09:00
parent 638daa2a21
commit 3b00f0d01d

View File

@ -60,6 +60,7 @@ namespace WebSocketSharp.Net
private static readonly byte[] _100continue;
private string[] _acceptTypes;
private bool _chunked;
private HttpConnection _connection;
private Encoding _contentEncoding;
private long _contentLength;
private HttpListenerContext _context;
@ -93,6 +94,8 @@ namespace WebSocketSharp.Net
internal HttpListenerRequest (HttpListenerContext context)
{
_context = context;
_connection = context.Connection;
_contentLength = -1;
_headers = new WebHeaderCollection ();
_identifier = Guid.NewGuid ();