Reputation: 123
I am trying to get dtls working in c#. I discovered that there is a bouncycastle c# implementation, however, there does not appear to be any documentation or samples on how to use it.
I looked at the test app in the source control, but I don't see where and how you specify the port that the server can listen on.
Does anyone have some working samples showing how you can setup a server to listen on a specific port?
Much appreciated!
Upvotes: 2
Views: 2589
Reputation: 125
You can see IOTBroker.cloud c# client
It has non blocking DTLS client implementation. For example please check UDPClient in CoAP or MQTT-SN
Upvotes: 1