From 2e36090feadb524430eee70cf0b0e16f1c10f839 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 26 Mar 2016 06:19:42 +0100 Subject: [PATCH] sip: Tell sofia-sip that we will ack certain things ourselves This has not tested re-transmission and if a call is connected multiple times or not. --- src/sip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sip.c b/src/sip.c index 4e4d569..8b02b00 100644 --- a/src/sip.c +++ b/src/sip.c @@ -61,6 +61,9 @@ int sip_agent_start(struct sip_agent *agent) agent->nua = nua_create(agent->root, nua_callback, agent, NUTAG_URL(sip_uri), + NUTAG_AUTOACK(0), + NUTAG_AUTOALERT(0), + NUTAG_AUTOANSWER(0), TAG_END()); talloc_free(sip_uri); return agent->nua ? 0 : -1;