I&#39;m three weeks into my multi-protocol project and already have TCP, SSL, HTTP and UDP up and running... or so I thought! Having moved from MINA I was caught out by the connection-less nature of UDP in Netty. I want UDP to behave as-if it was connected. What is my best option from here? Can I extend my own &quot;transport provider&quot; and implement ServerChannel, ChannelConfig, ServerChannelFactory, ChannelSink, etc. (as per <a href="http://rafaelmarins.com/tag/netty">http://rafaelmarins.com/tag/netty</a>)? Or should I be working in the Netty source tree directly to do this kind of stuff? Either way is there some sort of cookbook/example I can follow? Thanks, Martin.