unbreak my last commit

SVN revision: 71682
This commit is contained in:
Mike Blumenkrantz 2012-06-04 09:16:19 +00:00
parent f472e919e2
commit fd3b513079
2 changed files with 3 additions and 2 deletions

View File

@ -448,7 +448,7 @@ ecore_con_server_connect(Ecore_Con_Type compl_type,
svr->data = (void *)data;
svr->created = EINA_FALSE;
svr->use_cert = (compl_type & ECORE_CON_SSL & ECORE_CON_LOAD_CERT) == ECORE_CON_LOAD_CERT;
svr->disable_proxy = (compl_type & ECORE_CON_SSL & ECORE_CON_NO_PROXY) == ECORE_CON_NO_PROXY;
svr->disable_proxy = (compl_type & ECORE_CON_SUPER_SSL & ECORE_CON_NO_PROXY) == ECORE_CON_NO_PROXY;
svr->reject_excess_clients = EINA_FALSE;
svr->clients = NULL;
svr->client_limit = -1;

View File

@ -9,7 +9,8 @@
#define ECORE_MAGIC_CON_URL 0x77074255
#define ECORE_CON_TYPE 0x0f
#define ECORE_CON_SSL 0xf00
#define ECORE_CON_SSL 0xf0
#define ECORE_CON_SUPER_SSL 0xf00
#if USE_GNUTLS
# include <gnutls/gnutls.h>