in reply to IO::Socket::SSL + fork problem
Well, you cannot fork an SSL socket. It's a protocol layer with internal state. The first write would modify the state but that isn't reflected in your main process. You're going to need some event-driven framework.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: IO::Socket::SSL + fork problem
by mrhyde (Novice) on Nov 20, 2014 at 19:22 UTC | |
by BrowserUk (Patriarch) on Nov 20, 2014 at 19:39 UTC |