From 6072fb8c6569189f22a0b000fc68534ce0e500df Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sat, 9 Mar 2013 06:28:52 +0100 Subject: econproto: Add unknown fields to clientinfo and reqconnect --- econproto.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/econproto.h b/econproto.h index 8790310..ad5aa67 100644 --- a/econproto.h +++ b/econproto.h @@ -145,6 +145,8 @@ typedef struct { uint8_t projState; uint8_t useKeyword; uint8_t displayType; + uint8_t implicit_padding; + uint16_t unknown_field_1; /* value: 256 */ } e_command_clientinfo; @@ -153,6 +155,9 @@ typedef struct { uint8_t EncPassword[ECON_ENCRYPTION_MAXLEN]; uint8_t subnetMask[ECON_IPADDRESS_SIZE]; uint8_t gateAddress[ECON_IPADDRESS_SIZE]; + uint8_t unknown_field_1; /* value: 0x02 */ + uint8_t unknown_field_2; /* value: 0x01 */ + uint8_t unknown_field_3; /* value: 0x03 */ rfbServerInitMsg vnesInitMsg; } e_command_reqconnect; -- cgit