import SS7 link handling from osmo_ss7
diff --git a/src/osmo_ss7_app.erl b/src/osmo_ss7_app.erl
new file mode 100644
index 0000000..2bd8292
--- /dev/null
+++ b/src/osmo_ss7_app.erl
@@ -0,0 +1,31 @@
+-module(osmo_ss7_app).
+-behaviour(application).
+-author('Harald Welte <laforge@gnumonks.org>').
+
+% application behaviour callbacks
+-export([start/2, start_phase/3, prep_stop/1, stop/1, config_change/3]).
+
+-export([reload_config/0]).
+
+start(normal, StartArgs) ->
+	supervisor:start_link({local, osmo_ss7_sup}, osmo_ss7_sup, StartArgs).
+
+
+start_phase(_Phase, _StartType, _PhaseArgs) ->
+	ok.
+
+prep_stop(State) ->
+	State.
+
+stop(_State) ->
+	ok.
+
+config_change(_Changed, _New, _Removed) ->
+	ok.
+
+
+
+reload_config() ->
+	osmo_util:reload_config(),
+	% FIXME: do something
+	ok.