Home
last modified time | relevance | path

Searched refs:larg (Results 1 – 20 of 20) sorted by relevance

/openssl/doc/man3/
H A DSSL_CTX_ctrl.pod11 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg);
14 long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg);
21 B<larg>, B<parg>, or B<fp> are evaluated. These functions should never
H A DBIO_set_callback.pod206 =item B<BIO_ctrl(BIO *b, int cmd, long larg, void *parg)>
208 callback_ex(b, BIO_CB_CTRL, parg, 0, cmd, larg, 1L, NULL)
212 callback(b, BIO_CB_CTRL, parg, cmd, larg, 1L)
216 callback_ex(b, BIO_CB_CTRL | BIO_CB_RETURN, parg, 0, cmd, larg, ret, NULL)
220 callback(b, BIO_CB_CTRL|BIO_CB_RETURN, parg, cmd, larg, ret)
H A DBIO_ctrl.pod18 long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
20 void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
21 long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg);
/openssl/crypto/dso/
H A Ddso_lib.c187 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) in DSO_ctrl() argument
201 dso->flags = (int)larg; in DSO_ctrl()
204 dso->flags |= (int)larg; in DSO_ctrl()
213 return dso->meth->dso_ctrl(dso, cmd, larg, parg); in DSO_ctrl()
H A Ddso_local.h88 long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg);
/openssl/ssl/
H A Ds3_lib.c3553 sc->cert->dh_tmp_auto = larg; in ssl3_ctrl()
3609 sc->ext.status_type = larg; in ssl3_ctrl()
3643 sc->ext.ocsp.resp_len = larg; in ssl3_ctrl()
3648 if (larg) in ssl3_ctrl()
3654 if (larg) in ssl3_ctrl()
3726 if (larg != -1) in ssl3_ctrl()
3905 ctx->cert->dh_tmp_auto = larg; in ssl3_ctx_ctrl()
3963 ctx->ext.status_type = larg; in ssl3_ctx_ctrl()
4010 ctx->srp_ctx.strength = larg; in ssl3_ctx_ctrl()
4081 if (larg) in ssl3_ctx_ctrl()
[all …]
H A Dd1_lib.c229 long dtls1_ctrl(SSL *ssl, int cmd, long larg, void *parg) in dtls1_ctrl() argument
249 if (larg < (long)dtls1_link_min_mtu()) in dtls1_ctrl()
251 s->d1->link_mtu = larg; in dtls1_ctrl()
260 if (larg < (long)dtls1_link_min_mtu() - DTLS1_MAX_MTU_OVERHEAD) in dtls1_ctrl()
262 s->d1->mtu = larg; in dtls1_ctrl()
263 return larg; in dtls1_ctrl()
265 ret = ssl3_ctrl(ssl, cmd, larg, parg); in dtls1_ctrl()
H A Dssl_lib.c2949 sc->mode |= larg; in ossl_ctrl_internal()
2965 if (larg < 0) in ossl_ctrl_internal()
2971 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) in ossl_ctrl_internal()
2983 if ((size_t)larg > sc->max_send_fragment || larg == 0) in ossl_ctrl_internal()
2988 if (larg < 1 || larg > SSL_MAX_PIPELINES) in ossl_ctrl_internal()
3082 ctx->read_ahead = larg; in SSL_CTX_ctrl()
3092 if (larg < 0) in SSL_CTX_ctrl()
3099 if (larg < 0) in SSL_CTX_ctrl()
3142 if (larg < 512 || larg > SSL3_RT_MAX_PLAIN_LENGTH) in SSL_CTX_ctrl()
3149 if ((size_t)larg > ctx->max_send_fragment || larg == 0) in SSL_CTX_ctrl()
[all …]
H A Dssl_local.h432 long (*ssl_ctrl) (SSL *s, int cmd, long larg, void *parg);
433 long (*ssl_ctx_ctrl) (SSL_CTX *ctx, int cmd, long larg, void *parg);
2625 __owur long ssl3_ctrl(SSL *s, int cmd, long larg, void *parg);
2626 __owur long ssl3_ctx_ctrl(SSL_CTX *s, int cmd, long larg, void *parg);
2697 long dtls1_ctrl(SSL *s, int cmd, long larg, void *parg);
3001 long ossl_ctrl_internal(SSL *s, int cmd, long larg, void *parg, int no_quic);
/openssl/crypto/bio/
H A Dossl_core_bio.c114 long ossl_core_bio_ctrl(OSSL_CORE_BIO *cb, int cmd, long larg, void *parg) in ossl_core_bio_ctrl() argument
116 return BIO_ctrl(cb->bio, cmd, larg, parg); in ossl_core_bio_ctrl()
H A Dbio_lib.c642 long BIO_int_ctrl(BIO *b, int cmd, long larg, int iarg) in BIO_int_ctrl() argument
647 return BIO_ctrl(b, cmd, larg, (char *)&i); in BIO_int_ctrl()
650 void *BIO_ptr_ctrl(BIO *b, int cmd, long larg) in BIO_ptr_ctrl() argument
654 if (BIO_ctrl(b, cmd, larg, (char *)&p) <= 0) in BIO_ptr_ctrl()
660 long BIO_ctrl(BIO *b, int cmd, long larg, void *parg) in BIO_ctrl() argument
672 ret = bio_call_callback(b, BIO_CB_CTRL, parg, 0, cmd, larg, 1L, NULL); in BIO_ctrl()
677 ret = b->method->ctrl(b, cmd, larg, parg); in BIO_ctrl()
681 larg, ret, NULL); in BIO_ctrl()
/openssl/include/internal/
H A Ddso.h90 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg);
H A Dquic_ssl.h34 __owur long ossl_quic_ctrl(SSL *s, int cmd, long larg, void *parg);
35 __owur long ossl_quic_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg);
H A Dbio.h94 long ossl_core_bio_ctrl(OSSL_CORE_BIO *cb, int cmd, long larg, void *parg);
/openssl/ssl/quic/
H A Dquic_impl.c1347 long ossl_quic_ctrl(SSL *s, int cmd, long larg, void *parg) in ossl_quic_ctrl() argument
1358 ctx.qc->default_ssl_mode |= (uint32_t)larg; in ossl_quic_ctrl()
1367 larg &= ~SSL_MODE_ENABLE_PARTIAL_WRITE; in ossl_quic_ctrl()
1369 ctx.xso->ssl_mode |= (uint32_t)larg; in ossl_quic_ctrl()
1376 ctx.qc->default_ssl_mode &= ~(uint32_t)larg; in ossl_quic_ctrl()
1379 ctx.xso->ssl_mode &= ~(uint32_t)larg; in ossl_quic_ctrl()
1388 return SSL_ctrl(ctx.qc->tls, cmd, larg, parg); in ossl_quic_ctrl()
1420 return ossl_ctrl_internal(&ctx.qc->ssl, cmd, larg, parg, /*no_quic=*/1); in ossl_quic_ctrl()
3929 long ossl_quic_ctx_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) in ossl_quic_ctx_ctrl() argument
3933 return ssl3_ctx_ctrl(ctx, cmd, larg, parg); in ossl_quic_ctx_ctrl()
/openssl/crypto/pkcs7/
H A Dpk7_lib.c20 long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg) in PKCS7_ctrl() argument
31 ret = p7->detached = (int)larg; in PKCS7_ctrl()
/openssl/test/helpers/
H A Dquictestlib.c1164 static long pcipher_ctrl(BIO *b, int cmd, long larg, void *parg) in pcipher_ctrl() argument
1171 return BIO_ctrl(next, cmd, larg, parg); in pcipher_ctrl()
/openssl/include/openssl/
H A Dpkcs7.h.in266 long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg);
H A Dbio.h.in729 long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
731 void *BIO_ptr_ctrl(BIO *bp, int cmd, long larg);
732 long BIO_int_ctrl(BIO *bp, int cmd, long larg, int iarg);
H A Dssl.h.in1951 long SSL_ctrl(SSL *ssl, int cmd, long larg, void *parg);
1953 long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg);

Completed in 140 milliseconds