summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src/misc/app_echo_test.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-12-26 19:15:48 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-27 19:01:37 +0100
commit2934d0a4f4391b45e4bdb9adcbc1931b1323b986 (patch)
treec501997243ac52400a1f977c9faafff879aa00ad /src/host/layer23/src/misc/app_echo_test.c
parent000066110ade5227822532989b36f11c004b193f (diff)
layer23: Create an l23_app_info for various information and cb's
Make it possible that each l23 app can inject the copyright string, also prepare to have callbacks for the config handling and other places. This will be useful to add app specific config options.
Diffstat (limited to 'src/host/layer23/src/misc/app_echo_test.c')
-rw-r--r--src/host/layer23/src/misc/app_echo_test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/host/layer23/src/misc/app_echo_test.c b/src/host/layer23/src/misc/app_echo_test.c
index 56ab6740..c9b18958 100644
--- a/src/host/layer23/src/misc/app_echo_test.c
+++ b/src/host/layer23/src/misc/app_echo_test.c
@@ -25,6 +25,7 @@
#include <osmocom/bb/common/l1ctl.h>
#include <osmocom/bb/common/lapdm.h>
#include <osmocom/bb/common/logging.h>
+#include <osmocom/bb/common/l23_app.h>
#include <osmocom/bb/misc/layer3.h>
#include <osmocore/msgb.h>
@@ -53,3 +54,13 @@ int l23_app_init(struct osmocom_ms *ms)
return 0;
}
+
+static struct l23_app_info info = {
+ .copyright = "Copyright (C) 2010 Harald Welte <laforge@gnumonks.org>\n",
+ .contribution = "Contributions by Holger Hans Peter Freyther\n",
+};
+
+struct l23_app_info *l23_app_info()
+{
+ return &info;
+}