summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-09-26 17:43:58 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-09-26 17:43:58 (GMT)
commit24789b785b21f19c99d9c214ba1b0f5ece8fd09f (patch)
tree5b89b8f8f2771638ec841981be0b17743e28d7cd /Swiften/FileTransfer/IncomingJingleFileTransfer.h
parentb18472bb908a525f38974140c20e08492853855c (diff)
downloadswift-contrib-24789b785b21f19c99d9c214ba1b0f5ece8fd09f.zip
swift-contrib-24789b785b21f19c99d9c214ba1b0f5ece8fd09f.tar.bz2
And some more occurrences of uintmax_t.
Diffstat (limited to 'Swiften/FileTransfer/IncomingJingleFileTransfer.h')
-rw-r--r--Swiften/FileTransfer/IncomingJingleFileTransfer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Swiften/FileTransfer/IncomingJingleFileTransfer.h b/Swiften/FileTransfer/IncomingJingleFileTransfer.h
index 4ae0d1d..9e77de7 100644
--- a/Swiften/FileTransfer/IncomingJingleFileTransfer.h
+++ b/Swiften/FileTransfer/IncomingJingleFileTransfer.h
@@ -1,18 +1,19 @@
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <boost/shared_ptr.hpp>
+#include <boost/cstdint.hpp>
#include <Swiften/Base/IDGenerator.h>
#include <Swiften/Network/Timer.h>
#include <Swiften/Jingle/JingleSession.h>
#include <Swiften/Jingle/JingleContentID.h>
#include <Swiften/FileTransfer/IncomingFileTransfer.h>
#include <Swiften/FileTransfer/JingleTransport.h>
#include <Swiften/FileTransfer/JingleIncomingIBBTransport.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamClientSession.h>
@@ -98,19 +99,19 @@ namespace Swift {
private:
JID ourJID;
JingleSession::ref session;
IQRouter* router;
TimerFactory* timerFactory;
JingleContentPayload::ref initialContent;
State state;
JingleFileTransferDescription::ref description;
WriteBytestream::ref stream;
- uintmax_t receivedBytes;
+ boost::uintmax_t receivedBytes;
IncrementalBytestreamHashCalculator* hashCalculator;
Timer::ref waitOnHashTimer;
IDGenerator idGenerator;
RemoteJingleTransportCandidateSelector* candidateSelector;
LocalJingleTransportCandidateGenerator* candidateGenerator;
SOCKS5BytestreamRegistry* s5bRegistry;
SOCKS5BytestreamProxy* s5bProxy;
bool remoteTransportCandidateSelectFinished;