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