# HG changeset patch # User Luke Schierer # Date 1043557443 0 # Node ID 2fd80799d8f459380a3bc2c5840a25d1a5c2b8bb # Parent 31834b4598eb1b8f373af22c758a91f2bc44db66 [gaim-migrate @ 4695] niqueco wants to be able to use ipv6. so now you can recieve a dcc from sone using it. committer: Tailor Script diff -r 31834b4598eb -r 2fd80799d8f4 ChangeLog --- a/ChangeLog Sun Jan 26 04:27:14 2003 +0000 +++ b/ChangeLog Sun Jan 26 05:04:03 2003 +0000 @@ -18,6 +18,8 @@ Christian Hammond) * Asynchronous, non-blocking, DNS function (Thanks, Nicolas Lichtmaier) + * As a side effect of the above: IPv6 support. Tested only with IRC + (you can receive ipv6 chat requests from irssi!). Plugins: * Tray icon plugin--replaces the old GNOME applet. You'll need diff -r 31834b4598eb -r 2fd80799d8f4 src/protocols/irc/irc.c --- a/src/protocols/irc/irc.c Sun Jan 26 04:27:14 2003 +0000 +++ b/src/protocols/irc/irc.c Sun Jan 26 05:04:03 2003 +0000 @@ -65,11 +65,15 @@ G_MODULE_IMPORT GSList *connections; G_MODULE_IMPORT GSList *groups; +#ifndef INET6_ADDRSTRLEN +#define INET6_ADDRSTRLEN 46 +#endif + /* Datastructs */ struct dcc_chat { struct gaim_connection *gc; - char ip_address[12]; + char ip_address[INET6_ADDRSTRLEN]; int port; int fd; int inpa; @@ -1282,7 +1286,6 @@ struct dcc_chat *dccchat = g_new0(struct dcc_chat, 1); dccchat->gc = gc; g_snprintf(dccchat->ip_address, sizeof(dccchat->ip_address), chat_args[3]); - printf("DCC CHAT DEBUG CRAP: %s\n", dccchat->ip_address); dccchat->port=atoi(chat_args[4]); g_snprintf(dccchat->nick, sizeof(dccchat->nick), nick); g_snprintf(ask, sizeof(ask), _("%s would like to establish a DCC chat"), nick); @@ -1679,8 +1682,7 @@ g_free(test); - if (idata->fd != source) - idata->fd = source; + idata->fd = source; gethostname(hostname, sizeof(hostname) - 1); hostname[sizeof(hostname) - 1] = 0; @@ -1721,6 +1723,7 @@ irc_login(struct aim_user *user) { char buf[IRC_BUF_LEN]; + int rc; struct gaim_connection *gc = new_gaim_conn(user); struct irc_data *idata = gc->proto_data = g_new0(struct irc_data, 1); @@ -1734,12 +1737,13 @@ idata->chanmodes = g_strdup("beI,k,lnt"); idata->nickmodes = g_strdup("ohv"); idata->str = g_string_new(""); + idata->fd = -1; - idata->fd = proxy_connect(user->proto_opt[USEROPT_SERV], + rc = proxy_connect(user->proto_opt[USEROPT_SERV], user->proto_opt[USEROPT_PORT][0] ? atoi(user-> proto_opt[USEROPT_PORT]) : 6667, irc_login_callback, gc); - if (!user->gc || (idata->fd < 0)) { + if (!user->gc || (rc < 0)) { hide_login_progress(gc, "Unable to create socket"); signoff(gc); return;