- or download this
#!/usr/bin/perl -w
# server2way.pl - a server that reads from
...
close $new_sock;
}
- or download this
#!/usr/bin/perl -w
# client2way.pl - a client that writes to
...
print $sock "NONE\n";
print scalar <$sock>;
close $sock;
- or download this
#!/usr/bin/perl -w
# client2way.pl - a client that writes to
...
print scalar <$sock>;
close $sock;