qa.h 187 B

123456789101112131415161718
  1. #ifndef _QA_H_
  2. #define _QA_H_
  3. #include <openssl/bio.h>
  4. struct qa_conf {
  5. char *host;
  6. char *port;
  7. };
  8. BIO* bio_out;
  9. int qa_init(const struct qa_conf* args);
  10. #endif /* _QA_H_ */