diff sip-in/sip_uas.c @ 69:8cf85edca543

sip-in: implement SIP ACK handling
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 19 Sep 2022 14:55:57 -0800
parents 02761f1ae5e5
children b0df2b200d77
line wrap: on
line diff
--- a/sip-in/sip_uas.c	Sun Sep 18 21:56:20 2022 -0800
+++ b/sip-in/sip_uas.c	Mon Sep 19 14:55:57 2022 -0800
@@ -64,7 +64,7 @@
 	if (!strcmp(msg->req_method, "INVITE"))
 		handle_sip_invite(msg, &ess, sin);
 	else if (!strcmp(msg->req_method, "ACK"))
-		method_tbi(msg, &ess, sin);
+		handle_sip_ack(msg, &ess, sin);
 	else if (!strcmp(msg->req_method, "CANCEL"))
 		method_tbi(msg, &ess, sin);
 	else if (!strcmp(msg->req_method, "BYE"))