[Modify] Move it

This commit is contained in:
sta 2020-11-09 22:31:33 +09:00
parent af62f88d88
commit 307d4e45b8

View File

@ -248,6 +248,7 @@ namespace WebSocketSharp.Net
private void init () private void init ()
{ {
_context = new HttpListenerContext (this); _context = new HttpListenerContext (this);
_currentLine = new StringBuilder (64);
_inputState = InputState.RequestLine; _inputState = InputState.RequestLine;
_inputStream = null; _inputStream = null;
_lineState = LineState.None; _lineState = LineState.None;
@ -353,9 +354,6 @@ namespace WebSocketSharp.Net
// - true Done processing // - true Done processing
// - false Need more input // - false Need more input
if (_currentLine == null)
_currentLine = new StringBuilder (64);
try { try {
while (true) { while (true) {
int nread; int nread;
@ -373,8 +371,6 @@ namespace WebSocketSharp.Net
if (_position > 32768) if (_position > 32768)
_context.ErrorMessage = "Headers too long"; _context.ErrorMessage = "Headers too long";
_currentLine = null;
return true; return true;
} }