aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarehbein <arehbein@sysmocom.de>2023-05-24 15:21:38 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2023-05-31 12:25:27 +0200
commit0af4fefb4578999700edf4d1f9d3f17cb2df0c14 (patch)
tree7d21e4cb030ddba02e2345ecdd154bff99ed2bce
parent9d394f4c4e22d049d78df44fce65b107d9881034 (diff)
example: Remove call to osmo_ipa_process_msg()daniel/osmo_io-with-ipa
That call now happens up the call stack in IPA mode Change-Id: I53283ec7bd7f07dfa612681ae84af93d5cd098b9
-rw-r--r--examples/ipa-stream-client.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/examples/ipa-stream-client.c b/examples/ipa-stream-client.c
index 6aa7d5f..61292a3 100644
--- a/examples/ipa-stream-client.c
+++ b/examples/ipa-stream-client.c
@@ -106,11 +106,6 @@ static int read_cb(struct osmo_stream_cli *conn, struct msgb *msg)
{
LOGP(DIPATEST, LOGL_DEBUG, "received message from stream (payload len=%d)\n", msgb_length(msg));
- if (osmo_ipa_process_msg(msg) < 0) {
- LOGP(DIPATEST, LOGL_ERROR, "bad IPA message\n");
- return 0;
- }
-
int num;
struct msg_sent *cur, *tmp, *found = NULL;