Hi,
Attached is a very tiny demo which showcases a pretty huge (imo) bug in
ecore-con-url: multiple simultaneous fetches are broken. When more than one
curl object is added, only the last one will actually be fetched.
#include <Ecore.h>
#include <Ecore_Con.h>
int
main(void)
{
Ecore_Con_Url *url;
eina_init();
ecore_init();
ecore_con_init();
ecore_con_url_init();
eina_log_domain_level_set("ecore_con", EINA_LOG_LEVEL_DBG);
url = ecore_con_url_new("http://www.dreamincode.net/forums/uploads/monthly_05_2010/post-380028-12747928967239.jpg.pagespeed.ce.yRppR_j7ae.jpg");
ecore_con_url_get(url);
url = ecore_con_url_new("http://www.prelovac.com/vladimir/wp-content/uploads/2008/03/example.jpg");
ecore_con_url_get(url);
ecore_main_loop_begin();
return 0;
}
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel