mirror of
https://github.com/irssi/irssi.git
synced 2025-01-03 14:56:47 -05:00
17 lines
266 B
C
17 lines
266 B
C
|
#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
|