diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-04-01 21:56:13 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-04-01 21:56:13 +0200 |
commit | 26e7bb0b9a17a595d9935a1cae41b44504ad213e (patch) | |
tree | 904734f67485d62de90c35abbb522ad0e84cb862 /src/modules/m_httpd_acl.cpp | |
parent | 8584cc23f4bd6515acef65fc82a15dc1f53127b2 (diff) |
Whitespace and empty destructor removal, minor coding style changes
Diffstat (limited to 'src/modules/m_httpd_acl.cpp')
-rw-r--r-- | src/modules/m_httpd_acl.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/modules/m_httpd_acl.cpp b/src/modules/m_httpd_acl.cpp index 2694402bd..cddbce2f6 100644 --- a/src/modules/m_httpd_acl.cpp +++ b/src/modules/m_httpd_acl.cpp @@ -37,18 +37,14 @@ class HTTPACL const std::string &set_whitelist, const std::string &set_blacklist) : path(set_path), username(set_username), password(set_password), whitelist(set_whitelist), blacklist(set_blacklist) { } - - ~HTTPACL() { } }; class ModuleHTTPAccessList : public Module { - std::string stylesheet; std::vector<HTTPACL> acl_list; public: - void ReadConfig() { acl_list.clear(); @@ -222,10 +218,6 @@ class ModuleHTTPAccessList : public Module } } - virtual ~ModuleHTTPAccessList() - { - } - virtual Version GetVersion() { return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR); |