From: Curro > Sent: Thursday, May 27, 2004 5:36 PM
I suppose that's a problem from my config file,
but I can't figure out
what. Could you help me, please?
Yes indeed. On one hand you do record_route for INVITE based dialogs (line
168), but you do not have a default handling for SIP requests other than
REGISTER, INVITE, BYE and CANCEL. So SER does not know what to do with ACK.
I propose to use:
if (method == "INVITE")
record_route();
else {
if (!t_relay())
sl_reply_error();
}
Franz