Kamailio module tm

From 탱이의 잡동사니
Revision as of 20:14, 27 July 2019 by Pchero (talk | contribs) (Created page with "== Overview == Kamailio module tm 내용 정리. == Functions == === t_relay([host, port]) === Relay a message statefuly either to the destination in the current URI (if call...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Kamailio module tm 내용 정리.

Functions

t_relay([host, port])

Relay a message statefuly either to the destination in the current URI (if called without any parameters) or to the specified host and port. In the later case (host and port specified) the protocol used is the same protocol on which the message was received.

t_relay() is the stateful version for forward() while t_relay(host, port) is similar to forward(host, port).

In the forward to uri case (t_relay()), if the original URI was rewritten (by UsrLoc, RR, strip/prefix, etc.) the new URI will be taken. The destination (including the protocol) is determined from the uri, using SIP specific DNS resolving if needed (NAPTR, SRV a.s.o depending also on the dns options).

Returns a negative value on failure -- you may still want to send a negative reply upstream statelessly not to leave upstream UAC in lurch.

if (!t_relay()) 
{ 
    sl_reply_error(); 
    break; 
};

See also