in reply to Re^3: Can I/O operations on the same IO::Socket be executed in different threads?
in thread Can I/O operations on the same IO::Socket be executed in different threads?

Sounds like you didn't actually run a server at localhost:6666? A simple echo server would do. (You can find one at localhost:echo sometimes, though it's trivial to write one.)

Why would I need an external server to communicate between two threads using sockets?

Does not compute

  • Comment on Re^4: Can I/O operations on the same IO::Socket be executed in different threads?

Replies are listed 'Best First'.
Re^5: Can I/O operations on the same IO::Socket be executed in different threads?
by ikegami (Patriarch) on May 14, 2015 at 14:51 UTC

    The OP didn't say anything about the two threads communicating with each other through the socket. That wouldn't work. You always communicate with the other end of the socket. If that's what he wants to do, he should create a pair of connected sockets using the builtin socketpair (portable*) or Win32::Socketpair's winsocketpair (Windows only). There's also the option of using a pipe (created using pipe) instead of a socket (although that wouldn't be selectable on Windows).

    use strict; use warnings; use threads; use IO::Handle qw( ); # Not needed in Perl 5.12+ use Socket qw( AF_UNIX SOCK_STREAM PF_UNSPEC ); sub socketpipe { socketpair($_[0], $_[1], AF_UNIX, SOCK_STREAM, PF_UNSPEC) or return undef; shutdown($_[0], 1); # No more writing for reader shutdown($_[1], 0); # No more reading for writer $w->autoflush(1); return 1; } socketpipe(my $r, my $w) or die($!); async { print while <$r>; }; async { print($w "abc\n"); sleep(3); print($w "def\n"); shutdown($w, 1); }; $_->join for threads->list;

    * — In Windows, you have to request the creation of AF_UNIX socket pair, but it actually creates an AF_INET socket pair.