Could you fellows please help?

I am working on a PERL program that recieves information at a certain port (say port 2000), and sends it to various peers. For the time being, though, I'm just trying to get it to take in the information and send it back to the program.

What I would like to do is allow another program (different from PERL), to connect to it, then have the information from that connection "branched" to other programs connected it. Is there a way to do this? For the time being I'm using IO::Socket::INET. Will this module work?

#!/usr/bin/perl #The usual modules use strict; use IO::Socket::INET; #Make a constant connection (may have to use the "constant" module) use constant GOING => '66.78.26.27'; use constant PORT => '2000'; #Create a new object and set up the protocol to Transmittion Control P +rotocol and the Local Port to PORT. my $Socky = IO::Socket::INET->new(Proto => 'tcp', PeerPort => PORT, PeerAddr => GOING); while (1) { #This always returns true, thus giving a continual loop. Send_It(<$Socky>); } sub Send_It { my @All_of_me = @_; $Socky->send(@All_of_me); } exit;

In reply to Sending and recieving data by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.