From d513794c2ea8f746277853638ab2e97be6ce7f95 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Mon, 8 May 2017 13:35:04 +0300 Subject: modules/zrtp: aligned code with latest libzrtp from Freeswitch: - zrtp_cache_set_verified is now zrtp_verified_set - local zid is not anymore included in zrtp_config and needs to be given as argument to zrtp_verified_set - zrtp_config.cache_file_cfg is now zrtp_config.def_cache_path call.c: update info message on received request (re-INVITE or INFO) --- src/call.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/call.c') diff --git a/src/call.c b/src/call.c index 15c8e8c..60231d9 100644 --- a/src/call.c +++ b/src/call.c @@ -1067,7 +1067,12 @@ static int sipsess_offer_handler(struct mbuf **descp, MAGIC_CHECK(call); - info("call: got re-INVITE%s\n", got_offer ? " (SDP Offer)" : ""); + if (!pl_strcmp(&msg->met, "INVITE")) { + info("call: got re-INVITE%s\n", + got_offer ? " (SDP Offer)" : ""); + } else { + info("call: got UPDATE%s\n", got_offer ? " (SDP Offer)" : ""); + } if (got_offer) { -- cgit v1.2.3