Changes of Revision 69
commit_9170617df15eae3b71ee177bf0c21bcf3df9dcde.txt
Added
commit_f85ff227c8dc115e18a5efc1750609e84c9dfbea.txt
Deleted
open5gs_2.5.5.33.f85ff.dsc -> open5gs_2.5.5.34.9170.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-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
Architecture: any
5
-Version: 2.5.5.33.f85ff
6
+Version: 2.5.5.34.9170
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
- bbaf89719d5fdf9c4b063e72c04fed4196b1ac1a 13147384 open5gs_2.5.5.33.f85ff.tar.xz
15
+ 04ca6217cec5dc51a45ad262cb6049abaed284c9 13147492 open5gs_2.5.5.34.9170.tar.xz
16
Checksums-Sha256:
17
- c50b5b2c67a6a24142bd35c8220a4854df37c8b25b5f1574c7173964a7d0d642 13147384 open5gs_2.5.5.33.f85ff.tar.xz
18
+ 60e3e0d43393d3bf01f3c569823ae9729f3b7bb75590775bad25e2d518783872 13147492 open5gs_2.5.5.34.9170.tar.xz
19
Files:
20
- 70cf2e1392c52df5df27f00fa6d20743 13147384 open5gs_2.5.5.33.f85ff.tar.xz
21
+ 94785c551a8bf624aa5f22ee0c086c76 13147492 open5gs_2.5.5.34.9170.tar.xz
22
open5gs_2.5.5.33.f85ff.tar.xz/.tarball-version -> open5gs_2.5.5.34.9170.tar.xz/.tarball-version
Changed
4
1
2
-2.5.5.33-f85ff
3
+2.5.5.34-9170
4
open5gs_2.5.5.33.f85ff.tar.xz/debian/changelog -> open5gs_2.5.5.34.9170.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.5.5.33.f85ff) unstable; urgency=medium
3
+open5gs (2.5.5.34.9170) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Sat, 26 Nov 2022 15:15:00 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Sun, 27 Nov 2022 00:10:49 +0000
9
10
open5gs (2.5.6) unstable; urgency=medium
11
12
open5gs_2.5.5.33.f85ff.tar.xz/src/amf/gmm-handler.c -> open5gs_2.5.5.34.9170.tar.xz/src/amf/gmm-handler.c
Changed
25
1
2
amf_ue->nas.ue.tsc, amf_ue->nas.amf.tsc,
3
amf_ue->nas.ue.ksi, amf_ue->nas.amf.ksi);
4
5
- if (deregistration_request->de_registration_type.switch_off)
6
+ if (deregistration_request->de_registration_type.switch_off) {
7
ogs_debug(" Switch-Off");
8
9
+ /*
10
+ * Issue #1917
11
+ *
12
+ * When the UE sends a De-registration Request with Switch-Off,
13
+ * AMF should remove the the stored UE Radio Capability.
14
+ *
15
+ * Otherwise, the Radio Capability will not match
16
+ * because the gNB will not query the Radio Capability
17
+ * when the UE changes USIM.
18
+ */
19
+ OGS_ASN_CLEAR_DATA(&amf_ue->ueRadioCapability);
20
+ }
21
+
22
ogs_info("%s SUCI", amf_ue->suci);
23
24
amf_sbi_send_release_all_sessions(
25
open5gs_2.5.5.33.f85ff.tar.xz/src/mme/emm-handler.c -> open5gs_2.5.5.34.9170.tar.xz/src/mme/emm-handler.c
Changed
25
1
2
default: /* all other values */
3
break;
4
}
5
- if (detach_request->detach_type.switch_off)
6
+ if (detach_request->detach_type.switch_off) {
7
ogs_debug(" Switch-Off");
8
9
+ /*
10
+ * Issue #1917
11
+ *
12
+ * When the UE sends a Detach Request with Switch-Off,
13
+ * MME should remove the the stored UE Radio Capability.
14
+ *
15
+ * Otherwise, the Radio Capability will not match
16
+ * because the eNB will not query the Radio Capability
17
+ * when the UE changes USIM.
18
+ */
19
+ OGS_ASN_CLEAR_DATA(&mme_ue->ueRadioCapability);
20
+ }
21
+
22
return OGS_OK;
23
}
24
25