Hi,
I am trying to exchange strings between two perl programs.
e.g
SCRIPT1. how are u.
SCRIPT2. i am fine.\n
SCRIPT1. whats up.\n
SCRIPT2. nothing much\n
i am using IO::Socket::INET.
I have two problems.
First, i am unable to exchange strings with each other.
secondly i take the hostname and port number from command line. but when i try to do some thing like this
my $client = IO::Socket::INET->new(
PeerAddr => '$host',
PeerPort => '$port',
Proto => 'tcp',)
it gives me an error that it cannot connect. but when i replace the values with hardcoded ones it works ok.
can any one write up full running code where i can exchange strings between two scripts using IO::SOCKET::INET. also the host and port number have to be taken from the command line.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.