Hi,
What's the difference between using forward and t_relay_udp?
For example if an INVTIE is received by mydomain.com and it is to be redirected to anotherdomain.com, which would be the prefered method to use???
Also, is it required to us a break after each request to halt any further processing of the routing script?
Many Thanks,
Alan
------------------------------------------------------------------------------------------------------- This email, and any files transmitted with it, is copyright and may contain confidential information. The contents are intended for the use of the addressee(s) only. Unauthorized use may be unlawful. If you receive this email by mistake, please advise sender immediately. The views of the author may not necessarily constitute the views of Telco Electronics Limited. Nothing in this mail shall bind Telco Electronics Limited in any contract or obligation.
Telco Electronics Limited 6-8 Oxford Court Brackley Northants NN13 7XY
Tel 07000 701999 Fax 07000 701777
On Feb 25, 2004 at 16:42, Alan Litster alitster@telcoelectronics.co.uk wrote:
Hi,
What's the difference between using forward and t_relay_udp?
forward is stateless, t_relay_udp is statefull.
For example if an INVTIE is received by mydomain.com and it is to be redirected to anotherdomain.com, which would be the prefered method to use???
If that all you have to do and you don't do tcp to udp tranlation, forward is ok (and it will also be a little faster and use almost no memory).
Also, is it required to us a break after each request to halt any further processing of the routing script?
If you want to halt further processing, yes you have to (forward or t_relay_udp will not do it for you, so that you can still do something with the message even after forwarding).
Andrei