webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
#include <openssl/conf.h>
#include <string.h>
#include <ctype.h>
#include <openssl/bio.h>
#include <openssl/buf.h>
#include <openssl/err.h>
#include <openssl/mem.h>
#include "conf_def.h"
#include "internal.h"
Macros | |
#define | scan_esc(conf, p) (((IS_EOF((conf), (p)[1])) ? ((p) + 1) : ((p) + 2))) |
Functions | |
CONF * | NCONF_new (void *method) |
CONF_VALUE * | CONF_VALUE_new (void) |
void | NCONF_free (CONF *conf) |
STACK_OF (CONF_VALUE) | |
const char * | NCONF_get_string (const CONF *conf, const char *section, const char *name) |
int | NCONF_load (CONF *conf, const char *filename, long *out_error_line) |
int | NCONF_load_bio (CONF *conf, BIO *bio, long *out_error_line) |
int | CONF_parse_list (const char *list, char sep, int remove_whitespace, int(*list_cb)(const char *elem, int len, void *usr), void *arg) |
int | CONF_modules_load_file (CONF_MUST_BE_NULL *filename, const char *appname, unsigned long flags) |
void | CONF_modules_free (void) |
void | OPENSSL_config (CONF_MUST_BE_NULL *config_name) |
void | OPENSSL_no_config (void) |
int CONF_modules_load_file | ( | CONF_MUST_BE_NULL * | filename, |
const char * | appname, | ||
unsigned long | flags | ||
) |
int CONF_parse_list | ( | const char * | list, |
char | sep, | ||
int | remove_whitespace, | ||
int(*)(const char *elem, int len, void *usr) | list_cb, | ||
void * | arg | ||
) |
CONF_VALUE* CONF_VALUE_new | ( | void | ) |
const char* NCONF_get_string | ( | const CONF * | conf, |
const char * | section, | ||
const char * | name | ||
) |
int NCONF_load | ( | CONF * | conf, |
const char * | filename, | ||
long * | out_error_line | ||
) |
void OPENSSL_config | ( | CONF_MUST_BE_NULL * | config_name | ) |
STACK_OF | ( | CONF_VALUE | ) |