Re: Sending UDP messages

2001-05-15 Thread Jos I Boumans
<[EMAIL PROTECTED]> To: "Steve Haigh" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 8:18 PM Subject: Re: Sending UDP messages > At 03:33 PM 5/15/01 +0100, Steve Haigh wrote: > > >I'm currently writing some scripts to send bytes to

Re: Sending UDP messages

2001-05-15 Thread Peter Scott
At 03:33 PM 5/15/01 +0100, Steve Haigh wrote: >I'm currently writing some scripts to send bytes to a UDP server. > > >use IO::Socket; > >$msg = '0xa'; > >$sock = IO::Socket::INET -> new(PeerAddr => '10.0.0.40', > PeerPort => 5525, >

Sending UDP messages

2001-05-15 Thread Steve Haigh
Hi, I'm currently writing some scripts to send bytes to a UDP server. use IO::Socket; $msg = '0xa'; $sock = IO::Socket::INET -> new(PeerAddr => '10.0.0.40', PeerPort => 5525, Proto=> 'udp', Typ