> From: Ronan Randles [mailto:ronan.rand...@intel.com] > Sent: Tuesday, 14 December 2021 15.13 > > Added function that accepts ip string as a parameter and returns an ip > address represented by a uint32_t. Relevant unit test for this function > is also included. > > Signed-off-by: Harry van Haaren <harry.van.haa...@intel.com> > Signed-off-by: Ronan Randles <ronan.rand...@intel.com> > ---
[snip] > diff --git a/lib/net/rte_ip.h b/lib/net/rte_ip.h > index c575250852..188054fda4 100644 > --- a/lib/net/rte_ip.h > +++ b/lib/net/rte_ip.h > @@ -426,6 +426,24 @@ rte_ipv4_udptcp_cksum_verify(const struct > rte_ipv4_hdr *ipv4_hdr, > return 0; > } > > +/** > + * IP address parser. > + * > + * @param src_ip > + * The IP address to be parsed. > + * @param output_addr > + * The array in which the parsed digits will be saved. > + * > + * @retval 0 > + * Success. > + * @retval -1 > + * Failure due to invalid input arguments. > + */ > + > +__rte_experimental > +int32_t > +rte_ip_parse_addr(const char *src_ip, uint32_t *output_addr); > + Good initiative! This should set a precedent for to/from string functions, so be careful about names and calling conventions. I have a few suggestions: The function should take a parameter to tell if the input string must be zero-terminated or not. This is highly useful for parsing subnet strings (e.g. "192.0.2.0/24") and IP range strings (e.g. "192.0.2.2-192.0.2.253"). The return value should be the number of characters read from the input string, and still -1 on error. With this modification, also consider using the return type ssize_t instead of int32_t. -Morten