Hello. Recently I read an article about securing UDP traffic using DTLS. I'm trying to create a basic server architecture in c++ using OpenSSL but I have not been able to use DTLS like UDP. Does anyone have any experience working with DTLS?
I have seen an example open a new thread per client. The problem with that structure is coordinating all the read buffers. Using a thread per client seems like a lot of overhead compared to UDP with one single receive thread that gets data from all clients.