aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/WebSocket.cs
diff options
context:
space:
mode:
authorAndrew Rabert <6550543+nvllsvm@users.noreply.github.com>2019-01-24 22:57:44 -0500
committerGitHub <noreply@github.com>2019-01-24 22:57:44 -0500
commit2c9e056d52840dd98da27a6527fab970150c139f (patch)
tree8af78ab36731a998807633e5b76d26f26de9faed /SocketHttpListener/WebSocket.cs
parente05e002b8bb4d13eb2b80b56a0aad8903ddb701e (diff)
parent1d7d4c573875093b97a5929fdee976cd0dcbedea (diff)
Merge pull request #699 from jellyfin/dev
Dev sync
Diffstat (limited to 'SocketHttpListener/WebSocket.cs')
-rw-r--r--SocketHttpListener/WebSocket.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/SocketHttpListener/WebSocket.cs b/SocketHttpListener/WebSocket.cs
index bf400599d..128bc8b97 100644
--- a/SocketHttpListener/WebSocket.cs
+++ b/SocketHttpListener/WebSocket.cs
@@ -24,7 +24,6 @@ namespace SocketHttpListener
{
#region Private Fields
- private string _base64Key;
private Action _closeContext;
private CompressionMethod _compression;
private WebSocketContext _context;
@@ -35,20 +34,12 @@ namespace SocketHttpListener
private object _forMessageEventQueue;
private object _forSend;
private const string _guid = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
- private Func<WebSocketContext, string>
- _handshakeRequestChecker;
private Queue<MessageEventArgs> _messageEventQueue;
- private uint _nonceCount;
- private string _origin;
- private bool _preAuth;
private string _protocol;
- private string[] _protocols;
- private Uri _proxyUri;
private volatile WebSocketState _readyState;
private AutoResetEvent _receivePong;
private bool _secure;
private Stream _stream;
- private Uri _uri;
private const string _version = "13";
#endregion