Hi, how do forward() and send() route the messages? do they retransmissions as t_relay()?
Thanks.
forward() and send() are the stateless functions, which basically means they just send the message and forget the transaction. t_relay() is the statefull routing function, so whenever you use this function openSER will take care of the transaction FSM.
hope it helps, sam
2007/10/15, Iñaki Baz Castillo ibc@in.ilimit.es:
Hi, how do forward() and send() route the messages? do they retransmissions as t_relay()?
Thanks.
-- Iñaki Baz Castillo ibc@in.ilimit.es
Users mailing list Users@openser.org http://openser.org/cgi-bin/mailman/listinfo/users
El Monday 15 October 2007 11:11:03 samuel escribió:
forward() and send() are the stateless functions, which basically means they just send the message and forget the transaction. t_relay() is the statefull routing function, so whenever you use this function openSER will take care of the transaction FSM.
Thanks. So I understand if better using t_relay() in order to route INVITE to a PBX or media server.
hope it helps,
Sure, I will notate about the stateless of forward() and send() in the wiki.
Best regards.
forward() does stateless routing (apply changes to the message, add Via header ...)
send() is also steless but forwards the original message without any changes
klaus
Iñaki Baz Castillo schrieb:
Hi, how do forward() and send() route the messages? do they retransmissions as t_relay()?
Thanks.