diff options
| author | 2018-08-15 16:00:25 +0100 | |
|---|---|---|
| committer | 2018-08-15 16:00:25 +0100 | |
| commit | b2ac8cc0a6405946a388b80df3be21bc276a61f3 (patch) | |
| tree | 2e83bd5486a35b63766f0816a25f02dc1c4656c2 /src/modules/m_httpd.cpp | |
| parent | Rewrite m_httpd_config. (diff) | |
| parent | m_httpd: close the HTTP connection after serving a request. (diff) | |
| download | inspircd++-b2ac8cc0a6405946a388b80df3be21bc276a61f3.tar.gz inspircd++-b2ac8cc0a6405946a388b80df3be21bc276a61f3.tar.bz2 inspircd++-b2ac8cc0a6405946a388b80df3be21bc276a61f3.zip | |
Merge branch 'insp20' into master.
Diffstat (limited to 'src/modules/m_httpd.cpp')
| -rw-r--r-- | src/modules/m_httpd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp index 17f25203d..28177a7a2 100644 --- a/src/modules/m_httpd.cpp +++ b/src/modules/m_httpd.cpp @@ -349,6 +349,7 @@ class HttpServerSocket : public BufferedSocket, public Timer, public insp::intru { SendHeaders(n->str().length(), response, *hheaders); WriteData(n->str()); + Close(); } void AddToCull() |
