aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/debug.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-12-27 11:24:55 +0100
committerHarald Welte <laforge@gnumonks.org>2009-12-27 11:24:55 +0100
commitf6f2ef9d24d93ec339e5bedd8089138842813966 (patch)
treef251068b36b409b336d58cd5b70e5ff30ea71698 /openbsc/src/debug.c
parent258e2f9a9cd71fddfcf212ec2cf4a8e23f5d2426 (diff)
move get_string_value() und get_value_string() into debug.c
this makes bsc_mgcp and ipaccess-proxy compile again
Diffstat (limited to 'openbsc/src/debug.c')
-rw-r--r--openbsc/src/debug.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index acfcba30d..90a9fc7e3 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -56,6 +56,32 @@ static struct debug_category default_categories[Debug_LastEntry] = {
[DREF] = { .enabled = 0, .loglevel = LOGL_NOTICE },
};
+const char *get_value_string(const struct value_string *vs, u_int32_t val)
+{
+ int i;
+
+ for (i = 0;; i++) {
+ if (vs[i].value == 0 && vs[i].str == NULL)
+ break;
+ if (vs[i].value == val)
+ return vs[i].str;
+ }
+ return "unknown";
+}
+
+int get_string_value(const struct value_string *vs, const char *str)
+{
+ int i;
+
+ for (i = 0;; i++) {
+ if (vs[i].value == 0 && vs[i].str == NULL)
+ break;
+ if (!strcasecmp(vs[i].str, str))
+ return vs[i].value;
+ }
+ return -EINVAL;
+}
+
struct debug_info {
const char *name;
const char *color;