diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-02-27 07:32:36 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-02-27 07:32:36 +0100 |
| commit | 77addb22835478a32c1133cfd69ae0da2ec5edea (patch) | |
| tree | dbe33961dd1a2b911e992f698495df453b8285af /Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs | |
| parent | 848cfc32cc89327e16ff6ea281dc1d9b96cc4f7a (diff) | |
Remove SocketHttpListener
Diffstat (limited to 'Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs')
| -rw-r--r-- | Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs b/Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs index 66c5cc334..dcbfb8048 100644 --- a/Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs +++ b/Emby.Server.Implementations/SocketSharp/SharpWebSocket.cs @@ -23,9 +23,8 @@ namespace Emby.Server.Implementations.SocketSharp /// <value>The web socket.</value> private readonly WebSocket _webSocket; - private TaskCompletionSource<bool> _taskCompletionSource = new TaskCompletionSource<bool>(); private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource(); - private bool _disposed = false; + private bool _disposed; public SharpWebSocket(WebSocket socket, ILogger logger) { |
