From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F30D1A0C4E; Thu, 21 Oct 2021 16:14:48 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8013A41202; Thu, 21 Oct 2021 16:14:48 +0200 (CEST) Received: from mail-108-mta169.mxroute.com (mail-108-mta169.mxroute.com [136.175.108.169]) by mails.dpdk.org (Postfix) with ESMTP id 6910F411FE for ; Thu, 21 Oct 2021 16:14:47 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta169.mxroute.com (ZoneMTA) with ESMTPSA id 17ca33442e60000b55.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Thu, 21 Oct 2021 14:14:43 +0000 X-Zone-Loop: ec7fa2848d1889cd7ee82dccf1606238f04d25a72b6b X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From:References:Cc: To:Subject:MIME-Version:Date:Message-ID:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=M/ec5UlTZE+MxicV9uSEWK5Mnn4WaEQnWw7B+x0tY30=; b=KUuFrJeoTQWdczWcIsqNaC1olf NWjIfe6o7Vm4h7HcPOkgddMNeNmnopjvoscn48BovQxOFs0QJvr/dupbvj1Z3ODT8DqxAkJiFgDJG w0sf3WLNWXU62emvWl00gGldY0W4P0C4s8FuMXr1q5oRxPpvRh0AatAt19B6OaQTjWzTbtznA4odh FQr+rZarI4ipHjf13tyYVbhVq7WnNNQ5Fg8js58i474QccAX9/77bcYAdJm4Je0P318ODTP1O2V2W 5gJ4a6y7nJTNR+PsZJlJLdEno6ex5Pa3YIEzNZq21tSgvR1NXSo9uizkHvfOYnFuEdf4Sv8suxu+V OQd1RrZA==; Message-ID: Date: Thu, 21 Oct 2021 15:14:38 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.2.0 Content-Language: en-US To: Stephen Hemminger , dev@dpdk.org Cc: Reshma Pattan References: <20210903004732.109023-1-stephen@networkplumber.org> <20211020214236.71444-1-stephen@networkplumber.org> <20211020214236.71444-3-stephen@networkplumber.org> From: "Kinsella, Ray" In-Reply-To: <20211020214236.71444-3-stephen@networkplumber.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu X-Zone-Spam-Resolution: no action X-Zone-Spam-Status: No, score=-0.1, required=15, tests=[ARC_NA=0, FROM_HAS_DN=0, RCPT_COUNT_THREE=0, TO_DN_SOME=0, MIME_GOOD=-0.1, FROM_EQ_ENVFROM=0, MIME_TRACE=0, RCVD_COUNT_ZERO=0, NEURAL_SPAM=0, MID_RHS_MATCH_FROM=0] Subject: Re: [dpdk-dev] [PATCH v15 02/12] librte_pcapng: add new library for writing pcapng files X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 20/10/2021 22:42, Stephen Hemminger wrote: > This is utility library for writing pcapng format files > used by Wireshark family of utilities. Older tcpdump > also knows how to read (but not write) this format. > > See > https://github.com/pcapng/pcapng/ > > Signed-off-by: Stephen Hemminger > Acked-by: Reshma Pattan > --- > lib/meson.build | 1 + > lib/pcapng/meson.build | 8 + > lib/pcapng/pcapng_proto.h | 129 ++++++++ > lib/pcapng/rte_pcapng.c | 607 ++++++++++++++++++++++++++++++++++++++ > lib/pcapng/rte_pcapng.h | 195 ++++++++++++ > lib/pcapng/version.map | 12 + > 6 files changed, 952 insertions(+) > create mode 100644 lib/pcapng/meson.build > create mode 100644 lib/pcapng/pcapng_proto.h > create mode 100644 lib/pcapng/rte_pcapng.c > create mode 100644 lib/pcapng/rte_pcapng.h > create mode 100644 lib/pcapng/version.map > Minor niggle, does this need a MAINTAINERS entry? Acked-by: Ray Kinsella