Merge pull request #2826 from miyazakh/fix_csharp_dtlsexample

fix dtl server example of CSharp when freeing stuff
This commit is contained in:
David Garske
2020-03-18 09:26:14 -07:00
committed by GitHub

View File

@@ -174,8 +174,8 @@ public class wolfSSL_DTLS_Server
}
Console.WriteLine("At the end freeing stuff");
udp.Close();
wolfssl.shutdown(ssl);
udp.Close();
clean(ssl, ctx);
}
}