diff options
author | lns <matzeton@googlemail.com> | 2020-06-08 19:16:33 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2020-06-08 19:16:33 +0200 |
commit | 44b764cff8f8bcfd10751760d4e304f0a19398a2 (patch) | |
tree | bdacb7c3dcf546f0ce603818defe3e17e0ba9296 /protocol.h | |
parent | 6c10fd5e3e563791008a22803a536e7436fee073 (diff) |
switched header->body_size to a u32, means that one can encrypt/decrypt 4.2GB with only one header sent
Diffstat (limited to 'protocol.h')
-rw-r--r-- | protocol.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,8 +11,8 @@ #define PROTOCOL_MAGIC 0xBAADC0DE #define PROTOCOL_VERSION 0xDEADCAFE #define PROTOCOL_TIME_STRLEN 32 -#define WINDOW_SIZE 65535 -#if WINDOW_SIZE > 65535 +#define WINDOW_SIZE (65535*2) +#if WINDOW_SIZE > (65535*2) #error "Window size is limited by sizeof(header.body_size)" #endif @@ -52,8 +52,8 @@ enum header_types { struct protocol_header { uint32_t magic; - uint16_t pdu_type; - uint16_t body_size; + uint32_t pdu_type; + uint32_t body_size; } PROTOCOL_ATTRIBUTES; struct protocol_client_auth { |