summaryrefslogtreecommitdiff
path: root/src/irc/core/server-reconnect.h
blob: 6f4b5336920a9b669d24ef317ca3c9f40b3a5c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __SERVER_RECONNECT_H
#define __SERVER_RECONNECT_H

typedef struct {
	int tag;
	time_t next_connect;

	IRC_SERVER_CONNECT_REC *conn;
} RECONNECT_REC;

extern GSList *reconnects;

void servers_reconnect_init(void);
void servers_reconnect_deinit(void);

#endif