I am working through a book where it uses perl to learn network programming. With a client written in a similar manner as to this server, the udp datagram is a little bit of text. When I run the program and send the packet it just sits in the receiv queue. I see this using netstat on all listening ports does anyone know how to not have it hold them in there and just process them?
#! /usr/bin/perl -w
use strict;
use Socket;
use constant SIMPLE_UDP_PORT => 4001;
use constant MAX_RECV_LEN => 1500;
use constant LOCAL_INETNAME => 'localhost';
my $trans_serv = getprotobyname('udp');
my $local_host = pack "C4", split('\.', "127.0.0.1");
my $local_port = shift || SIMPLE_UDP_PORT;
my $local_addr = sockaddr_in($local_port, INADDR_ANY);
socket(UDP_SOCK, PF_INET, SOCK_DGRAM, $trans_serv);
bind(UDP_SOCK, $local_addr);
my $data;
while(1)
{
my $from_who = recv(UDP_SOCK, $data, MAX_RECV_LEN, 0);
if ($from_who)
{
my($the_port, $the_ip) = sockaddr_in($from_who);
warn 'Received from ', inet_ntoa($the_ip), ": $data\n";
}
else
{
warn "Problem with recv: $!\n";
}
}
2020-07-14 Athanasius added code tags.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.