Changes of Revision 395
commit_82398811db22c254fad8e9098026a1fb12262cd6.txt
Added
commit_8762425fbc417117b1fae06f7a7ecc1c8b7ebf49.txt
Deleted
open5gs_2.7.0.81.8762.dsc -> open5gs_2.7.0.82.82398.dsc
Changed
x
1
2
Source: open5gs
3
Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-scp, open5gs-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
Architecture: any
5
-Version: 2.7.0.81.8762
6
+Version: 2.7.0.82.82398
7
Maintainer: Harald Welte <laforge@gnumonks.org>
8
Uploaders: Sukchan Lee <acetcom@gmail.com>
9
Homepage: https://open5gs.org
10
11
open5gs-udr deb net optional arch=any
12
open5gs-upf deb net optional arch=any
13
Checksums-Sha1:
14
- 617d671c4955dd6e5f70731ec7f9d4ce6763b8b1 14472552 open5gs_2.7.0.81.8762.tar.xz
15
+ 4ab328db8290f07bbea6637d3132cee040dd15be 14473072 open5gs_2.7.0.82.82398.tar.xz
16
Checksums-Sha256:
17
- d7036df220c7f39fe37723fcfcc096476b5d18d4812008d7f4392b21d5d7676c 14472552 open5gs_2.7.0.81.8762.tar.xz
18
+ 93296cf2b5573a89ef2c411f7e8c20525dcdd52e014a70b89275acbb30b13d43 14473072 open5gs_2.7.0.82.82398.tar.xz
19
Files:
20
- 6baa6fd059881eccd8710b9339c0aed6 14472552 open5gs_2.7.0.81.8762.tar.xz
21
+ f71280bb23e3e9919e21a61770333515 14473072 open5gs_2.7.0.82.82398.tar.xz
22
open5gs_2.7.0.81.8762.tar.xz/.tarball-version -> open5gs_2.7.0.82.82398.tar.xz/.tarball-version
Changed
4
1
2
-2.7.0.81-8762
3
+2.7.0.82-82398
4
open5gs_2.7.0.81.8762.tar.xz/debian/changelog -> open5gs_2.7.0.82.82398.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.7.0.81.8762) unstable; urgency=medium
3
+open5gs (2.7.0.82.82398) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Sat, 03 Feb 2024 08:13:31 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Sun, 04 Feb 2024 00:35:04 +0000
9
10
open5gs (2.7.0) unstable; urgency=medium
11
12
open5gs_2.7.0.81.8762.tar.xz/lib/sbi/nnrf-build.c -> open5gs_2.7.0.82.82398.tar.xz/lib/sbi/nnrf-build.c
Changed
31
1
2
return NULL;
3
}
4
5
- if (service_map == true) {
6
- NFProfile->nf_service_list = NFServiceList;
7
- } else {
8
- NFProfile->nf_services = NFServiceList;
9
- }
10
-
11
ogs_list_for_each(&nf_instance->nf_service_list, nf_service) {
12
OpenAPI_nf_service_t *NFService = NULL;
13
14
15
}
16
}
17
18
+ if (NFServiceList->count) {
19
+ if (service_map == true) {
20
+ NFProfile->nf_service_list = NFServiceList;
21
+ } else {
22
+ NFProfile->nf_services = NFServiceList;
23
+ }
24
+ }
25
+ else
26
+ OpenAPI_list_free(NFServiceList);
27
+
28
InfoList = OpenAPI_list_create();
29
ogs_assert(InfoList);
30
31
open5gs_2.7.0.81.8762.tar.xz/src/upf/context.c -> open5gs_2.7.0.82.82398.tar.xz/src/upf/context.c
Changed
20
1
2
unsigned int i;
3
for (i = 0; i < OGS_ARRAY_SIZE(sess->urr_acc); i++) {
4
if (sess->urr_acci.t_time_threshold) {
5
+ ogs_timer_delete(sess->urr_acci.t_time_threshold);
6
+ sess->urr_acci.t_time_threshold = NULL;
7
+ }
8
+ if (sess->urr_acci.t_validity_time) {
9
ogs_timer_delete(sess->urr_acci.t_validity_time);
10
sess->urr_acci.t_validity_time = NULL;
11
+ }
12
+ if (sess->urr_acci.t_time_quota) {
13
ogs_timer_delete(sess->urr_acci.t_time_quota);
14
sess->urr_acci.t_time_quota = NULL;
15
- ogs_timer_delete(sess->urr_acci.t_time_threshold);
16
- sess->urr_acci.t_time_threshold = NULL;
17
}
18
}
19
}
20