On Thu, Oct 18, 2018 at 12:14 PM, Laurent Bourgès <bourges.laur...@gmail.com > wrote: > > > PS: could you tell me what lines to change to discard non sequenced events > in your patch ? I will then try it > > Instead of "if (ev.getID() == ID) { ... } return FilterAction.ACCEPT;", do:
"if (ev.getID() == ID) { ... } else if (ev.getID() == SentEvent.ID) { return FilterAction.ACCEPT; } return FilterAction.REJECT;" SequencedEvent and SentEvent events accepted, others rejected.