Lines Matching refs:info
278 "InfoType name for requesting specific info in genm, e.g. 'signKeyPairTypes'"},
521 "A single failure info bit number to include in server response, 0..26"},
632 CMP_print(bio_out, OSSL_CMP_LOG_INFO, "info", msg, a1, a2, a3)
1958 APP_HTTP_TLS_INFO *info;
1971 if ((info = OPENSSL_zalloc(sizeof(*info))) == NULL)
1973 (void)OSSL_CMP_CTX_set_http_cb_arg(ctx, info);
1974 info->ssl_ctx = setup_ssl_ctx(ctx, host, engine);
1975 info->server = host;
1977 if ((info->port = OPENSSL_strdup(server_port)) == NULL)
1980 info->use_proxy = proxy_host != NULL;
1981 info->timeout = OSSL_CMP_CTX_get_option(ctx, OSSL_CMP_OPT_MSG_TIMEOUT);
1983 if (info->ssl_ctx == NULL)
2778 status == OSSL_CMP_PKISTATUS_accepted ? "info" :
3061 APP_HTTP_TLS_INFO *info = OSSL_CMP_CTX_get_http_cb_arg(cmp_ctx);
3066 /* cannot free info already here, as it may be used indirectly by: */
3069 if (info != NULL) {
3070 OPENSSL_free((char *)info->server);
3071 OPENSSL_free((char *)info->port);
3072 APP_HTTP_TLS_INFO_free(info);