aboutsummaryrefslogtreecommitdiff
path: root/protocol.h
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2020-06-08 19:16:33 +0200
committerlns <matzeton@googlemail.com>2020-06-08 19:16:33 +0200
commit44b764cff8f8bcfd10751760d4e304f0a19398a2 (patch)
treebdacb7c3dcf546f0ce603818defe3e17e0ba9296 /protocol.h
parent6c10fd5e3e563791008a22803a536e7436fee073 (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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocol.h b/protocol.h
index 1232fbb..1a7b6b5 100644
--- a/protocol.h
+++ b/protocol.h
@@ -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 {