DummyChannel() {
final MessageBuffer msg =
new MessageBuffer(4 +
MessageBuffer.getSize("username") +
MessageBuffer.getSize("password"));
msg.putShort(msg.capacity() - 2);
msg.putByte(SimpleSgsProtocol.LOGIN_REQUEST);
msg.putByte(SimpleSgsProtocol.VERSION);
msg.putString("username");
msg.putString("password");
message = ByteBuffer.allocate(msg.capacity());