Projects
osmocom:nightly
open5gs
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 480
View file
open5gs_2.6.6.9.e108d.202310132026.dsc -> open5gs_2.6.6.10.79d3.202310142026.dsc
Changed
@@ -2,7 +2,7 @@ Source: open5gs 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 Architecture: any -Version: 2.6.6.9.e108d.202310132026 +Version: 2.6.6.10.79d3.202310142026 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -31,8 +31,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - b38d13b24c9b9a8482d4af11fcbc0aefa50a0ad6 14427172 open5gs_2.6.6.9.e108d.202310132026.tar.xz + 2c56b1920bced5ec9b65d9cda49d9c4f7ed1185c 14427928 open5gs_2.6.6.10.79d3.202310142026.tar.xz Checksums-Sha256: - 78f6ff22017bb731e224077f7e4655ff8644de299dbda892ef809020fef2539c 14427172 open5gs_2.6.6.9.e108d.202310132026.tar.xz + 84e32f779f85404c2a930ed7fc5a00b3ab0bb213399b114f7f413a63a3db7c51 14427928 open5gs_2.6.6.10.79d3.202310142026.tar.xz Files: - d7999c69feade66735bee9418625d88e 14427172 open5gs_2.6.6.9.e108d.202310132026.tar.xz + 6e3466a4e5c0620af35d84debf1165e3 14427928 open5gs_2.6.6.10.79d3.202310142026.tar.xz
View file
open5gs_2.6.6.9.e108d.202310132026.tar.xz/.tarball-version -> open5gs_2.6.6.10.79d3.202310142026.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.6.6.9-e108d.202310132026 +2.6.6.10-79d3.202310142026
View file
open5gs_2.6.6.9.e108d.202310132026.tar.xz/debian/changelog -> open5gs_2.6.6.10.79d3.202310142026.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.6.6.9.e108d.202310132026) unstable; urgency=medium +open5gs (2.6.6.10.79d3.202310142026) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Fri, 13 Oct 2023 20:27:54 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Sat, 14 Oct 2023 20:27:55 +0000 open5gs (2.6.6) unstable; urgency=medium
View file
open5gs_2.6.6.9.e108d.202310132026.tar.xz/lib/diameter/s6a/message.h -> open5gs_2.6.6.10.79d3.202310142026.tar.xz/lib/diameter/s6a/message.h
Changed
@@ -85,6 +85,7 @@ #define OGS_DIAM_S6A_SUBDATA_UEAMBR (1 << 7) #define OGS_DIAM_S6A_SUBDATA_APN_CONFIG (1 << 8) #define OGS_DIAM_S6A_SUBDATA_RAU_TAU_TIMER (1 << 9) +#define OGS_DIAM_S6A_SUBDATA_OP_DET_BARRING (1 << 10) #define OGS_DIAM_S6A_SUBDATA_ALL 0xFFFFFFFF extern struct dict_object *ogs_diam_s6a_application;
View file
open5gs_2.6.6.9.e108d.202310132026.tar.xz/src/hss/hss-context.c -> open5gs_2.6.6.10.79d3.202310142026.tar.xz/src/hss/hss-context.c
Changed
@@ -1259,7 +1259,7 @@ strlen("operator_determined_barring"))) { send_idr_flag = true; subdatamask = (subdatamask | - OGS_DIAM_S6A_SUBDATA_SUB_STATUS); + OGS_DIAM_S6A_SUBDATA_OP_DET_BARRING); } else if (!strncmp(child2_key, "network_access_mode", strlen("network_access_mode"))) {
View file
open5gs_2.6.6.9.e108d.202310132026.tar.xz/src/hss/hss-s6a-path.c -> open5gs_2.6.6.10.79d3.202310142026.tar.xz/src/hss/hss-s6a-path.c
Changed
@@ -364,7 +364,7 @@ } } - if (subdatamask & OGS_DIAM_S6A_SUBDATA_SUB_STATUS) { + if (subdatamask & (OGS_DIAM_S6A_SUBDATA_SUB_STATUS | OGS_DIAM_S6A_SUBDATA_OP_DET_BARRING)) { ret = fd_msg_avp_new( ogs_diam_s6a_subscriber_status, 0, &avp_subscriber_status); ogs_assert(ret == 0); @@ -1356,6 +1356,17 @@ return OGS_ERROR; } + /* Avoid sending IDR if only Operator-Determined-Barring field changed and + * Subscriber-Status is SERVICE_GRANTED, since then the field has no + * meaning and won't be sent through the wire, so nothing really changes + * from the PoV of the peer. */ + if (subdatamask == OGS_DIAM_S6A_SUBDATA_OP_DET_BARRING && + subscription_data.subscriber_status == OGS_SUBSCRIBER_STATUS_SERVICE_GRANTED) { + ogs_debug(" %s Skip sending IDR: Only Operator-Determined-Barring changed while" + " Subscriber-Status is SERVICE_GRANTED.", imsi_bcd); + return OGS_OK; + } + /* Create the random value to store with the session */ sess_data = ogs_calloc(1, sizeof(*sess_data)); ogs_assert(sess_data);
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.