in reply to Re^2: sending data over TCP channel using POE::Component::Server::TCP
in thread sending data over TCP channel using POE::Component::Server::TCP
I think we'll need to take a peek at your Kernel.pm and FileHandles.pm to see what's going on here. Anybody else have any thoughts on this? In any case, I don't think its part of your original problem (well, not yet anyways)..../POE/Kernel.pm BEGIN { ... if ($^O eq 'MSWin32') { *{ __PACKAGE__ . '::RUNNING_IN_HELL' } = sub { 1 }; } else { *{ __PACKAGE__ . '::RUNNING_IN_HELL' } = sub { 0 }; } ... } .../POE/Resource/FileHandles.pm: ### Some portability things. # Provide dummy constants so things at least compile. These constants # aren't used if we're RUNNING_IN_HELL, but Perl needs to see them. BEGIN { if (RUNNING_IN_HELL) { eval '*F_GETFL = sub { 0 };'; eval '*F_SETFL = sub { 0 };'; } }
One other interesting thing is that this same error shows up in the Activestate build here.
-Craig
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: sending data over TCP channel using POE::Component::Server::TCP
by cta (Acolyte) on Jul 31, 2008 at 17:57 UTC | |
by rcaputo (Chaplain) on Aug 08, 2008 at 20:05 UTC |