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
commit 00630baa53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}
}