31 lines
798 B
C
Raw Normal View History

2018-09-04 21:04:43 +02:00
/*
2019-05-09 09:34:00 +02:00
* Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
2018-09-04 21:04:43 +02:00
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
2020-03-19 15:35:16 +01:00
#ifndef OSSL_INTERNAL_CONF_H
# define OSSL_INTERNAL_CONF_H
2018-09-04 21:04:43 +02:00
#include <openssl/conf.h>
2019-05-09 09:34:00 +02:00
#define DEFAULT_CONF_MFLAGS \
(CONF_MFLAGS_DEFAULT_SECTION | \
CONF_MFLAGS_IGNORE_MISSING_FILE | \
CONF_MFLAGS_IGNORE_RETURN_CODES)
2018-09-04 21:04:43 +02:00
struct ossl_init_settings_st {
2019-05-09 09:34:00 +02:00
char *filename;
2018-09-04 21:04:43 +02:00
char *appname;
2019-05-09 09:34:00 +02:00
unsigned long flags;
2018-09-04 21:04:43 +02:00
};
2019-05-09 09:34:00 +02:00
int openssl_config_int(const OPENSSL_INIT_SETTINGS *);
2018-09-04 21:04:43 +02:00
void openssl_no_config_int(void);
void conf_modules_free_int(void);
#endif