mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-19 02:40:35 +03:00
Fix several minor issues on the seclang grammar
This commit is contained in:
@@ -37,15 +37,19 @@ class HttpsClient {
|
||||
public:
|
||||
HttpsClient()
|
||||
: content(""),
|
||||
error("") { }
|
||||
error(""),
|
||||
m_key("") { }
|
||||
|
||||
bool download(const std::string &uri);
|
||||
std::string content;
|
||||
|
||||
static size_t handle(char * data, size_t size, size_t nmemb, void * p);
|
||||
size_t handle_impl(char * data, size_t size, size_t nmemb);
|
||||
void setKey(const std::string& key);
|
||||
|
||||
std::string error;
|
||||
private:
|
||||
std::string m_key;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user