On Fri, Jan 10, 2003 at 05:02:00PM -0600, Bob Maccione wrote:
> Hi
>
> I'm getting a strange error from my Init process. The Init process has a
> web listener using POE::Component::Server::HTTP and I'm getting a random
> error as follows:
>
> Server 4 got accept error 130 (Software caused connection abort)
>
> At first I thought that I was having too many connections open (and alas it
> doesn't appear to be a way to force a connection closed in the HTTP server.
>
> Has anyone seen this before and if so what caused/fixed it,
>From man 2 accept:
ERRORS
The accept() will fail if:
...
[ECONNABORTED] A connection arrived, but it was closed while
waiting on the listen queue.
That is, select() unblocked for accepting, but the client hung up
before accept() was called.
-- Rocco Caputo - [EMAIL PROTECTED] - http://poe.perl.org/