<div dir="ltr">Hi,<br><br>I’ve used OpenSIPS for a while but new to the b2b modules.<br><br>I’m probably missing something really obvious but the BYE from the B leg is not propagated to the A leg when using my custom scenario (it *does* work when simply using the ‘top hiding’ config) <br><br>My configuration sets the following on the initial INVITE;<br><br>      b2b_server_new(“A");<br>      b2b_client_new(“B", $var(b2b_dest));<br>      b2b_init_request(“b2b_test", "", “b2b_req", "b2b_reply");<br><br>Then I have the following in b2b_req and b2b_reply<br><br>route[b2b_req] {<br>      if ($rm == 'BYE') {<br>              b2b_send_reply(200, "OK");<br>              b2b_delete_entity();<br>              exit;<br>      }<br><br>      b2b_pass_request();<br>      exit;<br>}<br><br>route[b2b_reply] {<br>      b2b_handle_reply();<br>}<br><br>I’ve also tried without the ($rm == ‘BYE’) block but the same behaviour. What do I need to call within that to propagate a BYE to the A leg? <br><br>Best,<br>Ross<br style="color:rgb(255,255,255);font-family:Helvetica;font-size:12px"></div>