aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarehbein <arehbein@sysmocom.de>2023-05-21 13:05:10 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2023-05-31 12:24:28 +0200
commita2d10f3984ed50734b6325304a8164ac61fb3d14 (patch)
tree1e6b069a44d088048318aceb35dae50acc2d52a5
parentbd79d91526503839ef8d9fc1243dc6889b4d2f4a (diff)
stream: Adapt to new changes
- adapt to def. of struct osmo_io_ops - eliminate compiler warnings due to change in callback signature Requires change I6a0eebb8d4490f09a3cc6eb97d4ff47b4a8fd377 Related: OS#5753 Change-Id: I5f9a5ce85efb4ed512ff6ca1f3e170d2ffb2ba22
-rw-r--r--src/stream.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/stream.c b/src/stream.c
index abfc5c3..98a4be9 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -88,7 +88,7 @@
//static int (*segmentation_cbs[_NUM_OSMO_STREAM_PROTOS][_NUM_CB_TYPES])(struct msgb *, int) = {
// [OSMO_STREAM_IPAC][CB_TYPE_SEGM] = ipa_segmentation_cb,
-static int (*segmentation_cbs[_NUM_OSMO_STREAM_PROTOS])(struct msgb *, int) = {
+static int (*segmentation_cbs[_NUM_OSMO_STREAM_PROTOS])(struct msgb *) = {
[OSMO_STREAM_IPAC] = ipa_segmentation_cb,
};
@@ -655,7 +655,7 @@ static void stream_cli_iofd_read_cb(struct osmo_io_fd *iofd, int res, struct msg
}
}
-static void stream_cli_iofd_write_cb(struct osmo_io_fd *iofd, int res, struct msgb *msg)
+static void stream_cli_iofd_write_cb(struct osmo_io_fd *iofd, int res, const struct msgb *msg)
{
struct osmo_stream_cli *cli = osmo_iofd_get_data(iofd);
@@ -677,7 +677,6 @@ static void stream_cli_iofd_write_cb(struct osmo_io_fd *iofd, int res, struct ms
static struct osmo_io_ops osmo_stream_cli_ioops = {
.read_cb = stream_cli_iofd_read_cb,
.write_cb = stream_cli_iofd_write_cb,
-
.segmentation_cb = NULL,
};
@@ -1424,7 +1423,7 @@ static void stream_srv_iofd_read_cb(struct osmo_io_fd *iofd, int res, struct msg
return;
}
-static void stream_srv_iofd_write_cb(struct osmo_io_fd *iofd, int res, struct msgb *msg)
+static void stream_srv_iofd_write_cb(struct osmo_io_fd *iofd, int res, const struct msgb *msg)
{
struct osmo_stream_srv *conn = osmo_iofd_get_data(iofd);
LOGP(DLINP, LOGL_DEBUG, "connected write\n");