udhcpc: reuse string constant; remove unneeded memset(0)
[oweals/busybox.git] / networking / libiproute / rtm_map.c
index 7eb4c7122f4dba9dcb2b556999205885ccb335be..3bab53baf2eb4e4c13e802a868acd6fab680c8f8 100644 (file)
@@ -1,23 +1,18 @@
 /* vi: set sw=4 ts=4: */
 /*
- * rtm_map.c
- *
- *             This program is free software; you can redistribute it and/or
- *             modify it under the terms of the GNU General Public License
- *             as published by the Free Software Foundation; either version
- *             2 of the License, or (at your option) any later version.
- *
- * Authors:    Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
  *
+ * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
  */
 
-#include <stdlib.h>
-#include <string.h>
-
+#include "libbb.h"
 #include "rt_names.h"
 #include "utils.h"
 
-char *rtnl_rtntype_n2a(int id, char *buf, int len)
+const char* FAST_FUNC rtnl_rtntype_n2a(int id, char *buf)
 {
        switch (id) {
        case RTN_UNSPEC:
@@ -45,50 +40,60 @@ char *rtnl_rtntype_n2a(int id, char *buf, int len)
        case RTN_XRESOLVE:
                return "xresolve";
        default:
-               snprintf(buf, len, "%d", id);
+               /* buf is SPRINT_BSIZE big */
+               sprintf(buf, "%d", id);
                return buf;
        }
 }
 
 
-int rtnl_rtntype_a2n(int *id, char *arg)
+int FAST_FUNC rtnl_rtntype_a2n(int *id, char *arg)
 {
+       static const char keywords[] ALIGN1 =
+               "local\0""nat\0""broadcast\0""brd\0""anycast\0"
+               "multicast\0""prohibit\0""unreachable\0""blackhole\0"
+               "xresolve\0""unicast\0""throw\0";
+       enum {
+               ARG_local = 1, ARG_nat, ARG_broadcast, ARG_brd, ARG_anycast,
+               ARG_multicast, ARG_prohibit, ARG_unreachable, ARG_blackhole,
+               ARG_xresolve, ARG_unicast, ARG_throw
+       };
+       const smalluint key = index_in_substrings(keywords, arg) + 1;
        char *end;
        unsigned long res;
 
-       if (strcmp(arg, "local") == 0)
+       if (key == ARG_local)
                res = RTN_LOCAL;
-       else if (strcmp(arg, "nat") == 0)
+       else if (key == ARG_nat)
                res = RTN_NAT;
-       else if (matches(arg, "broadcast") == 0 ||
-                strcmp(arg, "brd") == 0)
+       else if (key == ARG_broadcast || key == ARG_brd)
                res = RTN_BROADCAST;
-       else if (matches(arg, "anycast") == 0)
+       else if (key == ARG_anycast)
                res = RTN_ANYCAST;
-       else if (matches(arg, "multicast") == 0)
+       else if (key == ARG_multicast)
                res = RTN_MULTICAST;
-       else if (matches(arg, "prohibit") == 0)
+       else if (key == ARG_prohibit)
                res = RTN_PROHIBIT;
-       else if (matches(arg, "unreachable") == 0)
+       else if (key == ARG_unreachable)
                res = RTN_UNREACHABLE;
-       else if (matches(arg, "blackhole") == 0)
+       else if (key == ARG_blackhole)
                res = RTN_BLACKHOLE;
-       else if (matches(arg, "xresolve") == 0)
+       else if (key == ARG_xresolve)
                res = RTN_XRESOLVE;
-       else if (matches(arg, "unicast") == 0)
+       else if (key == ARG_unicast)
                res = RTN_UNICAST;
-       else if (strcmp(arg, "throw") == 0)
+       else if (key == ARG_throw)
                res = RTN_THROW;
        else {
                res = strtoul(arg, &end, 0);
-               if (!end || end == arg || *end || res > 255)
+               if (end == arg || *end || res > 255)
                        return -1;
        }
        *id = res;
        return 0;
 }
 
-int get_rt_realms(uint32_t *realms, char *arg)
+int FAST_FUNC get_rt_realms(uint32_t *realms, char *arg)
 {
        uint32_t realm = 0;
        char *p = strchr(arg, '/');