Projects
osmocom:master
open5gs
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 372
View file
commit_21b7cd487ad2f4b5faf3bc0291d459dbb345cbed.txt
Added
View file
commit_7d60b13d3aeecd41c461618791ce06154121eeed.txt
Deleted
View file
open5gs_2.7.0.43.7d60b13.dsc -> open5gs_2.7.0.45.21b7.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.0.43.7d60b13 +Version: 2.7.0.45.21b7 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: - e12c15d7035bb8b17fce12c6879e6f0df8606ce6 14466064 open5gs_2.7.0.43.7d60b13.tar.xz + 57fea2cdc606727bc39809a09b583280ae91ee3a 14465228 open5gs_2.7.0.45.21b7.tar.xz Checksums-Sha256: - b0ea3f861778209c0c29da1a707378fe02996d3cc9644ed81861287653df2b44 14466064 open5gs_2.7.0.43.7d60b13.tar.xz + 1862651a5de1953706c5f86720f45c285ebfdd8d2a662faef1ab0fcd69d10cd1 14465228 open5gs_2.7.0.45.21b7.tar.xz Files: - d67671c3558f2838d5b1befd9fade747 14466064 open5gs_2.7.0.43.7d60b13.tar.xz + 2dc82407ed105f7a06adea313154624d 14465228 open5gs_2.7.0.45.21b7.tar.xz
View file
open5gs_2.7.0.43.7d60b13.tar.xz/.tarball-version -> open5gs_2.7.0.45.21b7.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.0.43-7d60b13 +2.7.0.45-21b7
View file
open5gs_2.7.0.43.7d60b13.tar.xz/debian/changelog -> open5gs_2.7.0.45.21b7.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.0.43.7d60b13) unstable; urgency=medium +open5gs (2.7.0.45.21b7) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Fri, 05 Jan 2024 23:05:54 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 09 Jan 2024 09:05:52 +0000 open5gs (2.7.0) unstable; urgency=medium
View file
open5gs_2.7.0.43.7d60b13.tar.xz/lib/core/ogs-list.h -> open5gs_2.7.0.45.21b7.tar.xz/lib/core/ogs-list.h
Changed
@@ -59,13 +59,13 @@ static ogs_inline void *ogs_list_next(void *lnode) { - ogs_list_t *node = lnode; + ogs_list_t *node = (ogs_list_t *)lnode; return node->next; } static ogs_inline void *ogs_list_prev(void *lnode) { - ogs_list_t *node = lnode; + ogs_list_t *node = (ogs_list_t *)lnode; return node->prev; } @@ -100,7 +100,7 @@ static ogs_inline void ogs_list_prepend(ogs_list_t *list, void *lnode) { - ogs_list_t *node = lnode; + ogs_list_t *node = (ogs_list_t *)lnode; node->prev = NULL; node->next = list->next; @@ -113,7 +113,7 @@ static ogs_inline void ogs_list_add(ogs_list_t *list, void *lnode) { - ogs_list_t *node = lnode; + ogs_list_t *node = (ogs_list_t *)lnode; node->prev = list->prev; node->next = NULL; @@ -126,7 +126,7 @@ static ogs_inline void ogs_list_remove(ogs_list_t *list, void *lnode) { - ogs_list_t *node = lnode; + ogs_list_t *node = (ogs_list_t *)lnode; ogs_list_t *prev = node->prev; ogs_list_t *next = node->next; @@ -144,8 +144,8 @@ static ogs_inline void ogs_list_insert_prev( ogs_list_t *list, void *lnext, void *lnode) { - ogs_list_t *node = lnode; - ogs_list_t *next = lnext; + ogs_list_t *node = (ogs_list_t *)lnode; + ogs_list_t *next = (ogs_list_t *)lnext; node->prev = next->prev; node->next = next; @@ -159,8 +159,8 @@ static ogs_inline void ogs_list_insert_next( ogs_list_t *list, void *lprev, void *lnode) { - ogs_list_t *node = lnode; - ogs_list_t *prev = lprev; + ogs_list_t *node = (ogs_list_t *)lnode; + ogs_list_t *prev = (ogs_list_t *)lprev; node->prev = prev; node->next = prev->next; @@ -178,11 +178,11 @@ static ogs_inline void __ogs_list_insert_sorted( ogs_list_t *list, void *lnode, ogs_list_compare_f compare) { - ogs_list_t *node = lnode; - ogs_list_t *iter = NULL; + ogs_list_t *node = (ogs_list_t *)lnode; + void *iter = NULL; ogs_list_for_each(list, iter) { - if ((*compare)(node, iter) < 0) { + if ((*compare)(node, (ogs_list_t *)iter) < 0) { ogs_list_insert_prev(list, iter, node); break; } @@ -199,7 +199,7 @@ static ogs_inline int ogs_list_count(const ogs_list_t *list) { - ogs_list_t *node; + void *node; int i = 0; ogs_list_for_each(list, node) i++;
View file
open5gs_2.7.0.43.7d60b13.tar.xz/lib/core/ogs-pkbuf.h -> open5gs_2.7.0.45.21b7.tar.xz/lib/core/ogs-pkbuf.h
Changed
@@ -131,14 +131,14 @@ static ogs_inline void ogs_pkbuf_put_u16(ogs_pkbuf_t *pkbuf, uint16_t val) { - uint8_t *p = ogs_pkbuf_put(pkbuf, 2); + void *p = ogs_pkbuf_put(pkbuf, 2); uint16_t tmp = htobe16(val); memcpy(p, &tmp, 2); } static ogs_inline void ogs_pkbuf_put_u32(ogs_pkbuf_t *pkbuf, uint32_t val) { - uint8_t *p = ogs_pkbuf_put(pkbuf, 4); + void *p = ogs_pkbuf_put(pkbuf, 4); uint32_t tmp = htobe32(val); memcpy(p, &tmp, 4); }
View file
open5gs_2.7.0.43.7d60b13.tar.xz/lib/core/ogs-rbtree.h -> open5gs_2.7.0.45.21b7.tar.xz/lib/core/ogs-rbtree.h
Changed
@@ -52,7 +52,7 @@ static ogs_inline void ogs_rbtree_link_node( void *rb_node, ogs_rbnode_t *parent, ogs_rbnode_t **rb_link) { - ogs_rbnode_t *node = rb_node; + ogs_rbnode_t *node = (ogs_rbnode_t *)rb_node; node->parent = parent; node->left = node->right = NULL; node->color = OGS_RBTREE_RED; @@ -76,7 +76,7 @@ static ogs_inline void *ogs_rbtree_max(const void *rb_node) { - const ogs_rbnode_t *node = rb_node; + const ogs_rbnode_t *node = (const ogs_rbnode_t *)rb_node; ogs_assert(node); while (node->right) @@ -105,7 +105,7 @@ static ogs_inline int ogs_rbtree_count(const ogs_rbtree_t *tree) { - ogs_rbnode_t *node; + void *node; int i = 0; ogs_rbtree_for_each(tree, node) i++;
View file
open5gs_2.7.0.43.7d60b13.tar.xz/lib/dbi/ogs-mongoc.c -> open5gs_2.7.0.45.21b7.tar.xz/lib/dbi/ogs-mongoc.c
Changed
@@ -35,17 +35,17 @@ bson_t *reply, /* OUT */ bson_error_t *error) /* OUT */ { - bson_t cmd = BSON_INITIALIZER; - bool ret = false; + bson_t cmd = BSON_INITIALIZER; + bool ret = false; - BSON_ASSERT (client); + BSON_ASSERT (client); - BSON_APPEND_INT32 (&cmd, "ping", 1); - ret = mongoc_client_command_simple ( - client, "admin", &cmd, read_prefs, reply, error); - bson_destroy (&cmd); + BSON_APPEND_INT32 (&cmd, "ping", 1); + ret = mongoc_client_command_simple ( + client, "admin", &cmd, read_prefs, reply, error); + bson_destroy (&cmd); - return ret; + return ret; } static char *masked_db_uri(const char *db_uri)
View file
open5gs_2.7.0.43.7d60b13.tar.xz/lib/sbi/nnrf-handler.c -> open5gs_2.7.0.45.21b7.tar.xz/lib/sbi/nnrf-handler.c
Changed
@@ -608,6 +608,8 @@ ogs_assert(nf_instance); ogs_assert(SeppInfo); + http.port = 0; + https.port = 0; http.presence = false; https.presence = false;
View file
open5gs_2.7.0.43.7d60b13.tar.xz/src/scp/sbi-path.c -> open5gs_2.7.0.45.21b7.tar.xz/src/scp/sbi-path.c
Changed
@@ -246,11 +246,8 @@ if (val) discovery_option->requester_features = ogs_uint64_from_string(val); - } else if (!strcasecmp(key, OGS_SBI_SCHEME)) { - /* ':scheme' will be automatically filled in later */ - } else if (!strcasecmp(key, OGS_SBI_AUTHORITY)) { - /* ':authority' will be automatically filled in later */ } else { + /* ':scheme' and ':authority' will be automatically filled in later */ } }
View file
open5gs_2.7.0.43.7d60b13.tar.xz/src/sgwc/context.c -> open5gs_2.7.0.45.21b7.tar.xz/src/sgwc/context.c
Changed
@@ -632,7 +632,8 @@ ogs_pfcp_pdr_t *pdr = NULL; ogs_pfcp_far_t *far = NULL; - uint8_t src_if, dst_if; + uint8_t src_if = OGS_PFCP_INTERFACE_UNKNOWN; + uint8_t dst_if = OGS_PFCP_INTERFACE_UNKNOWN; ogs_assert(bearer); sess = bearer->sess;
View file
open5gs_2.7.0.43.7d60b13.tar.xz/tests/common/s1ap-handler.c -> open5gs_2.7.0.45.21b7.tar.xz/tests/common/s1ap-handler.c
Changed
@@ -266,7 +266,8 @@ S1AP_E_RABModifyRequestIEs_t *ie = NULL; S1AP_MME_UE_S1AP_ID_t *MME_UE_S1AP_ID = NULL; S1AP_NAS_PDU_t *NAS_PDU = NULL; - S1AP_E_RABToBeModifiedListBearerModReq_t *E_RABToBeModifiedListBearerModReq; + S1AP_E_RABToBeModifiedListBearerModReq_t *E_RABToBeModifiedListBearerModReq + = NULL; ogs_assert(test_ue); ogs_assert(message); @@ -294,6 +295,7 @@ if (MME_UE_S1AP_ID) test_ue->mme_ue_s1ap_id = *MME_UE_S1AP_ID; + ogs_assert(E_RABToBeModifiedListBearerModReq); for (i = 0; i < E_RABToBeModifiedListBearerModReq->list.count; i++) { S1AP_E_RABToBeModifiedItemBearerModReqIEs_t *ie2 = NULL; S1AP_E_RABToBeModifiedItemBearerModReq_t *e_rab = NULL;
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
.