Skip to content
Snippets Groups Projects
Commit 0f251493 authored by pierre-luc's avatar pierre-luc
Browse files

[#2028] Notify the client with libnotify when the zrtp negotiation failed.

parent 3186951e
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,11 @@ zrtp_negotiation_failed_cb (DBusGProxy *proxy UNUSED,
{
DEBUG ("Zrtp negotiation failed.");
main_window_zrtp_negotiation_failed(callID, reason, severity);
callable_obj_t * c = NULL;
c = calllist_get(current_calls, callID);
if(c) {
notify_zrtp_negotiation_failed(c);
}
}
static void
......
......@@ -210,6 +210,21 @@ notify_zrtp_not_supported (callable_obj_t* c)
&_gnome_notification);
}
void
notify_zrtp_negotiation_failed (callable_obj_t* c)
{
gchar* callerid;
gchar* title;
title = g_markup_printf_escaped ("ZRTP Error.");
callerid = g_markup_printf_escaped(_("ZRTP negotiation failed with %s") , c->_peer_number);
create_new_gnome_notification (title,
callerid,
NOTIFY_URGENCY_CRITICAL,
(g_strcasecmp(__TIMEOUT_MODE, "default") == 0 )? __TIMEOUT_TIME : NOTIFY_EXPIRES_NEVER,
&_gnome_notification);
}
void
notify_secure_off (callable_obj_t* c)
{
......
......@@ -90,6 +90,12 @@ void notify_secure_on (callable_obj_t* c);
*/
void notify_secure_off (callable_obj_t* c);
/**
* Notify that the ZRTP negotiation failed
*/
void notify_zrtp_negotiation_failed (callable_obj_t* c);
/**
* Notify that the RTP session is now more secured
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment