2016-02-09 16:52:40 +00:00
|
|
|
/*
|
2016-05-17 18:24:17 +00:00
|
|
|
* Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
|
2016-02-09 16:52:40 +00:00
|
|
|
*
|
2016-05-17 18:24:17 +00: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
|
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>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-02-10 14:55:48 +00:00
|
|
|
|
|
|
|
struct ossl_init_settings_st {
|
2016-06-13 01:49:40 +00:00
|
|
|
char *appname;
|
2016-02-10 14:55:48 +00:00
|
|
|
};
|
|
|
|
|
2016-06-13 01:49:40 +00:00
|
|
|
void openssl_config_int(const char *appname);
|
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
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|