NODELAY for forecasts too

SVN revision: 66073
This commit is contained in:
Mike Blumenkrantz 2011-12-10 07:04:31 +00:00
parent 771aa60494
commit e6f2ef32dc
1 changed files with 2 additions and 2 deletions

View File

@ -557,11 +557,11 @@ _forecasts_cb_check(void *data)
if (proxy.port != 0)
inst->server =
ecore_con_server_connect(ECORE_CON_REMOTE_SYSTEM,
ecore_con_server_connect(ECORE_CON_REMOTE_NODELAY,
proxy.host, proxy.port, inst);
else
inst->server =
ecore_con_server_connect(ECORE_CON_REMOTE_SYSTEM, inst->ci->host, 80, inst);
ecore_con_server_connect(ECORE_CON_REMOTE_NODELAY, inst->ci->host, 80, inst);
if (!inst->server) return EINA_FALSE;return EINA_TRUE;
}