From 750d61d765509843edc701a16b899169160d2c4e Mon Sep 17 00:00:00 2001 From: JamJar00 Date: Tue, 31 Oct 2017 16:04:07 +0000 Subject: [PATCH] Fix compilation error --- Hazel/Udp/UdpConnection.Fragmented.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Hazel/Udp/UdpConnection.Fragmented.cs b/Hazel/Udp/UdpConnection.Fragmented.cs index abea8c4..96f74de 100644 --- a/Hazel/Udp/UdpConnection.Fragmented.cs +++ b/Hazel/Udp/UdpConnection.Fragmented.cs @@ -10,7 +10,7 @@ namespace Hazel.Udp /// /// The amount of data that can be put into a fragment. /// - public int FragmentSize { get { return _fragmentSize; } } + public int FragmentSize { get { return fragmentSize; } } int fragmentSize = 65507 - 1 - 2 - 2 - 2; /// -- 2.39.5