summaryrefslogtreecommitdiffstats
path: root/Source/cmPipeConnection.h
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2017-02-25 22:06:34 (GMT)
committerJustin Berger <j.david.berger@gmail.com>2017-07-11 00:12:05 (GMT)
commitcf0ae55dcb9224b92a95166f17452c56ba5b6213 (patch)
tree95f53f8e5aee010f5cd4cb90871bac18216d5402 /Source/cmPipeConnection.h
parent5ddfb6a472539c3a01a6f8e6d8fa1cb1013fc4f9 (diff)
downloadCMake-cf0ae55dcb9224b92a95166f17452c56ba5b6213.zip
CMake-cf0ae55dcb9224b92a95166f17452c56ba5b6213.tar.gz
CMake-cf0ae55dcb9224b92a95166f17452c56ba5b6213.tar.bz2
server: Add support for connections that aren't event based
Diffstat (limited to 'Source/cmPipeConnection.h')
-rw-r--r--Source/cmPipeConnection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmPipeConnection.h b/Source/cmPipeConnection.h
index 3d3d52c..fea85b5 100644
--- a/Source/cmPipeConnection.h
+++ b/Source/cmPipeConnection.h
@@ -9,7 +9,7 @@
#include <string>
-class cmPipeConnection : public cmConnection
+class cmPipeConnection : public cmEventBasedConnection
{
public:
cmPipeConnection(const std::string& name,
@@ -17,7 +17,7 @@ public:
bool OnServeStart(std::string* pString) override;
- bool OnServerShuttingDown() override;
+ bool OnConnectionShuttingDown() override;
void Connect(uv_stream_t* server) override;