Skip to content

Commit

Permalink
Resoter reliability layer for DTLS on the server side
Browse files Browse the repository at this point in the history
Accidently removed when doing the TLS endpoints.
  • Loading branch information
jimsch committed Feb 7, 2020
1 parent 46083a6 commit f5edf7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CoAP.NET/CoAP.Std10.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ It is intented primarily for research and verification work.

1.7
- Remove the media types that had been previously marked as obsolete.
- Restore the incorrect removal of reliability for DTLS on the server side.
- Internal cleanup work.
1.6
- Use cache key fields for matching blockwise transfers.
Expand Down
2 changes: 1 addition & 1 deletion CoAP.NET/DTLS/DTLSEndPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public DTLSEndPoint(TlsKeyPairSet keysServer, KeySet keysUser, System.Net.EndPoi
/// <param name="config">Configuration interface</param>
public DTLSEndPoint(DTLSChannel channel, ICoapConfig config) : base(channel, config)
{
Stack.Remove(Stack.Get("Reliability"));
// Stack.Remove(Stack.Get("Reliability"));
MessageEncoder = UdpCoapMesageEncoder;
MessageDecoder = UdpCoapMessageDecoder;
EndpointSchema = new []{"coaps", "coaps+udp"};
Expand Down

0 comments on commit f5edf7f

Please sign in to comment.