blob: c4e32eabe1b99db6d573c42cb9d34127a1a49dcf [file] [log] [blame]
Harald Welte790f3642011-02-03 17:44:50 +01001-module(mgw_nat_app).
2-behavior(application).
3-export([start/2, stop/1]).
4
Harald Welte15b3fc02011-02-06 17:57:24 +01005-export([reload_config/0]).
6
Harald Welte790f3642011-02-03 17:44:50 +01007start(_Type, _Args) ->
8 Sup = mgw_nat_sup:start_link(),
9 io:format("Sup ~p~n", [Sup]),
10 Sup.
11
12stop(_State) ->
13 ok.
Harald Welte15b3fc02011-02-06 17:57:24 +010014
15reload_config() ->
Harald Welte77804892011-02-06 18:12:47 +010016 osmo_util:reload_config().