comparison ChangeLog.API @ 14837:118fd0dc5b6e

[gaim-migrate @ 17606] Add a "handle" parameter to gaim_proxy_connect(). It seemed like people thought this was a good idea. You can still cancel each gaim_proxy_connect() individually, if needed. I passed in NULL for the handle in most places. It might be better to pass in the gc in more places, but these changes do no harm, and they should help some Yahoo! things, and I wanted to get the API change in. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 28 Oct 2006 20:04:03 +0000
parents e908bff64af5
children b8eb759625b0
comparison
equal deleted inserted replaced
14836:bfcdd361357e 14837:118fd0dc5b6e
116 * All network activity has been updated to use non-blocking sockets. 116 * All network activity has been updated to use non-blocking sockets.
117 This means that plugins must be updated to expect such a socket from 117 This means that plugins must be updated to expect such a socket from
118 gaim_proxy_connect() and gaim_network_listen*(). 118 gaim_proxy_connect() and gaim_network_listen*().
119 * gaim_proxy_connect(): changed to return NULL on error and a pointer 119 * gaim_proxy_connect(): changed to return NULL on error and a pointer
120 to a GaimProxyConnectInfo object which can be used to cancel 120 to a GaimProxyConnectInfo object which can be used to cancel
121 connection attempts using gaim_proxy_connect_cancel(). 121 connection attempts using gaim_proxy_connect_cancel(). Also added
122 a 'handle' parameter that can be used to cancel to cancel the
123 connection attempt using gaim_proxy_connect_cancel_with_handle().
122 * gaim_gethostbyname_async(): Renamed to gaim_dnsquery_a() and 124 * gaim_gethostbyname_async(): Renamed to gaim_dnsquery_a() and
123 changed to return a pointer to a data structure that can be 125 changed to return a pointer to a data structure that can be
124 used to cancel the pending DNS query using gaim_dnsquery_destroy() 126 used to cancel the pending DNS query using gaim_dnsquery_destroy()
125 * gaim_url_fetch(): Renamed to gaim_util_fetch_url() and changed 127 * gaim_url_fetch(): Renamed to gaim_util_fetch_url() and changed
126 to return a pointer to a data structer that can be used to cancel 128 to return a pointer to a data structer that can be used to cancel
319 * gaim_notify_searchresults: Added user_data. 321 * gaim_notify_searchresults: Added user_data.
320 * gaim_network_listen_cancel(): Can be used to cancel a previous 322 * gaim_network_listen_cancel(): Can be used to cancel a previous
321 call to gaim_network_listen() or gaim_network_listen_range() 323 call to gaim_network_listen() or gaim_network_listen_range()
322 * gaim_proxy_connect_cancel(): Can be used to cancel a pending 324 * gaim_proxy_connect_cancel(): Can be used to cancel a pending
323 gaim_proxy_connect() request 325 gaim_proxy_connect() request
326 * gaim_proxy_connect_cancel_with_handle(): Can be used to cancel
327 a previous gaim_proxy_connect() request using a specified handle
324 * gaim_dnsquery_destroy(): Can be used to cancel a pending DNS 328 * gaim_dnsquery_destroy(): Can be used to cancel a pending DNS
325 query. 329 query.
326 * gaim_util_fetch_url_cancel(): Can be used to cancel a pending 330 * gaim_util_fetch_url_cancel(): Can be used to cancel a pending
327 call to gaim_util_fetch_url() or gaim_util_fetch_url_request(). 331 call to gaim_util_fetch_url() or gaim_util_fetch_url_request().
328 * GaimGtkWindow: dialogs.search (previously in GaimGtkConversation) 332 * GaimGtkWindow: dialogs.search (previously in GaimGtkConversation)