diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-03-09 06:28:52 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-03-09 06:28:52 +0100 |
commit | 6072fb8c6569189f22a0b000fc68534ce0e500df (patch) | |
tree | dc94dfc294c16a1b6c518bd6cc18fb9fd43db8e3 | |
parent | a4361e2d585daa00b0480b7bb059ce1e47857288 (diff) | |
download | econ-6072fb8c6569189f22a0b000fc68534ce0e500df.tar.gz econ-6072fb8c6569189f22a0b000fc68534ce0e500df.tar.bz2 econ-6072fb8c6569189f22a0b000fc68534ce0e500df.zip |
econproto: Add unknown fields to clientinfo and reqconnect
-rw-r--r-- | econproto.h | 5 |
1 files changed, 5 insertions, 0 deletions
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; |