Hello,
I have a question about CANCEL processing. I read on the mailing list that CANCEL will be automatically matched by t_relay to transaction it's cancelling, if needed transformation to RURI will be automatically applied and then it will be automatically send to correct destination. I'm experimenting with openser 0.10.x and it seems to be true, but I'd like to confirm that the following is OK:
if (loose_route()) { do something t_relay(); break; } if (is_method("CANCEL")) { t_relay(); break; } if (uri==myself) { do lookups that rewrite RURI t_relay(); }
Thank you,