aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/iprule.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-10-08 13:02:28 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2015-10-08 13:02:28 +0200
commit3d8d5e8ad4d2df71e0307c385b3784586b545cbc (patch)
tree9e543be018a890ee5a2c40a2b3ed0de0f0e7dd36 /networking/libiproute/iprule.c
parent7f3a2a22569eb8e4c9fcc1c7f4e51fe0c6155dae (diff)
downloadbusybox-w32-3d8d5e8ad4d2df71e0307c385b3784586b545cbc.tar.gz
busybox-w32-3d8d5e8ad4d2df71e0307c385b3784586b545cbc.tar.bz2
busybox-w32-3d8d5e8ad4d2df71e0307c385b3784586b545cbc.zip
libiproute: use itoa() where appropriate
function old new delta rtnl_rtprot_a2n 31 88 +57 print_tunnel 647 640 -7 print_route 1865 1858 -7 print_linkinfo 820 812 -8 print_addrinfo 1241 1227 -14 rtnl_rttable_n2a 53 38 -15 rtnl_rtscope_n2a 53 38 -15 rtnl_rtrealm_n2a 53 38 -15 rtnl_dsfield_n2a 61 38 -23 rtnl_rtntype_n2a 118 89 -29 print_rule 724 689 -35 ipaddr_list_or_flush 1293 1253 -40 rtnl_rtprot_n2a 53 - -53 rtnl_rtprot_initialize 63 - -63 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/11 up/down: 57/-324) Total: -267 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute/iprule.c')
-rw-r--r--networking/libiproute/iprule.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/networking/libiproute/iprule.c b/networking/libiproute/iprule.c
index 8dbe6bd92..774a3e220 100644
--- a/networking/libiproute/iprule.c
+++ b/networking/libiproute/iprule.c
@@ -45,7 +45,6 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
45 int host_len = -1; 45 int host_len = -1;
46 struct rtattr * tb[RTA_MAX+1]; 46 struct rtattr * tb[RTA_MAX+1];
47 char abuf[256]; 47 char abuf[256];
48 SPRINT_BUF(b1);
49 48
50 if (n->nlmsg_type != RTM_NEWRULE) 49 if (n->nlmsg_type != RTM_NEWRULE)
51 return 0; 50 return 0;
@@ -110,7 +109,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
110 } 109 }
111 110
112 if (r->rtm_tos) { 111 if (r->rtm_tos) {
113 printf("tos %s ", rtnl_dsfield_n2a(r->rtm_tos, b1)); 112 printf("tos %s ", rtnl_dsfield_n2a(r->rtm_tos));
114 } 113 }
115 if (tb[RTA_PROTOINFO]) { 114 if (tb[RTA_PROTOINFO]) {
116 printf("fwmark %#x ", *(uint32_t*)RTA_DATA(tb[RTA_PROTOINFO])); 115 printf("fwmark %#x ", *(uint32_t*)RTA_DATA(tb[RTA_PROTOINFO]));
@@ -121,7 +120,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
121 } 120 }
122 121
123 if (r->rtm_table) 122 if (r->rtm_table)
124 printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table, b1)); 123 printf("lookup %s ", rtnl_rttable_n2a(r->rtm_table));
125 124
126 if (tb[RTA_FLOW]) { 125 if (tb[RTA_FLOW]) {
127 uint32_t to = *(uint32_t*)RTA_DATA(tb[RTA_FLOW]); 126 uint32_t to = *(uint32_t*)RTA_DATA(tb[RTA_FLOW]);
@@ -129,10 +128,10 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
129 to &= 0xFFFF; 128 to &= 0xFFFF;
130 if (from) { 129 if (from) {
131 printf("realms %s/", 130 printf("realms %s/",
132 rtnl_rtrealm_n2a(from, b1)); 131 rtnl_rtrealm_n2a(from));
133 } 132 }
134 printf("%s ", 133 printf("%s ",
135 rtnl_rtrealm_n2a(to, b1)); 134 rtnl_rtrealm_n2a(to));
136 } 135 }
137 136
138 if (r->rtm_type == RTN_NAT) { 137 if (r->rtm_type == RTN_NAT) {
@@ -145,7 +144,7 @@ static int FAST_FUNC print_rule(const struct sockaddr_nl *who UNUSED_PARAM,
145 } else 144 } else
146 printf("masquerade"); 145 printf("masquerade");
147 } else if (r->rtm_type != RTN_UNICAST) 146 } else if (r->rtm_type != RTN_UNICAST)
148 fputs(rtnl_rtntype_n2a(r->rtm_type, b1), stdout); 147 fputs(rtnl_rtntype_n2a(r->rtm_type), stdout);
149 148
150 bb_putchar('\n'); 149 bb_putchar('\n');
151 /*fflush_all();*/ 150 /*fflush_all();*/