Added ui functions for otr authentication

This commit is contained in:
James Booth
2014-04-30 22:41:53 +01:00
parent 8994b3769c
commit eaa19598c1
3 changed files with 37 additions and 4 deletions

View File

@@ -442,13 +442,11 @@ _otr_smp_secret(const char * const recipient, const char *secret)
// if recipient initiated SMP, send response, else initialise
if (g_hash_table_contains(smp_initiators, recipient)) {
otrl_message_respond_smp(user_state, &ops, NULL, context, (const unsigned char*)secret, strlen(secret));
ui_current_print_formatted_line('!', 0, "Authenticating %s...", recipient);
ui_current_page_off();
ui_otr_authenticating(recipient);
g_hash_table_remove(smp_initiators, context->username);
} else {
otrl_message_initiate_smp(user_state, &ops, NULL, context, (const unsigned char*)secret, strlen(secret));
ui_current_print_formatted_line('!', 0, "Awaiting authentication from %s...", recipient);
ui_current_page_off();
ui_otr_authetication_waiting(recipient);
}
}