summaryrefslogtreecommitdiff
path: root/client/networksender.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/networksender.h')
-rw-r--r--client/networksender.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/client/networksender.h b/client/networksender.h
index 71ce7e7..589004b 100644
--- a/client/networksender.h
+++ b/client/networksender.h
@@ -37,6 +37,11 @@
#include "status.h"
+#include "socket.h"
+#include "network.h"
+
+#include <string>
+
class NetworkSender : public QThread
{
public:
@@ -52,8 +57,11 @@ public:
void getServerStatus(Status *status);
private:
- QString ip;
- unsigned short port;
+ Socket *socket;
+ Network *network;
+
+ std::string ip;
+ int port;
volatile bool running;