MyReceiver receiver=new MyReceiver();
c2.setReceiver(receiver);
// the first channel will discard the unicast messages with seqno #3 two times, the let them pass down
ProtocolStack stack=c1.getProtocolStack();
Protocol neighbor=stack.findProtocol(UNICAST.class, UNICAST2.class);
System.out.println("Found unicast protocol " + neighbor.getClass().getSimpleName());
stack.insertProtocolInStack(prot1, neighbor, ProtocolStack.BELOW);
c1.connect("UNICAST_OOB_Test");
c2.connect("UNICAST_OOB_Test");