view plugins/autorecon.c @ 1840:00aef397a1fe

[gaim-migrate @ 1850] reworked some of the proxy stuff so that it's non-blocking now. next thing to do is to get IRC, MSN, Napster, and Jabber to use the new proxy_connect code. After that, Oscar and Yahoo (maybe Zephyr too? not likely) committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 12 May 2001 01:38:04 +0000
parents 84782d1cb051
children 66783ad29e55
line wrap: on
line source

#define GAIM_PLUGINS
#include "gaim.h"
#include "prpl.h"
#include <gtk/gtk.h>

char *name() {
	return "Auto Reconnect";
}

char *description() {
	return "When you are kicked offline, this reconnects you.";
}

static gboolean do_signon(struct aim_user *u) {
	if (g_list_index(aim_users, u) < 0)
		return FALSE;
	serv_login(u);
	return FALSE;
}

static void reconnect(struct gaim_connection *gc, void *m) {
	if (!gc->wants_to_die)
		gtk_timeout_add(8000, (GtkFunction)do_signon, gc->user);
}

char *gaim_plugin_init(GModule *handle) {
	gaim_signal_connect(handle, event_signoff, reconnect, NULL);

	return NULL;
}