]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ip: export print_rta_gateway version which outputs prepared gateway string
authorNikolay Aleksandrov <nikolay@nvidia.com>
Thu, 30 Sep 2021 11:38:34 +0000 (14:38 +0300)
committerDavid Ahern <dsahern@kernel.org>
Mon, 4 Oct 2021 00:24:06 +0000 (18:24 -0600)
Export a new __print_rta_gateway that takes a prepared gateway string to
print which is also used by print_rta_gateway for consistent format.

Signed-off-by: Nikolay Aleksandrov <nikolay@nvidia.com>
Signed-off-by: David Ahern <dsahern@kernel.org>
ip/ip_common.h
ip/iproute.c

index d3d50cbca74d13c621e8bd348179a04b50125ac1..a02a3b96f7fd1a4074d45c1d611078dd9b182539 100644 (file)
@@ -169,6 +169,7 @@ int name_is_vrf(const char *name);
 void print_num(FILE *fp, unsigned int width, uint64_t count);
 void print_rt_flags(FILE *fp, unsigned int flags);
 void print_rta_ifidx(FILE *fp, __u32 ifidx, const char *prefix);
+void __print_rta_gateway(FILE *fp, unsigned char family, const char *gateway);
 void print_rta_gateway(FILE *fp, unsigned char family,
                       const struct rtattr *rta);
 #endif /* _IP_COMMON_H_ */
index f2bf4737b958d2f8178ce9abfd340bf155d1bdf2..3c933df4dd29e907db56195d076d42606b17989f 100644 (file)
@@ -547,13 +547,11 @@ static void print_rta_newdst(FILE *fp, const struct rtmsg *r,
        }
 }
 
-void print_rta_gateway(FILE *fp, unsigned char family, const struct rtattr *rta)
+void __print_rta_gateway(FILE *fp, unsigned char family, const char *gateway)
 {
-       const char *gateway = format_host_rta(family, rta);
-
-       if (is_json_context())
+       if (is_json_context()) {
                print_string(PRINT_JSON, "gateway", NULL, gateway);
-       else {
+       else {
                fprintf(fp, "via ");
                print_color_string(PRINT_FP,
                                   ifa_family_color(family),
@@ -561,6 +559,13 @@ void print_rta_gateway(FILE *fp, unsigned char family, const struct rtattr *rta)
        }
 }
 
+void print_rta_gateway(FILE *fp, unsigned char family, const struct rtattr *rta)
+{
+       const char *gateway = format_host_rta(family, rta);
+
+       __print_rta_gateway(fp, family, gateway);
+}
+
 static void print_rta_via(FILE *fp, const struct rtattr *rta)
 {
        size_t len = RTA_PAYLOAD(rta) - 2;