Projects
osmocom:master
open5gs
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 535
View file
commit_bc02e48d1ab3df1296ec6d4e5eb65cd95e804ca4.txt
Deleted
View file
commit_c888e2d62a38b72961c42a0ef50468531d3ae813.txt
Added
View file
open5gs_2.7.2.4533.bc02.dsc -> open5gs_2.7.2.4536.c888.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 +Version: 2.7.2.4536.c888 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: - 35894295e3cfb60aad619d0ab8b6ed2871e5e6b0 14511748 open5gs_2.7.2.4533.bc02.tar.xz + e8a35feedcd89b7cd0f4d093bbc915b31adb283d 14510532 open5gs_2.7.2.4536.c888.tar.xz Checksums-Sha256: - 8eccb25886fc704e44a3290887ad5cf64db23e58f8934ef11ae7402221c0b7ba 14511748 open5gs_2.7.2.4533.bc02.tar.xz + ea0769200373f4cd23577df73a428f6820311e097d7c26784606ba757f889cd8 14510532 open5gs_2.7.2.4536.c888.tar.xz Files: - 86bf43e0dcf0112c54066b70267b7001 14511748 open5gs_2.7.2.4533.bc02.tar.xz + 0519605b0afb4b49077b03150870fef0 14510532 open5gs_2.7.2.4536.c888.tar.xz
View file
open5gs_2.7.2.4533.bc02.tar.xz/.tarball-version -> open5gs_2.7.2.4536.c888.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.2.4533-bc02 +2.7.2.4536-c888
View file
open5gs_2.7.2.4533.bc02.tar.xz/debian/changelog -> open5gs_2.7.2.4536.c888.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.2.4533.bc02) unstable; urgency=medium +open5gs (2.7.2.4536.c888) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 31 Oct 2024 13:23:15 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Sun, 03 Nov 2024 13:23:17 +0000 open5gs (2.7.2) unstable; urgency=medium
View file
open5gs_2.7.2.4533.bc02.tar.xz/lib/app/ogs-config.c -> open5gs_2.7.2.4536.c888.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.tar.xz/lib/app/ogs-config.h -> open5gs_2.7.2.4536.c888.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.tar.xz/lib/app/ogs-init.c -> open5gs_2.7.2.4536.c888.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.tar.xz/lib/core/ogs-epoll.c -> open5gs_2.7.2.4536.c888.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.tar.xz/lib/sbi/client.c -> open5gs_2.7.2.4536.c888.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.tar.xz/src/scp/sbi-path.c -> open5gs_2.7.2.4536.c888.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.tar.xz/src/sepp/sbi-path.c -> open5gs_2.7.2.4536.c888.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
.