summaryrefslogtreecommitdiffstats
path: root/source/compiler-core
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler-core')
-rw-r--r--source/compiler-core/slang-json-rpc-connection.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/source/compiler-core/slang-json-rpc-connection.h b/source/compiler-core/slang-json-rpc-connection.h
index b566140ef..263baf799 100644
--- a/source/compiler-core/slang-json-rpc-connection.h
+++ b/source/compiler-core/slang-json-rpc-connection.h
@@ -130,8 +130,8 @@ public:
JSONRPCConnection():m_container(nullptr) {}
protected:
- RefPtr<Slang::Process> m_process; ///< Backing process (optional)
- RefPtr<Slang::HTTPPacketConnection> m_connection; ///< The underlying 'transport' connection, whilst HTTP currently doesn't have to be
+ RefPtr<Process> m_process; ///< Backing process (optional)
+ RefPtr<HTTPPacketConnection> m_connection; ///< The underlying 'transport' connection, whilst HTTP currently doesn't have to be
DiagnosticSink m_diagnosticSink; ///< Holds any diagnostics typically generated by parsing JSON, producing JSON from native types
@@ -140,10 +140,7 @@ protected:
JSONValue m_jsonRoot; ///< The root JSON value for the currently read message.
- /// Default timeout is 10 seconds
- Int m_timeOutInMs = 10 * 1000;
- /// Termination timeout
- Int m_terminationTimeOutInMs = 1 * 1000;
+ Int m_terminationTimeOutInMs = 1 * 1000; ///< Time to wait for termination response. Default is 1 second
};
// ---------------------------------------------------------------------------