Topic: Using wolfSSL embedded SSL with an asynchronous socket
Hello,
I have tcp server which uses multiple threads for reading through an IO Completion Port. I want to add SSL to this server.
What, in your opinion, is the best way to do so?
The writes are less of a problem, but how do I decrypt a SSL packet without calling read?
For now, I've set the write and read callbacks using wolfSSL_SetIORecv / wolfSSL_SetIOSend.
I didn't implement the reads yet.
Also, the accept could be done to a new client before attaching it to the IOCP, so its not really a non-blocking IO...
What do you think?
EDIT: The reads are done through IOCP, so the threads are not blocked on recv() or select(), but on GetQueuedCompletionStatus()
Thanks
Nitay