X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Firssi%2Fsrc%2Fcore%2Fserver-connect-rec.h;fp=apps%2Firssi%2Fsrc%2Fcore%2Fserver-connect-rec.h;h=0000000000000000000000000000000000000000;hb=72c2de619079457f7a68100eb13385275a424a23;hp=cfbe3eba12946c166b5041abdc5c864c9001e8f3;hpb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;p=runtime.git diff --git a/apps/irssi/src/core/server-connect-rec.h b/apps/irssi/src/core/server-connect-rec.h deleted file mode 100644 index cfbe3eba..00000000 --- a/apps/irssi/src/core/server-connect-rec.h +++ /dev/null @@ -1,42 +0,0 @@ -/* SERVER_CONNECT_REC definition, used for inheritance */ - -int type; /* module_get_uniq_id("SERVER CONNECT", 0) */ -int chat_type; /* chat_protocol_lookup(xx) */ - -int refcount; - -/* if we're connecting via proxy, or just NULLs */ -char *proxy; -int proxy_port; -char *proxy_string, *proxy_string_after, *proxy_password; - -unsigned short family; /* 0 = don't care, AF_INET or AF_INET6 */ -char *tag; /* try to keep this tag when connected to server */ -char *address; -int port; -char *chatnet; - -IPADDR *own_ip4, *own_ip6; - -char *password; -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 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;