dstar has asked for the wisdom of the Perl Monks concerning the following question:
my script exits. I've got a debugging line above the call that confirms that $heap->{session}->id."/prompt.socket" expands to the right path, and I've got one immediately afterwards that's never reached. The subroutine for prompt_error never seems to be being called. Do I have something wrong in my call to SocketFactory? Shalon Wood$heap->{prompt_server} = POE::Wheel::SocketFactory->new ( SocketDomain => PF_UNIX, BindAddress => $heap->{session}->id."/prompt.socket", SuccessEvent => 'new_prompt_connection', FailureEvent => 'prompt_error', );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POE::Wheel::SocketFactory problem
by JamesNC (Chaplain) on Nov 11, 2003 at 05:31 UTC | |
|
Re: POE::Wheel::SocketFactory problem
by hangareighteen (Monk) on Nov 11, 2003 at 09:49 UTC | |
by dstar (Scribe) on Nov 11, 2003 at 13:58 UTC | |
|
Re: POE::Wheel::SocketFactory problem
by Anonymous Monk on Nov 11, 2003 at 19:07 UTC |