summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2016-06-29 15:06:30 (GMT)
committerTobias Markmann <tm@ayena.de>2016-06-29 15:11:43 (GMT)
commit82dd5a11131b3bd3641316b87aa279d806c970b0 (patch)
tree659ac3d0e1520a1fbe1265500e0b73c8597a00a8 /Swiften/FileTransfer/SConscript
parent09c22ea2ff3ff40b9b298475d47809b4bd373216 (diff)
downloadswift-82dd5a11131b3bd3641316b87aa279d806c970b0.zip
swift-82dd5a11131b3bd3641316b87aa279d806c970b0.tar.bz2
Fail file-transfer if proxy session of candidate does not exist
Test-Information: Tested with a buggy XMPP client that calculates S5B DSTADDR in a non-standard way. Previously this lead to Swift crashing on an assert. Now Swift just indicates file-transfer failure to the other party. Change-Id: I4ed47f9647a1851f2a5101657bcd569c106d638f
Diffstat (limited to 'Swiften/FileTransfer/SConscript')
-rw-r--r--Swiften/FileTransfer/SConscript61
1 files changed, 31 insertions, 30 deletions
diff --git a/Swiften/FileTransfer/SConscript b/Swiften/FileTransfer/SConscript
index 83f229b..d49b596 100644
--- a/Swiften/FileTransfer/SConscript
+++ b/Swiften/FileTransfer/SConscript
@@ -2,51 +2,52 @@ Import("swiften_env", "env")
sources = [
"ByteArrayReadBytestream.cpp",
- "OutgoingFileTransfer.cpp",
- "OutgoingJingleFileTransfer.cpp",
- "OutgoingFileTransferManager.cpp",
- "IncomingFileTransfer.cpp",
- "IncomingJingleFileTransfer.cpp",
- "IncomingFileTransferManager.cpp",
- "JingleFileTransfer.cpp",
- "FileTransferOptions.cpp",
- "FileTransferTransporter.cpp",
- "FileTransferTransporterFactory.cpp",
"DefaultFileTransferTransporter.cpp",
"DefaultFileTransferTransporterFactory.cpp",
- "RemoteJingleTransportCandidateSelector.cpp",
- "LocalJingleTransportCandidateGenerator.cpp",
- "ReadBytestream.cpp",
- "WriteBytestream.cpp",
+ "FailingTransportSession.cpp",
"FileReadBytestream.cpp",
- "FileWriteBytestream.cpp",
"FileTransfer.cpp",
- "TransportSession.cpp",
- "IBBSendTransportSession.cpp",
+ "FileTransferManager.cpp",
+ "FileTransferManagerImpl.cpp",
+ "FileTransferOptions.cpp",
+ "FileTransferTransporter.cpp",
+ "FileTransferTransporterFactory.cpp",
+ "FileWriteBytestream.cpp",
+ "IBBReceiveSession.cpp",
"IBBReceiveTransportSession.cpp",
+ "IBBSendSession.cpp",
+ "IBBSendTransportSession.cpp",
+ "IncomingFileTransfer.cpp",
+ "IncomingFileTransferManager.cpp",
+ "IncomingJingleFileTransfer.cpp",
+ "IncrementalBytestreamHashCalculator.cpp",
+ "JingleFileTransfer.cpp",
+ "LocalJingleTransportCandidateGenerator.cpp",
+ "OutgoingFileTransfer.cpp",
+ "OutgoingFileTransferManager.cpp",
+ "OutgoingJingleFileTransfer.cpp",
+ "ReadBytestream.cpp",
+ "RemoteJingleTransportCandidateSelector.cpp",
"SOCKS5BytestreamClientSession.cpp",
- "SOCKS5BytestreamServerManager.cpp",
- "SOCKS5BytestreamServer.cpp",
- "SOCKS5BytestreamServerSession.cpp",
- "SOCKS5BytestreamRegistry.cpp",
"SOCKS5BytestreamProxiesManager.cpp",
"SOCKS5BytestreamProxyFinder.cpp",
- "IBBSendSession.cpp",
- "IBBReceiveSession.cpp",
- "FileTransferManager.cpp",
- "FileTransferManagerImpl.cpp",
- "IncrementalBytestreamHashCalculator.cpp",
- "SOCKS5BytestreamServerResourceUser.cpp",
+ "SOCKS5BytestreamRegistry.cpp",
+ "SOCKS5BytestreamServer.cpp",
+ "SOCKS5BytestreamServerManager.cpp",
"SOCKS5BytestreamServerPortForwardingUser.cpp",
+ "SOCKS5BytestreamServerResourceUser.cpp",
+ "SOCKS5BytestreamServerSession.cpp",
+ "TransportSession.cpp",
+ "WriteBytestream.cpp",
]
swiften_env.Append(SWIFTEN_OBJECTS = swiften_env.SwiftenObject(sources))
env.Append(UNITTEST_SOURCES = [
- File("UnitTest/SOCKS5BytestreamServerSessionTest.cpp"),
- File("UnitTest/SOCKS5BytestreamClientSessionTest.cpp"),
- File("UnitTest/IBBSendSessionTest.cpp"),
File("UnitTest/IBBReceiveSessionTest.cpp"),
+ File("UnitTest/IBBSendSessionTest.cpp"),
File("UnitTest/IncomingJingleFileTransferTest.cpp"),
File("UnitTest/OutgoingJingleFileTransferTest.cpp"),
+ File("UnitTest/SOCKS5BytestreamClientSessionTest.cpp"),
+ File("UnitTest/SOCKS5BytestreamServerSessionTest.cpp"),
])