Rename gsup_client.erl to osmo_gsup_if.erl

Later on we may introduce more interfaces (MAP and SMPP) to
communicate with the external entities, so let's introduce
and follow a common naming scheme: "*_if.erl".
This commit is contained in:
Vadim Yanitskiy 2019-08-15 22:25:51 +02:00
parent 4e09d7ce80
commit add2157701
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
% simple, blocking/synchronous GSUP client
% Osmocom GSUP (Generic Subscriber Update Protocol) interface.
% Simple, blocking / synchronous GSUP client (SMSC -> OsmoHLR).
%
% (C) 2019 by Harald Welte <laforge@gnumonks.org>
%
% All Rights Reserved
@ -31,7 +32,7 @@
% for the parts of the runtime libraries of Erlang/OTP used as well as
% that of the covered work.
-module(gsup_client).
-module(osmo_gsup_if).
-behaviour(gen_server).