diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-05-08 10:18:33 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-05-08 10:18:33 +0200 |
commit | 28593ac70ea473e87f86d7bfd3488f17b6df276b (patch) | |
tree | 5b408c83501c5c9570ccb32a1db94ec0d939312c /plugins/fcgi/fcgi.cpp | |
parent | 9e635d9b19e72eefef082dd8071d3e4c9d6cfab1 (diff) |
Added FCGI unix domain sockets
Diffstat (limited to 'plugins/fcgi/fcgi.cpp')
-rw-r--r-- | plugins/fcgi/fcgi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fcgi/fcgi.cpp b/plugins/fcgi/fcgi.cpp index 4ff8253..c990a52 100644 --- a/plugins/fcgi/fcgi.cpp +++ b/plugins/fcgi/fcgi.cpp @@ -366,7 +366,7 @@ std::string fcgi_plugin::fcgiQuery(FCGIContext& context) std::lock_guard<std::mutex> socket_lock{socket->getMutex()}; - socket->close(); // TODO: Bug workaround: Keeping TCP socket open doesn't work for now + socket->close(); // TODO: Bug workaround: Keeping socket open doesn't work for now if (!socket->is_open()) { std::cout << "FCGI: Opening new socket" << std::endl; |