#!/usr/bin/perl # http://perlmonks.org/?node_id=1183721 use strict; use warnings; use IO::Socket; use IO::Select; use Time::HiRes 'time'; @ARGV and $ARGV[0] eq 'tester' and do_test_routine(); my $from; my $PORTNO = 7090; my $timerinterval = 5; my $timedresponse = "default timed response\n"; my $MAXLEN = 512; my $sock = IO::Socket::INET->new(LocalPort => $PORTNO, Proto => 'udp') or die $@; my $sel = IO::Select->new($sock); my $nexttimer = time + $timerinterval; for(;;) { my $timeout = $nexttimer - time; if( $timeout <= 0 ) { warn "timed out @{[int time - $^T]}\n"; if( defined $from ) #send time-triggered status { $sock->send($timedresponse, 0, $from); } $nexttimer = $timerinterval + time; } else { for my $fh ( $sel->can_read($timeout) ) { $from = $fh->recv(my $request, $MAXLEN); my $response = parseRequest($request); $fh->send($response, 0, $from); } } } sub parseRequest { warn "got @_"; return "canned response\n"; } sub do_test_routine # for testing purposes only { my $sock = IO::Socket::INET->new(LocalPort => 7091, Proto => 'udp', PeerPort => 7090, PeerHost => 'localhost', ) or die $@; $sock->send("a test message\n"); for(;;) { $sock->recv(my $buf, 512); warn "tester got: $buf"; } }

semi-tested :)


In reply to Re: UDP Client and Server in one by tybalt89
in thread UDP Client and Server in one by mhirschb

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.