Hope this helps:
server.pl: use strict; use IO::Socket; my $server = IO::Socket::INET->new(Proto => "tcp", Listen => 5, LocalPort => "3000", Timeout => 2000) || die "failed to start server\n"; print "server wait for client to connect ...\n"; my $connection = $server->accept; print "a client connected\n"; while (1) { my $req; $connection->recv($req, 7000); print "server received $req\n"; my $res = $req + 1; print $connection $res; print "server responsed $res\n"; } client.pl use strict; use IO::Socket; my $client = IO::Socket::INET->new(Proto => "tcp", PeerAddr => "172.135.2.54", PeerPort => "3000", Timeout => 2) || die "failed to connect to a server\n"; my $req = 1; while (1) { print $client $req; print "client sent $req\n"; my $res; $client->recv($res, 7000); print "client received $res\n"; $req = $res; }

In reply to Re: Creating a TCP client, that receives and responds in individual packets by pg
in thread Creating a TCP client, that receives and responds in individual packets 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.