comparison libpurple/upnp.c @ 32672:3828a61c44da

A boring and large patch so I can merge heads.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Fri, 23 Dec 2011 08:21:58 +0000
parents 323876c34a96
children
comparison
equal deleted inserted replaced
32671:0e69949b3e61 32672:3828a61c44da
462 /* Remove the timeout because everything it is waiting for has 462 /* Remove the timeout because everything it is waiting for has
463 * successfully completed */ 463 * successfully completed */
464 purple_timeout_remove(dd->tima); 464 purple_timeout_remove(dd->tima);
465 dd->tima = 0; 465 dd->tima = 0;
466 466
467 purple_util_fetch_url_request_len(NULL, descriptionURL, TRUE, NULL, TRUE, httpRequest, 467 purple_util_fetch_url_request(NULL, descriptionURL, TRUE, NULL, TRUE, httpRequest,
468 TRUE, MAX_UPNP_DOWNLOAD, upnp_parse_description_cb, dd); 468 TRUE, MAX_UPNP_DOWNLOAD, upnp_parse_description_cb, dd);
469 469
470 g_free(httpRequest); 470 g_free(httpRequest);
471 471
472 } 472 }
728 control_info.service_type, actionName, 728 control_info.service_type, actionName,
729 strlen(soapMessage), soapMessage); 729 strlen(soapMessage), soapMessage);
730 g_free(pathOfControl); 730 g_free(pathOfControl);
731 g_free(soapMessage); 731 g_free(soapMessage);
732 732
733 gfud = purple_util_fetch_url_request_len(NULL, control_info.control_url, FALSE, NULL, TRUE, 733 gfud = purple_util_fetch_url_request(NULL, control_info.control_url, FALSE, NULL, TRUE,
734 totalSendMessage, TRUE, MAX_UPNP_DOWNLOAD, cb, cb_data); 734 totalSendMessage, TRUE, MAX_UPNP_DOWNLOAD, cb, cb_data);
735 735
736 g_free(totalSendMessage); 736 g_free(totalSendMessage);
737 g_free(addressOfControl); 737 g_free(addressOfControl);
738 738