try {
socket = AFUNIXServerSocket.newInstance(); //New Instance for UDS
} catch (IOException e) {
throw new ChannelException("Failed to open a server socket.", e);
}
config = new DefaultServerSocketChannelConfig(socket);
fireChannelOpen(this); //Fire a request to bind
}