Projects
osmocom:master
libosmo-sigtran
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 16
View file
commit_32f5bd3fc5f98acf73395db4d72eaed1a380f693.txt
Deleted
View file
commit_7261adc5674bffbdf14396dae57196ff5749f92f.txt
Added
View file
libosmo-sigtran_2.0.0.30.32f5.dsc -> libosmo-sigtran_2.0.0.31.7261.dsc
Changed
@@ -2,7 +2,7 @@ Source: libosmo-sigtran Binary: libosmo-sigtran10, libosmo-sigtran-dbg, libosmo-sigtran-doc, libosmo-sigtran-dev, osmo-stp, osmo-stp-dbg, osmo-stp-doc Architecture: any all -Version: 2.0.0.30.32f5 +Version: 2.0.0.31.7261 Maintainer: Osmocom team <openbsc@lists.osmocom.org> Homepage: https://projects.osmocom.org/projects/libosmo-sccp Standards-Version: 3.9.7 @@ -18,8 +18,8 @@ osmo-stp-dbg deb debug optional arch=any osmo-stp-doc deb doc optional arch=all Checksums-Sha1: - cb5d5d76d3132f5d0542f36f0668974c4c9d95d0 229632 libosmo-sigtran_2.0.0.30.32f5.tar.xz + c2a87dd67f4097ff78662e1ae6ebb689618d99a7 229600 libosmo-sigtran_2.0.0.31.7261.tar.xz Checksums-Sha256: - 0c03591df4c9c87c9ec3379274216fe86907a1f3f8332fd952174493f6dfab32 229632 libosmo-sigtran_2.0.0.30.32f5.tar.xz + 8f6871e4948452eea8ed7409c16b8f5f0b9fb98b28f7d4908b7f4abf75133f6a 229600 libosmo-sigtran_2.0.0.31.7261.tar.xz Files: - 7a680d6adadb0b5372c8a1bd8e10fd6b 229632 libosmo-sigtran_2.0.0.30.32f5.tar.xz + e6118319779eca7143d0c209683a5213 229600 libosmo-sigtran_2.0.0.31.7261.tar.xz
View file
libosmo-sigtran_2.0.0.30.32f5.tar.xz/.tarball-version -> libosmo-sigtran_2.0.0.31.7261.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.0.0.30-32f5 +2.0.0.31-7261
View file
libosmo-sigtran_2.0.0.30.32f5.tar.xz/debian/changelog -> libosmo-sigtran_2.0.0.31.7261.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -libosmo-sigtran (2.0.0.30.32f5) unstable; urgency=medium +libosmo-sigtran (2.0.0.31.7261) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom master feed - -- Osmocom OBS scripts <info@osmocom.org> Thu, 07 Nov 2024 19:49:42 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Thu, 07 Nov 2024 19:51:43 +0000 libosmo-sigtran (2.0.0) unstable; urgency=medium
View file
libosmo-sigtran_2.0.0.30.32f5.tar.xz/src/osmo_ss7.c -> libosmo-sigtran_2.0.0.31.7261.tar.xz/src/osmo_ss7.c
Changed
@@ -315,21 +315,11 @@ return NULL; } -/*! \brief Find or create a SS7 Instance - * \paramin ctx talloc allocation context to use for allocations - * \paramin id ID of SS7 Instance - * \returns \ref osmo_ss7_instance on success; NULL on error */ -struct osmo_ss7_instance * -osmo_ss7_instance_find_or_create(void *ctx, uint32_t id) +static struct osmo_ss7_instance * +ss7_instance_alloc(void *ctx, uint32_t id) { struct osmo_ss7_instance *inst; - OSMO_ASSERT(ss7_initialized); - - inst = osmo_ss7_instance_find(id); - if (inst) - return inst; - inst = talloc_zero(ctx, struct osmo_ss7_instance); if (!inst) return NULL; @@ -360,6 +350,23 @@ return inst; } +/*! \brief Find or create a SS7 Instance + * \paramin ctx talloc allocation context to use for allocations + * \paramin id ID of SS7 Instance + * \returns \ref osmo_ss7_instance on success; NULL on error */ +struct osmo_ss7_instance * +osmo_ss7_instance_find_or_create(void *ctx, uint32_t id) +{ + struct osmo_ss7_instance *inst; + + OSMO_ASSERT(ss7_initialized); + + inst = osmo_ss7_instance_find(id); + if (!inst) + inst = ss7_instance_alloc(ctx, id); + return inst; +} + /*! \brief Destroy a SS7 Instance * \paramin inst SS7 Instance to be destroyed */ void osmo_ss7_instance_destroy(struct osmo_ss7_instance *inst)
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
.