Extremely easy to find.

Please reference this link to see the original question by Daniel Moree.

Perl socket problem I'm attempting to use a perl script to interface with my Visual Basic +6 program using Winsock. I've got my program setup to connect and works great if i connect to another winsock program, but it acts funny connecting to my perl script. The Perl code is below: #!c:/Perl/bin/Perl.exe use IO::Socket; $server = IO::Socket::INET->new(LocalAddr => '10.40.0.10', LocalPort => '8777', Proto => 'tcp', Listen => 1, Reuse => 1); die "ERROR: $!\n" unless $server; print "Waiting on connections...\n"; while($client = $server->accept()){ print "Connection made, reading data...\n"; print <$client>; print "Connection closed...\n"; } $server->close(); All the program is supposed to do is open a socket on port 8777 for tc +p. Listen for any incomming connections then read the one line of data comming in. I've read on the internet and in my perl in a nutshell boo +k that the above code should work. But they all say the same thing. You must get the line of data and scan it for a character that lets the pe +rl script that the line is done. Problem is, when the script runs, i get +as far a connection made then it will do nothing until i close the VB Win +sock. Anyone got a reader for sockets that will know when to stop reading? I haven't found any examples on the internet on how to do it, just that everyone says it can be done. I'd really appreciate the help! Daniel Moree

This is ridiculous.



--chargrill
s**lil*; $*=join'',sort split q**; s;.*;grr; &&s+(.(.)).+$2$1+; $; = qq-$_-;s,.*,ahc,;$,.=chop for split q,,,reverse;print for($,,$;,$*,$/)

In reply to Re: Winsock connect problem in perl!!! by chargrill
in thread Winsock connect problem in perl!!! by madtoperl

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.