hi,
im learning to use the udp socket in QT4

what happened was when i tried to send and receive on the same port using the same QUDPsocket
whatever i send out i receive on my port and my client on the other end doesnt receive anything.
however when i disable the binding and signal readyRead() it works fine

my code is

udpsock = new QUdpSocket(this)
udpsock->bind(20000,QUdpSocket::ReuseAddressHint)
connect(udpsock,SIGNAL(readyRead()), this, SLOT(processPendingDatagrams())

is there something i did wrong here?

thanks for yr help