Topic: [SOLVED] DTLS with certificates example
When trying to run the examples from embedded SSL version 3.0.0 with DTLS (option -u) I keep having:
wolfSSL error: Bad SSL version.
When adding CyaSSL_DTLS to the preprocessor options, VS cannot build as it encounters some errors:
error LNK2019: unresolved external symbol _CyaDTLSv1_server_method referenced in function _server_test@4
error LNK2019: unresolved external symbol _CyaDTLSv1_2_server_method referenced in function _server_test@4
error LNK2019: unresolved external symbol _CyaSSL_dtls_get_current_timeout referenced in function _NonBlockingSSL_Accept
error LNK2019: unresolved external symbol _CyaSSL_dtls_got_timeout referenced in function _NonBlockingSSL_Accept
Another problem I have encountered is that when doing the same exchange but without -u option, using TLS I can made the handshake and the output is good but Wireshark does not show the traffic as TLS but as TCP messages. Anyone had also have this problem?