Re: setting up packet forwarding

2007-09-28 Thread Trustin Lee
Hi Rupinder, You will need both DatagramAcceptor and DatagramConnector. DatagramAcceptor can receive datagrams coming from any remote peer to a certain bind address. Once you received data, you can use the connector to send the message in your IoHandler implementation. Because it's UDP, it

setting up packet forwarding

2007-09-25 Thread Rupinder Mazara
hi all I have a need help on the following problem I have a server application that is sending out UDP packets on a pre-determined port. These are to be read and re-transmited on different port I managed to do this using threads and good old datagram sockets part of the code is below