net: net_utils: Move ip_to_string to lib/net_utils.c
authorAdriano Cordova <adrianox@gmail.com>
Mon, 11 Nov 2024 21:09:45 +0000 (18:09 -0300)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 18 Nov 2024 15:12:35 +0000 (16:12 +0100)
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 <adrianox@gmail.com>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
include/net-common.h
lib/net_utils.c
net/net.c

index 3cd0f34..b7a519e 100644 (file)
@@ -426,6 +426,16 @@ void string_to_enetaddr(const char *addr, uint8_t *enetaddr);
  */
 struct in_addr string_to_ip(const char *s);
 
+/**
+ * ip_to_string() - Convert a string to ip address
+ *
+ * Implemented in lib/net_utils.c (built unconditionally)
+ *
+ * @x: Input ip to parse
+ * @s: string containing the parsed ip address
+ */
+void ip_to_string(struct in_addr x, char *s);
+
 /* copy a filename (allow for "..." notation, limit length) */
 void copy_filename(char *dst, const char *src, int size);
 
index c70fef0..621f651 100644 (file)
@@ -152,6 +152,17 @@ out_err:
 }
 #endif
 
+void ip_to_string(struct in_addr x, char *s)
+{
+       x.s_addr = ntohl(x.s_addr);
+       sprintf(s, "%d.%d.%d.%d",
+               (int) ((x.s_addr >> 24) & 0xff),
+               (int) ((x.s_addr >> 16) & 0xff),
+               (int) ((x.s_addr >> 8) & 0xff),
+               (int) ((x.s_addr >> 0) & 0xff)
+       );
+}
+
 void string_to_enetaddr(const char *addr, uint8_t *enetaddr)
 {
        char *end;
index f47e9fb..ca35704 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -1723,17 +1723,6 @@ int net_parse_bootfile(struct in_addr *ipaddr, char *filename, int max_len)
        return 1;
 }
 
-void ip_to_string(struct in_addr x, char *s)
-{
-       x.s_addr = ntohl(x.s_addr);
-       sprintf(s, "%d.%d.%d.%d",
-               (int) ((x.s_addr >> 24) & 0xff),
-               (int) ((x.s_addr >> 16) & 0xff),
-               (int) ((x.s_addr >> 8) & 0xff),
-               (int) ((x.s_addr >> 0) & 0xff)
-       );
-}
-
 void vlan_to_string(ushort x, char *s)
 {
        x = ntohs(x);