Non-Blocking SSL Sockets

Joined
Feb 2, 2008
Messages
8
Programming Experience
5-10
As i'm looking more into SSL and Sockets with .net -- i'm realizing that you need non-blocking sockets in order to have good capacity on sockets that run fluidly in the background.. My issue is, the SSLStream that i've been using is blocking. Is there any good sources of information to get me on the right path of getting non-blocking sockets working with ssl? Thanks ahead of time.
 
There is no problem with blocking socket and SSL that I'm aware of. Blocking has no effect on asynchronous calls, maybe that is where you should look?
 
Back
Top