Attention is currently required from: msuraev.
osmith has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/29464 )
Change subject: scripts/obs: make shallow git clones
......................................................................
Patch Set 1: Code-Review+1
(1 comment)
Patchset:
PS1:
nice! I considered this as well but thought it would run into problems when building the latest tag instead of nightly. But with --no-single-branch this still works as expected.
$ ./build_srcpkg.py -f latest libosmocore
libosmocore: cloning https://gerrit.osmocom.org/libosmocore
libosmocore: 'git clean -ffxd'
libosmocore: 'git checkout -f 1.7.0'
libosmocore: 'git reset --hard 1.7.0'
libosmocore: building source package 1.7.0
libosmocore: building debian source package
libosmocore: generating rpm spec file
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/29464
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I71629c244d2c29728a88871e83b20493341321c8
Gerrit-Change-Number: 29464
Gerrit-PatchSet: 1
Gerrit-Owner: msuraev <msuraev(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: osmith <osmith(a)sysmocom.de>
Gerrit-Attention: msuraev <msuraev(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 23 Sep 2022 15:09:02 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
msuraev has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/29464 )
Change subject: scripts/obs: make shallow git clones
......................................................................
Set Ready For Review
--
To view, visit https://gerrit.osmocom.org/c/osmo-ci/+/29464
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I71629c244d2c29728a88871e83b20493341321c8
Gerrit-Change-Number: 29464
Gerrit-PatchSet: 1
Gerrit-Owner: msuraev <msuraev(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Comment-Date: Fri, 23 Sep 2022 14:41:12 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-mgw/+/29463 )
Change subject: Use bool type instead of int in config field
......................................................................
Use bool type instead of int in config field
Change-Id: Ie2624a6a6848c3c88deb39760317860d8074acb9
---
M include/osmocom/mgcp/mgcp.h
M src/libosmo-mgcp/mgcp_osmux.c
2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/63/29463/1
diff --git a/include/osmocom/mgcp/mgcp.h b/include/osmocom/mgcp/mgcp.h
index ee419ef..c707f07 100644
--- a/include/osmocom/mgcp/mgcp.h
+++ b/include/osmocom/mgcp/mgcp.h
@@ -164,7 +164,7 @@
/* The BSC-NAT may ask for enabling osmux on demand. This tells us if
* the osmux socket is already initialized.
*/
- int osmux_init;
+ bool osmux_init;
/* osmux batch factor: from 1 to 4 maximum */
int osmux_batch;
/* osmux batch size (in bytes) */
diff --git a/src/libosmo-mgcp/mgcp_osmux.c b/src/libosmo-mgcp/mgcp_osmux.c
index 06dc705..83a96fe 100644
--- a/src/libosmo-mgcp/mgcp_osmux.c
+++ b/src/libosmo-mgcp/mgcp_osmux.c
@@ -463,7 +463,7 @@
osmo_sock_get_name2(osmux_fd.fd));
return ret;
}
- cfg->osmux_init = 1;
+ cfg->osmux_init = true;
LOGP(DOSMUX, LOGL_INFO, "OSMUX socket listening on %s\n",
osmo_sock_get_name2(osmux_fd.fd));
--
To view, visit https://gerrit.osmocom.org/c/osmo-mgw/+/29463
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: Ie2624a6a6848c3c88deb39760317860d8074acb9
Gerrit-Change-Number: 29463
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange