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 13CC1A034C; Tue, 14 Dec 2021 17:08:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9BB8440041; Tue, 14 Dec 2021 17:08:47 +0100 (CET) Received: from mail-pj1-f53.google.com (mail-pj1-f53.google.com [209.85.216.53]) by mails.dpdk.org (Postfix) with ESMTP id 1881A4003C for ; Tue, 14 Dec 2021 17:08:45 +0100 (CET) Received: by mail-pj1-f53.google.com with SMTP id v23so14638284pjr.5 for ; Tue, 14 Dec 2021 08:08:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=JAXFryBkIvRubkBV3bz0YZqYK0LZ3WGlXhmOKgFRQPk=; b=cp5x6UCzHcRU0hD1wMH+BWkAOkdviuLNl7M+MaXOQm8vZyXMqDeURMwPm1uPcIdw0w NpqmW02IF+2Pz6yHX2ai0IHC1XsP3fXJgisimbHUA19ke0FFpBLIUpA27N6ifC0GDl+e HQe6/9TJzkUVW9TJx2LRpD4dUYIX5W3Rsdob8I7Q5iwwJcokboJSFVyha1n3yysSSDYj HM6Tf/h+0CPD8QdT1mLjVfScCMAG2/CsUG5m2nZoSSZOinSKtQsTwMJzv4LE58RiuotQ vnb5G5G9Nkf8qRP2DcaJ7Lpa2xo3ik3lVNGOAEPA47i4GsBCf/d/L++0iphW6ksRZash O2/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=JAXFryBkIvRubkBV3bz0YZqYK0LZ3WGlXhmOKgFRQPk=; b=26oz/vQcky/8MxskDgZPO/ugW01BZw4TZUdvnQhWN+gX8U29o00shyhJw9/2PK9IN7 Pgili2NnswN2puCXQE9SMypWmabVbi0RQiwWLLn24ZcDS3p5NHut3/9j72DhG1h11zFe 2PPWNIBWPRtRgbxmNv1c6RyCDmGhr60lmTxZFHY2pst/NLZzN3qS4Iw+KB8trKsHizMn qlV+RvPOGaC1aPj1KnzvGdbcQ68Flqz6iuigtlonDDgqkUtFDYj01QgQ7WEOCYIvpysL LetGHrbJ0KxiU7h8Hg4XRqN5/sQUOz8b0O0utaCwi5kwwfdC+TaOYmMTgAO93/v70Fwi m2qA== X-Gm-Message-State: AOAM532YRwckfgNiaH6FnwQwZhrPQmT0cyEUhMHoHQHSRwhOozglutn6 eOJaKKivrlMPt2mGvL4JVn4KRA== X-Google-Smtp-Source: ABdhPJzT2J8PQ39HJgo4Z7XH/L6IZtwVV1Ss8RB6FjzER0AQY3cAIkQ83V3TglT/3d5AavEI5JA0WA== X-Received: by 2002:a17:902:6b05:b0:142:83f9:6e29 with SMTP id o5-20020a1709026b0500b0014283f96e29mr7251632plk.32.1639498125099; Tue, 14 Dec 2021 08:08:45 -0800 (PST) Received: from hermes.local (204-195-112-199.wavecable.com. [204.195.112.199]) by smtp.gmail.com with ESMTPSA id l2sm296120pfc.42.2021.12.14.08.08.44 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Dec 2021 08:08:44 -0800 (PST) Date: Tue, 14 Dec 2021 08:08:41 -0800 From: Stephen Hemminger To: Ronan Randles Cc: dev@dpdk.org, harry.van.haaren@intel.com Subject: Re: [PATCH 02/12] net: add function to pretty print IPv4 Message-ID: <20211214080841.3c028b13@hermes.local> In-Reply-To: <20211214141242.3383831-3-ronan.randles@intel.com> References: <20211214141242.3383831-1-ronan.randles@intel.com> <20211214141242.3383831-3-ronan.randles@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Tue, 14 Dec 2021 14:12:32 +0000 Ronan Randles wrote: > This function accepts an uint32_t representation of an IP address and > produces a string representation stored in a char * buffer. Realavent > unit tests also included. > > Signed-off-by: Ronan Randles Do we really have to reinvent getnameinfo()? Is this for Windows?