From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-3.4 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_PASS, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 55AB31F9FD for ; Thu, 18 Feb 2021 00:12:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230018AbhBRAMR (ORCPT ); Wed, 17 Feb 2021 19:12:17 -0500 Received: from mail-40140.protonmail.ch ([185.70.40.140]:29958 "EHLO mail-40140.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229974AbhBRAMJ (ORCPT ); Wed, 17 Feb 2021 19:12:09 -0500 Date: Thu, 18 Feb 2021 00:11:22 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1613607087; bh=3LxAYXJps4izcEiX9Xp9AhbKrsL8hMkHZR8QN7ltnkU=; h=Date:To:From:Reply-To:Subject:From; b=UTqz21IqmpHmV5ljYuqWeibg+lVWrABneYOdz1Vyy9ztND4FU/CFYRXsQDlNBlOpX W0MPen9B+yeTCqXER2DVsnT4rl9M6x11JR11gUbwaqx1agcLYDHj4Volhx6p+rg/Zz hoD6d1xtaItnj9KxMoI8ARSefWhONZvsYwIWcks4= To: Denton Liu , "git@vger.kernel.org" From: Joey Salazar Reply-To: Joey Salazar Subject: [OUTREACHY][PATCH v2] doc: fix naming of response-end-pkt Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Git Protocol version 2[1] defines 0002 as a Message Packet that indicates the end of a response for stateless connections. Change the naming of the 0002 Packet to 'Response End' to match the parsing introduced in Wireshark's MR !1922 for consistency. A subsequent MR in Wireshark will address additional mismatches. [1] kernel.org/pub/software/scm/git/docs/technical/protocol-v2.html [2] gitlab.com/wireshark/wireshark/-/merge_requests/1922 Signed-off-by: Joey Salazar --- Documentation/technical/protocol-v2.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/technical/protocol-v2.txt b/Documentation/techni= cal/protocol-v2.txt index e597b74da39..fc163ca605c 100644 --- a/Documentation/technical/protocol-v2.txt +++ b/Documentation/technical/protocol-v2.txt @@ -33,8 +33,8 @@ In protocol v2 these special packets will have the follow= ing semantics: * '0000' Flush Packet (flush-pkt) - indicates the end of a message * '0001' Delimiter Packet (delim-pkt) - separates sections of a message - * '0002' Message Packet (response-end-pkt) - indicates the end of a resp= onse - for stateless connections + * '0002' Response End Packet (response-end-pkt) - indicates the end of a + response for stateless connections Initial Client Request ---------------------- -- 2.29.0.rc2