in reply to Re: Is it possible to create a socket client and server that can send information back and forth using IO::Socket?
in thread Is it possible to create a socket client and server that can send information back and forth using IO::Socket?
Maybe I'm just going about sending data back in the wrong way? I'm unsure of how to get the handle to send from the 'server' to the 'client'. Here's the socket portion of what I have so far:
'Server'
my $clientSocket = new IO::Socket::INET( PeerAddr => $ipSend, PeerPort => $sendPort, Proto => 'tcp', ); $clientSocket or die "Could not create socket:$!\n"; print $clientSocket "HELLO 1.0"; sleep(3); close $clientSocket;
'Client'
my $servSocket = IO::Socket::INET->new( #LocalHost => 'localhost', LocalPort => $listenPort, #7890 Proto => 'tcp', Listen => 2, Reuse => 1 ); $servSocket or die "Could not create socket:$!\n"; my($tempSocket, $clientAddr, $buffer); while (($tempSocket, $clientAddr) = $servSocket->accept()) { my ($clientPort, $clientIP) = sockaddr_in($clientAddr); my $clientIPNum = inet_ntoa($clientIP); my $clientHost = gethostbyaddr($clientIP, AF_INET); while (defined ($buffer = <$tempSocket>)) { print $buffer; if ($buffer =~ m/^HELLO (\d+.\d+)/) { my $version = $1; if ($version == "1.0") { #This doesn't work #Want to send "HELLO 1.0" back through the socke +t #Is the $tempSocket handle just wrong, or #can I not use print to do this? print $tempSocket "HELLO 1.0"; } } last; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Is it possible to create a socket client and server that can send information back and forth using IO::Socket?
by ikegami (Patriarch) on Oct 26, 2009 at 17:11 UTC | |
|
Re^3: Is it possible to create a socket client and server that can send information back and forth using IO::Socket?
by weismat (Friar) on Oct 26, 2009 at 17:33 UTC | |
by ikegami (Patriarch) on Oct 26, 2009 at 17:38 UTC | |
|
Re^3: Is it possible to create a socket client and server that can send information back and forth using IO::Socket?
by NetWallah (Canon) on Oct 27, 2009 at 00:16 UTC |