summaryrefslogtreecommitdiff
path: root/node/UdpSocket.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-05 17:44:39 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-08-05 17:44:39 -0400
commitc9c63074bbd7025c624ab4987c3a32fd2e925b6a (patch)
tree42e2f6eb22299f806c8583b58838564acefa2eea /node/UdpSocket.hpp
parent70f368fdc36cd91a3be0218fba7b2d4c6a8bc96f (diff)
downloadinfinitytier-c9c63074bbd7025c624ab4987c3a32fd2e925b6a.tar.gz
infinitytier-c9c63074bbd7025c624ab4987c3a32fd2e925b6a.zip
CLI communication now working.
Diffstat (limited to 'node/UdpSocket.hpp')
-rw-r--r--node/UdpSocket.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/UdpSocket.hpp b/node/UdpSocket.hpp
index 3f624387..fcf13e24 100644
--- a/node/UdpSocket.hpp
+++ b/node/UdpSocket.hpp
@@ -98,7 +98,7 @@ private:
void (*_packetHandler)(UdpSocket *,void *,const InetAddress &,const void *,unsigned int);
void *_arg;
int _localPort;
- int _sock;
+ volatile int _sock;
bool _v6;
Mutex _sendLock;
};