Changes of Revision 25

commit_08569580057efe5ea1603ded8c083794c9a4f478.txt Added
commit_f3653a5f9dc8b503313caa53b32aa1f2f232ac0d.txt Deleted
osmo-diameter2gsup_0.2.0.67.f365.dsc -> osmo-diameter2gsup_0.2.0.70.0856.dsc Changed
x
 
1
@@ -2,15 +2,15 @@
2
 Source: osmo-diameter2gsup
3
 Binary: osmo-diameter2gsup
4
 Architecture: any
5
-Version: 0.2.0.67.f365
6
+Version: 0.2.0.70.0856
7
 Maintainer: Osmocom team <openbsc@lists.osmocom.org>
8
 Standards-Version: 4.5.0
9
 Build-Depends: erlang-nox, libpcap-dev, rebar3, debhelper (>= 10)
10
 Package-List:
11
  osmo-diameter2gsup deb net optional arch=any
12
 Checksums-Sha1:
13
- fd4ea954790f79acf6f6a8079cf9a9e5da10266b 9251728 osmo-diameter2gsup_0.2.0.67.f365.tar.xz
14
+ 61ed99c13ed59a8f6b74a7172dc7326990f69539 9158372 osmo-diameter2gsup_0.2.0.70.0856.tar.xz
15
 Checksums-Sha256:
16
- 87910d64dd218aef362152627a2e59aa4140852168238143f9c2e544784eaf16 9251728 osmo-diameter2gsup_0.2.0.67.f365.tar.xz
17
+ fc984b8b46e42593ffecf11621bb5b464210b329d9f77c1a7e4450e14ccacb53 9158372 osmo-diameter2gsup_0.2.0.70.0856.tar.xz
18
 Files:
19
- 9b0c72ddc1b9867ebfba668ead3124ef 9251728 osmo-diameter2gsup_0.2.0.67.f365.tar.xz
20
+ e236e22f3a4ea1b3408621d45af04bd7 9158372 osmo-diameter2gsup_0.2.0.70.0856.tar.xz
21
osmo-diameter2gsup_0.2.0.67.f365.tar.xz/.tarball-version -> osmo-diameter2gsup_0.2.0.70.0856.tar.xz/.tarball-version Changed
4
 
1
@@ -1 +1 @@
2
-0.2.0.67-f365
3
+0.2.0.70-0856
4
osmo-diameter2gsup_0.2.0.67.f365.tar.xz/build_dep.tar.gz -> osmo-diameter2gsup_0.2.0.70.0856.tar.xz/build_dep.tar.gz Changed
osmo-diameter2gsup_0.2.0.67.f365.tar.xz/debian/changelog -> osmo-diameter2gsup_0.2.0.70.0856.tar.xz/debian/changelog Changed
12
 
1
@@ -1,8 +1,8 @@
2
-osmo-diameter2gsup (0.2.0.67.f365) unstable; urgency=medium
3
+osmo-diameter2gsup (0.2.0.70.0856) unstable; urgency=medium
4
 
5
   * Automatically generated changelog entry for building the Osmocom master feed
6
 
7
- -- Osmocom OBS scripts <info@osmocom.org>  Mon, 05 Aug 2024 13:14:24 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org>  Fri, 11 Oct 2024 14:49:35 +0000
9
 
10
 osmo-diameter2gsup (0.2.0) unstable; urgency=medium
11
 
12
osmo-diameter2gsup_0.2.0.67.f365.tar.xz/src/osmo_dia2gsup.erl -> osmo-diameter2gsup_0.2.0.70.0856.tar.xz/src/osmo_dia2gsup.erl Changed
34
 
1
@@ -50,20 +50,17 @@
2
 
3
 % Diameter application definitions
4
 
5
--define(DIA_STATS_TAB, iwf_stats).
6
--define(DIA_STATS_COUNTERS, event_OK, event_ERR).
7
-
8
 -define(SVC_NAME, ?MODULE).
9
 -define(APP_ALIAS, ?MODULE).
10
 -define(CALLBACK_MOD, server_cb).
11
 -define(DIAMETER_DICT_HSS, diameter_3gpp_ts29_272).
12
 
13
--define(APPID_S6, #'diameter_base_Vendor-Specific-Application-Id'{'Vendor-Id'=10515, 'Auth-Application-Id'=16777251}).
14
+-define(APPID_S6, #'diameter_base_Vendor-Specific-Application-Id'{'Vendor-Id'=10415, 'Auth-Application-Id'=16777251}).
15
 -define(SERVICE(Name), {'Origin-Host', application:get_env(osmo_dia2gsup, origin_host, "hss.localdomain")},
16
            {'Origin-Realm', application:get_env(osmo_dia2gsup, origin_realm, "localdomain")},
17
            {'Vendor-Id', application:get_env(osmo_dia2gsup, vendor_id, 0)},
18
            {'Origin-State-Id', diameter:origin_state_id()},
19
-           {'Product-Name', "osmo_dia2gsup"},
20
+           {'Product-Name', Name},
21
            {'Auth-Application-Id', },
22
            {'Vendor-Specific-Application-Id', ?APPID_S6},
23
            {application,
24
@@ -99,8 +96,7 @@
25
 %% @callback gen_server
26
 init(State) ->
27
    % DIAMETER side
28
-   SvcName = ?MODULE,
29
-   diameter:start_service(SvcName, ?SERVICE(SvcName)),
30
+   diameter:start_service(?SVC_NAME, ?SERVICE(?MODULE)),
31
 
32
    Ip = application:get_env(osmo_dia2gsup, diameter_ip, "127.0.0.8"),
33
    Port = application:get_env(osmo_dia2gsup, diameter_port, 3868),
34