fix for people who compile without ssl/tls support

SVN revision: 50611
This commit is contained in:
Mike Blumenkrantz 2010-07-28 19:58:57 +00:00
parent 6a8c01999f
commit 76f9c81589
1 changed files with 14 additions and 0 deletions

View File

@ -1118,6 +1118,12 @@ _ecore_con_ssl_server_init_none(Ecore_Con_Server *svr)
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
}
static Eina_Bool
_ecore_con_ssl_server_cert_add_none(const char *cert_file)
{
return EINA_TRUE;
}
static Ecore_Con_Ssl_Error
_ecore_con_ssl_server_shutdown_none(Ecore_Con_Server *svr)
{
@ -1160,6 +1166,14 @@ _ecore_con_ssl_client_init_none(Ecore_Con_Client *cl)
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
}
static Eina_Bool
_ecore_con_ssl_client_cert_add_none(const char *cert_file,
const char *crl_file,
const char *key_file)
{
return EINA_TRUE;
}
static Ecore_Con_Ssl_Error
_ecore_con_ssl_client_shutdown_none(Ecore_Con_Client *cl)
{