From e28eed5d389803d2d64a57ad022e0c3a6c080864 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Tue, 16 Aug 2022 16:17:49 +0200 Subject: [PATCH] Set product in `ClientHello` packet to `PRODUCT_CLIENT` --- core/src/connection/handshake.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/connection/handshake.rs b/core/src/connection/handshake.rs index eddcd32..1d1f88d 100644 --- a/core/src/connection/handshake.rs +++ b/core/src/connection/handshake.rs @@ -45,7 +45,7 @@ where let mut packet = ClientHello::new(); packet .mut_build_info() - .set_product(protocol::keyexchange::Product::PRODUCT_PARTNER); + .set_product(protocol::keyexchange::Product::PRODUCT_CLIENT); packet .mut_build_info() .set_platform(protocol::keyexchange::Platform::PLATFORM_LINUX_X86);