2000-08-26 11:39:44 -04:00
|
|
|
/* SERVER_CONNECT_REC definition, used for inheritance */
|
|
|
|
|
2000-08-31 20:26:46 -04:00
|
|
|
int type; /* module_get_uniq_id("SERVER CONNECT", 0) */
|
|
|
|
int chat_type; /* chat_protocol_lookup(xx) */
|
2000-08-26 11:39:44 -04:00
|
|
|
|
2001-10-21 09:59:07 -04:00
|
|
|
int refcount;
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
/* if we're connecting via proxy, or just NULLs */
|
|
|
|
char *proxy;
|
|
|
|
int proxy_port;
|
2002-01-22 15:29:45 -05:00
|
|
|
char *proxy_string, *proxy_string_after, *proxy_password;
|
2000-08-26 11:39:44 -04:00
|
|
|
|
2001-02-09 16:26:50 -05:00
|
|
|
unsigned short family; /* 0 = don't care, AF_INET or AF_INET6 */
|
2001-06-08 17:19:08 -04:00
|
|
|
char *tag; /* try to keep this tag when connected to server */
|
2000-08-26 11:39:44 -04:00
|
|
|
char *address;
|
|
|
|
int port;
|
|
|
|
char *chatnet;
|
|
|
|
|
2001-03-03 20:47:13 -05:00
|
|
|
IPADDR *own_ip4, *own_ip6;
|
2000-08-26 11:39:44 -04:00
|
|
|
|
|
|
|
char *password;
|
|
|
|
char *nick;
|
|
|
|
char *username;
|
|
|
|
char *realname;
|
|
|
|
|
2003-11-16 12:53:55 -05:00
|
|
|
char *ssl_cert;
|
|
|
|
char *ssl_pkey;
|
|
|
|
char *ssl_cafile;
|
|
|
|
char *ssl_capath;
|
|
|
|
|
2002-05-19 10:43:16 -04:00
|
|
|
GIOChannel *connect_handle; /* connect using this handle */
|
|
|
|
|
2000-08-26 11:39:44 -04:00
|
|
|
/* when reconnecting, the old server status */
|
2004-01-19 12:52:08 -05:00
|
|
|
unsigned int reconnection:1; /* we're trying to reconnect a connected server */
|
|
|
|
unsigned int reconnecting:1; /* we're trying to reconnect any connection */
|
2001-11-19 09:02:27 -05:00
|
|
|
unsigned int no_autojoin_channels:1; /* don't autojoin any channels */
|
2002-05-19 10:43:16 -04:00
|
|
|
unsigned int unix_socket:1; /* Connect using named unix socket */
|
2002-08-26 15:32:15 -04:00
|
|
|
unsigned int use_ssl:1; /* this connection uses SSL */
|
2003-11-16 12:53:55 -05:00
|
|
|
unsigned int ssl_verify:1;
|
2002-12-04 06:39:31 -05:00
|
|
|
unsigned int no_connect:1; /* don't connect() at all, it's done by plugin */
|
2000-08-26 11:39:44 -04:00
|
|
|
char *channels;
|
|
|
|
char *away_reason;
|