Re: [PATCH v3 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c

2024-11-16 Thread Heinrich Schuchardt
On 11/11/24 22:09, Adriano Cordova wrote: The function string_to_ip is already in net_utils, which is compiled unconditionally, but ip_to_string is currently only accessible if the legacy network stack is selected. This commit puts ip_to_string in net_utils.c and removes it from the legacy networ

Re: [PATCH v3 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c

2024-11-16 Thread Heinrich Schuchardt
On 11/11/24 22:09, Adriano Cordova wrote: The function string_to_ip is already in net_utils, which is compiled unconditionally, but ip_to_string is currently only accessible if the legacy network stack is selected. This commit puts ip_to_string in net_utils.c and removes it from the legacy networ

Re: [PATCH v3 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c

2024-11-13 Thread Ilias Apalodimas
Reviewed-by tags missing for me * Heinrich On Mon, 11 Nov 2024 at 23:10, Adriano Cordova wrote: > > The function string_to_ip is already in net_utils, which is > compiled unconditionally, but ip_to_string is currently only > accessible if the legacy network stack is selected. This > commit puts i

[PATCH v3 01/15] net: net_utils: Move ip_to_string to lib/net_utils.c

2024-11-11 Thread Adriano Cordova
The function string_to_ip is already in net_utils, which is compiled unconditionally, but ip_to_string is currently only accessible if the legacy network stack is selected. This commit puts ip_to_string in net_utils.c and removes it from the legacy network code. Signed-off-by: Adriano Cordova ---