arehbein has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmo-netif/+/33205 )
Change subject: example: Remove call to osmo_ipa_process_msg() ......................................................................
example: Remove call to osmo_ipa_process_msg()
That call now happens up the call stack in IPA mode
Change-Id: I53283ec7bd7f07dfa612681ae84af93d5cd098b9 --- M examples/ipa-stream-client.c 1 file changed, 11 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/05/33205/1
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 @@ { 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;