2016-02-09 16:52:40 +00:00
|
|
|
/*
|
2018-09-11 12:22:14 +00:00
|
|
|
* Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2016-02-09 16:52:40 +00:00
|
|
|
*
|
2018-12-06 12:12:35 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:24:17 +00:00
|
|
|
* 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
|
2016-02-09 16:52:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HEADER_INTERNAL_CONF_H
|
2016-02-10 17:02:59 +00:00
|
|
|
# define HEADER_INTERNAL_CONF_H
|
2016-02-09 16:52:40 +00:00
|
|
|
|
|
|
|
#include <openssl/conf.h>
|
|
|
|
|
2019-01-01 07:53:24 +00:00
|
|
|
#define DEFAULT_CONF_MFLAGS \
|
|
|
|
(CONF_MFLAGS_DEFAULT_SECTION | \
|
|
|
|
CONF_MFLAGS_IGNORE_MISSING_FILE | \
|
|
|
|
CONF_MFLAGS_IGNORE_RETURN_CODES)
|
|
|
|
|
2016-02-10 14:55:48 +00:00
|
|
|
struct ossl_init_settings_st {
|
2019-01-01 07:53:24 +00:00
|
|
|
char *filename;
|
2016-06-13 01:49:40 +00:00
|
|
|
char *appname;
|
2019-01-01 07:53:24 +00:00
|
|
|
unsigned long flags;
|
2016-02-10 14:55:48 +00:00
|
|
|
};
|
|
|
|
|
2019-01-01 07:53:24 +00:00
|
|
|
int openssl_config_int(const OPENSSL_INIT_SETTINGS *);
|
2016-04-12 11:20:16 +00:00
|
|
|
void openssl_no_config_int(void);
|
|
|
|
void conf_modules_free_int(void);
|
2016-02-09 16:52:40 +00:00
|
|
|
|
|
|
|
#endif
|