Added SILC Thread Queue API
[runtime.git] / apps / irssi / src / core / server-connect-rec.h
index a59880e4f4fef4e3b5428156dd752ddd57baaccd..cfbe3eba12946c166b5041abdc5c864c9001e8f3 100644 (file)
@@ -23,8 +23,20 @@ char *nick;
 char *username;
 char *realname;
 
+char *ssl_cert;
+char *ssl_pkey;
+char *ssl_cafile;
+char *ssl_capath;
+
+GIOChannel *connect_handle; /* connect using this handle */
+
 /* when reconnecting, the old server status */
-unsigned int reconnection:1; /* we're trying to reconnect */
+unsigned int reconnection:1; /* we're trying to reconnect a connected server */
+unsigned int reconnecting:1; /* we're trying to reconnect any connection */
 unsigned int no_autojoin_channels:1; /* don't autojoin any channels */
+unsigned int unix_socket:1; /* Connect using named unix socket */
+unsigned int use_ssl:1; /* this connection uses SSL */
+unsigned int ssl_verify:1;
+unsigned int no_connect:1; /* don't connect() at all, it's done by plugin */
 char *channels;
 char *away_reason;