mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-20 14:26:21 +00:00
Merge branch 'master' into cleanup/gchar-char
This commit is contained in:
@@ -47,6 +47,7 @@
|
||||
#include "plugins/plugins.h"
|
||||
#include "ui/window_list.h"
|
||||
#include "xmpp/chat_session.h"
|
||||
#include "xmpp/session.h"
|
||||
#include "xmpp/xmpp.h"
|
||||
|
||||
#ifdef HAVE_LIBOTR
|
||||
@@ -85,9 +86,8 @@ cl_ev_connect_account(ProfAccount* account)
|
||||
void
|
||||
cl_ev_disconnect(void)
|
||||
{
|
||||
char* mybarejid = connection_get_barejid();
|
||||
auto_char char* mybarejid = connection_get_barejid();
|
||||
cons_show("%s logged out successfully.", mybarejid);
|
||||
free(mybarejid);
|
||||
|
||||
ui_close_all_wins();
|
||||
ev_disconnect_cleanup();
|
||||
@@ -95,6 +95,18 @@ cl_ev_disconnect(void)
|
||||
ev_reset_connection_counter();
|
||||
}
|
||||
|
||||
void
|
||||
cl_ev_reconnect(void)
|
||||
{
|
||||
if (connection_get_status() != JABBER_DISCONNECTED) {
|
||||
connection_disconnect();
|
||||
ev_disconnect_cleanup();
|
||||
// on intentional disconnect reset the counter
|
||||
ev_reset_connection_counter();
|
||||
}
|
||||
session_reconnect_now();
|
||||
}
|
||||
|
||||
void
|
||||
cl_ev_presence_send(const resource_presence_t presence_type, const int idle_secs)
|
||||
{
|
||||
|
||||
@@ -42,6 +42,7 @@ jabber_conn_status_t cl_ev_connect_jid(const char* const jid, const char* const
|
||||
jabber_conn_status_t cl_ev_connect_account(ProfAccount* account);
|
||||
|
||||
void cl_ev_disconnect(void);
|
||||
void cl_ev_reconnect(void);
|
||||
|
||||
void cl_ev_presence_send(const resource_presence_t presence_type, const int idle_secs);
|
||||
|
||||
|
||||
@@ -1332,8 +1332,8 @@ sv_ev_bookmark_autojoin(Bookmark* bookmark)
|
||||
|
||||
log_debug("Autojoin %s with nick=%s", bookmark->barejid, nick);
|
||||
if (!muc_active(bookmark->barejid)) {
|
||||
presence_join_room(bookmark->barejid, nick, bookmark->password);
|
||||
muc_join(bookmark->barejid, nick, bookmark->password, TRUE);
|
||||
presence_join_room(bookmark->barejid, nick, bookmark->password);
|
||||
iq_room_affiliation_list(bookmark->barejid, "member", false);
|
||||
iq_room_affiliation_list(bookmark->barejid, "admin", false);
|
||||
iq_room_affiliation_list(bookmark->barejid, "owner", false);
|
||||
|
||||
Reference in New Issue
Block a user