diff sip-in/sip_uas.c @ 79:b0df2b200d77

sip-in: implement SIP CANCEL
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 20 Sep 2022 18:58:11 -0800
parents 8cf85edca543
children a9944b66dcc5
line wrap: on
line diff
--- a/sip-in/sip_uas.c	Tue Sep 20 18:00:56 2022 -0800
+++ b/sip-in/sip_uas.c	Tue Sep 20 18:58:11 2022 -0800
@@ -66,7 +66,7 @@
 	else if (!strcmp(msg->req_method, "ACK"))
 		handle_sip_ack(msg, &ess, sin);
 	else if (!strcmp(msg->req_method, "CANCEL"))
-		method_tbi(msg, &ess, sin);
+		handle_sip_cancel(msg, &ess, sin);
 	else if (!strcmp(msg->req_method, "BYE"))
 		method_tbi(msg, &ess, sin);
 	else