• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/

Lines Matching defs:void

557 void SSL_certs_clear(SSL *s)
562 void SSL_free(SSL *s)
673 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio)
796 size_t SSL_get_finished(const SSL *s, void *buf, size_t count)
810 size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count)
851 void SSL_set_verify(SSL *s, int mode,
859 void SSL_set_verify_depth(SSL *s, int depth)
864 void SSL_set_read_ahead(SSL *s, int yes)
925 void SSL_copy_session_id(SSL *t, const SSL *f)
1016 int SSL_read(SSL *s, void *buf, int num)
1030 int SSL_peek(SSL *s, void *buf, int num)
1043 int SSL_write(SSL *s, const void *buf, int num)
1109 long SSL_ctrl(SSL *s, int cmd, long larg, void *parg)
1167 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void))
1171 s->msg_callback = (void (*)
1173 const void *buf, size_t len, SSL *ssl,
1174 void *arg))(fp);
1187 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg)
1283 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
1287 ctx->msg_callback = (void (*)
1289 const void *buf, size_t len, SSL *ssl,
1290 void *arg))(fp);
1695 void SSL_get0_next_proto_negotiated(const SSL *s, const unsigned char **data,
1716 void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *ctx,
1721 void *arg), void *arg)
1737 void SSL_CTX_set_next_proto_select_cb(SSL_CTX *ctx,
1742 void *arg), void *arg)
1794 void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx,
1800 void *arg), void *arg)
1812 void SSL_get0_alpn_selected(const SSL *ssl, const unsigned char **data,
1869 * SSL_SESSION_hash and SSL_SESSION_cmp for void* types and casting each
2083 static void SSL_COMP_free(SSL_COMP *comp)
2090 static void ssl_buf_freelist_free(SSL3_BUF_FREELIST *list)
2101 void SSL_CTX_free(SSL_CTX *a)
2198 void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb)
2203 void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u)
2208 void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx,
2209 int (*cb) (X509_STORE_CTX *, void *),
2210 void *arg)
2216 void SSL_CTX_set_verify(SSL_CTX *ctx, int mode,
2223 void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth)
2228 void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb) (SSL *ssl, void *arg),
2229 void *arg)
2234 void SSL_set_cert_cb(SSL *s, int (*cb) (SSL *ssl, void *arg), void *arg)
2239 void ssl_set_cert_masks(CERT *c, const SSL_CIPHER *cipher)
2626 void ssl_update_cache(SSL *s, int mode)
2795 void SSL_set_accept_state(SSL *s)
2807 void SSL_set_connect_state(SSL *s)
2825 int ssl_undefined_void_function(void)
2989 void ssl_clear_cipher_ctx(SSL *s)
3053 const void *SSL_get_current_compression(SSL *s)
3058 const void *SSL_get_current_expansion(SSL *s)
3093 (void)BIO_reset(bbio);
3109 void ssl_free_wbio_buffer(SSL *s)
3126 void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode)
3136 void SSL_set_quiet_shutdown(SSL *s, int mode)
3146 void SSL_set_shutdown(SSL *s, int mode)
3235 void SSL_set_info_callback(SSL *ssl,
3236 void (*cb) (const SSL *ssl, int type, int val))
3245 void (*SSL_get_info_callback(const SSL *ssl)) (const SSL * /* ssl */ ,
3256 void SSL_set_state(SSL *ssl, int state)
3261 void SSL_set_verify_result(SSL *ssl, long arg)
3271 int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3278 int SSL_set_ex_data(SSL *s, int idx, void *arg)
3283 void *SSL_get_ex_data(const SSL *s, int idx)
3288 int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
3296 int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg)
3301 void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx)
3316 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store)
3335 void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, RSA *(*cb) (SSL *ssl,
3339 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3342 void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb) (SSL *ssl,
3346 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_RSA_CB, (void (*)(void))cb);
3373 void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
3377 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3380 void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*dh) (SSL *ssl, int is_export,
3383 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_DH_CB, (void (*)(void))dh);
3388 void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx,
3393 (void (*)(void))ecdh);
3396 void SSL_set_tmp_ecdh_callback(SSL *ssl,
3400 SSL_callback_ctrl(ssl, SSL_CTRL_SET_TMP_ECDH_CB, (void (*)(void))ecdh);
3460 void SSL_set_psk_client_callback(SSL *s,
3473 void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx,
3486 void SSL_set_psk_server_callback(SSL *s,
3496 void SSL_CTX_set_psk_server_callback(SSL_CTX *ctx,
3507 void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
3508 void (*cb) (int write_p, int version,
3509 int content_type, const void *buf,
3510 size_t len, SSL *ssl, void *arg))
3512 SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3515 void SSL_set_msg_callback(SSL *ssl,
3516 void (*cb) (int write_p, int version,
3517 int content_type, const void *buf,
3518 size_t len, SSL *ssl, void *arg))
3520 SSL_callback_ctrl(ssl, SSL_CTRL_SET_MSG_CALLBACK, (void (*)(void))cb);
3542 void ssl_clear_hash_ctx(EVP_MD_CTX **hash)
3550 void SSL_set_debug(SSL *s, int debug)