sslsniff.hpp 417 B

12345678910111213141516171819202122
  1. #ifndef __SSLSNIFF_HPP__
  2. #define __SSLSNIFF_HPP__
  3. #include <openssl/ssl.h>
  4. typedef struct {
  5. std::string updateLocation;
  6. std::string addonLocation;
  7. std::string addonHash;
  8. std::string chainLocation;
  9. std::string certificateLocation;
  10. std::string logLocation;
  11. std::string fingerprintList;
  12. bool denyOCSP;
  13. bool postOnly;
  14. bool targetedMode;
  15. int sslListenPort;
  16. int httpListenPort;
  17. } Options;
  18. #endif