Displaying 4 results from an estimated 4 matches for "record_rout".
Did you mean:
record_out
2005 Aug 29
1
SER NAT any additional requirement
...( max_len )) {
sl_send_reply("513", "Message too big");
break;
};
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy;
that's
# particularly good if upstream and downstream
entities
# use different transport protocol
record_route();
# loose-route processing
if (loose_route()) {
t_relay();
break;
};
# if the request is for other domain use UsrLoc
# (in case, it does not work, use the following
command
# with proper names and addresses in it)
if (uri==myself) {
if (method=="REGISTER") {
save(&quo...
2005 Jan 25
1
SER Prob
...ted
# };
# };
###################End#####################
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy; that's
# particularly good if upstream and downstream entities
# use different transport protocol
if (!method == "REGISTER") record_route();
# loose-route processing
if (loose_route()) {
t_relay();
break;
};
# if the request is for other domain use UsrLoc
# (in case, it does not work, use the following command
# with proper names and addresses in it)
if (uri==myself) {
if (method=="REGISTER") {
# Uncomment this if you...
2005 Jul 06
0
Asterisk voicemail
...t;Message too big");
break;
};
setflag(1);
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy; that's
# particularly good if upstream and downstream entities
# use different transport protocol
if(method!="REGISTER"){
record_route();
};
# loose-route processing
if (loose_route()) {
route(1);
break;
};
# if the request is for other domain use UsrLoc
# (in case, it does not work, use the following command
# with proper names and addresses in it)
if(uri != myself){
route(1);
break;
};
if (uri==myself) {...
2005 May 09
1
Asterisk + SER and NAT
...--------------------------------------------------
# we record-route all messages -- to make sure that
# subsequent messages will go through our proxy; that's
# particularly good if upstream and downstream entities
# use different transport protocol
record_route();
# This will make the return path the VIRTUAL IP on a L4 switch
instead of our REAL IP
# record_route_preset("192.168.0.146:5060");
#------------------------------------------------------------------------------------------------
# loose-route proc...