more warngins--

SVN revision: 52460
This commit is contained in:
Carsten Haitzler 2010-09-19 03:55:06 +00:00
parent bcf7b03bae
commit 624628e9d1
1 changed files with 17 additions and 17 deletions

View File

@ -1183,19 +1183,19 @@ _ecore_con_ssl_server_prepare_none(Ecore_Con_Server *svr __UNUSED__, int ssl_typ
} }
static Ecore_Con_Ssl_Error static Ecore_Con_Ssl_Error
_ecore_con_ssl_server_init_none(Ecore_Con_Server *svr) _ecore_con_ssl_server_init_none(Ecore_Con_Server *svr __UNUSED__)
{ {
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED; return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
} }
static Eina_Bool static Eina_Bool
_ecore_con_ssl_server_cert_add_none(const char *cert_file) _ecore_con_ssl_server_cert_add_none(const char *cert_file __UNUSED__)
{ {
return EINA_TRUE; return EINA_TRUE;
} }
static Ecore_Con_Ssl_Error static Ecore_Con_Ssl_Error
_ecore_con_ssl_server_shutdown_none(Ecore_Con_Server *svr) _ecore_con_ssl_server_shutdown_none(Ecore_Con_Server *svr __UNUSED__)
{ {
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED; return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
} }
@ -1205,55 +1205,55 @@ _ecore_con_ssl_server_shutdown_none(Ecore_Con_Server *svr)
* should try again later. * should try again later.
*/ */
static Ecore_Con_State static Ecore_Con_State
_ecore_con_ssl_server_try_none(Ecore_Con_Server *svr) _ecore_con_ssl_server_try_none(Ecore_Con_Server *svr __UNUSED__)
{ {
return ECORE_CON_DISCONNECTED; return ECORE_CON_DISCONNECTED;
} }
static int static int
_ecore_con_ssl_server_read_none(Ecore_Con_Server *svr, unsigned char *buf, _ecore_con_ssl_server_read_none(Ecore_Con_Server *svr __UNUSED__, unsigned char *buf __UNUSED__,
int size) int size __UNUSED__)
{ {
return -1; return -1;
} }
static int static int
_ecore_con_ssl_server_write_none(Ecore_Con_Server *svr, unsigned char *buf, _ecore_con_ssl_server_write_none(Ecore_Con_Server *svr __UNUSED__, unsigned char *buf __UNUSED__,
int size) int size __UNUSED__)
{ {
return -1; return -1;
} }
static Ecore_Con_Ssl_Error static Ecore_Con_Ssl_Error
_ecore_con_ssl_client_init_none(Ecore_Con_Client *cl) _ecore_con_ssl_client_init_none(Ecore_Con_Client *cl __UNUSED__)
{ {
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED; return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
} }
static Eina_Bool static Eina_Bool
_ecore_con_ssl_client_cert_add_none(const char *cert_file, _ecore_con_ssl_client_cert_add_none(const char *cert_file __UNUSED__,
const char *crl_file, const char *crl_file __UNUSED__,
const char *key_file) const char *key_file __UNUSED__)
{ {
return EINA_TRUE; return EINA_TRUE;
} }
static Ecore_Con_Ssl_Error static Ecore_Con_Ssl_Error
_ecore_con_ssl_client_shutdown_none(Ecore_Con_Client *cl) _ecore_con_ssl_client_shutdown_none(Ecore_Con_Client *cl __UNUSED__)
{ {
return ECORE_CON_SSL_ERROR_NOT_SUPPORTED; return ECORE_CON_SSL_ERROR_NOT_SUPPORTED;
} }
static int static int
_ecore_con_ssl_client_read_none(Ecore_Con_Client *cl, unsigned char *buf, _ecore_con_ssl_client_read_none(Ecore_Con_Client *cl __UNUSED__, unsigned char *buf __UNUSED__,
int size) int size __UNUSED__)
{ {
return -1; return -1;
} }
static int static int
_ecore_con_ssl_client_write_none(Ecore_Con_Client *cl, unsigned char *buf, _ecore_con_ssl_client_write_none(Ecore_Con_Client *cl __UNUSED__, unsigned char *buf __UNUSED__,
int size) int size __UNUSED__)
{ {
return -1; return -1;
} }