Home
last modified time | relevance | path

Searched refs:cctx (Results 1 – 25 of 119) sorted by relevance

12345

/src/crypto/openssl/ssl/
H A Dssl_conf.c111 static void ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags, in ssl_set_option() argument
116 if (cctx->poptions == NULL) in ssl_set_option()
123 pflags = cctx->pcert_flags; in ssl_set_option()
127 pflags = cctx->pvfy_flags; in ssl_set_option()
132 *cctx->poptions |= option_value; in ssl_set_option()
134 *cctx->poptions &= ~option_value; in ssl_set_option()
146 static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl, in ssl_match_option() argument
150 if (!(cctx->flags & tbl->name_flags & SSL_TFLAG_BOTH)) in ssl_match_option()
158 ssl_set_option(cctx, tbl->name_flags, tbl->option_value, onoff); in ssl_match_option()
164 SSL_CONF_CTX *cctx = usr; in ssl_set_option_list() local
[all …]
H A Dssl_mcnf.c25 SSL_CONF_CTX *cctx = NULL; in ssl_do_config() local
49 cctx = SSL_CONF_CTX_new(); in ssl_do_config()
50 if (cctx == NULL) { in ssl_do_config()
60 SSL_CONF_CTX_set_ssl(cctx, s); in ssl_do_config()
64 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in ssl_do_config()
74 SSL_CONF_CTX_set_flags(cctx, flags); in ssl_do_config()
82 rv = SSL_CONF_cmd(cctx, cmdstr, arg); in ssl_do_config()
86 if (!SSL_CONF_CTX_finish(cctx)) in ssl_do_config()
90 SSL_CONF_CTX_free(cctx); in ssl_do_config()
/src/crypto/openssl/crypto/evp/
H A De_aria.c513 EVP_ARIA_CCM_CTX *cctx = EVP_C_DATA(EVP_ARIA_CCM_CTX, ctx); in aria_ccm_init_key() local
521 &cctx->ks.ks); in aria_ccm_init_key()
522 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aria_ccm_init_key()
523 &cctx->ks, (block128_f)ossl_aria_encrypt); in aria_ccm_init_key()
528 cctx->str = NULL; in aria_ccm_init_key()
529 cctx->key_set = 1; in aria_ccm_init_key()
532 memcpy(ctx->iv, iv, 15 - cctx->L); in aria_ccm_init_key()
533 cctx->iv_set = 1; in aria_ccm_init_key()
540 EVP_ARIA_CCM_CTX *cctx = EVP_C_DATA(EVP_ARIA_CCM_CTX, c); in aria_ccm_ctrl() local
544 cctx->key_set = 0; in aria_ccm_ctrl()
[all …]
H A De_aes.c328 EVP_AES_CCM_CTX *cctx = EVP_C_DATA(EVP_AES_CCM_CTX, ctx); in aesni_ccm_init_key() local
340 aesni_set_encrypt_key(key, keylen, &cctx->ks.ks); in aesni_ccm_init_key()
341 CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L, in aesni_ccm_init_key()
342 &cctx->ks, (block128_f)aesni_encrypt); in aesni_ccm_init_key()
343cctx->str = enc ? (ccm128_f)aesni_ccm64_encrypt_blocks : (ccm128_f)aesni_ccm64_decrypt_blocks; in aesni_ccm_init_key()
344 cctx->key_set = 1; in aesni_ccm_init_key()
347 memcpy(ctx->iv, iv, 15 - cctx->L); in aesni_ccm_init_key()
348 cctx->iv_set = 1; in aesni_ccm_init_key()
714 EVP_AES_CCM_CTX *cctx = EVP_C_DATA(EVP_AES_CCM_CTX, ctx); in aes_t4_ccm_init_key() local
726 aes_t4_set_encrypt_key(key, bits, &cctx->ks.ks); in aes_t4_ccm_init_key()
[all …]
/src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c103 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) in ZSTD_initCCtx() argument
105 assert(cctx != NULL); in ZSTD_initCCtx()
106 ZSTD_memset(cctx, 0, sizeof(*cctx)); in ZSTD_initCCtx()
107 cctx->customMem = memManager; in ZSTD_initCCtx()
108 cctx->bmi2 = ZSTD_cpuSupportsBmi2(); in ZSTD_initCCtx()
109 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx()
120 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced() local
121 if (!cctx) return NULL; in ZSTD_createCCtx_advanced()
122 ZSTD_initCCtx(cctx, customMem); in ZSTD_createCCtx_advanced()
123 return cctx; in ZSTD_createCCtx_advanced()
[all …]
/src/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c97 static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) in ZSTD_initCCtx() argument
99 assert(cctx != NULL); in ZSTD_initCCtx()
100 ZSTD_memset(cctx, 0, sizeof(*cctx)); in ZSTD_initCCtx()
101 cctx->customMem = memManager; in ZSTD_initCCtx()
102 cctx->bmi2 = ZSTD_cpuSupportsBmi2(); in ZSTD_initCCtx()
103 { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); in ZSTD_initCCtx()
114 { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_customMalloc(sizeof(ZSTD_CCtx), customMem); in ZSTD_createCCtx_advanced() local
115 if (!cctx) return NULL; in ZSTD_createCCtx_advanced()
116 ZSTD_initCCtx(cctx, customMem); in ZSTD_createCCtx_advanced()
117 return cctx; in ZSTD_createCCtx_advanced()
[all …]
/src/crypto/openssl/crypto/cmac/
H A Dcmac.c27 EVP_CIPHER_CTX *cctx; member
60 ctx->cctx = EVP_CIPHER_CTX_new(); in CMAC_CTX_new()
61 if (ctx->cctx == NULL) { in CMAC_CTX_new()
71 EVP_CIPHER_CTX_reset(ctx->cctx); in CMAC_CTX_cleanup()
81 return ctx->cctx; in CMAC_CTX_get0_cipher_ctx()
89 EVP_CIPHER_CTX_free(ctx->cctx); in CMAC_CTX_free()
99 if ((bl = EVP_CIPHER_CTX_get_block_size(in->cctx)) == 0) in CMAC_CTX_copy()
101 if (!EVP_CIPHER_CTX_copy(out->cctx, in->cctx)) in CMAC_CTX_copy()
123 if (!EVP_EncryptInit_ex2(ctx->cctx, NULL, NULL, zero_iv, param)) in ossl_cmac_init()
125 block_len = EVP_CIPHER_CTX_get_block_size(ctx->cctx); in ossl_cmac_init()
[all …]
/src/crypto/openssl/test/
H A Ddtlstest.c72 SSL_CTX *sctx = NULL, *cctx = NULL; in test_dtls_unprocessed() local
82 &sctx, &cctx, cert, privkey))) in test_dtls_unprocessed()
86 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "AES128-SHA"))) in test_dtls_unprocessed()
91 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_unprocessed()
101 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl1, &clientssl1, in test_dtls_unprocessed()
140 SSL_CTX_free(cctx); in test_dtls_unprocessed()
188 SSL_CTX *sctx = NULL, *cctx = NULL; in test_dtls_drop_records() local
200 &sctx, &cctx, cert, privkey))) in test_dtls_drop_records()
206 || !TEST_true(SSL_CTX_set_cipher_list(cctx, in test_dtls_drop_records()
220 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records()
[all …]
H A Dsslapitest.c360 SSL_CTX *cctx = NULL, *sctx = NULL; in test_keylog() local
376 &sctx, &cctx, cert, privkey))) in test_keylog()
380 SSL_CTX_set_options(cctx, SSL_OP_NO_TLSv1_3); in test_keylog()
384 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, "RSA"))) in test_keylog()
387 if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) == NULL) in test_keylog()
390 SSL_CTX_set_keylog_callback(cctx, client_keylog_callback); in test_keylog()
391 if (!TEST_true(SSL_CTX_get_keylog_callback(cctx) in test_keylog()
400 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, in test_keylog()
432 SSL_CTX_free(cctx); in test_keylog()
441 SSL_CTX *cctx = NULL, *sctx = NULL; in test_keylog_no_master_key() local
[all …]
H A Dquicapitest.c52 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_quic_write_read() local
69 if (!TEST_ptr(cctx) in test_quic_write_read()
70 || !TEST_true(qtest_create_quic_objects(libctx, cctx, sctx, in test_quic_write_read()
202 SSL_CTX_free(cctx); in test_quic_write_read()
214 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_fin_only_blocking() local
228 if (!TEST_ptr(cctx) in test_fin_only_blocking()
229 || !TEST_true(qtest_create_quic_objects(libctx, cctx, sctx, in test_fin_only_blocking()
278 SSL_CTX_free(cctx); in test_fin_only_blocking()
345 SSL_CTX *cctx = SSL_CTX_new_ex(libctx, NULL, OSSL_QUIC_client_method()); in test_cipher_find() local
364 if (!TEST_ptr(cctx)) in test_cipher_find()
[all …]
H A Dquicfaultstest.c26 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_basic() local
34 if (!TEST_ptr(cctx)) in test_basic()
37 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0, in test_basic()
63 SSL_CTX_free(cctx); in test_basic()
94 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_unknown_frame() local
104 if (!TEST_ptr(cctx)) in test_unknown_frame()
107 if (!TEST_true(qtest_create_quic_objects(NULL, cctx, NULL, cert, privkey, 0, in test_unknown_frame()
156 SSL_CTX_free(cctx); in test_unknown_frame()
180 SSL_CTX *cctx = SSL_CTX_new(OSSL_QUIC_client_method()); in test_drop_extensions() local
186 if (!TEST_ptr(cctx)) in test_drop_extensions()
[all …]
/src/crypto/heimdal/lib/gssapi/
H A Dtest_context.c114 gss_ctx_id_t *sctx, gss_ctx_id_t *cctx, in loop() argument
161 cctx, in loop()
246 wrapunwrap(gss_ctx_id_t cctx, gss_ctx_id_t sctx, int flags, gss_OID mechoid) in wrapunwrap() argument
256 maj_stat = gss_wrap(&min_stat, cctx, flags, 0, &input_token, in wrapunwrap()
283 wrapunwrap_iov(gss_ctx_id_t cctx, gss_ctx_id_t sctx, int flags, gss_OID mechoid) in wrapunwrap_iov() argument
358 maj_stat = gss_wrap_iov(&min_stat, cctx, dce_style_flag || flags & USE_CONF, 0, &conf_state, in wrapunwrap_iov()
419 getverifymic(gss_ctx_id_t cctx, gss_ctx_id_t sctx, gss_OID mechoid) in getverifymic() argument
428 maj_stat = gss_get_mic(&min_stat, cctx, 0, &input_token, in getverifymic()
506 gss_ctx_id_t cctx, sctx; in main() local
520 cctx = sctx = GSS_C_NO_CONTEXT; in main()
[all …]
/src/usr.bin/mkuzip/
H A Dmkuz_zstd.c49 ZSTD_CCtx *cctx; in mkuz_zstd_init() local
60 cctx = ZSTD_createCCtx(); in mkuz_zstd_init()
61 if (cctx == NULL) in mkuz_zstd_init()
64 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, in mkuz_zstd_init()
70 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1); in mkuz_zstd_init()
75 return (cctx); in mkuz_zstd_init()
81 ZSTD_CCtx *cctx; in mkuz_zstd_compress() local
84 cctx = p; in mkuz_zstd_compress()
86 rc = ZSTD_compress2(cctx, oblk->data, oblk->alen, iblk->data, in mkuz_zstd_compress()
/src/contrib/ofed/libbnxtre/
H A Dmain.c114 bool _is_chip_gen_p5(struct bnxt_re_chip_ctx *cctx) in _is_chip_gen_p5() argument
116 return (cctx->chip_num == CHIP_NUM_57508 || in _is_chip_gen_p5()
117 cctx->chip_num == CHIP_NUM_57504 || in _is_chip_gen_p5()
118 cctx->chip_num == CHIP_NUM_57502); in _is_chip_gen_p5()
121 bool _is_chip_a0(struct bnxt_re_chip_ctx *cctx) in _is_chip_a0() argument
123 return !cctx->chip_rev; in _is_chip_a0()
126 bool _is_chip_thor2(struct bnxt_re_chip_ctx *cctx) in _is_chip_thor2() argument
128 return (cctx->chip_num == CHIP_NUM_58818 || in _is_chip_thor2()
129 cctx->chip_num == CHIP_NUM_57608); in _is_chip_thor2()
132 bool _is_chip_gen_p5_thor2(struct bnxt_re_chip_ctx *cctx) in _is_chip_gen_p5_thor2() argument
[all …]
/src/sys/dev/bnxt/bnxt_re/
H A Dqplib_res.h72 #define BNXT_RE_PPP_ENABLED(cctx) ((cctx)->modes.db_push_mode ==\ argument
115 static inline bool _is_chip_p7(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_p7() argument
117 return _is_chip_num_p7(cctx->chip_num); in _is_chip_p7()
121 static inline bool _is_chip_gen_p5(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_gen_p5() argument
123 return (cctx->chip_num == CHIP_NUM_57508 || in _is_chip_gen_p5()
124 cctx->chip_num == CHIP_NUM_57504 || in _is_chip_gen_p5()
125 cctx->chip_num == CHIP_NUM_57502); in _is_chip_gen_p5()
128 static inline bool _is_chip_gen_p5_p7(struct bnxt_qplib_chip_ctx *cctx) in _is_chip_gen_p5_p7() argument
130 return (_is_chip_gen_p5(cctx) || _is_chip_p7(cctx)); in _is_chip_gen_p5_p7()
133 static inline bool _is_wqe_mode_variable(struct bnxt_qplib_chip_ctx *cctx) in _is_wqe_mode_variable() argument
[all …]
/src/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h283 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* compatible with NULL pointer */
293 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
571 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value);
588 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize);
610 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
624 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx,
824 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx,
1013 ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx,
1109 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize);
1123 ZSTDLIB_API size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict);
[all …]
/src/crypto/openssl/demos/bio/
H A Dclient-conf.c21 SSL_CONF_CTX *cctx = NULL; in main() local
48 cctx = SSL_CONF_CTX_new(); in main()
49 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT); in main()
50 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_FILE); in main()
51 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main()
54 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main()
71 if (!SSL_CONF_CTX_finish(cctx)) { in main()
115 SSL_CONF_CTX_free(cctx); in main()
H A Dserver-conf.c31 SSL_CONF_CTX *cctx = NULL; in main() local
58 cctx = SSL_CONF_CTX_new(); in main()
59 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER); in main()
60 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CERTIFICATE); in main()
61 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_FILE); in main()
62 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main()
66 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main()
83 if (!SSL_CONF_CTX_finish(cctx)) { in main()
H A Dclient-arg.c20 SSL_CONF_CTX *cctx; in main() local
28 cctx = SSL_CONF_CTX_new(); in main()
29 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CLIENT); in main()
30 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main()
34 rv = SSL_CONF_cmd_argv(cctx, &nargs, &args); in main()
63 if (!SSL_CONF_CTX_finish(cctx)) { in main()
106 SSL_CONF_CTX_free(cctx); in main()
H A Dserver-arg.c29 SSL_CONF_CTX *cctx; in main() local
38 cctx = SSL_CONF_CTX_new(); in main()
39 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_SERVER); in main()
40 SSL_CONF_CTX_set_flags(cctx, SSL_CONF_FLAG_CERTIFICATE); in main()
41 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main()
45 rv = SSL_CONF_cmd_argv(cctx, &nargs, &args); in main()
74 if (!SSL_CONF_CTX_finish(cctx)) { in main()
/src/sys/contrib/zstd/lib/
H A Dzstd.h204 ZSTDLIB_API size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx); /* accept NULL pointer */
214 ZSTDLIB_API size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx,
471 ZSTDLIB_API size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value);
488 ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize);
510 ZSTDLIB_API size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset);
522 ZSTDLIB_API size_t ZSTD_compress2( ZSTD_CCtx* cctx,
713 ZSTDLIB_API size_t ZSTD_compressStream2( ZSTD_CCtx* cctx,
871 ZSTDLIB_API size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx,
960 ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize);
974 ZSTDLIB_API size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict);
[all …]
/src/sys/contrib/zstd/examples/
H A Dmultiple_streaming_compression.c28 ZSTD_CCtx* cctx; member
38 ress.cctx = ZSTD_createCCtx(); in createResources_orDie()
39 CHECK(ress.cctx != NULL, "ZSTD_createCCtx() failed!"); in createResources_orDie()
45 CHECK_ZSTD( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_compressionLevel, cLevel) ); in createResources_orDie()
46 CHECK_ZSTD( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_checksumFlag, 1) ); in createResources_orDie()
52 ZSTD_freeCCtx(ress.cctx); in freeResources()
67 CHECK_ZSTD( ZSTD_CCtx_reset(ress.cctx, ZSTD_reset_session_only) ); in compressFile_orDie()
82 size_t const remaining = ZSTD_compressStream2(ress.cctx, &output, &input, mode); in compressFile_orDie()
H A Dstreaming_compression.c37 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in compressFile_orDie() local
38 CHECK(cctx != NULL, "ZSTD_createCCtx() failed!"); in compressFile_orDie()
43 CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel, cLevel) ); in compressFile_orDie()
44 CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1) ); in compressFile_orDie()
45 ZSTD_CCtx_setParameter(cctx, ZSTD_c_nbWorkers, nbThreads); in compressFile_orDie()
72 size_t const remaining = ZSTD_compressStream2(cctx, &output , &input, mode); in compressFile_orDie()
89 ZSTD_freeCCtx(cctx); in compressFile_orDie()
H A Dstreaming_memory_usage.c84 ZSTD_CCtx* const cctx = ZSTD_createCCtx(); in main() local
85 CHECK(cctx != NULL, "ZSTD_createCCtx() failed!"); in main()
86 CHECK_ZSTD( ZSTD_CCtx_setParametersUsingCCtxParams(cctx, cctxParams) ); in main()
91 CHECK_ZSTD( ZSTD_compressStream(cctx, &outBuff, &inBuff) ); in main()
92 size_t const remaining = ZSTD_endStream(cctx, &outBuff); in main()
116 size_t const cstreamSize = ZSTD_sizeof_CStream(cctx); in main()
132 ZSTD_freeCCtx(cctx); in main()
/src/crypto/openssh/
H A Dmux.c336 struct mux_session_confirm_ctx *cctx; in mux_master_process_new_session() local
342 cctx = xcalloc(1, sizeof(*cctx)); in mux_master_process_new_session()
343 cctx->term = NULL; in mux_master_process_new_session()
344 cctx->rid = rid; in mux_master_process_new_session()
346 cctx->env = NULL; in mux_master_process_new_session()
349 (r = sshbuf_get_u32(m, &cctx->want_tty)) != 0 || in mux_master_process_new_session()
350 (r = sshbuf_get_u32(m, &cctx->want_x_fwd)) != 0 || in mux_master_process_new_session()
351 (r = sshbuf_get_u32(m, &cctx->want_agent_fwd)) != 0 || in mux_master_process_new_session()
352 (r = sshbuf_get_u32(m, &cctx->want_subsys)) != 0 || in mux_master_process_new_session()
354 (r = sshbuf_get_cstring(m, &cctx->term, NULL)) != 0 || in mux_master_process_new_session()
[all …]

12345