Re: testing a udp socket with netcat

2012-03-14 Thread Chris Davies
Arif Hossain wrote: > i've this udp daemon which is waiting for an incoming udp datagram [...] > problem is if I issue following command for putting udp datagram : > $nc -uvvz > it does not output any thing UDP is connectionless, so you cannot check whether there is something listening simply b

Re: testing a udp socket with netcat

2012-03-14 Thread Jon Dowland
On 14/03/12 13:27, Arif Hossain wrote: i've this udp daemon which is waiting for an incoming udp datagram. now i want test this daemon for random garbage to test how it behaves. My udp daemon is running because its shows on netstat. problem is if i issue following command for putting udp datagram

testing a udp socket with netcat

2012-03-14 Thread Arif Hossain
i've this udp daemon which is waiting for an incoming udp datagram. now i want test this daemon for random garbage to test how it behaves. My udp daemon is running because its shows on netstat. problem is if i issue following command for putting udp datagram : $nc -uvvz it does not output any th