#ifndef _QA_H_ #define _QA_H_ #include struct qa_conf { enum sources { NONE, LOCAL, REMOTE } src_type; char *src; }; extern BIO* bio_out; extern BIO* bio_err; int qa_init(const struct qa_conf* args); X509* get_local_cert(const char *src); #endif /* _QA_H_ */