Topic: [SOLVED] C# Wrapper useDTLSv1_2_client: Unable to find entry point
Hey,
I am trying to write a client on the C# side but I run into this issue:
{"Unable to find an entry point named 'wolfDTLSv1_2_client_method' in DLL 'wolfssl.dll'.":""}
This happens when I am initializing the context.
wolfssl.SetLogging(sslLogger);
wolfssl.Init();
mContext = wolfssl.CTX_dtls_new(wolfssl.useDTLSv1_2_client());
// ERROR HERE
if (mContext == IntPtr.Zero)
{
Debug.Print("Error creating wolf ssl context structure");
wolfssl.CTX_free(mContext);
return false;
}
Can someone point me in the right direction? I have run out of ideas.
Thanks!