Attention is currently required from: jolly, laforge.
dexter has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-mgw/+/36142?usp=email )
Change subject: migrate mgcp_client from osmo_wqueue to osmo_io
......................................................................
Patch Set 1: Verified+1 Code-Review+1
(1 comment)
Patchset:
PS1:
I gave this a try in my test network. Everything seems to work fine.
--
To view, visit https://gerrit.osmocom.org/c/osmo-mgw/+/36142?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: I766224da4691695c023d4d08d042a4bbeba05e47
Gerrit-Change-Number: 36142
Gerrit-PatchSet: 1
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Tue, 05 Mar 2024 16:24:51 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: arehbein, daniel, laforge.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/35070?usp=email )
Change subject: xua + ipa: Add support for I/O in OSMO_IO mode
......................................................................
Patch Set 8: Code-Review-1
(3 comments)
File src/osmo_ss7_asp.c:
https://gerrit.osmocom.org/c/libosmo-sccp/+/35070/comment/040b2000_09c23123
PS8, Line 657: osmo_stream_cli_set_segmentation_cb(asp->client, xua_segmentation_cb);
Can we call this callback function "tcp_xua_segmentation_cb"? (prepend"tcp_").
We already have eg. "m3ua_tcp_cli_read_cb".
https://gerrit.osmocom.org/c/libosmo-sccp/+/35070/comment/ef538979_90119f23
PS8, Line 663: osmo_stream_cli_set_read_cb2(asp->client, xua_cli_read_cb);
You probably need to do "osmo_stream_cli_set_segmentation_cb(asp->client, NULL);" here too?
https://gerrit.osmocom.org/c/libosmo-sccp/+/35070/comment/3cfe0e6a_8d800b83
PS8, Line 833: }
so how are we now calling osmo_stream_srv_destroy() once the socket is detected as closed?
I have the feeling you are missing a "if (msgb_length(msg) == 0) {" case here, like you added in the cli_ function.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sccp/+/35070?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Change-Id: I7d02037990f4af405839309510dc6c04e36c3369
Gerrit-Change-Number: 35070
Gerrit-PatchSet: 8
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: arehbein <arehbein(a)sysmocom.de>
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: arehbein <arehbein(a)sysmocom.de>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 05 Mar 2024 15:44:07 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: laforge.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36168?usp=email )
Change subject: epdg: Transmit MIP6-Agent-Info AVP in S6b SAR
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36168/comment/8818bd8a_a397…
PS1, Line 7: MIP6
> actually it's the non MIP6 (MobileIP 6) AVP that we transmit, as we use a normal GTP user plane?
not sure what you mean, it's called like that, see TS 29.273 9.2.3.2.2 MIP6-Agent-Info. That's used for both PMIP and GTP user plane, same as MIP6-Feature-Vector which has flags for both.
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36168?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ia0f00a00b6474e19bb4cdc77724c75a55ef5c1f9
Gerrit-Change-Number: 36168
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Comment-Date: Tue, 05 Mar 2024 15:34:06 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: laforge <laforge(a)osmocom.org>
Gerrit-MessageType: comment
Attention is currently required from: arehbein, daniel, pespin.
laforge has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-sccp/+/35070?usp=email )
Change subject: xua + ipa: Add support for I/O in OSMO_IO mode
......................................................................
Patch Set 8:
(1 comment)
File src/osmo_ss7_asp.c:
https://gerrit.osmocom.org/c/libosmo-sccp/+/35070/comment/889c673a_a1c81d2e
PS3, Line 904: xua_cli_close_and_reconnect(conn);
> Not sure what needs to be done on disconnect, but you'll probably need to `osmo_stream_cli_set_disco […]
yeah, I think the problem is that we are not using the disconnect_cb offered by libosmo-netif here. Likely for historical reasons, as when we did our own read/recv, we'd use the len == 0 indication. But now when transitioning to the osmo_io_fd mode of stream_cli, we should make use of that call-back. @jolly, please have a look into it.
--
To view, visit https://gerrit.osmocom.org/c/libosmo-sccp/+/35070?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Change-Id: I7d02037990f4af405839309510dc6c04e36c3369
Gerrit-Change-Number: 35070
Gerrit-PatchSet: 8
Gerrit-Owner: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: arehbein <arehbein(a)sysmocom.de>
Gerrit-Reviewer: daniel <dwillmann(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: arehbein <arehbein(a)sysmocom.de>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: daniel <dwillmann(a)sysmocom.de>
Gerrit-Comment-Date: Tue, 05 Mar 2024 14:50:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: daniel <dwillmann(a)sysmocom.de>
Gerrit-MessageType: comment