Cmall cleanups and fixes.

This commit is contained in:
JoelKatz
2012-09-07 15:06:25 -07:00
parent 90fb093402
commit 390e628f10
8 changed files with 14 additions and 15 deletions

View File

@@ -9,12 +9,14 @@
#include <boost/thread/mutex.hpp>
#include <boost/asio.hpp>
#include "types.h"
class SNTPQuery
{
public:
bool mReceivedReply;
time_t mLocalTimeSent;
int mQueryNonce;
uint32 mQueryNonce;
SNTPQuery(time_t j = (time_t) -1) : mReceivedReply(false), mLocalTimeSent(j) { ; }
};