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 1EC90F90
 for <dev@dpdk.org>; Mon, 23 Apr 2018 02:38:35 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id A752220F57;
 Sun, 22 Apr 2018 20:38:33 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Sun, 22 Apr 2018 20:38:33 -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=tfihwgJxzyVR5M+CBQkGbZEIu+
 +93bbRkvXTWq0MgpU=; b=F4FEue87rhjaaPDL6Lc8HImE9ovoimpkdK5n3UHHWp
 Jk7yT1IJEqavjFFoFCxdxLIdxbryV+PFRex86uzwwYWyr5WL15Sg1YMWU0wEJX8P
 E0XJ51qws7GrqutWkeNtcdaEBcqDWA9ru+Vx8QDz+9VzI9Ny5h5UE5Riis9SRj9y
 w=
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=tfihwg
 JxzyVR5M+CBQkGbZEIu++93bbRkvXTWq0MgpU=; b=SmHvsLu0UXblPOmRFAlIu8
 AU/k3wiqlK14MGYKxWQRw4JKoI3v15Cofa2m1qUUtr5A2zhws7rCAXNDbpnugZWC
 NHT89shfoGchos2mSlODjo39BeA1hikWhvWp6T6mjya5De7Hq3OYEX3z7xZ1Itrt
 0/EFhhXFRYpprOzG4A/0qb0VvJZsRnztzug0irDXdUxR9KC14aoSpW7CWoRkUWCM
 Dnu6W/X91vXaATXjMcr77umdwNzlE6IbMOC9+2VdgP8PzNwxHeAvk4af/CFoml/+
 qLYRuQKzKF5qETBWVXgixDIv+Oo3bNNk7pFGJczRJ/H03dhYuIu3kPyLvGHSSXng
 ==
X-ME-Sender: <xms:CSvdWvFSmbYLNd8GOwfJ0PpxWM7oExVrx8T2QoSf0Fgxh8siL6mXkA>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 2652AE4120;
 Sun, 22 Apr 2018 20:38:33 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Cc: Olivier Matz <olivier.matz@6wind.com>
Date: Mon, 23 Apr 2018 02:38:31 +0200
Message-ID: <1612207.9CW8VGUfN3@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 00:38:35 -0000

There was no review or ack for this patch.
It will be merged soon if no comment.

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>