From 37ef87d834a04140b8d4374ab2dd42f11c77d00b Mon Sep 17 00:00:00 2001 From: Yury Frolov Date: Wed, 12 Feb 2025 17:03:07 +0500 Subject: [PATCH] Fix message type codes --- include/msgproto.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/msgproto.h b/include/msgproto.h index 3a12e8b..dfc2a0b 100644 --- a/include/msgproto.h +++ b/include/msgproto.h @@ -13,13 +13,13 @@ const char MessageTypeCat = 42; const char MessageTypeCatV2 = 54; const char MessageTypePut = 43; const char MessageTypePutV2 = 53; -const char MessageTypePutV3 = 54; +const char MessageTypePutV3 = 56; const char MessageTypeCommandComplete = 44; const char MessageTypeReadyForQuery = 45; const char MessageTypeCopyData = 46; const char MessageTypeList = 48; const char MessageTypeObjectMeta = 49; -const char MessageTypePutComplete = 55; +const char MessageTypePutComplete = 57; const char MessageTypeDelete = 47;