diff options
author | linuxdaemon <linuxdaemon@users.noreply.github.com> | 2019-01-03 20:07:01 -0600 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2019-01-03 21:07:01 -0500 |
commit | cf44418e1055376adb1e5d284f2a174b7751f39b (patch) | |
tree | 585c3dd7977453b6fa922e19f821efa05cfba655 /include | |
parent | 6fbb7cffe9954d1e5cc9038a18d4695ad2a19d2d (diff) |
Allow multiple IP addresses in extforward_ip separated by spaces
Diffstat (limited to 'include')
-rw-r--r-- | include/modules/httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules/httpd.h b/include/modules/httpd.h index 52a4c3fb1..0e9b1196e 100644 --- a/include/modules/httpd.h +++ b/include/modules/httpd.h @@ -141,7 +141,7 @@ class HTTPProvider : public ListenSocket, public Service unsigned short port; bool ssl; public: - Anope::string ext_ip; + std::vector<Anope::string> ext_ips; std::vector<Anope::string> ext_headers; HTTPProvider(Module *c, const Anope::string &n, const Anope::string &i, const unsigned short p, bool s) : ListenSocket(i, p, i.find(':') != Anope::string::npos), Service(c, "HTTPProvider", n), ip(i), port(p), ssl(s) { } |