NODELAY for mail!

SVN revision: 66074
This commit is contained in:
Mike Blumenkrantz 2011-12-10 07:05:33 +00:00
parent c2a5233717
commit be26eff5d9
3 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ _mail_imap_check_mail (void *data)
if (is->local) if (is->local)
type = ECORE_CON_LOCAL_SYSTEM; type = ECORE_CON_LOCAL_SYSTEM;
else else
type = ECORE_CON_REMOTE_SYSTEM; type = ECORE_CON_REMOTE_NODELAY;
if (ecore_con_ssl_available_get () && (is->ssl)) if (ecore_con_ssl_available_get () && (is->ssl))
{ {

View File

@ -59,7 +59,7 @@ _mail_imap_check_mail (void *data)
if (ic->config->local) if (ic->config->local)
type = ECORE_CON_LOCAL_SYSTEM; type = ECORE_CON_LOCAL_SYSTEM;
else else
type = ECORE_CON_REMOTE_SYSTEM; type = ECORE_CON_REMOTE_NODELAY;
if (ecore_con_ssl_available_get () && (ic->config->ssl)) if (ecore_con_ssl_available_get () && (ic->config->ssl))
{ {

View File

@ -14,7 +14,7 @@ static Eina_List *pclients;
void void
_mail_pop_check_mail (void *data) _mail_pop_check_mail (void *data)
{ {
Ecore_Con_Type type = ECORE_CON_REMOTE_SYSTEM; Ecore_Con_Type type = ECORE_CON_REMOTE_NODELAY;
Eina_List *l; Eina_List *l;
Instance *inst; Instance *inst;