[Modify] Remove it

This commit is contained in:
sta 2016-06-14 15:23:18 +09:00
parent 847d78a6e8
commit 3351912e99
2 changed files with 0 additions and 13 deletions

View File

@ -381,7 +381,6 @@ namespace WebSocketSharp.Net
return false;
context.Listener = lsnr;
context.Connection.Prefix = pref;
return true;
}

View File

@ -71,7 +71,6 @@ namespace WebSocketSharp.Net
private EndPointListener _listener;
private ResponseStream _outputStream;
private int _position;
private HttpListenerPrefix _prefix;
private MemoryStream _requestBuffer;
private int _reuses;
private bool _secure;
@ -137,16 +136,6 @@ namespace WebSocketSharp.Net
}
}
public HttpListenerPrefix Prefix {
get {
return _prefix;
}
set {
_prefix = value;
}
}
public IPEndPoint RemoteEndPoint {
get {
return (IPEndPoint) _socket.RemoteEndPoint;
@ -241,7 +230,6 @@ namespace WebSocketSharp.Net
_lineState = LineState.None;
_outputStream = null;
_position = 0;
_prefix = null;
_requestBuffer = new MemoryStream ();
}