From 9984b835cced00ea41ff63ee3520cd00137624db Mon Sep 17 00:00:00 2001 From: Lev Stipakov Date: Fri, 17 Jun 2022 14:43:56 +0300 Subject: [PATCH] mss: disble "adjust mss" log message Also bump to 0.7.6 Signed-off-by: Lev Stipakov --- PropertySheet.props | 2 +- mss.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PropertySheet.props b/PropertySheet.props index e9c3c0c..ad97347 100644 --- a/PropertySheet.props +++ b/PropertySheet.props @@ -4,7 +4,7 @@ 0 7 - 5 + 6 diff --git a/mss.cpp b/mss.cpp index 614fc53..d4f1283 100644 --- a/mss.cpp +++ b/mss.cpp @@ -107,7 +107,7 @@ OvpnMssDoWork(_In_ UCHAR* buf, SIZE_T len, UINT16 maxmss) TCP_OPT_MSS* opt_mss = (TCP_OPT_MSS*)opt; UINT16 mssval = RtlUshortByteSwap(opt_mss->Mss); if (mssval > maxmss) { - LOG_INFO("Adjust MSS", TraceLoggingValue(mssval, "old"), TraceLoggingValue(maxmss, "new")); + // LOG_INFO("Adjust MSS", TraceLoggingValue(mssval, "old"), TraceLoggingValue(maxmss, "new")); int accumulate = opt_mss->Mss; opt_mss->Mss = RtlUshortByteSwap(maxmss); accumulate -= RtlUshortByteSwap(maxmss);