On Thu, 15 Jan 2004 05:56, Rocco Caputo wrote; > Otherwise I'm not sure how to get into Net::SSLeay to make its > accept() not block. It's just a thin wrapper to a C > library. Does anyone have experience here? Does a different SSL > module support it?
When I was looking at the openssl library, I recall you just pass it in a socket with O_NONBLOCK set to signal nonblocking action. And get ready to catch the errors ;-). Otherwise, the openssl library should be trivial to wrap directly with some XS. Its interface mirrors standard sockets exactly... -- Sam Vilain, [EMAIL PROTECTED] "That man is richest whose pleasures are cheapest" - Thoreau -
