Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

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 ( [id://803313]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print $sock "HELLO 1.0";
    chomp( my $greet = <$sock> );
    die if $greet ne 'HELLO 1.0';
    ...continue...
    
  2. or download this
    chomp( my $greet = <$sock> );
    die if $greet ne 'HELLO 1.0';
    print $sock "HELLO 1.0";
    ...continue...
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://803313]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-20 04:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found