in reply to Re^2: stream info from udp stream on port xx and dump it into syslog
in thread stream info from udp stream on port xx and dump it into syslog
Just don't be afraid to try - and to post your attempts. Many here appreciate some effort from the OP side, me included.#!/usr/bin/perl use strict; use warnings; use IO::Socket::INET; my $sock = IO::Socket::INET->new(Proto => 'udp', LocalPort => 12000); while (<$sock>) { print "Received: $_"; }
Flavio (perl -e 'print(scalar(reverse("\nti.xittelop\@oivalf")))')
Don't fool yourself.
|
|---|