summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyril Jourdan2012-10-10 10:03:23 +0200
committerCyril Jourdan2012-10-17 08:37:14 +0200
commit9e6f2ad481a2029e8a43526fd527443e537ce4b2 (patch)
tree7cdd8b74d656991af15d2129eabcd468c82fc24c
parent775bdc77545d93d6fc44693644bcfe39e1117f9f (diff)
cleo/app/managerd: do not filter MM types to give to cesar, refs #3405
Now that some MM types that do not exist in AV have been removed (during the resolution of #409), there is no more MM types that cesar can not handle. Especially as the filtering rule was buggy...
-rw-r--r--cleopatre/application/managerd/src/bridge.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/cleopatre/application/managerd/src/bridge.c b/cleopatre/application/managerd/src/bridge.c
index a022c9d593..5d4e3aed73 100644
--- a/cleopatre/application/managerd/src/bridge.c
+++ b/cleopatre/application/managerd/src/bridge.c
@@ -78,11 +78,8 @@ enum bridge_status bridge_processing(struct managerd_ctx *ctx, uint8_t *buffer,
break;
}
- if(mmehdr->mmtype >= VS_MIN)
- {
- /* AV or VS MME: give it to MME interface */
- mme_nl_send (ctx, buffer, *len);
- }
+ /* if not, give it to plcdrv */
+ mme_nl_send (ctx, buffer, *len);
return TO_DROP;
}