Projects
osmocom:master
open5gs
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 613
View file
commit_1d46a0e475f7224ea86ed051ab4d03e72081f58f.txt
Deleted
View file
commit_704083db3bc86078dd7ce36b035d0f2528609f21.txt
Added
View file
open5gs_2.7.3.4642.1d46.dsc -> open5gs_2.7.3.4643.7040.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-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg Architecture: any -Version: 2.7.3.4642.1d46 +Version: 2.7.3.4643.7040 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -32,8 +32,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - f323a7337bf7dc1903b4decf59a1a2475317c7ea 14531248 open5gs_2.7.3.4642.1d46.tar.xz + b3e71d7dcbbaebb1f923b3fe669c6b46df91b43d 14530676 open5gs_2.7.3.4643.7040.tar.xz Checksums-Sha256: - bb223ac0ebe921af2f660393ff8f1cf749c758e20022e2d4ca7509bbefcd47e7 14531248 open5gs_2.7.3.4642.1d46.tar.xz + 97c11dcd3031143e6857fdd03bbc207c58eb960926acc4a843200feaf5c2bf42 14530676 open5gs_2.7.3.4643.7040.tar.xz Files: - b4353e2150cbc3f1896ee6f86623eb6e 14531248 open5gs_2.7.3.4642.1d46.tar.xz + 83eefa4c01eaec3b9d87b0253d178e52 14530676 open5gs_2.7.3.4643.7040.tar.xz
View file
open5gs_2.7.3.4642.1d46.tar.xz/.tarball-version -> open5gs_2.7.3.4643.7040.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.3.4642-1d46 +2.7.3.4643-7040
View file
open5gs_2.7.3.4642.1d46.tar.xz/debian/changelog -> open5gs_2.7.3.4643.7040.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.3.4642.1d46) unstable; urgency=medium +open5gs (2.7.3.4643.7040) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Sun, 23 Mar 2025 04:10:56 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 25 Mar 2025 06:13:03 +0000 open5gs (2.7.3) unstable; urgency=medium
View file
open5gs_2.7.3.4642.1d46.tar.xz/lib/sbi/message.h -> open5gs_2.7.3.4643.7040.tar.xz/lib/sbi/message.h
Changed
@@ -411,6 +411,8 @@ "N5g-ddnmf_Discovery_MonitorUpdateResult" #define OGS_SBI_CALLBACK_N5G_DDNMF_DISCOVERY_MATCH_INFORMATION \ "N5g-ddnmf_Discovery_MatchInformation" +#define OGS_SBI_CALLBACK_NAMF_COMMUNICATION_ONN1N2TRANSFERFAILURE \ + "Namf_Communication_onN1N2TransferFailure" typedef struct ogs_sbi_header_s { char *method;
View file
open5gs_2.7.3.4642.1d46.tar.xz/lib/sbi/nnrf-build.c -> open5gs_2.7.3.4643.7040.tar.xz/lib/sbi/nnrf-build.c
Changed
@@ -1458,9 +1458,6 @@ message.SubscriptionData = SubscriptionData; - message.http.custom.callback = - (char *)OGS_SBI_CALLBACK_NNRF_NFMANAGEMENT_NF_STATUS_NOTIFY; - request = ogs_sbi_build_request(&message); ogs_expect(request); @@ -1549,9 +1546,6 @@ message.h.method = (char *)OGS_SBI_HTTP_METHOD_DELETE; message.h.uri = subscription_data->resource_uri; - message.http.custom.callback = - (char *)OGS_SBI_CALLBACK_NNRF_NFMANAGEMENT_NF_STATUS_NOTIFY; - request = ogs_sbi_build_request(&message); ogs_expect(request);
View file
open5gs_2.7.3.4642.1d46.tar.xz/src/amf/nsmf-build.c -> open5gs_2.7.3.4643.7040.tar.xz/src/amf/nsmf-build.c
Changed
@@ -224,6 +224,15 @@ message.http.accept = (char *)(OGS_SBI_CONTENT_JSON_TYPE "," OGS_SBI_CONTENT_NGAP_TYPE "," OGS_SBI_CONTENT_PROBLEM_TYPE); +/* + * Callback Header Configuration + * + * The 3gpp-Sbi-Callback HTTP header (per 3GPP TS 29.500 v17.9.0) indicates that + * a message is an asynchronous notification or callback. This header should be + * included only in HTTP POST requests that are callbacks (e.g., event or + * notification messages) and must not be added to regular service requests, + * such as registration (HTTP PUT) or subscription requests. + */ message.http.custom.callback = (char *)OGS_SBI_CALLBACK_NSMF_PDUSESSION_STATUS_NOTIFY; @@ -529,6 +538,18 @@ message.N1N2MsgTxfrFailureNotification = &N1N2MsgTxfrFailureNotification; +/* + * Callback Header Configuration + * + * The 3gpp-Sbi-Callback HTTP header (per 3GPP TS 29.500 v17.9.0) indicates that + * a message is an asynchronous notification or callback. This header should be + * included only in HTTP POST requests that are callbacks (e.g., event or + * notification messages) and must not be added to regular service requests, + * such as registration (HTTP PUT) or subscription requests. + */ + message.http.custom.callback = + (char *)OGS_SBI_CALLBACK_NAMF_COMMUNICATION_ONN1N2TRANSFERFAILURE; + request = ogs_sbi_build_request(&message); ogs_expect(request);
View file
open5gs_2.7.3.4642.1d46.tar.xz/src/amf/nudm-build.c -> open5gs_2.7.3.4643.7040.tar.xz/src/amf/nudm-build.c
Changed
@@ -85,9 +85,6 @@ message.Amf3GppAccessRegistration = &Amf3GppAccessRegistration; - message.http.custom.callback = - (char *)OGS_SBI_CALLBACK_NUDM_UECM_DEREGISTRATION_NOTIFICATION; - request = ogs_sbi_build_request(&message); ogs_expect(request); @@ -243,9 +240,6 @@ message.SDMSubscription = &SDMSubscription; - message.http.custom.callback = - (char *)OGS_SBI_CALLBACK_NUDM_SDM_NOTIFICATION; - request = ogs_sbi_build_request(&message); ogs_expect(request);
View file
open5gs_2.7.3.4642.1d46.tar.xz/src/nrf/nnrf-build.c -> open5gs_2.7.3.4643.7040.tar.xz/src/nrf/nnrf-build.c
Changed
@@ -81,6 +81,17 @@ goto end; } } +/* + * Callback Header Configuration + * + * The 3gpp-Sbi-Callback HTTP header (per 3GPP TS 29.500 v17.9.0) indicates that + * a message is an asynchronous notification or callback. This header should be + * included only in HTTP POST requests that are callbacks (e.g., event or + * notification messages) and must not be added to regular service requests, + * such as registration (HTTP PUT) or subscription requests. + */ + message.http.custom.callback = + (char *)OGS_SBI_CALLBACK_NNRF_NFMANAGEMENT_NF_STATUS_NOTIFY; message.NotificationData = NotificationData;
View file
open5gs_2.7.3.4642.1d46.tar.xz/src/smf/nudm-build.c -> open5gs_2.7.3.4643.7040.tar.xz/src/smf/nudm-build.c
Changed
@@ -236,9 +236,6 @@ message.SDMSubscription = &SDMSubscription; - message.http.custom.callback = - (char *)OGS_SBI_CALLBACK_NUDM_SDM_NOTIFICATION; - request = ogs_sbi_build_request(&message); ogs_expect(request);
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
.