From 6e28b60aa5559ddf82142d0df787f5cf9c0ab15f Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 3 Apr 2011 15:47:58 +0000 Subject: [PATCH] PR: 2457 Submitted by: Robin Seggelmann Reviewed by: steve Fix DTLS fragment reassembly bug. --- ssl/d1_both.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/d1_both.c b/ssl/d1_both.c index 4ce4064cc9..2569bb7d67 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -153,7 +153,7 @@ #endif static unsigned char bitmask_start_values[] = {0xff, 0xfe, 0xfc, 0xf8, 0xf0, 0xe0, 0xc0, 0x80}; -static unsigned char bitmask_end_values[] = {0x00, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f}; +static unsigned char bitmask_end_values[] = {0xff, 0x01, 0x03, 0x07, 0x0f, 0x1f, 0x3f, 0x7f}; /* XDTLS: figure out the right values */ static unsigned int g_probable_mtu[] = {1500 - 28, 512 - 28, 256 - 28}; -- 2.34.1