| 12345678910111213141516171819202122 | 
							- #ifndef _QA_H_
 
- #define _QA_H_
 
- #include <openssl/bio.h>
 
- 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_ */
 
 
  |