* Status: 0x00: Logon successful. 0x02: Incorrect password.
* 0x0E: An email address should be registered for this
* account. 0x0F: Custom error. A string at the end of this
* message contains the error.
*/
int status = is.readDWord();
byte server_M2[] = new byte[20];
is.read(server_M2, 0, 20);
String additionalInfo = null;
if (is.available() != 0)
additionalInfo = is.readNTStringUTF8();