1e71b7053SJung-uk Kim /* 2*b077aed3SPierre Pronchery * Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved. 3e71b7053SJung-uk Kim * 4*b077aed3SPierre Pronchery * Licensed under the Apache License 2.0 (the "License"). You may not use 5e71b7053SJung-uk Kim * this file except in compliance with the License. You can obtain a copy 6e71b7053SJung-uk Kim * in the file LICENSE in the source distribution or at 7e71b7053SJung-uk Kim * https://www.openssl.org/source/license.html 8e71b7053SJung-uk Kim */ 9e71b7053SJung-uk Kim 1017f01e99SJung-uk Kim #ifndef OSSL_INTERNAL_SSLCONF_H 1117f01e99SJung-uk Kim # define OSSL_INTERNAL_SSLCONF_H 12*b077aed3SPierre Pronchery # pragma once 13e71b7053SJung-uk Kim 14e71b7053SJung-uk Kim typedef struct ssl_conf_cmd_st SSL_CONF_CMD; 15e71b7053SJung-uk Kim 16e71b7053SJung-uk Kim const SSL_CONF_CMD *conf_ssl_get(size_t idx, const char **name, size_t *cnt); 17e71b7053SJung-uk Kim int conf_ssl_name_find(const char *name, size_t *idx); 18e71b7053SJung-uk Kim void conf_ssl_get_cmd(const SSL_CONF_CMD *cmd, size_t idx, char **cmdstr, 19e71b7053SJung-uk Kim char **arg); 20e71b7053SJung-uk Kim 21e71b7053SJung-uk Kim #endif 22