Re: [dpdk-dev] [PATCH v3] eal: support strlcat function

2019-04-16 Thread Ferruh Yigit
On 4/16/2019 3:37 PM, Bruce Richardson wrote: > On Tue, Apr 16, 2019 at 03:29:52PM +0100, Kevin Traynor wrote: >> On 17/01/2019 17:30, Bruce Richardson wrote: >>> Add the strlcat function to DPDK to exist alongside the strlcpy one. >>> While strncat is generally safe for use for concatenation, the

Re: [dpdk-dev] [PATCH v3] eal: support strlcat function

2019-04-16 Thread Bruce Richardson
On Tue, Apr 16, 2019 at 03:29:52PM +0100, Kevin Traynor wrote: > On 17/01/2019 17:30, Bruce Richardson wrote: > > Add the strlcat function to DPDK to exist alongside the strlcpy one. > > While strncat is generally safe for use for concatenation, the API for the > > strlcat function is perhaps a lit

Re: [dpdk-dev] [PATCH v3] eal: support strlcat function

2019-04-16 Thread Kevin Traynor
On 17/01/2019 17:30, Bruce Richardson wrote: > Add the strlcat function to DPDK to exist alongside the strlcpy one. > While strncat is generally safe for use for concatenation, the API for the > strlcat function is perhaps a little nicer to use, and supports truncation > detection. > > See commit

Re: [dpdk-dev] [PATCH v3] eal: support strlcat function

2019-02-12 Thread Thomas Monjalon
17/01/2019 18:30, Bruce Richardson: > Add the strlcat function to DPDK to exist alongside the strlcpy one. > While strncat is generally safe for use for concatenation, the API for the > strlcat function is perhaps a little nicer to use, and supports truncation > detection. > > See commit 5364de644

[dpdk-dev] [PATCH v3] eal: support strlcat function

2019-01-17 Thread Bruce Richardson
Add the strlcat function to DPDK to exist alongside the strlcpy one. While strncat is generally safe for use for concatenation, the API for the strlcat function is perhaps a little nicer to use, and supports truncation detection. See commit 5364de644a4b ("eal: support strlcpy function") for more d