On Thu, Apr 10, 2008 at 7:52 AM, Andrew Rich <vk4tec at people.net.au> wrote:
> Any one good at socket programming ?
> Here is how to do it as a string, I just want to send hex instead
Looks like a learning perl problem, not a UDP problem...
> print $sock "hello, world: $i\n";
maybe
printf $sock, "%x\n", $i;
-Jason
kg4wsv