in reply to Re: IO::Socket tutorial
in thread IO::Socket tutorial
I don't even remember what got me thinking that IO::Socket's can be used as file descriptors {I just looked and can't find it in the man pages..sigh} I guess what I can do is do a 'send' with the $cmd my sub is given and then I need to replace the <$server> with something that'll timeout and then I can close/reopen the socket and try again. POE seems fancier than I need for this {although I see that it can handle the event loop of Tk, something I had trouble getting to work correctly}sub command { my $cmd = "$_[0]\r\n" ; print $server $cmd ; my $resp = <$server> ; return undef if $resp !~ /^[123]/ ; return $resp ; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: IO::Socket tutorial
by haukex (Archbishop) on Feb 19, 2020 at 15:48 UTC | |
by BernieC (Pilgrim) on Feb 19, 2020 at 21:05 UTC | |
by haukex (Archbishop) on Feb 20, 2020 at 00:31 UTC | |
by BernieC (Pilgrim) on Feb 20, 2020 at 12:22 UTC | |
by haukex (Archbishop) on Feb 20, 2020 at 14:02 UTC | |
by tybalt89 (Monsignor) on Feb 20, 2020 at 14:42 UTC | |
|