From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com
 [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 2581DF04
 for <dev@dpdk.org>; Mon, 23 Apr 2018 21:39:22 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 4124421B8E;
 Mon, 23 Apr 2018 15:39:22 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Mon, 23 Apr 2018 15:39:22 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=rYLivWg8pjk+Xa5I/RcdC0UsRl
 AY2UT2cJAC5nIzfbU=; b=UsN0Qo6WCd8BPlawBBDe2YbY5RpTIpeDAGKPWKYKgd
 FHs3JmuMlp4duS0PoYK/F5ICO6HVAFwz2q12q5csWcnrBXf4gGe9/Nm3iJWF7V1q
 9SGNGlR2Pr6A48QtKcsJF2P6eoNjiZfrQ7gnNZxlXcjXuovMVhGplpBb/kUKRY3P
 g=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=rYLivW
 g8pjk+Xa5I/RcdC0UsRlAY2UT2cJAC5nIzfbU=; b=O5cssgWa73J+fW5k75rHNH
 16UaVs1CyWvKMoabOrYfLvl0v0SuJpF8XNPUsMVJsQXvzvh40XzF1IDnG1LZwMCF
 immcGKlB4UJbAa8FUQeuQqsnltuN9MaZnI0GI0JPuhRszm/lLK0cfIMCIHMfWdDp
 LKwWbaJUyqCslcqkYndsrnECsiv/zpqPp4Aez4Oafduse7NOz2hCLToOjeAGEWnt
 SZuhd/SboaHc1acHB3jTwOnw5BWtRcmOp9BtOQ42/ctnhADkrR5ESsweZBMK4Uz8
 ppLJsME/1QJApqeuqpdjk1Vk95cQq6a1KIBDhHZV6Vye9BVWAVHw9H75ma81hlkg
 ==
X-ME-Sender: <xms:ajbeWmu4s9WxptDOcpN4_zjqZfjwpfm5U19I72goEG3c9Qz-XwfuIQ>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 9B0ABE5088;
 Mon, 23 Apr 2018 15:39:21 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Olivier Matz <olivier.matz@6wind.com>
Cc: dev@dpdk.org
Date: Mon, 23 Apr 2018 21:39:20 +0200
Message-ID: <1869019.89A7ZUF6h7@xps>
In-Reply-To: <20180129102903.21203-1-olivier.matz@6wind.com>
References: <20180129102903.21203-1-olivier.matz@6wind.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] cmdline: standardize conversion of IP
	address strings
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 23 Apr 2018 19:39:23 -0000

29/01/2018 11:29, Olivier Matz:
> The code to convert IPv4 and IPv6 address strings into a binary format
> (inet_ntop) was included in the cmdline library because the DPDK was
> historically compiled in environments where the standard inet_ntop()
> function is not available. Today, this is not the case and the standard
> inet_ntop() can be used.
> 
> This patch removes the internal inet_ntop*() functions and their
> specific license.
> 
> There is a small functional impact: IP addresses like 012.34.56.78
> are not valid anymore.
> 
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>

Applied, thanks