We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8049a commit c590687Copy full SHA for c590687
src/dds.net-connector-cpp.lib/connector/src/internal/inc/network_client.h
@@ -85,6 +85,7 @@ namespace dds {
85
virtual void connect(std::string ipv4, unsigned short tcpPort) override;
86
virtual void disconnect() override;
87
88
+
89
private:
90
Logger* logger;
91
BufferManager* bufferManager;
@@ -109,6 +110,10 @@ namespace dds {
109
110
bool isIOThreadStarted;
111
std::thread* ioThread;
112
113
+ bool createSocket();
114
+ void connectWithServer();
115
+ bool isDataAvailable(int timeoutSecond = 0, int timeoutMicrosecond = 100);
116
117
118
friend void ioThreadFunc(NetworkClient* client);
119
};
0 commit comments