}
message.flip().position(1);//skip version
FastDeserializer fds = new FastDeserializer(message);
final String service = fds.readString();
final String username = fds.readString();
final byte password[] = new byte[20];
//We should be left with SHA-1 bytes only.
if (message.remaining() != 20) {
authLog.warn("Failure to authenticate connection(" + socket.socket().getRemoteSocketAddress()
+ "): user " + username + " failed authentication.");