I am setting up a script to act as a "middle-man" between an IRC "front end" and another Perl script. (I may eventually merge the two together if I get it working, but thats not the point.)

Basically, I'd like to send packets (UDP; IO::Socket) to a script that parses the packet and relays relevant information to a channel on IRC. I do not have a problem with using Net::IRC by itself, and I do not have a problem with IO::Socket by itself. Maybe I'm being ignorant, but I really have no idea how to put the two together. To watch the chat room and for incoming packets.

$irc->start; while ($socket->recv(my $in, 1024) ) { .. }

Both seem to "monopolize" the program. Can two "monopolistic" processes share? After thinking that, I immediately think of fork, but am still unsure of how to implement it.

Any help you monks could offer would be greatly appreciated. Thanks


In reply to Net::IRC and IO::Socket 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.