Hi,
I was thinking of using one DatagramChannel per client instead of using only one DatagramChannel for all the clients. The main reason I want to do this is so that I can connect the DatagramChannel and then use the write(ByteBuffer[]) so that I can use seperate packets for the header and body of my messages. (Stupidly, Sun did not provide a send(ByteBuffer[], address) method for gathering sends)
Is there any problem with this method?
Thanks,
Sam