imported.
[crypto.git] / apps / irssi / src / core / server-connect-rec.h
1 /* SERVER_CONNECT_REC definition, used for inheritance */
2
3 int type; /* module_get_uniq_id("SERVER CONNECT", 0) */
4 int chat_type; /* chat_protocol_lookup(xx) */
5
6 /* if we're connecting via proxy, or just NULLs */
7 char *proxy;
8 int proxy_port;
9 char *proxy_string, *proxy_password;
10
11 unsigned short family; /* 0 = don't care, AF_INET or AF_INET6 */
12 char *address;
13 int port;
14 char *chatnet;
15
16 IPADDR *own_ip4, *own_ip6;
17
18 char *password;
19 char *nick;
20 char *username;
21 char *realname;
22
23 /* when reconnecting, the old server status */
24 unsigned int reconnection:1; /* we're trying to reconnect */
25 char *channels;
26 char *away_reason;