view plugins/autorecon.c @ 2153:0befa2d2e540

[gaim-migrate @ 2163] moving mail notifications to the core. this makes things much easier on the protocols. next steps: make buddy right-click menu stuff generated by the core (based on information provided by the protocols, similar to the away menu stuff); make entry-widget protocol-specific user options generated by the core based on what the protocols tell it (in a similar way). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 22 Aug 2001 21:11:58 +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;
}