Thread IO::Select und IO::Socket (2 answers)
Opened by Gast at 2007-11-26 09:07

Gast Gast
 2007-11-26 09:07
#102990 #102990
hallo,
ich will mit einem Server verbinden:

Code (perl): (dl )
1
2
3
4
5
6
7
8
use strict;
use IO::Socket;
IO::Select;

my $socket = IO::Socket::INET -> new 
(PeerAddr =>'PC110197',
PeerPort => 1810,) 
or die "Konnte Socket nicht erstellen: $!\n";

klappt auch!

jetzt will ich aber noch CLIENT CREATE hischicken und die Anwort haben.
und die Antwort bekommt man irgendwie mit select.
weis jemand wie das geht?

View full thread IO::Select und IO::Socket