comparison src/protocols/oscar/peer.c @ 13672:e5c3bfc208a9

[gaim-migrate @ 16074] Change the name of the oscar account preference for "always use proxy server for peer connections." The description and meaning of this preference has changed between 1.5.0 and 2.0.0. It almost has the inverse meaning of what it used to have. Also, the default changed from TRUE to FALSE, and I want to reset people's value to the default. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 21 Apr 2006 02:48:58 +0000
parents ee026e289bc4
children 6fc412e59214
comparison
equal deleted inserted replaced
13671:cafb9a4b206f 13672:e5c3bfc208a9
117 conn->sn = g_strdup(sn); 117 conn->sn = g_strdup(sn);
118 conn->buffer_outgoing = gaim_circ_buffer_new(0); 118 conn->buffer_outgoing = gaim_circ_buffer_new(0);
119 conn->listenerfd = -1; 119 conn->listenerfd = -1;
120 conn->fd = -1; 120 conn->fd = -1;
121 conn->lastactivity = time(NULL); 121 conn->lastactivity = time(NULL);
122 conn->use_proxy |= gaim_account_get_bool(account, "use_rv_proxy", FALSE); 122 conn->use_proxy |= gaim_account_get_bool(account, "always_use_rv_proxy", FALSE);
123 123
124 if (type == OSCAR_CAPABILITY_DIRECTIM) 124 if (type == OSCAR_CAPABILITY_DIRECTIM)
125 memcpy(conn->magic, "ODC2", 4); 125 memcpy(conn->magic, "ODC2", 4);
126 else if (type == OSCAR_CAPABILITY_SENDFILE) 126 else if (type == OSCAR_CAPABILITY_SENDFILE)
127 memcpy(conn->magic, "OFT2", 4); 127 memcpy(conn->magic, "OFT2", 4);