Browse Source

generate exception in case websocket is closed so stream does not return array of 255

release/3.x.x
Jan Eggers 7 years ago
parent
commit
e80d21e852
2 changed files with 12 additions and 0 deletions
  1. +6
    -0
      Frameworks/MQTTnet.NetStandard/Implementations/WebSocketStream.cs
  2. +6
    -0
      Frameworks/MQTTnet.UniversalWindows/Implementations/WebSocketStream.cs

+ 6
- 0
Frameworks/MQTTnet.NetStandard/Implementations/WebSocketStream.cs View File

@@ -3,6 +3,7 @@ using System.IO;
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using MQTTnet.Core.Exceptions;

namespace MQTTnet.Implementations
{
@@ -49,6 +50,11 @@ namespace MQTTnet.Implementations
}
}

if (_webSocket.State == WebSocketState.Closed)
{
throw new MqttCommunicationException( "connection closed" );
}

return currentOffset - offset;
}



+ 6
- 0
Frameworks/MQTTnet.UniversalWindows/Implementations/WebSocketStream.cs View File

@@ -3,6 +3,7 @@ using System.IO;
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using MQTTnet.Core.Exceptions;

namespace MQTTnet.Implementations
{
@@ -35,6 +36,11 @@ namespace MQTTnet.Implementations
}
}

if (_webSocket.State == WebSocketState.Closed)
{
throw new MqttCommunicationException("connection closed");
}

return currentOffset - offset;
}



Loading…
Cancel
Save