summaryrefslogtreecommitdiff
path: root/src/irc/core/server-setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/core/server-setup.h')
-rw-r--r--src/irc/core/server-setup.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/irc/core/server-setup.h b/src/irc/core/server-setup.h
deleted file mode 100644
index 8803669c..00000000
--- a/src/irc/core/server-setup.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef __SERVER_SETUP_H
-#define __SERVER_SETUP_H
-
-#include "irc-server.h"
-
-/* servers */
-typedef struct {
- char *address;
- int port;
-
- char *ircnet;
- char *password;
- int autoconnect;
- int max_cmds_at_once; /* override the default if > 0 */
- int cmd_queue_speed; /* override the default if > 0 */
-
- char *own_host; /* address to use when connecting this server */
- IPADDR *own_ip; /* resolved own_address if not NULL */
-
- time_t last_connect; /* to avoid reconnecting too fast.. */
- int last_failed:1; /* if last connection attempt failed */
- int banned:1; /* if we're banned from this server */
-} SETUP_SERVER_REC;
-
-extern GSList *setupservers; /* list of irc servers */
-
-extern IPADDR *source_host_ip; /* Resolved address */
-extern gboolean source_host_ok; /* Use source_host_ip .. */
-
-/* Create server connection record. `dest' is required, rest can be NULL.
- `dest' is either a server address or irc network */
-IRC_SERVER_CONNECT_REC *
-irc_server_create_conn(const char *dest, int port, const char *password, const char *nick);
-
-/* Fill information to connection from server setup record */
-void server_setup_fill_conn(IRC_SERVER_CONNECT_REC *conn, SETUP_SERVER_REC *sserver);
-
-void server_setup_add(SETUP_SERVER_REC *rec);
-void server_setup_remove(SETUP_SERVER_REC *rec);
-
-/* Find matching server from setup. Try to find record with a same port,
- but fallback to any server with the same address. */
-SETUP_SERVER_REC *server_setup_find(const char *address, int port);
-/* Find matching server from setup. Ports must match or NULL is returned. */
-SETUP_SERVER_REC *server_setup_find_port(const char *address, int port);
-
-void servers_setup_init(void);
-void servers_setup_deinit(void);
-
-#endif