On Sep 29, 2004 at 11:02, David Simmons <iptel(a)davidsimmons.co.uk> wrote:
Brilliant ... worked first time .... been spending ages on that :)
Call is quite breaky at first then within a few seconds it gets better. Is this usual?
No.
Also I get these errors in the messages file when making the call:
Sep 29 10:56:50 testsip2 /sbin/ser[4043]: record_route(): Double attempt to record-route
You use record-route() twice. Remove the record-route under the "if
(mehtod==INVITE)".
Sep 29 10:56:52 testsip2 /sbin/ser[4048]: ERROR:
extract_body: message body has lenght zero
Sep 29 10:56:52 testsip2 /sbin/ser[4048]: ERROR: force_rtp_proxy2: can't extract body
from the message
Sep 29 10:56:52 testsip2 /sbin/ser[4048]: ERROR: on_reply processing failed
You get replies without a body in the on_reply route, probably because
you catch also 1xx replies (you should catch only 183 & 2xx).
Replace status=~[12][0-9][0-9] with status=~(183)|2[0-9][0-9].
Andrei