X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fnet%2Fcommunicator.cpp;h=c473d53a7e06a5ead67d4e8ca76cdbd826cc478d;hb=2fbfce0c327c852d33c6713af646abf07b241108;hp=07a8494247758732e8e82597b621ae07b7f1fc21;hpb=c0b73c437d75a6fbf111969ea67c1d24586dbde7;p=libs%2Fnet.git diff --git a/source/net/communicator.cpp b/source/net/communicator.cpp index 07a8494..c473d53 100644 --- a/source/net/communicator.cpp +++ b/source/net/communicator.cpp @@ -11,7 +11,7 @@ using namespace Msp::Net; struct Handshake { - Msp::UInt64 hash; + uint64_t hash; }; @@ -31,11 +31,11 @@ HandshakeProtocol::HandshakeProtocol(): class HandshakeReceiver: public PacketReceiver { private: - Msp::UInt64 hash; + uint64_t hash; public: HandshakeReceiver(); - Msp::UInt64 get_hash() const { return hash; } + uint64_t get_hash() const { return hash; } virtual void receive(const Handshake &); };