Projects
osmocom:nightly
open5gs
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 866
View file
open5gs_2.7.2.4533.bc02.202411022026.dsc -> open5gs_2.7.2.4536.c888.202411032026.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.2.4533.bc02.202411022026 +Version: 2.7.2.4536.c888.202411032026 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: - 19c9394122e5e58aa13de08a01dd1ac1f82f38af 14510976 open5gs_2.7.2.4533.bc02.202411022026.tar.xz + 55b1d6cb8552e124828d6d3ecb8a345bd295852b 14511312 open5gs_2.7.2.4536.c888.202411032026.tar.xz Checksums-Sha256: - 25706436f12391c16b21c363cdf483ff772e6194ca182320df3675a23ecd18ef 14510976 open5gs_2.7.2.4533.bc02.202411022026.tar.xz + 0a4ce603ec7e5270d49f1785643656fa84f525e1b66a438ec42ab2ce240406e2 14511312 open5gs_2.7.2.4536.c888.202411032026.tar.xz Files: - 23ed52ae654f2fd4d6cf386dd41768bd 14510976 open5gs_2.7.2.4533.bc02.202411022026.tar.xz + d0a8d1feb60cb9c38b24e72648de9668 14511312 open5gs_2.7.2.4536.c888.202411032026.tar.xz
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/.tarball-version -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.2.4533-bc02.202411022026 +2.7.2.4536-c888.202411032026
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/debian/changelog -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.2.4533.bc02.202411022026) unstable; urgency=medium +open5gs (2.7.2.4536.c888.202411032026) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Sat, 02 Nov 2024 20:27:57 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Sun, 03 Nov 2024 20:27:58 +0000 open5gs (2.7.2) unstable; urgency=medium
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/lib/app/ogs-config.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/lib/app/ogs-config.c
Changed
@@ -105,7 +105,7 @@ return &local_conf; } -static int global_conf_prepare(void) +int ogs_app_global_conf_prepare(void) { global_conf.sockopt.no_delay = true; @@ -165,9 +165,6 @@ ogs_assert(parent); - rv = global_conf_prepare(); - if (rv != OGS_OK) return rv; - ogs_yaml_iter_recurse(parent, &global_iter); while (ogs_yaml_iter_next(&global_iter)) { const char *global_key = ogs_yaml_iter_key(&global_iter);
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/lib/app/ogs-config.h -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/lib/app/ogs-config.h
Changed
@@ -174,6 +174,7 @@ ogs_app_local_conf_t *ogs_local_conf(void); int ogs_app_count_nf_conf_sections(const char *conf_section); +int ogs_app_global_conf_prepare(void); int ogs_app_parse_global_conf(ogs_yaml_iter_t *parent); int ogs_app_parse_local_conf(const char *local);
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/lib/app/ogs-init.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/lib/app/ogs-init.c
Changed
@@ -257,9 +257,14 @@ static int context_prepare(void) { + int rv; + #define USRSCTP_LOCAL_UDP_PORT 9899 ogs_app()->usrsctp.udp_port = USRSCTP_LOCAL_UDP_PORT; + rv = ogs_app_global_conf_prepare(); + if (rv != OGS_OK) return rv; + return OGS_OK; }
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/lib/core/ogs-epoll.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/lib/core/ogs-epoll.c
Changed
@@ -75,7 +75,8 @@ context->epfd = epoll_create(pollset->capacity); if (context->epfd < 0) { - ogs_log_message(OGS_LOG_FATAL, ogs_errno, "epoll_create() failed"); + ogs_log_message(OGS_LOG_FATAL, ogs_errno, + "epoll_create() failed %d", pollset->capacity); ogs_assert_if_reached(); return; }
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/lib/sbi/client.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/lib/sbi/client.c
Changed
@@ -250,9 +250,15 @@ if (fqdn) { if (!client->fqdn) continue; - if (strcmp(client->fqdn, fqdn) != 0 || - client->fqdn_port != fqdn_port) + if (strcmp(client->fqdn, fqdn) != 0) continue; + + if (fqdn_port) { + if (!client->fqdn_port) + continue; + if (client->fqdn_port != fqdn_port) + continue; + } } if (addr) { if (!client->addr)
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/src/scp/sbi-path.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/src/scp/sbi-path.c
Changed
@@ -647,14 +647,13 @@ scp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error(stream, + OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, + "response_handler() failed", NULL, NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error(stream, - OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, - "response_handler() failed", NULL, NULL)); return OGS_ERROR; } @@ -673,6 +672,7 @@ if (!stream) { ogs_error("STREAM has already been removed %d", stream_id); + ogs_sbi_response_free(response); return OGS_ERROR; } ogs_expect(true == ogs_sbi_server_send_response(stream, response)); @@ -727,14 +727,13 @@ scp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error(stream, + OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, + "nf_discover_handler() failed", NULL, NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error(stream, - OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, - "nf_discover_handler() failed", NULL, NULL)); return OGS_ERROR; } @@ -820,14 +819,13 @@ scp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error( + stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST, NULL, strerror, NULL, + NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error( - stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST, NULL, strerror, NULL, - NULL)); ogs_free(strerror); @@ -866,14 +864,13 @@ scp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error(stream, + OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, + "sepp_discover_handler() failed", NULL, NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error(stream, - OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, - "sepp_discover_handler() failed", NULL, NULL)); return OGS_ERROR; } @@ -928,14 +925,13 @@ scp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error( + stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST, NULL, strerror, NULL, + NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error( - stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST, NULL, strerror, NULL, - NULL)); ogs_free(strerror);
View file
open5gs_2.7.2.4533.bc02.202411022026.tar.xz/src/sepp/sbi-path.c -> open5gs_2.7.2.4536.c888.202411032026.tar.xz/src/sepp/sbi-path.c
Changed
@@ -435,14 +435,13 @@ sepp_assoc_remove(assoc); - if (!stream) { + if (stream) { + ogs_assert(true == + ogs_sbi_server_send_error(stream, + OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, + "response_handler() failed", NULL, NULL)); + } else ogs_error("STREAM has already been removed %d", stream_id); - return OGS_ERROR; - } - ogs_assert(true == - ogs_sbi_server_send_error(stream, - OGS_SBI_HTTP_STATUS_INTERNAL_SERVER_ERROR, NULL, - "response_handler() failed", NULL, NULL)); return OGS_ERROR; } @@ -453,6 +452,7 @@ if (!stream) { ogs_error("STREAM has already been removed %d", stream_id); + ogs_sbi_response_free(response); return OGS_ERROR; } ogs_expect(true == ogs_sbi_server_send_response(stream, response));
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
.