Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .
- ├── build
- │ ├── CMakeCache.txt
- │ ├── CMakeFiles
- │ │ ├── 3.10.2
- │ │ │ ├── CMakeCCompiler.cmake
- │ │ │ ├── CMakeCXXCompiler.cmake
- │ │ │ ├── CMakeDetermineCompilerABI_C.bin
- │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
- │ │ │ ├── CMakeSystem.cmake
- │ │ │ ├── CompilerIdC
- │ │ │ │ ├── a.out
- │ │ │ │ ├── CMakeCCompilerId.c
- │ │ │ │ └── tmp
- │ │ │ └── CompilerIdCXX
- │ │ │ ├── a.out
- │ │ │ ├── CMakeCXXCompilerId.cpp
- │ │ │ └── tmp
- │ │ ├── cmake.check_cache
- │ │ ├── CMakeDirectoryInformation.cmake
- │ │ ├── CMakeOutput.log
- │ │ ├── CMakeTmp
- │ │ ├── feature_tests.bin
- │ │ ├── feature_tests.c
- │ │ ├── feature_tests.cxx
- │ │ ├── FindMPI
- │ │ │ ├── test_mpi_C.bin
- │ │ │ ├── test_mpi.cpp
- │ │ │ └── test_mpi_CXX.bin
- │ │ ├── Makefile2
- │ │ ├── Makefile.cmake
- │ │ ├── mtest.dir
- │ │ │ ├── build.make
- │ │ │ ├── cmake_clean.cmake
- │ │ │ ├── CXX.includecache
- │ │ │ ├── DependInfo.cmake
- │ │ │ ├── depend.internal
- │ │ │ ├── depend.make
- │ │ │ ├── flags.make
- │ │ │ ├── link.txt
- │ │ │ └── progress.make
- │ │ ├── Progress
- │ │ │ ├── 1
- │ │ │ └── count.txt
- │ │ ├── progress.marks
- │ │ └── TargetDirectories.txt
- │ ├── cmake_install.cmake
- │ ├── Makefile
- │ └── mtest
- ├── CMakeLists.txt
- ├── main.cpp
- └── Swiften
- ├── AdHoc
- │ ├── OutgoingAdHocCommandSession.cpp
- │ ├── OutgoingAdHocCommandSession.h
- │ ├── OutgoingAdHocCommandSession.o
- │ └── SConscript
- ├── Avatars
- │ ├── AvatarManager.cpp
- │ ├── AvatarManager.h
- │ ├── AvatarManagerImpl.cpp
- │ ├── AvatarManagerImpl.h
- │ ├── AvatarManagerImpl.o
- │ ├── AvatarManager.o
- │ ├── AvatarMemoryStorage.h
- │ ├── AvatarProvider.cpp
- │ ├── AvatarProvider.h
- │ ├── AvatarProvider.o
- │ ├── AvatarStorage.cpp
- │ ├── AvatarStorage.h
- │ ├── AvatarStorage.o
- │ ├── CombinedAvatarProvider.cpp
- │ ├── CombinedAvatarProvider.h
- │ ├── CombinedAvatarProvider.o
- │ ├── DummyAvatarManager.h
- │ ├── NullAvatarManager.h
- │ ├── OfflineAvatarManager.cpp
- │ ├── OfflineAvatarManager.h
- │ ├── OfflineAvatarManager.o
- │ ├── SConscript
- │ ├── UnitTest
- │ │ ├── AvatarManagerImplTest.cpp
- │ │ ├── CombinedAvatarProviderTest.cpp
- │ │ ├── VCardAvatarManagerTest.cpp
- │ │ └── VCardUpdateAvatarManagerTest.cpp
- │ ├── VCardAvatarManager.cpp
- │ ├── VCardAvatarManager.h
- │ ├── VCardAvatarManager.o
- │ ├── VCardUpdateAvatarManager.cpp
- │ ├── VCardUpdateAvatarManager.h
- │ └── VCardUpdateAvatarManager.o
- ├── Base
- │ ├── Algorithm.h
- │ ├── API.h
- │ ├── Atomic.h
- │ ├── BoostFilesystemVersion.h
- │ ├── ByteArray.cpp
- │ ├── ByteArray.h
- │ ├── ByteArray.o
- │ ├── Concat.h
- │ ├── DateTime.cpp
- │ ├── DateTime.h
- │ ├── DateTime.o
- │ ├── Debug.cpp
- │ ├── Debug.h
- │ ├── Debug.o
- │ ├── Error.cpp
- │ ├── Error.h
- │ ├── Error.o
- │ ├── FileSize.cpp
- │ ├── FileSize.h
- │ ├── FileSize.o
- │ ├── format.h
- │ ├── IDGenerator.cpp
- │ ├── IDGenerator.h
- │ ├── IDGenerator.o
- │ ├── Listenable.h
- │ ├── Log.cpp
- │ ├── Log.h
- │ ├── Log.o
- │ ├── LogSerializers.cpp
- │ ├── LogSerializers.h
- │ ├── LogSerializers.o
- │ ├── LRUCache.h
- │ ├── Path.cpp
- │ ├── Path.h
- │ ├── Path.o
- │ ├── Paths.cpp
- │ ├── Paths.h
- │ ├── Paths.o
- │ ├── Platform.h
- │ ├── RandomGenerator.cpp
- │ ├── RandomGenerator.h
- │ ├── RandomGenerator.o
- │ ├── Regex.cpp
- │ ├── Regex.h
- │ ├── Regex.o
- │ ├── SafeAllocator.cpp
- │ ├── SafeAllocator.h
- │ ├── SafeAllocator.o
- │ ├── SafeByteArray.cpp
- │ ├── SafeByteArray.h
- │ ├── SafeByteArray.o
- │ ├── SafeString.h
- │ ├── SConscript
- │ ├── SimpleIDGenerator.cpp
- │ ├── SimpleIDGenerator.h
- │ ├── SimpleIDGenerator.o
- │ ├── sleep.cpp
- │ ├── sleep.h
- │ ├── sleep.o
- │ ├── StartStopper.h
- │ ├── StdRandomGenerator.cpp
- │ ├── StdRandomGenerator.h
- │ ├── StdRandomGenerator.o
- │ ├── String.cpp
- │ ├── String.h
- │ ├── String.o
- │ ├── Tristate.h
- │ ├── UnitTest
- │ │ ├── ByteArrayTest.cpp
- │ │ ├── DateTimeTest.cpp
- │ │ ├── IDGeneratorTest.cpp
- │ │ ├── LRUCacheTest.cpp
- │ │ ├── PathTest.cpp
- │ │ ├── SimpleIDGeneratorTest.cpp
- │ │ ├── StringTest.cpp
- │ │ └── URLTest.cpp
- │ ├── URL.cpp
- │ ├── URL.h
- │ ├── URL.o
- │ └── WindowsRegistry.h
- ├── ChangeLog.md
- ├── Chat
- │ ├── ChatStateNotifier.cpp
- │ ├── ChatStateNotifier.h
- │ ├── ChatStateNotifier.o
- │ ├── ChatStateTracker.cpp
- │ ├── ChatStateTracker.h
- │ ├── ChatStateTracker.o
- │ └── UnitTest
- │ └── ChatStateNotifierTest.cpp
- ├── Client
- │ ├── BlockList.cpp
- │ ├── BlockList.h
- │ ├── BlockListImpl.cpp
- │ ├── BlockListImpl.h
- │ ├── BlockListImpl.o
- │ ├── BlockList.o
- │ ├── ClientBlockListManager.cpp
- │ ├── ClientBlockListManager.h
- │ ├── ClientBlockListManager.o
- │ ├── Client.cpp
- │ ├── ClientError.h
- │ ├── Client.h
- │ ├── Client.o
- │ ├── ClientOptions.h
- │ ├── ClientSession.cpp
- │ ├── ClientSession.h
- │ ├── ClientSession.o
- │ ├── ClientSessionStanzaChannel.cpp
- │ ├── ClientSessionStanzaChannel.h
- │ ├── ClientSessionStanzaChannel.o
- │ ├── ClientXMLTracer.cpp
- │ ├── ClientXMLTracer.h
- │ ├── ClientXMLTracer.o
- │ ├── CoreClient.cpp
- │ ├── CoreClient.h
- │ ├── CoreClient.o
- │ ├── DummyNickManager.h
- │ ├── DummyStanzaChannel.h
- │ ├── MemoryStorages.cpp
- │ ├── MemoryStorages.h
- │ ├── MemoryStorages.o
- │ ├── NickManager.cpp
- │ ├── NickManager.h
- │ ├── NickManagerImpl.cpp
- │ ├── NickManagerImpl.h
- │ ├── NickManagerImpl.o
- │ ├── NickManager.o
- │ ├── NickResolver.cpp
- │ ├── NickResolver.h
- │ ├── NickResolver.o
- │ ├── StanzaChannel.h
- │ ├── Storages.cpp
- │ ├── Storages.h
- │ ├── Storages.o
- │ ├── UnitTest
- │ │ ├── BlockListImplTest.cpp
- │ │ ├── ClientBlockListManagerTest.cpp
- │ │ ├── ClientSessionTest.cpp
- │ │ ├── NickResolverTest.cpp
- │ │ └── XMLBeautifierTest.cpp
- │ ├── XMLBeautifier.cpp
- │ ├── XMLBeautifier.h
- │ └── XMLBeautifier.o
- ├── Component
- │ ├── ComponentConnector.cpp
- │ ├── ComponentConnector.h
- │ ├── ComponentConnector.o
- │ ├── Component.cpp
- │ ├── ComponentError.h
- │ ├── Component.h
- │ ├── ComponentHandshakeGenerator.cpp
- │ ├── ComponentHandshakeGenerator.h
- │ ├── ComponentHandshakeGenerator.o
- │ ├── Component.o
- │ ├── ComponentSession.cpp
- │ ├── ComponentSession.h
- │ ├── ComponentSession.o
- │ ├── ComponentSessionStanzaChannel.cpp
- │ ├── ComponentSessionStanzaChannel.h
- │ ├── ComponentSessionStanzaChannel.o
- │ ├── ComponentXMLTracer.cpp
- │ ├── ComponentXMLTracer.h
- │ ├── ComponentXMLTracer.o
- │ ├── CoreComponent.cpp
- │ ├── CoreComponent.h
- │ ├── CoreComponent.o
- │ ├── SConscript
- │ └── UnitTest
- │ ├── ComponentConnectorTest.cpp
- │ ├── ComponentHandshakeGeneratorTest.cpp
- │ └── ComponentSessionTest.cpp
- ├── Compress
- │ ├── UnitTest
- │ │ ├── ZLibCompressorTest.cpp
- │ │ └── ZLibDecompressorTest.cpp
- │ ├── ZLibCodecompressor.cpp
- │ ├── ZLibCodecompressor.h
- │ ├── ZLibCodecompressor.o
- │ ├── ZLibCodecompressor_Private.h
- │ ├── ZLibCompressor.cpp
- │ ├── ZLibCompressor.h
- │ ├── ZLibCompressor.o
- │ ├── ZLibDecompressor.cpp
- │ ├── ZLibDecompressor.h
- │ ├── ZLibDecompressor.o
- │ └── ZLibException.h
- ├── Config
- │ ├── Path.cpp
- │ ├── Path.o
- │ ├── Paths.cpp
- │ ├── Paths.o
- │ ├── SConscript
- │ ├── String.cpp
- │ ├── String.o
- │ ├── swiften-config
- │ ├── swiften-config.cpp
- │ ├── swiften-config.h
- │ └── swiften-config.o
- ├── Crypto
- │ ├── CommonCryptoCryptoProvider.cpp
- │ ├── CommonCryptoCryptoProvider.h
- │ ├── CryptoProvider.cpp
- │ ├── CryptoProvider.h
- │ ├── CryptoProvider.o
- │ ├── Hash.cpp
- │ ├── Hash.h
- │ ├── Hash.o
- │ ├── OpenSSLCryptoProvider.cpp
- │ ├── OpenSSLCryptoProvider.h
- │ ├── OpenSSLCryptoProvider.o
- │ ├── PlatformCryptoProvider.cpp
- │ ├── PlatformCryptoProvider.h
- │ ├── PlatformCryptoProvider.o
- │ ├── SConscript
- │ ├── UnitTest
- │ │ └── CryptoProviderTest.cpp
- │ ├── WindowsCryptoProvider.cpp
- │ └── WindowsCryptoProvider.h
- ├── Disco
- │ ├── CapsInfoGenerator.cpp
- │ ├── CapsInfoGenerator.h
- │ ├── CapsInfoGenerator.o
- │ ├── CapsManager.cpp
- │ ├── CapsManager.h
- │ ├── CapsManager.o
- │ ├── CapsMemoryStorage.h
- │ ├── CapsProvider.h
- │ ├── CapsStorage.cpp
- │ ├── CapsStorage.h
- │ ├── CapsStorage.o
- │ ├── ClientDiscoManager.cpp
- │ ├── ClientDiscoManager.h
- │ ├── ClientDiscoManager.o
- │ ├── DiscoInfoResponder.cpp
- │ ├── DiscoInfoResponder.h
- │ ├── DiscoInfoResponder.o
- │ ├── DiscoServiceWalker.cpp
- │ ├── DiscoServiceWalker.h
- │ ├── DiscoServiceWalker.o
- │ ├── DummyEntityCapsProvider.cpp
- │ ├── DummyEntityCapsProvider.h
- │ ├── DummyEntityCapsProvider.o
- │ ├── EntityCapsManager.cpp
- │ ├── EntityCapsManager.h
- │ ├── EntityCapsManager.o
- │ ├── EntityCapsProvider.cpp
- │ ├── EntityCapsProvider.h
- │ ├── EntityCapsProvider.o
- │ ├── FeatureOracle.cpp
- │ ├── FeatureOracle.h
- │ ├── FeatureOracle.o
- │ ├── GetDiscoInfoRequest.h
- │ ├── GetDiscoItemsRequest.h
- │ ├── JIDDiscoInfoResponder.cpp
- │ ├── JIDDiscoInfoResponder.h
- │ ├── JIDDiscoInfoResponder.o
- │ ├── SConscript
- │ └── UnitTest
- │ ├── CapsInfoGeneratorTest.cpp
- │ ├── CapsManagerTest.cpp
- │ ├── DiscoInfoResponderTest.cpp
- │ ├── EntityCapsManagerTest.cpp
- │ ├── FeatureOracleTest.cpp
- │ └── JIDDiscoInfoResponderTest.cpp
- ├── Elements
- │ ├── AuthChallenge.h
- │ ├── AuthFailure.h
- │ ├── AuthRequest.h
- │ ├── AuthResponse.h
- │ ├── AuthSuccess.h
- │ ├── BlockListPayload.h
- │ ├── BlockPayload.h
- │ ├── Body.h
- │ ├── Bytestreams.h
- │ ├── CapsInfo.h
- │ ├── CarbonsDisable.cpp
- │ ├── CarbonsDisable.h
- │ ├── CarbonsDisable.o
- │ ├── CarbonsEnable.cpp
- │ ├── CarbonsEnable.h
- │ ├── CarbonsEnable.o
- │ ├── CarbonsPrivate.cpp
- │ ├── CarbonsPrivate.h
- │ ├── CarbonsPrivate.o
- │ ├── CarbonsReceived.cpp
- │ ├── CarbonsReceived.h
- │ ├── CarbonsReceived.o
- │ ├── CarbonsSent.cpp
- │ ├── CarbonsSent.h
- │ ├── CarbonsSent.o
- │ ├── ChatState.h
- │ ├── ClientState.h
- │ ├── Command.h
- │ ├── ComponentHandshake.h
- │ ├── Compressed.h
- │ ├── CompressFailure.h
- │ ├── CompressRequest.h
- │ ├── ContainerPayload.h
- │ ├── Delay.h
- │ ├── DeliveryReceipt.h
- │ ├── DeliveryReceiptRequest.h
- │ ├── DiscoInfo.cpp
- │ ├── DiscoInfo.h
- │ ├── DiscoInfo.o
- │ ├── DiscoItems.h
- │ ├── Element.cpp
- │ ├── Element.h
- │ ├── Element.o
- │ ├── EnableStreamManagement.h
- │ ├── ErrorPayload.h
- │ ├── Form.cpp
- │ ├── FormField.cpp
- │ ├── FormField.h
- │ ├── FormField.o
- │ ├── Form.h
- │ ├── Form.o
- │ ├── FormPage.cpp
- │ ├── FormPage.h
- │ ├── FormPage.o
- │ ├── FormReportedRef.h
- │ ├── FormSection.cpp
- │ ├── FormSection.h
- │ ├── FormSection.o
- │ ├── FormText.cpp
- │ ├── FormText.h
- │ ├── FormText.o
- │ ├── Forwarded.cpp
- │ ├── Forwarded.h
- │ ├── Forwarded.o
- │ ├── HashElement.h
- │ ├── IBB.h
- │ ├── Idle.h
- │ ├── InBandRegistrationPayload.h
- │ ├── IQ.cpp
- │ ├── IQ.h
- │ ├── IQ.o
- │ ├── IsodeIQDelegation.cpp
- │ ├── IsodeIQDelegation.h
- │ ├── IsodeIQDelegation.o
- │ ├── JingleContentPayload.h
- │ ├── JingleDescription.h
- │ ├── JingleFileTransferDescription.h
- │ ├── JingleFileTransferFileInfo.h
- │ ├── JingleFileTransferHash.h
- │ ├── JingleIBBTransportPayload.h
- │ ├── JinglePayload.h
- │ ├── JingleS5BTransportPayload.h
- │ ├── JingleTransportPayload.h
- │ ├── Last.h
- │ ├── MAMFin.cpp
- │ ├── MAMFin.h
- │ ├── MAMFin.o
- │ ├── MAMQuery.cpp
- │ ├── MAMQuery.h
- │ ├── MAMQuery.o
- │ ├── MAMResult.cpp
- │ ├── MAMResult.h
- │ ├── MAMResult.o
- │ ├── Message.h
- │ ├── MIXCreate.h
- │ ├── MIXDestroy.h
- │ ├── MIXJoin.h
- │ ├── MIXLeave.h
- │ ├── MIXParticipant.h
- │ ├── MIXPayload.h
- │ ├── MIXRegisterNick.h
- │ ├── MIXSetNick.h
- │ ├── MIXUpdateSubscription.h
- │ ├── MIXUserPreference.h
- │ ├── MUCAdminPayload.h
- │ ├── MUCDestroyPayload.h
- │ ├── MUCInvitationPayload.h
- │ ├── MUCItem.h
- │ ├── MUCOccupant.cpp
- │ ├── MUCOccupant.h
- │ ├── MUCOccupant.o
- │ ├── MUCOwnerPayload.h
- │ ├── MUCPayload.h
- │ ├── MUCUserPayload.h
- │ ├── Nickname.h
- │ ├── Payload.cpp
- │ ├── Payload.h
- │ ├── Payload.o
- │ ├── Presence.cpp
- │ ├── Presence.h
- │ ├── Presence.o
- │ ├── Priority.h
- │ ├── PrivateStorage.h
- │ ├── ProtocolHeader.h
- │ ├── PubSubAffiliation.cpp
- │ ├── PubSubAffiliation.h
- │ ├── PubSubAffiliation.o
- │ ├── PubSubAffiliations.cpp
- │ ├── PubSubAffiliations.h
- │ ├── PubSubAffiliations.o
- │ ├── PubSubConfigure.cpp
- │ ├── PubSubConfigure.h
- │ ├── PubSubConfigure.o
- │ ├── PubSub.cpp
- │ ├── PubSubCreate.cpp
- │ ├── PubSubCreate.h
- │ ├── PubSubCreate.o
- │ ├── PubSubDefault.cpp
- │ ├── PubSubDefault.h
- │ ├── PubSubDefault.o
- │ ├── PubSubError.cpp
- │ ├── PubSubError.h
- │ ├── PubSubError.o
- │ ├── PubSubEventAssociate.cpp
- │ ├── PubSubEventAssociate.h
- │ ├── PubSubEventAssociate.o
- │ ├── PubSubEventCollection.cpp
- │ ├── PubSubEventCollection.h
- │ ├── PubSubEventCollection.o
- │ ├── PubSubEventConfiguration.cpp
- │ ├── PubSubEventConfiguration.h
- │ ├── PubSubEventConfiguration.o
- │ ├── PubSubEvent.cpp
- │ ├── PubSubEventDelete.cpp
- │ ├── PubSubEventDelete.h
- │ ├── PubSubEventDelete.o
- │ ├── PubSubEventDisassociate.cpp
- │ ├── PubSubEventDisassociate.h
- │ ├── PubSubEventDisassociate.o
- │ ├── PubSubEvent.h
- │ ├── PubSubEventItem.cpp
- │ ├── PubSubEventItem.h
- │ ├── PubSubEventItem.o
- │ ├── PubSubEventItems.cpp
- │ ├── PubSubEventItems.h
- │ ├── PubSubEventItems.o
- │ ├── PubSubEvent.o
- │ ├── PubSubEventPayload.cpp
- │ ├── PubSubEventPayload.h
- │ ├── PubSubEventPayload.o
- │ ├── PubSubEventPurge.cpp
- │ ├── PubSubEventPurge.h
- │ ├── PubSubEventPurge.o
- │ ├── PubSubEventRedirect.cpp
- │ ├── PubSubEventRedirect.h
- │ ├── PubSubEventRedirect.o
- │ ├── PubSubEventRetract.cpp
- │ ├── PubSubEventRetract.h
- │ ├── PubSubEventRetract.o
- │ ├── PubSubEventSubscription.cpp
- │ ├── PubSubEventSubscription.h
- │ ├── PubSubEventSubscription.o
- │ ├── PubSub.h
- │ ├── PubSubItem.cpp
- │ ├── PubSubItem.h
- │ ├── PubSubItem.o
- │ ├── PubSubItems.cpp
- │ ├── PubSubItems.h
- │ ├── PubSubItems.o
- │ ├── PubSub.o
- │ ├── PubSubOptions.cpp
- │ ├── PubSubOptions.h
- │ ├── PubSubOptions.o
- │ ├── PubSubOwnerAffiliation.cpp
- │ ├── PubSubOwnerAffiliation.h
- │ ├── PubSubOwnerAffiliation.o
- │ ├── PubSubOwnerAffiliations.cpp
- │ ├── PubSubOwnerAffiliations.h
- │ ├── PubSubOwnerAffiliations.o
- │ ├── PubSubOwnerConfigure.cpp
- │ ├── PubSubOwnerConfigure.h
- │ ├── PubSubOwnerConfigure.o
- │ ├── PubSubOwnerDefault.cpp
- │ ├── PubSubOwnerDefault.h
- │ ├── PubSubOwnerDefault.o
- │ ├── PubSubOwnerDelete.cpp
- │ ├── PubSubOwnerDelete.h
- │ ├── PubSubOwnerDelete.o
- │ ├── PubSubOwnerPayload.cpp
- │ ├── PubSubOwnerPayload.h
- │ ├── PubSubOwnerPayload.o
- │ ├── PubSubOwnerPubSub.cpp
- │ ├── PubSubOwnerPubSub.h
- │ ├── PubSubOwnerPubSub.o
- │ ├── PubSubOwnerPurge.cpp
- │ ├── PubSubOwnerPurge.h
- │ ├── PubSubOwnerPurge.o
- │ ├── PubSubOwnerRedirect.cpp
- │ ├── PubSubOwnerRedirect.h
- │ ├── PubSubOwnerRedirect.o
- │ ├── PubSubOwnerSubscription.cpp
- │ ├── PubSubOwnerSubscription.h
- │ ├── PubSubOwnerSubscription.o
- │ ├── PubSubOwnerSubscriptions.cpp
- │ ├── PubSubOwnerSubscriptions.h
- │ ├── PubSubOwnerSubscriptions.o
- │ ├── PubSubPayload.cpp
- │ ├── PubSubPayload.h
- │ ├── PubSubPayload.o
- │ ├── PubSubPublish.cpp
- │ ├── PubSubPublish.h
- │ ├── PubSubPublish.o
- │ ├── PubSubRetract.cpp
- │ ├── PubSubRetract.h
- │ ├── PubSubRetract.o
- │ ├── PubSubSubscribe.cpp
- │ ├── PubSubSubscribe.h
- │ ├── PubSubSubscribe.o
- │ ├── PubSubSubscribeOptions.cpp
- │ ├── PubSubSubscribeOptions.h
- │ ├── PubSubSubscribeOptions.o
- │ ├── PubSubSubscription.cpp
- │ ├── PubSubSubscription.h
- │ ├── PubSubSubscription.o
- │ ├── PubSubSubscriptions.cpp
- │ ├── PubSubSubscriptions.h
- │ ├── PubSubSubscriptions.o
- │ ├── PubSubUnsubscribe.cpp
- │ ├── PubSubUnsubscribe.h
- │ ├── PubSubUnsubscribe.o
- │ ├── RawXMLPayload.h
- │ ├── ReferencePayload.cpp
- │ ├── ReferencePayload.h
- │ ├── ReferencePayload.o
- │ ├── Replace.h
- │ ├── ResourceBind.h
- │ ├── ResultSet.cpp
- │ ├── ResultSet.h
- │ ├── ResultSet.o
- │ ├── RosterItemExchangePayload.cpp
- │ ├── RosterItemExchangePayload.h
- │ ├── RosterItemExchangePayload.o
- │ ├── RosterItemPayload.h
- │ ├── RosterPayload.cpp
- │ ├── RosterPayload.h
- │ ├── RosterPayload.o
- │ ├── S5BProxyRequest.h
- │ ├── SearchPayload.h
- │ ├── SecurityLabel.cpp
- │ ├── SecurityLabel.h
- │ ├── SecurityLabel.o
- │ ├── SecurityLabelsCatalog.h
- │ ├── SoftwareVersion.h
- │ ├── StanzaAck.cpp
- │ ├── StanzaAck.h
- │ ├── StanzaAck.o
- │ ├── StanzaAckRequest.h
- │ ├── Stanza.cpp
- │ ├── Stanza.h
- │ ├── Stanza.o
- │ ├── StartSession.h
- │ ├── StartTLSFailure.h
- │ ├── StartTLSRequest.h
- │ ├── Status.h
- │ ├── StatusShow.cpp
- │ ├── StatusShow.h
- │ ├── StatusShow.o
- │ ├── Storage.h
- │ ├── StreamError.h
- │ ├── StreamFeatures.cpp
- │ ├── StreamFeatures.h
- │ ├── StreamFeatures.o
- │ ├── StreamInitiationFileInfo.h
- │ ├── StreamInitiation.h
- │ ├── StreamManagementEnabled.cpp
- │ ├── StreamManagementEnabled.h
- │ ├── StreamManagementEnabled.o
- │ ├── StreamManagementFailed.h
- │ ├── StreamResume.cpp
- │ ├── StreamResumed.cpp
- │ ├── StreamResumed.h
- │ ├── StreamResumed.o
- │ ├── StreamResume.h
- │ ├── StreamResume.o
- │ ├── StreamType.h
- │ ├── Subject.h
- │ ├── Thread.cpp
- │ ├── Thread.h
- │ ├── Thread.o
- │ ├── TLSProceed.h
- │ ├── ToplevelElement.cpp
- │ ├── ToplevelElement.h
- │ ├── ToplevelElement.o
- │ ├── UnblockPayload.h
- │ ├── UnitTest
- │ │ ├── FormTest.cpp
- │ │ ├── IQTest.cpp
- │ │ └── StanzaTest.cpp
- │ ├── UnknownElement.h
- │ ├── UserLocation.cpp
- │ ├── UserLocation.h
- │ ├── UserLocation.o
- │ ├── UserTune.cpp
- │ ├── UserTune.h
- │ ├── UserTune.o
- │ ├── VCard.cpp
- │ ├── VCard.h
- │ ├── VCard.o
- │ ├── VCardUpdate.h
- │ ├── Version.h
- │ ├── Whiteboard
- │ │ ├── WhiteboardColor.cpp
- │ │ ├── WhiteboardColor.h
- │ │ ├── WhiteboardColor.o
- │ │ ├── WhiteboardDeleteOperation.h
- │ │ ├── WhiteboardElement.h
- │ │ ├── WhiteboardElementVisitor.h
- │ │ ├── WhiteboardEllipseElement.h
- │ │ ├── WhiteboardFreehandPathElement.h
- │ │ ├── WhiteboardInsertOperation.h
- │ │ ├── WhiteboardLineElement.h
- │ │ ├── WhiteboardOperation.h
- │ │ ├── WhiteboardPolygonElement.h
- │ │ ├── WhiteboardRectElement.h
- │ │ ├── WhiteboardTextElement.h
- │ │ └── WhiteboardUpdateOperation.h
- │ └── WhiteboardPayload.h
- ├── Entity
- │ ├── Entity.cpp
- │ ├── Entity.h
- │ ├── Entity.o
- │ ├── GenericPayloadPersister.h
- │ ├── PayloadPersister.cpp
- │ ├── PayloadPersister.h
- │ ├── PayloadPersister.o
- │ └── SConscript
- ├── EventLoop
- │ ├── BoostASIOEventLoop.cpp
- │ ├── BoostASIOEventLoop.h
- │ ├── BoostASIOEventLoop.o
- │ ├── Cocoa
- │ │ ├── CocoaEvent.h
- │ │ ├── CocoaEventLoop.h
- │ │ ├── CocoaEventLoop.mm
- │ │ └── CocoaEvent.mm
- │ ├── DummyEventLoop.cpp
- │ ├── DummyEventLoop.h
- │ ├── DummyEventLoop.o
- │ ├── Event.cpp
- │ ├── Event.h
- │ ├── EventLoop.cpp
- │ ├── EventLoop.h
- │ ├── EventLoop.o
- │ ├── Event.o
- │ ├── EventOwner.cpp
- │ ├── EventOwner.h
- │ ├── EventOwner.o
- │ ├── Qt
- │ │ └── QtEventLoop.h
- │ ├── SConscript
- │ ├── SimpleEventLoop.cpp
- │ ├── SimpleEventLoop.h
- │ ├── SimpleEventLoop.o
- │ ├── SingleThreadedEventLoop.cpp
- │ ├── SingleThreadedEventLoop.h
- │ ├── SingleThreadedEventLoop.o
- │ └── UnitTest
- │ ├── EventLoopTest.cpp
- │ └── SimpleEventLoopTest.cpp
- ├── Examples
- │ ├── BenchTool
- │ │ ├── BenchTool
- │ │ ├── BenchTool.cpp
- │ │ ├── BenchTool.o
- │ │ └── SConscript
- │ ├── ConnectivityTest
- │ │ ├── ConnectivityTest
- │ │ ├── ConnectivityTest.cpp
- │ │ ├── ConnectivityTest.o
- │ │ └── SConscript
- │ ├── LinkLocalTool
- │ │ ├── LinkLocalTool
- │ │ ├── main.cpp
- │ │ ├── main.o
- │ │ └── SConscript
- │ ├── MUCListAndJoin
- │ │ ├── MUCListAndJoin
- │ │ ├── MUCListAndJoin.cpp
- │ │ ├── MUCListAndJoin.o
- │ │ └── SConscript
- │ ├── NetworkTool
- │ │ ├── main.cpp
- │ │ └── SConscript
- │ ├── ParserTester
- │ │ ├── ParserTester
- │ │ ├── ParserTester.cpp
- │ │ ├── ParserTester.o
- │ │ └── SConscript
- │ ├── SConscript
- │ ├── SendFile
- │ │ ├── ReceiveFile
- │ │ ├── ReceiveFile.cpp
- │ │ ├── ReceiveFile.o
- │ │ ├── SConscript
- │ │ ├── SendFile
- │ │ ├── SendFile.cpp
- │ │ └── SendFile.o
- │ └── SendMessage
- │ ├── SConscript
- │ ├── SendMessage
- │ ├── SendMessage.cpp
- │ └── SendMessage.o
- ├── FileTransfer
- │ ├── ByteArrayReadBytestream.cpp
- │ ├── ByteArrayReadBytestream.h
- │ ├── ByteArrayReadBytestream.o
- │ ├── ByteArrayWriteBytestream.h
- │ ├── BytestreamException.h
- │ ├── BytestreamsRequest.h
- │ ├── DefaultFileTransferTransporter.cpp
- │ ├── DefaultFileTransferTransporterFactory.cpp
- │ ├── DefaultFileTransferTransporterFactory.h
- │ ├── DefaultFileTransferTransporterFactory.o
- │ ├── DefaultFileTransferTransporter.h
- │ ├── DefaultFileTransferTransporter.o
- │ ├── FailingTransportSession.cpp
- │ ├── FailingTransportSession.h
- │ ├── FailingTransportSession.o
- │ ├── FileReadBytestream.cpp
- │ ├── FileReadBytestream.h
- │ ├── FileReadBytestream.o
- │ ├── FileTransfer.cpp
- │ ├── FileTransferError.h
- │ ├── FileTransfer.h
- │ ├── FileTransferManager.cpp
- │ ├── FileTransferManager.h
- │ ├── FileTransferManagerImpl.cpp
- │ ├── FileTransferManagerImpl.h
- │ ├── FileTransferManagerImpl.o
- │ ├── FileTransferManager.o
- │ ├── FileTransfer.o
- │ ├── FileTransferOptions.cpp
- │ ├── FileTransferOptions.h
- │ ├── FileTransferOptions.o
- │ ├── FileTransferTransporter.cpp
- │ ├── FileTransferTransporterFactory.cpp
- │ ├── FileTransferTransporterFactory.h
- │ ├── FileTransferTransporterFactory.o
- │ ├── FileTransferTransporter.h
- │ ├── FileTransferTransporter.o
- │ ├── FileWriteBytestream.cpp
- │ ├── FileWriteBytestream.h
- │ ├── FileWriteBytestream.o
- │ ├── IBBReceiveSession.cpp
- │ ├── IBBReceiveSession.h
- │ ├── IBBReceiveSession.o
- │ ├── IBBReceiveTransportSession.cpp
- │ ├── IBBReceiveTransportSession.h
- │ ├── IBBReceiveTransportSession.o
- │ ├── IBBRequest.h
- │ ├── IBBSendSession.cpp
- │ ├── IBBSendSession.h
- │ ├── IBBSendSession.o
- │ ├── IBBSendTransportSession.cpp
- │ ├── IBBSendTransportSession.h
- │ ├── IBBSendTransportSession.o
- │ ├── IncomingFileTransfer.cpp
- │ ├── IncomingFileTransfer.h
- │ ├── IncomingFileTransferManager.cpp
- │ ├── IncomingFileTransferManager.h
- │ ├── IncomingFileTransferManager.o
- │ ├── IncomingFileTransfer.o
- │ ├── IncomingJingleFileTransfer.cpp
- │ ├── IncomingJingleFileTransfer.h
- │ ├── IncomingJingleFileTransfer.o
- │ ├── IncrementalBytestreamHashCalculator.cpp
- │ ├── IncrementalBytestreamHashCalculator.h
- │ ├── IncrementalBytestreamHashCalculator.o
- │ ├── JingleFileTransfer.cpp
- │ ├── JingleFileTransfer.h
- │ ├── JingleFileTransfer.o
- │ ├── LocalJingleTransportCandidateGenerator.cpp
- │ ├── LocalJingleTransportCandidateGenerator.h
- │ ├── LocalJingleTransportCandidateGenerator.o
- │ ├── OutgoingFileTransfer.cpp
- │ ├── OutgoingFileTransfer.h
- │ ├── OutgoingFileTransferManager.cpp
- │ ├── OutgoingFileTransferManager.h
- │ ├── OutgoingFileTransferManager.o
- │ ├── OutgoingFileTransfer.o
- │ ├── OutgoingJingleFileTransfer.cpp
- │ ├── OutgoingJingleFileTransfer.h
- │ ├── OutgoingJingleFileTransfer.o
- │ ├── ReadBytestream.cpp
- │ ├── ReadBytestream.h
- │ ├── ReadBytestream.o
- │ ├── RemoteJingleTransportCandidateSelector.cpp
- │ ├── RemoteJingleTransportCandidateSelector.h
- │ ├── RemoteJingleTransportCandidateSelector.o
- │ ├── S5BTransportSession.h
- │ ├── SConscript
- │ ├── SOCKS5BytestreamClientSession.cpp
- │ ├── SOCKS5BytestreamClientSession.h
- │ ├── SOCKS5BytestreamClientSession.o
- │ ├── SOCKS5BytestreamProxiesManager.cpp
- │ ├── SOCKS5BytestreamProxiesManager.h
- │ ├── SOCKS5BytestreamProxiesManager.o
- │ ├── SOCKS5BytestreamProxyFinder.cpp
- │ ├── SOCKS5BytestreamProxyFinder.h
- │ ├── SOCKS5BytestreamProxyFinder.o
- │ ├── SOCKS5BytestreamRegistry.cpp
- │ ├── SOCKS5BytestreamRegistry.h
- │ ├── SOCKS5BytestreamRegistry.o
- │ ├── SOCKS5BytestreamServer.cpp
- │ ├── SOCKS5BytestreamServer.h
- │ ├── SOCKS5BytestreamServerManager.cpp
- │ ├── SOCKS5BytestreamServerManager.h
- │ ├── SOCKS5BytestreamServerManager.o
- │ ├── SOCKS5BytestreamServer.o
- │ ├── SOCKS5BytestreamServerPortForwardingUser.cpp
- │ ├── SOCKS5BytestreamServerPortForwardingUser.h
- │ ├── SOCKS5BytestreamServerPortForwardingUser.o
- │ ├── SOCKS5BytestreamServerResourceUser.cpp
- │ ├── SOCKS5BytestreamServerResourceUser.h
- │ ├── SOCKS5BytestreamServerResourceUser.o
- │ ├── SOCKS5BytestreamServerSession.cpp
- │ ├── SOCKS5BytestreamServerSession.h
- │ ├── SOCKS5BytestreamServerSession.o
- │ ├── StreamInitiationRequest.h
- │ ├── TransportSession.cpp
- │ ├── TransportSession.h
- │ ├── TransportSession.o
- │ ├── UnitTest
- │ │ ├── DummyFileTransferManager.h
- │ │ ├── DummyFileTransferTransporterFactory.h
- │ │ ├── IBBReceiveSessionTest.cpp
- │ │ ├── IBBSendSessionTest.cpp
- │ │ ├── IncomingJingleFileTransferTest.cpp
- │ │ ├── OutgoingJingleFileTransferTest.cpp
- │ │ ├── SOCKS5BytestreamClientSessionTest.cpp
- │ │ └── SOCKS5BytestreamServerSessionTest.cpp
- │ ├── WriteBytestream.cpp
- │ ├── WriteBytestream.h
- │ └── WriteBytestream.o
- ├── History
- │ ├── HistoryMessage.h
- │ ├── HistoryStorage.h
- │ ├── SConscript
- │ ├── SQLiteHistoryStorage.cpp
- │ ├── SQLiteHistoryStorage.h
- │ └── UnitTest
- │ └── SQLiteHistoryManagerTest.cpp
- ├── IDN
- │ ├── ICUConverter.cpp
- │ ├── ICUConverter.h
- │ ├── IDNConverter.cpp
- │ ├── IDNConverter.h
- │ ├── IDNConverter.o
- │ ├── LibIDNConverter.cpp
- │ ├── LibIDNConverter.h
- │ ├── LibIDNConverter.o
- │ ├── PlatformIDNConverter.cpp
- │ ├── PlatformIDNConverter.h
- │ ├── PlatformIDNConverter.o
- │ ├── SConscript
- │ ├── UnitTest
- │ │ ├── IDNConverterTest.cpp
- │ │ └── UTF8ValidatorTest.cpp
- │ └── UTF8Validator.h
- ├── JID
- │ ├── JID.cpp
- │ ├── JID.h
- │ ├── JID.o
- │ ├── SConscript
- │ └── UnitTest
- │ └── JIDTest.cpp
- ├── Jingle
- │ ├── AbstractJingleSessionListener.cpp
- │ ├── AbstractJingleSessionListener.h
- │ ├── AbstractJingleSessionListener.o
- │ ├── FakeJingleSession.cpp
- │ ├── FakeJingleSession.h
- │ ├── FakeJingleSession.o
- │ ├── IncomingJingleSessionHandler.cpp
- │ ├── IncomingJingleSessionHandler.h
- │ ├── IncomingJingleSessionHandler.o
- │ ├── JingleContentID.h
- │ ├── Jingle.h
- │ ├── JingleResponder.cpp
- │ ├── JingleResponder.h
- │ ├── JingleResponder.o
- │ ├── JingleSession.cpp
- │ ├── JingleSession.h
- │ ├── JingleSessionImpl.cpp
- │ ├── JingleSessionImpl.h
- │ ├── JingleSessionImpl.o
- │ ├── JingleSessionListener.cpp
- │ ├── JingleSessionListener.h
- │ ├── JingleSessionListener.o
- │ ├── JingleSessionManager.cpp
- │ ├── JingleSessionManager.h
- │ ├── JingleSessionManager.o
- │ ├── JingleSession.o
- │ └── SConscript
- ├── libSwiften.a
- ├── LinkLocal
- │ ├── DNSSD
- │ │ ├── Avahi
- │ │ │ ├── AvahiBrowseQuery.cpp
- │ │ │ ├── AvahiBrowseQuery.h
- │ │ │ ├── AvahiQuerier.cpp
- │ │ │ ├── AvahiQuerier.h
- │ │ │ ├── AvahiQuery.cpp
- │ │ │ ├── AvahiQuery.h
- │ │ │ ├── AvahiRegisterQuery.cpp
- │ │ │ ├── AvahiRegisterQuery.h
- │ │ │ ├── AvahiResolveHostnameQuery.cpp
- │ │ │ ├── AvahiResolveHostnameQuery.h
- │ │ │ ├── AvahiResolveServiceQuery.cpp
- │ │ │ └── AvahiResolveServiceQuery.h
- │ │ ├── Bonjour
- │ │ │ ├── BonjourBrowseQuery.h
- │ │ │ ├── BonjourQuerier.cpp
- │ │ │ ├── BonjourQuerier.h
- │ │ │ ├── BonjourQuery.cpp
- │ │ │ ├── BonjourQuery.h
- │ │ │ ├── BonjourRegisterQuery.h
- │ │ │ ├── BonjourResolveHostnameQuery.h
- │ │ │ └── BonjourResolveServiceQuery.h
- │ │ ├── DNSSDBrowseQuery.cpp
- │ │ ├── DNSSDBrowseQuery.h
- │ │ ├── DNSSDBrowseQuery.o
- │ │ ├── DNSSDQuerier.cpp
- │ │ ├── DNSSDQuerier.h
- │ │ ├── DNSSDQuerier.o
- │ │ ├── DNSSDRegisterQuery.cpp
- │ │ ├── DNSSDRegisterQuery.h
- │ │ ├── DNSSDRegisterQuery.o
- │ │ ├── DNSSDResolveHostnameQuery.cpp
- │ │ ├── DNSSDResolveHostnameQuery.h
- │ │ ├── DNSSDResolveHostnameQuery.o
- │ │ ├── DNSSDResolveServiceQuery.cpp
- │ │ ├── DNSSDResolveServiceQuery.h
- │ │ ├── DNSSDResolveServiceQuery.o
- │ │ ├── DNSSDServiceID.cpp
- │ │ ├── DNSSDServiceID.h
- │ │ ├── DNSSDServiceID.o
- │ │ ├── Fake
- │ │ │ ├── FakeDNSSDBrowseQuery.h
- │ │ │ ├── FakeDNSSDQuerier.cpp
- │ │ │ ├── FakeDNSSDQuerier.h
- │ │ │ ├── FakeDNSSDQuerier.o
- │ │ │ ├── FakeDNSSDQuery.cpp
- │ │ │ ├── FakeDNSSDQuery.h
- │ │ │ ├── FakeDNSSDQuery.o
- │ │ │ ├── FakeDNSSDRegisterQuery.h
- │ │ │ ├── FakeDNSSDResolveHostnameQuery.h
- │ │ │ └── FakeDNSSDResolveServiceQuery.h
- │ │ ├── PlatformDNSSDQuerierFactory.cpp
- │ │ ├── PlatformDNSSDQuerierFactory.h
- │ │ └── PlatformDNSSDQuerierFactory.o
- │ ├── IncomingLinkLocalSession.cpp
- │ ├── IncomingLinkLocalSession.h
- │ ├── IncomingLinkLocalSession.o
- │ ├── LinkLocalConnector.cpp
- │ ├── LinkLocalConnector.h
- │ ├── LinkLocalConnector.o
- │ ├── LinkLocalServiceBrowser.cpp
- │ ├── LinkLocalServiceBrowser.h
- │ ├── LinkLocalServiceBrowser.o
- │ ├── LinkLocalService.cpp
- │ ├── LinkLocalService.h
- │ ├── LinkLocalServiceInfo.cpp
- │ ├── LinkLocalServiceInfo.h
- │ ├── LinkLocalServiceInfo.o
- │ ├── LinkLocalService.o
- │ ├── OutgoingLinkLocalSession.cpp
- │ ├── OutgoingLinkLocalSession.h
- │ ├── OutgoingLinkLocalSession.o
- │ ├── SConscript
- │ └── UnitTest
- │ ├── LinkLocalConnectorTest.cpp
- │ ├── LinkLocalServiceBrowserTest.cpp
- │ ├── LinkLocalServiceInfoTest.cpp
- │ └── LinkLocalServiceTest.cpp
- ├── MIX
- │ ├── MIX.cpp
- │ ├── MIX.h
- │ ├── MIXImpl.cpp
- │ ├── MIXImpl.h
- │ ├── MIXImpl.o
- │ ├── MIX.o
- │ └── UnitTest
- │ └── MIXImplTest.cpp
- ├── MUC
- │ ├── MUCBookmark.h
- │ ├── MUCBookmarkManager.cpp
- │ ├── MUCBookmarkManager.h
- │ ├── MUCBookmarkManager.o
- │ ├── MUC.cpp
- │ ├── MUC.h
- │ ├── MUCImpl.cpp
- │ ├── MUCImpl.h
- │ ├── MUCImpl.o
- │ ├── MUCManager.cpp
- │ ├── MUCManager.h
- │ ├── MUCManager.o
- │ ├── MUC.o
- │ ├── MUCRegistry.cpp
- │ ├── MUCRegistry.h
- │ ├── MUCRegistry.o
- │ └── UnitTest
- │ ├── MockMUC.cpp
- │ ├── MockMUC.h
- │ └── MUCTest.cpp
- ├── Network
- │ ├── BoostConnection.cpp
- │ ├── BoostConnectionFactory.cpp
- │ ├── BoostConnectionFactory.h
- │ ├── BoostConnectionFactory.o
- │ ├── BoostConnection.h
- │ ├── BoostConnection.o
- │ ├── BoostConnectionServer.cpp
- │ ├── BoostConnectionServerFactory.cpp
- │ ├── BoostConnectionServerFactory.h
- │ ├── BoostConnectionServerFactory.o
- │ ├── BoostConnectionServer.h
- │ ├── BoostConnectionServer.o
- │ ├── BoostIOServiceThread.cpp
- │ ├── BoostIOServiceThread.h
- │ ├── BoostIOServiceThread.o
- │ ├── BoostNetworkFactories.cpp
- │ ├── BoostNetworkFactories.h
- │ ├── BoostNetworkFactories.o
- │ ├── BoostTimer.cpp
- │ ├── BoostTimerFactory.cpp
- │ ├── BoostTimerFactory.h
- │ ├── BoostTimerFactory.o
- │ ├── BoostTimer.h
- │ ├── BoostTimer.o
- │ ├── BOSHConnection.cpp
- │ ├── BOSHConnection.h
- │ ├── BOSHConnection.o
- │ ├── BOSHConnectionPool.cpp
- │ ├── BOSHConnectionPool.h
- │ ├── BOSHConnectionPool.o
- │ ├── CachingDomainNameResolver.cpp
- │ ├── CachingDomainNameResolver.h
- │ ├── CachingDomainNameResolver.o
- │ ├── ChainedConnector.cpp
- │ ├── ChainedConnector.h
- │ ├── ChainedConnector.o
- │ ├── Connection.cpp
- │ ├── ConnectionFactory.cpp
- │ ├── ConnectionFactory.h
- │ ├── ConnectionFactory.o
- │ ├── Connection.h
- │ ├── Connection.o
- │ ├── ConnectionServer.cpp
- │ ├── ConnectionServerFactory.cpp
- │ ├── ConnectionServerFactory.h
- │ ├── ConnectionServerFactory.o
- │ ├── ConnectionServer.h
- │ ├── ConnectionServer.o
- │ ├── Connector.cpp
- │ ├── Connector.h
- │ ├── Connector.o
- │ ├── DomainNameAddressQuery.cpp
- │ ├── DomainNameAddressQuery.h
- │ ├── DomainNameAddressQuery.o
- │ ├── DomainNameResolveError.h
- │ ├── DomainNameResolver.cpp
- │ ├── DomainNameResolver.h
- │ ├── DomainNameResolver.o
- │ ├── DomainNameServiceQuery.cpp
- │ ├── DomainNameServiceQuery.h
- │ ├── DomainNameServiceQuery.o
- │ ├── DummyConnection.cpp
- │ ├── DummyConnectionFactory.h
- │ ├── DummyConnection.h
- │ ├── DummyConnection.o
- │ ├── DummyConnectionServerFactory.h
- │ ├── DummyConnectionServer.h
- │ ├── DummyTimerFactory.cpp
- │ ├── DummyTimerFactory.h
- │ ├── DummyTimerFactory.o
- │ ├── EnvironmentProxyProvider.cpp
- │ ├── EnvironmentProxyProvider.h
- │ ├── EnvironmentProxyProvider.o
- │ ├── FakeConnection.cpp
- │ ├── FakeConnection.h
- │ ├── FakeConnection.o
- │ ├── GConfProxyProvider.cpp
- │ ├── GConfProxyProvider.h
- │ ├── HostAddress.cpp
- │ ├── HostAddress.h
- │ ├── HostAddress.o
- │ ├── HostAddressPort.cpp
- │ ├── HostAddressPort.h
- │ ├── HostAddressPort.o
- │ ├── HostNameOrAddress.cpp
- │ ├── HostNameOrAddress.h
- │ ├── HostNameOrAddress.o
- │ ├── HTTPConnectProxiedConnection.cpp
- │ ├── HTTPConnectProxiedConnectionFactory.cpp
- │ ├── HTTPConnectProxiedConnectionFactory.h
- │ ├── HTTPConnectProxiedConnectionFactory.o
- │ ├── HTTPConnectProxiedConnection.h
- │ ├── HTTPConnectProxiedConnection.o
- │ ├── HTTPTrafficFilter.cpp
- │ ├── HTTPTrafficFilter.h
- │ ├── HTTPTrafficFilter.o
- │ ├── MacOSXProxyProvider.cpp
- │ ├── MacOSXProxyProvider.h
- │ ├── MiniUPnPInterface.cpp
- │ ├── MiniUPnPInterface.h
- │ ├── MiniUPnPInterface.o
- │ ├── NATPMPInterface.cpp
- │ ├── NATPMPInterface.h
- │ ├── NATPMPInterface.o
- │ ├── NATPortMapping.h
- │ ├── NATTraversalForwardPortRequest.cpp
- │ ├── NATTraversalForwardPortRequest.h
- │ ├── NATTraversalForwardPortRequest.o
- │ ├── NATTraversalGetPublicIPRequest.cpp
- │ ├── NATTraversalGetPublicIPRequest.h
- │ ├── NATTraversalGetPublicIPRequest.o
- │ ├── NATTraversalInterface.cpp
- │ ├── NATTraversalInterface.h
- │ ├── NATTraversalInterface.o
- │ ├── NATTraversalRemovePortForwardingRequest.cpp
- │ ├── NATTraversalRemovePortForwardingRequest.h
- │ ├── NATTraversalRemovePortForwardingRequest.o
- │ ├── NATTraverser.cpp
- │ ├── NATTraverser.h
- │ ├── NATTraverser.o
- │ ├── NetworkEnvironment.cpp
- │ ├── NetworkEnvironment.h
- │ ├── NetworkEnvironment.o
- │ ├── NetworkFactories.cpp
- │ ├── NetworkFactories.h
- │ ├── NetworkFactories.o
- │ ├── NetworkInterface.h
- │ ├── NullNATTraversalInterface.h
- │ ├── NullNATTraverser.cpp
- │ ├── NullNATTraverser.h
- │ ├── NullNATTraverser.o
- │ ├── NullProxyProvider.cpp
- │ ├── NullProxyProvider.h
- │ ├── NullProxyProvider.o
- │ ├── PlatformDomainNameAddressQuery.cpp
- │ ├── PlatformDomainNameAddressQuery.h
- │ ├── PlatformDomainNameAddressQuery.o
- │ ├── PlatformDomainNameQuery.h
- │ ├── PlatformDomainNameResolver.cpp
- │ ├── PlatformDomainNameResolver.h
- │ ├── PlatformDomainNameResolver.o
- │ ├── PlatformDomainNameServiceQuery.cpp
- │ ├── PlatformDomainNameServiceQuery.h
- │ ├── PlatformDomainNameServiceQuery.o
- │ ├── PlatformNATTraversalWorker.cpp
- │ ├── PlatformNATTraversalWorker.h
- │ ├── PlatformNATTraversalWorker.o
- │ ├── PlatformNetworkEnvironment.h
- │ ├── PlatformProxyProvider.h
- │ ├── ProxiedConnection.cpp
- │ ├── ProxiedConnection.h
- │ ├── ProxiedConnection.o
- │ ├── ProxyProvider.cpp
- │ ├── ProxyProvider.h
- │ ├── ProxyProvider.o
- │ ├── SConscript
- │ ├── SOCKS5ProxiedConnection.cpp
- │ ├── SOCKS5ProxiedConnectionFactory.cpp
- │ ├── SOCKS5ProxiedConnectionFactory.h
- │ ├── SOCKS5ProxiedConnectionFactory.o
- │ ├── SOCKS5ProxiedConnection.h
- │ ├── SOCKS5ProxiedConnection.o
- │ ├── SolarisNetworkEnvironment.cpp
- │ ├── SolarisNetworkEnvironment.h
- │ ├── StaticDomainNameResolver.cpp
- │ ├── StaticDomainNameResolver.h
- │ ├── StaticDomainNameResolver.o
- │ ├── Timer.cpp
- │ ├── TimerFactory.cpp
- │ ├── TimerFactory.h
- │ ├── TimerFactory.o
- │ ├── Timer.h
- │ ├── Timer.o
- │ ├── TLSConnection.cpp
- │ ├── TLSConnectionFactory.cpp
- │ ├── TLSConnectionFactory.h
- │ ├── TLSConnectionFactory.o
- │ ├── TLSConnection.h
- │ ├── TLSConnection.o
- │ ├── UnboundDomainNameResolver.cpp
- │ ├── UnboundDomainNameResolver.h
- │ ├── UnitTest
- │ │ ├── BOSHConnectionPoolTest.cpp
- │ │ ├── BOSHConnectionTest.cpp
- │ │ ├── ChainedConnectorTest.cpp
- │ │ ├── ConnectorTest.cpp
- │ │ ├── DomainNameServiceQueryTest.cpp
- │ │ ├── HostAddressTest.cpp
- │ │ └── HTTPConnectProxiedConnectionTest.cpp
- │ ├── UnixNetworkEnvironment.cpp
- │ ├── UnixNetworkEnvironment.h
- │ ├── UnixNetworkEnvironment.o
- │ ├── UnixProxyProvider.cpp
- │ ├── UnixProxyProvider.h
- │ ├── UnixProxyProvider.o
- │ ├── WindowsNetworkEnvironment.cpp
- │ ├── WindowsNetworkEnvironment.h
- │ ├── WindowsProxyProvider.cpp
- │ └── WindowsProxyProvider.h
- ├── Parser
- │ ├── Attribute.h
- │ ├── AttributeMap.cpp
- │ ├── AttributeMap.h
- │ ├── AttributeMap.o
- │ ├── AuthChallengeParser.cpp
- │ ├── AuthChallengeParser.h
- │ ├── AuthChallengeParser.o
- │ ├── AuthFailureParser.h
- │ ├── AuthRequestParser.cpp
- │ ├── AuthRequestParser.h
- │ ├── AuthRequestParser.o
- │ ├── AuthResponseParser.cpp
- │ ├── AuthResponseParser.h
- │ ├── AuthResponseParser.o
- │ ├── AuthSuccessParser.cpp
- │ ├── AuthSuccessParser.h
- │ ├── AuthSuccessParser.o
- │ ├── BOSHBodyExtractor.cpp
- │ ├── BOSHBodyExtractor.h
- │ ├── BOSHBodyExtractor.o
- │ ├── ComponentHandshakeParser.cpp
- │ ├── ComponentHandshakeParser.h
- │ ├── ComponentHandshakeParser.o
- │ ├── CompressedParser.h
- │ ├── CompressFailureParser.h
- │ ├── CompressParser.cpp
- │ ├── CompressParser.h
- │ ├── CompressParser.o
- │ ├── ElementParser.cpp
- │ ├── ElementParser.h
- │ ├── ElementParser.o
- │ ├── EnableStreamManagementParser.h
- │ ├── EnumParser.h
- │ ├── ExpatParser.cpp
- │ ├── ExpatParser.h
- │ ├── ExpatParser.o
- │ ├── GenericElementParser.h
- │ ├── GenericPayloadParserFactory2.h
- │ ├── GenericPayloadParserFactory.h
- │ ├── GenericPayloadParser.h
- │ ├── GenericPayloadTreeParser.h
- │ ├── GenericStanzaParser.h
- │ ├── IQParser.cpp
- │ ├── IQParser.h
- │ ├── IQParser.o
- │ ├── LibXMLParser.cpp
- │ ├── LibXMLParser.h
- │ ├── MessageParser.cpp
- │ ├── MessageParser.h
- │ ├── MessageParser.o
- │ ├── PayloadParser.cpp
- │ ├── PayloadParserFactoryCollection.cpp
- │ ├── PayloadParserFactoryCollection.h
- │ ├── PayloadParserFactoryCollection.o
- │ ├── PayloadParserFactory.cpp
- │ ├── PayloadParserFactory.h
- │ ├── PayloadParserFactory.o
- │ ├── PayloadParser.h
- │ ├── PayloadParser.o
- │ ├── PayloadParsers
- │ │ ├── BlockParser.h
- │ │ ├── BodyParser.cpp
- │ │ ├── BodyParser.h
- │ │ ├── BodyParser.o
- │ │ ├── BytestreamsParser.cpp
- │ │ ├── BytestreamsParser.h
- │ │ ├── BytestreamsParser.o
- │ │ ├── CapsInfoParser.cpp
- │ │ ├── CapsInfoParser.h
- │ │ ├── CapsInfoParser.o
- │ │ ├── CarbonsDisableParser.cpp
- │ │ ├── CarbonsDisableParser.h
- │ │ ├── CarbonsDisableParser.o
- │ │ ├── CarbonsEnableParser.cpp
- │ │ ├── CarbonsEnableParser.h
- │ │ ├── CarbonsEnableParser.o
- │ │ ├── CarbonsPrivateParser.cpp
- │ │ ├── CarbonsPrivateParser.h
- │ │ ├── CarbonsPrivateParser.o
- │ │ ├── CarbonsReceivedParser.cpp
- │ │ ├── CarbonsReceivedParser.h
- │ │ ├── CarbonsReceivedParser.o
- │ │ ├── CarbonsSentParser.cpp
- │ │ ├── CarbonsSentParser.h
- │ │ ├── CarbonsSentParser.o
- │ │ ├── ChatStateParser.cpp
- │ │ ├── ChatStateParserFactory.h
- │ │ ├── ChatStateParser.h
- │ │ ├── ChatStateParser.o
- │ │ ├── ClientStateParser.cpp
- │ │ ├── ClientStateParserFactory.h
- │ │ ├── ClientStateParser.h
- │ │ ├── ClientStateParser.o
- │ │ ├── CommandParser.cpp
- │ │ ├── CommandParser.h
- │ │ ├── CommandParser.o
- │ │ ├── DelayParser.cpp
- │ │ ├── DelayParser.h
- │ │ ├── DelayParser.o
- │ │ ├── DeliveryReceiptParser.cpp
- │ │ ├── DeliveryReceiptParserFactory.h
- │ │ ├── DeliveryReceiptParser.h
- │ │ ├── DeliveryReceiptParser.o
- │ │ ├── DeliveryReceiptRequestParser.cpp
- │ │ ├── DeliveryReceiptRequestParserFactory.h
- │ │ ├── DeliveryReceiptRequestParser.h
- │ │ ├── DeliveryReceiptRequestParser.o
- │ │ ├── DiscoInfoParser.cpp
- │ │ ├── DiscoInfoParser.h
- │ │ ├── DiscoInfoParser.o
- │ │ ├── DiscoItemsParser.cpp
- │ │ ├── DiscoItemsParser.h
- │ │ ├── DiscoItemsParser.o
- │ │ ├── ErrorParser.cpp
- │ │ ├── ErrorParserFactory.h
- │ │ ├── ErrorParser.h
- │ │ ├── ErrorParser.o
- │ │ ├── FormParser.cpp
- │ │ ├── FormParserFactory.h
- │ │ ├── FormParser.h
- │ │ ├── FormParser.o
- │ │ ├── ForwardedParser.cpp
- │ │ ├── ForwardedParser.h
- │ │ ├── ForwardedParser.o
- │ │ ├── FullPayloadParserFactoryCollection.cpp
- │ │ ├── FullPayloadParserFactoryCollection.h
- │ │ ├── FullPayloadParserFactoryCollection.o
- │ │ ├── IBBParser.cpp
- │ │ ├── IBBParser.h
- │ │ ├── IBBParser.o
- │ │ ├── IdleParser.cpp
- │ │ ├── IdleParser.h
- │ │ ├── IdleParser.o
- │ │ ├── InBandRegistrationPayloadParser.cpp
- │ │ ├── InBandRegistrationPayloadParser.h
- │ │ ├── InBandRegistrationPayloadParser.o
- │ │ ├── IsodeIQDelegationParser.cpp
- │ │ ├── IsodeIQDelegationParser.h
- │ │ ├── IsodeIQDelegationParser.o
- │ │ ├── JingleContentPayloadParser.cpp
- │ │ ├── JingleContentPayloadParserFactory.h
- │ │ ├── JingleContentPayloadParser.h
- │ │ ├── JingleContentPayloadParser.o
- │ │ ├── JingleFileTransferDescriptionParser.cpp
- │ │ ├── JingleFileTransferDescriptionParserFactory.h
- │ │ ├── JingleFileTransferDescriptionParser.h
- │ │ ├── JingleFileTransferDescriptionParser.o
- │ │ ├── JingleFileTransferFileInfoParser.cpp
- │ │ ├── JingleFileTransferFileInfoParser.h
- │ │ ├── JingleFileTransferFileInfoParser.o
- │ │ ├── JingleFileTransferHashParser.cpp
- │ │ ├── JingleFileTransferHashParser.h
- │ │ ├── JingleFileTransferHashParser.o
- │ │ ├── JingleIBBTransportMethodPayloadParser.cpp
- │ │ ├── JingleIBBTransportMethodPayloadParser.h
- │ │ ├── JingleIBBTransportMethodPayloadParser.o
- │ │ ├── JingleParser.cpp
- │ │ ├── JingleParserFactory.h
- │ │ ├── JingleParser.h
- │ │ ├── JingleParser.o
- │ │ ├── JingleReasonParser.cpp
- │ │ ├── JingleReasonParser.h
- │ │ ├── JingleReasonParser.o
- │ │ ├── JingleS5BTransportMethodPayloadParser.cpp
- │ │ ├── JingleS5BTransportMethodPayloadParser.h
- │ │ ├── JingleS5BTransportMethodPayloadParser.o
- │ │ ├── LastParser.cpp
- │ │ ├── LastParser.h
- │ │ ├── LastParser.o
- │ │ ├── MAMFinParser.cpp
- │ │ ├── MAMFinParser.h
- │ │ ├── MAMFinParser.o
- │ │ ├── MAMQueryParser.cpp
- │ │ ├── MAMQueryParser.h
- │ │ ├── MAMQueryParser.o
- │ │ ├── MAMResultParser.cpp
- │ │ ├── MAMResultParser.h
- │ │ ├── MAMResultParser.o
- │ │ ├── MIXCreateParser.cpp
- │ │ ├── MIXCreateParser.h
- │ │ ├── MIXCreateParser.o
- │ │ ├── MIXDestroyParser.cpp
- │ │ ├── MIXDestroyParser.h
- │ │ ├── MIXDestroyParser.o
- │ │ ├── MIXJoinParser.cpp
- │ │ ├── MIXJoinParserFactory.h
- │ │ ├── MIXJoinParser.h
- │ │ ├── MIXJoinParser.o
- │ │ ├── MIXLeaveParser.cpp
- │ │ ├── MIXLeaveParser.h
- │ │ ├── MIXLeaveParser.o
- │ │ ├── MIXParticipantParser.cpp
- │ │ ├── MIXParticipantParserFactory.h
- │ │ ├── MIXParticipantParser.h
- │ │ ├── MIXParticipantParser.o
- │ │ ├── MIXPayloadParser.cpp
- │ │ ├── MIXPayloadParserFactory.h
- │ │ ├── MIXPayloadParser.h
- │ │ ├── MIXPayloadParser.o
- │ │ ├── MIXRegisterNickParser.cpp
- │ │ ├── MIXRegisterNickParserFactory.h
- │ │ ├── MIXRegisterNickParser.h
- │ │ ├── MIXRegisterNickParser.o
- │ │ ├── MIXSetNickParser.cpp
- │ │ ├── MIXSetNickParserFactory.h
- │ │ ├── MIXSetNickParser.h
- │ │ ├── MIXSetNickParser.o
- │ │ ├── MIXUpdateSubscriptionParser.cpp
- │ │ ├── MIXUpdateSubscriptionParser.h
- │ │ ├── MIXUpdateSubscriptionParser.o
- │ │ ├── MIXUserPreferenceParser.cpp
- │ │ ├── MIXUserPreferenceParser.h
- │ │ ├── MIXUserPreferenceParser.o
- │ │ ├── MUCAdminPayloadParser.cpp
- │ │ ├── MUCAdminPayloadParser.h
- │ │ ├── MUCAdminPayloadParser.o
- │ │ ├── MUCDestroyPayloadParser.cpp
- │ │ ├── MUCDestroyPayloadParser.h
- │ │ ├── MUCDestroyPayloadParser.o
- │ │ ├── MUCInvitationPayloadParser.cpp
- │ │ ├── MUCInvitationPayloadParser.h
- │ │ ├── MUCInvitationPayloadParser.o
- │ │ ├── MUCItemParser.cpp
- │ │ ├── MUCItemParser.h
- │ │ ├── MUCItemParser.o
- │ │ ├── MUCOwnerPayloadParser.cpp
- │ │ ├── MUCOwnerPayloadParserFactory.h
- │ │ ├── MUCOwnerPayloadParser.h
- │ │ ├── MUCOwnerPayloadParser.o
- │ │ ├── MUCUserPayloadParser.cpp
- │ │ ├── MUCUserPayloadParserFactory.h
- │ │ ├── MUCUserPayloadParser.h
- │ │ ├── MUCUserPayloadParser.o
- │ │ ├── NicknameParser.cpp
- │ │ ├── NicknameParser.h
- │ │ ├── NicknameParser.o
- │ │ ├── PriorityParser.cpp
- │ │ ├── PriorityParser.h
- │ │ ├── PriorityParser.o
- │ │ ├── PrivateStorageParser.cpp
- │ │ ├── PrivateStorageParserFactory.h
- │ │ ├── PrivateStorageParser.h
- │ │ ├── PrivateStorageParser.o
- │ │ ├── PubSubAffiliationParser.cpp
- │ │ ├── PubSubAffiliationParser.h
- │ │ ├── PubSubAffiliationParser.o
- │ │ ├── PubSubAffiliationsParser.cpp
- │ │ ├── PubSubAffiliationsParser.h
- │ │ ├── PubSubAffiliationsParser.o
- │ │ ├── PubSubConfigureParser.cpp
- │ │ ├── PubSubConfigureParser.h
- │ │ ├── PubSubConfigureParser.o
- │ │ ├── PubSubCreateParser.cpp
- │ │ ├── PubSubCreateParser.h
- │ │ ├── PubSubCreateParser.o
- │ │ ├── PubSubDefaultParser.cpp
- │ │ ├── PubSubDefaultParser.h
- │ │ ├── PubSubDefaultParser.o
- │ │ ├── PubSubErrorParser.cpp
- │ │ ├── PubSubErrorParserFactory.cpp
- │ │ ├── PubSubErrorParserFactory.h
- │ │ ├── PubSubErrorParserFactory.o
- │ │ ├── PubSubErrorParser.h
- │ │ ├── PubSubErrorParser.o
- │ │ ├── PubSubEventAssociateParser.cpp
- │ │ ├── PubSubEventAssociateParser.h
- │ │ ├── PubSubEventAssociateParser.o
- │ │ ├── PubSubEventCollectionParser.cpp
- │ │ ├── PubSubEventCollectionParser.h
- │ │ ├── PubSubEventCollectionParser.o
- │ │ ├── PubSubEventConfigurationParser.cpp
- │ │ ├── PubSubEventConfigurationParser.h
- │ │ ├── PubSubEventConfigurationParser.o
- │ │ ├── PubSubEventDeleteParser.cpp
- │ │ ├── PubSubEventDeleteParser.h
- │ │ ├── PubSubEventDeleteParser.o
- │ │ ├── PubSubEventDisassociateParser.cpp
- │ │ ├── PubSubEventDisassociateParser.h
- │ │ ├── PubSubEventDisassociateParser.o
- │ │ ├── PubSubEventItemParser.cpp
- │ │ ├── PubSubEventItemParser.h
- │ │ ├── PubSubEventItemParser.o
- │ │ ├── PubSubEventItemsParser.cpp
- │ │ ├── PubSubEventItemsParser.h
- │ │ ├── PubSubEventItemsParser.o
- │ │ ├── PubSubEventParser.cpp
- │ │ ├── PubSubEventParser.h
- │ │ ├── PubSubEventParser.o
- │ │ ├── PubSubEventPurgeParser.cpp
- │ │ ├── PubSubEventPurgeParser.h
- │ │ ├── PubSubEventPurgeParser.o
- │ │ ├── PubSubEventRedirectParser.cpp
- │ │ ├── PubSubEventRedirectParser.h
- │ │ ├── PubSubEventRedirectParser.o
- │ │ ├── PubSubEventRetractParser.cpp
- │ │ ├── PubSubEventRetractParser.h
- │ │ ├── PubSubEventRetractParser.o
- │ │ ├── PubSubEventSubscriptionParser.cpp
- │ │ ├── PubSubEventSubscriptionParser.h
- │ │ ├── PubSubEventSubscriptionParser.o
- │ │ ├── PubSubItemParser.cpp
- │ │ ├── PubSubItemParser.h
- │ │ ├── PubSubItemParser.o
- │ │ ├── PubSubItemsParser.cpp
- │ │ ├── PubSubItemsParser.h
- │ │ ├── PubSubItemsParser.o
- │ │ ├── PubSubOptionsParser.cpp
- │ │ ├── PubSubOptionsParser.h
- │ │ ├── PubSubOptionsParser.o
- │ │ ├── PubSubOwnerAffiliationParser.cpp
- │ │ ├── PubSubOwnerAffiliationParser.h
- │ │ ├── PubSubOwnerAffiliationParser.o
- │ │ ├── PubSubOwnerAffiliationsParser.cpp
- │ │ ├── PubSubOwnerAffiliationsParser.h
- │ │ ├── PubSubOwnerAffiliationsParser.o
- │ │ ├── PubSubOwnerConfigureParser.cpp
- │ │ ├── PubSubOwnerConfigureParser.h
- │ │ ├── PubSubOwnerConfigureParser.o
- │ │ ├── PubSubOwnerDefaultParser.cpp
- │ │ ├── PubSubOwnerDefaultParser.h
- │ │ ├── PubSubOwnerDefaultParser.o
- │ │ ├── PubSubOwnerDeleteParser.cpp
- │ │ ├── PubSubOwnerDeleteParser.h
- │ │ ├── PubSubOwnerDeleteParser.o
- │ │ ├── PubSubOwnerPubSubParser.cpp
- │ │ ├── PubSubOwnerPubSubParser.h
- │ │ ├── PubSubOwnerPubSubParser.o
- │ │ ├── PubSubOwnerPurgeParser.cpp
- │ │ ├── PubSubOwnerPurgeParser.h
- │ │ ├── PubSubOwnerPurgeParser.o
- │ │ ├── PubSubOwnerRedirectParser.cpp
- │ │ ├── PubSubOwnerRedirectParser.h
- │ │ ├── PubSubOwnerRedirectParser.o
- │ │ ├── PubSubOwnerSubscriptionParser.cpp
- │ │ ├── PubSubOwnerSubscriptionParser.h
- │ │ ├── PubSubOwnerSubscriptionParser.o
- │ │ ├── PubSubOwnerSubscriptionsParser.cpp
- │ │ ├── PubSubOwnerSubscriptionsParser.h
- │ │ ├── PubSubOwnerSubscriptionsParser.o
- │ │ ├── PubSubParser.cpp
- │ │ ├── PubSubParser.h
- │ │ ├── PubSubParser.o
- │ │ ├── PubSubPublishParser.cpp
- │ │ ├── PubSubPublishParser.h
- │ │ ├── PubSubPublishParser.o
- │ │ ├── PubSubRetractParser.cpp
- │ │ ├── PubSubRetractParser.h
- │ │ ├── PubSubRetractParser.o
- │ │ ├── PubSubSubscribeOptionsParser.cpp
- │ │ ├── PubSubSubscribeOptionsParser.h
- │ │ ├── PubSubSubscribeOptionsParser.o
- │ │ ├── PubSubSubscribeParser.cpp
- │ │ ├── PubSubSubscribeParser.h
- │ │ ├── PubSubSubscribeParser.o
- │ │ ├── PubSubSubscriptionParser.cpp
- │ │ ├── PubSubSubscriptionParser.h
- │ │ ├── PubSubSubscriptionParser.o
- │ │ ├── PubSubSubscriptionsParser.cpp
- │ │ ├── PubSubSubscriptionsParser.h
- │ │ ├── PubSubSubscriptionsParser.o
- │ │ ├── PubSubUnsubscribeParser.cpp
- │ │ ├── PubSubUnsubscribeParser.h
- │ │ ├── PubSubUnsubscribeParser.o
- │ │ ├── RawXMLPayloadParser.cpp
- │ │ ├── RawXMLPayloadParserFactory.h
- │ │ ├── RawXMLPayloadParser.h
- │ │ ├── RawXMLPayloadParser.o
- │ │ ├── ReferencePayloadParser.cpp
- │ │ ├── ReferencePayloadParser.h
- │ │ ├── ReferencePayloadParser.o
- │ │ ├── ReplaceParser.cpp
- │ │ ├── ReplaceParser.h
- │ │ ├── ReplaceParser.o
- │ │ ├── ResourceBindParser.cpp
- │ │ ├── ResourceBindParser.h
- │ │ ├── ResourceBindParser.o
- │ │ ├── ResultSetParser.cpp
- │ │ ├── ResultSetParser.h
- │ │ ├── ResultSetParser.o
- │ │ ├── RosterItemExchangeParser.cpp
- │ │ ├── RosterItemExchangeParser.h
- │ │ ├── RosterItemExchangeParser.o
- │ │ ├── RosterParser.cpp
- │ │ ├── RosterParser.h
- │ │ ├── RosterParser.o
- │ │ ├── S5BProxyRequestParser.cpp
- │ │ ├── S5BProxyRequestParser.h
- │ │ ├── S5BProxyRequestParser.o
- │ │ ├── SearchPayloadParser.cpp
- │ │ ├── SearchPayloadParser.h
- │ │ ├── SearchPayloadParser.o
- │ │ ├── SecurityLabelParser.cpp
- │ │ ├── SecurityLabelParserFactory.h
- │ │ ├── SecurityLabelParser.h
- │ │ ├── SecurityLabelParser.o
- │ │ ├── SecurityLabelsCatalogParser.cpp
- │ │ ├── SecurityLabelsCatalogParser.h
- │ │ ├── SecurityLabelsCatalogParser.o
- │ │ ├── SoftwareVersionParser.cpp
- │ │ ├── SoftwareVersionParser.h
- │ │ ├── SoftwareVersionParser.o
- │ │ ├── StartSessionParser.h
- │ │ ├── StatusParser.cpp
- │ │ ├── StatusParser.h
- │ │ ├── StatusParser.o
- │ │ ├── StatusShowParser.cpp
- │ │ ├── StatusShowParser.h
- │ │ ├── StatusShowParser.o
- │ │ ├── StorageParser.cpp
- │ │ ├── StorageParser.h
- │ │ ├── StorageParser.o
- │ │ ├── StreamInitiationFileInfoParser.cpp
- │ │ ├── StreamInitiationFileInfoParser.h
- │ │ ├── StreamInitiationFileInfoParser.o
- │ │ ├── StreamInitiationParser.cpp
- │ │ ├── StreamInitiationParser.h
- │ │ ├── StreamInitiationParser.o
- │ │ ├── SubjectParser.cpp
- │ │ ├── SubjectParser.h
- │ │ ├── SubjectParser.o
- │ │ ├── ThreadParser.cpp
- │ │ ├── ThreadParser.h
- │ │ ├── ThreadParser.o
- │ │ ├── UnitTest
- │ │ │ ├── BlockParserTest.cpp
- │ │ │ ├── BodyParserTest.cpp
- │ │ │ ├── CarbonsParserTest.cpp
- │ │ │ ├── ClientStateParserTest.cpp
- │ │ │ ├── CommandParserTest.cpp
- │ │ │ ├── DeliveryReceiptParserTest.cpp
- │ │ │ ├── DiscoInfoParserTest.cpp
- │ │ │ ├── DiscoItemsParserTest.cpp
- │ │ │ ├── ErrorParserTest.cpp
- │ │ │ ├── FormParserTest.cpp
- │ │ │ ├── ForwardedParserTest.cpp
- │ │ │ ├── IBBParserTest.cpp
- │ │ │ ├── IdleParserTest.cpp
- │ │ │ ├── InBandRegistrationPayloadParserTest.cpp
- │ │ │ ├── JingleParserTest.cpp
- │ │ │ ├── MAMFinParserTest.cpp
- │ │ │ ├── MAMQueryParserTest.cpp
- │ │ │ ├── MAMResultParserTest.cpp
- │ │ │ ├── MIXCreateParserTest.cpp
- │ │ │ ├── MIXDestroyParser.cpp
- │ │ │ ├── MIXDestroyParserTest.cpp
- │ │ │ ├── MIXJoinParserTest.cpp
- │ │ │ ├── MIXLeaveParserTest.cpp
- │ │ │ ├── MIXParticipantParserTest.cpp
- │ │ │ ├── MIXPayloadParserTest.cpp
- │ │ │ ├── MIXRegisterNickParserTest.cpp
- │ │ │ ├── MIXSetNickParserTest.cpp
- │ │ │ ├── MIXUpdateSubscriptionParserTest.cpp
- │ │ │ ├── MIXUserPreferenceParserTest.cpp
- │ │ │ ├── MUCAdminPayloadParserTest.cpp
- │ │ │ ├── MUCUserPayloadParserTest.cpp
- │ │ │ ├── PayloadParserTester.h
- │ │ │ ├── PayloadsParserTester.h
- │ │ │ ├── PriorityParserTest.cpp
- │ │ │ ├── PrivateStorageParserTest.cpp
- │ │ │ ├── PubSubRetractParserTest.cpp
- │ │ │ ├── RawXMLPayloadParserTest.cpp
- │ │ │ ├── ReferencePayloadParserTest.cpp
- │ │ │ ├── ReplaceTest.cpp
- │ │ │ ├── ResourceBindParserTest.cpp
- │ │ │ ├── ResultSetParserTest.cpp
- │ │ │ ├── RosterItemExchangeParserTest.cpp
- │ │ │ ├── RosterParserTest.cpp
- │ │ │ ├── SearchPayloadParserTest.cpp
- │ │ │ ├── SecurityLabelParserTest.cpp
- │ │ │ ├── SecurityLabelsCatalogParserTest.cpp
- │ │ │ ├── SoftwareVersionParserTest.cpp
- │ │ │ ├── StatusParserTest.cpp
- │ │ │ ├── StatusShowParserTest.cpp
- │ │ │ ├── StorageParserTest.cpp
- │ │ │ ├── StreamInitiationParserTest.cpp
- │ │ │ ├── UserLocationParserTest.cpp
- │ │ │ ├── UserTuneParserTest.cpp
- │ │ │ ├── VCardParserTest.cpp
- │ │ │ └── VCardUpdateParserTest.cpp
- │ │ ├── UserLocationParser.cpp
- │ │ ├── UserLocationParser.h
- │ │ ├── UserLocationParser.o
- │ │ ├── UserTuneParser.cpp
- │ │ ├── UserTuneParser.h
- │ │ ├── UserTuneParser.o
- │ │ ├── VCardParser.cpp
- │ │ ├── VCardParser.h
- │ │ ├── VCardParser.o
- │ │ ├── VCardUpdateParser.cpp
- │ │ ├── VCardUpdateParser.h
- │ │ ├── VCardUpdateParser.o
- │ │ ├── WhiteboardParser.cpp
- │ │ ├── WhiteboardParser.h
- │ │ └── WhiteboardParser.o
- │ ├── PlatformXMLParserFactory.cpp
- │ ├── PlatformXMLParserFactory.h
- │ ├── PlatformXMLParserFactory.o
- │ ├── PresenceParser.cpp
- │ ├── PresenceParser.h
- │ ├── PresenceParser.o
- │ ├── SConscript
- │ ├── SerializingParser.cpp
- │ ├── SerializingParser.h
- │ ├── SerializingParser.o
- │ ├── StanzaAckParser.cpp
- │ ├── StanzaAckParser.h
- │ ├── StanzaAckParser.o
- │ ├── StanzaAckRequestParser.h
- │ ├── StanzaParser.cpp
- │ ├── StanzaParser.h
- │ ├── StanzaParser.o
- │ ├── StartTLSFailureParser.h
- │ ├── StartTLSParser.h
- │ ├── StreamErrorParser.cpp
- │ ├── StreamErrorParser.h
- │ ├── StreamErrorParser.o
- │ ├── StreamFeaturesParser.cpp
- │ ├── StreamFeaturesParser.h
- │ ├── StreamFeaturesParser.o
- │ ├── StreamManagementEnabledParser.cpp
- │ ├── StreamManagementEnabledParser.h
- │ ├── StreamManagementEnabledParser.o
- │ ├── StreamManagementFailedParser.h
- │ ├── StreamResumedParser.cpp
- │ ├── StreamResumedParser.h
- │ ├── StreamResumedParser.o
- │ ├── StreamResumeParser.cpp
- │ ├── StreamResumeParser.h
- │ ├── StreamResumeParser.o
- │ ├── TLSProceedParser.h
- │ ├── Tree
- │ │ ├── NullParserElement.cpp
- │ │ ├── NullParserElement.h
- │ │ ├── NullParserElement.o
- │ │ ├── ParserElement.cpp
- │ │ ├── ParserElement.h
- │ │ ├── ParserElement.o
- │ │ ├── TreeReparser.cpp
- │ │ ├── TreeReparser.h
- │ │ └── TreeReparser.o
- │ ├── UnitTest
- │ │ ├── AttributeMapTest.cpp
- │ │ ├── BOSHBodyExtractorTest.cpp
- │ │ ├── ElementParserTester.h
- │ │ ├── EnumParserTest.cpp
- │ │ ├── GenericPayloadTreeParserTest.cpp
- │ │ ├── IQParserTest.cpp
- │ │ ├── MessageParserTest.cpp
- │ │ ├── ParserTester.h
- │ │ ├── PayloadParserFactoryCollectionTest.cpp
- │ │ ├── PresenceParserTest.cpp
- │ │ ├── SerializingParserTest.cpp
- │ │ ├── StanzaAckParserTest.cpp
- │ │ ├── StanzaParserTest.cpp
- │ │ ├── StanzaParserTester.h
- │ │ ├── StreamFeaturesParserTest.cpp
- │ │ ├── StreamManagementEnabledParserTest.cpp
- │ │ ├── XMLParserTest.cpp
- │ │ └── XMPPParserTest.cpp
- │ ├── UnknownElementParser.h
- │ ├── UnknownPayloadParser.h
- │ ├── XMLParserClient.cpp
- │ ├── XMLParserClient.h
- │ ├── XMLParserClient.o
- │ ├── XMLParser.cpp
- │ ├── XMLParserFactory.cpp
- │ ├── XMLParserFactory.h
- │ ├── XMLParserFactory.o
- │ ├── XMLParser.h
- │ ├── XMLParser.o
- │ ├── XMPPParserClient.cpp
- │ ├── XMPPParserClient.h
- │ ├── XMPPParserClient.o
- │ ├── XMPPParser.cpp
- │ ├── XMPPParser.h
- │ └── XMPPParser.o
- ├── Presence
- │ ├── DirectedPresenceSender.cpp
- │ ├── DirectedPresenceSender.h
- │ ├── DirectedPresenceSender.o
- │ ├── PayloadAddingPresenceSender.cpp
- │ ├── PayloadAddingPresenceSender.h
- │ ├── PayloadAddingPresenceSender.o
- │ ├── PresenceOracle.cpp
- │ ├── PresenceOracle.h
- │ ├── PresenceOracle.o
- │ ├── PresenceSender.cpp
- │ ├── PresenceSender.h
- │ ├── PresenceSender.o
- │ ├── SConscript
- │ ├── StanzaChannelPresenceSender.cpp
- │ ├── StanzaChannelPresenceSender.h
- │ ├── StanzaChannelPresenceSender.o
- │ ├── SubscriptionManager.cpp
- │ ├── SubscriptionManager.h
- │ ├── SubscriptionManager.o
- │ └── UnitTest
- │ ├── DirectedPresenceSenderTest.cpp
- │ ├── PayloadAddingPresenceSenderTest.cpp
- │ └── PresenceOracleTest.cpp
- ├── PubSub
- │ ├── PubSubManager.cpp
- │ ├── PubSubManager.h
- │ ├── PubSubManagerImpl.cpp
- │ ├── PubSubManagerImpl.h
- │ ├── PubSubManagerImpl.o
- │ ├── PubSubManager.o
- │ └── PubSubUtil.h
- ├── QA
- │ ├── ClientTest
- │ │ ├── ClientTest.cpp
- │ │ └── SConscript
- │ ├── ConcurrentFileTransferTest
- │ │ ├── ConcurrentFileTransferTest.cpp
- │ │ └── SConscript
- │ ├── DNSSDTest
- │ │ ├── DNSSDTest.cpp
- │ │ └── SConscript
- │ ├── FileTransferTest
- │ │ ├── FileTransferTest.cpp
- │ │ └── SConscript
- │ ├── NetworkTest
- │ │ ├── BoostConnectionServerTest.cpp
- │ │ ├── BoostConnectionTest.cpp
- │ │ ├── DomainNameResolverTest.cpp
- │ │ └── SConscript
- │ ├── ProxyProviderTest
- │ │ ├── ProxyProviderTest.cpp
- │ │ └── SConscript
- │ ├── ReconnectTest
- │ │ ├── ReconnectTest.cpp
- │ │ └── SConscript
- │ ├── SConscript
- │ ├── ScriptedTests
- │ │ ├── MultipleClients.lua
- │ │ ├── PubSub.lua
- │ │ ├── SConscript
- │ │ └── SendMessage.lua
- │ ├── StorageTest
- │ │ ├── FileReadBytestreamTest.cpp
- │ │ ├── FileWriteBytestreamTest.cpp
- │ │ ├── SConscript
- │ │ └── VCardFileStorageTest.cpp
- │ └── TLSTest
- │ ├── CertificateErrorTest.cpp
- │ ├── CertificateTest.cpp
- │ ├── jabber_org.crt
- │ └── SConscript
- ├── Queries
- │ ├── DummyIQChannel.h
- │ ├── GenericRequest.h
- │ ├── GetResponder.h
- │ ├── IQChannel.cpp
- │ ├── IQChannel.h
- │ ├── IQChannel.o
- │ ├── IQHandler.cpp
- │ ├── IQHandler.h
- │ ├── IQHandler.o
- │ ├── IQRouter.cpp
- │ ├── IQRouter.h
- │ ├── IQRouter.o
- │ ├── PubSubRequest.h
- │ ├── RawRequest.h
- │ ├── Request.cpp
- │ ├── Request.h
- │ ├── Request.o
- │ ├── Requests
- │ │ ├── EnableCarbonsRequest.h
- │ │ ├── GetInBandRegistrationFormRequest.h
- │ │ ├── GetPrivateStorageRequest.h
- │ │ ├── GetSecurityLabelsCatalogRequest.h
- │ │ ├── GetSoftwareVersionRequest.h
- │ │ ├── SetPrivateStorageRequest.h
- │ │ ├── SubmitInBandRegistrationFormRequest.h
- │ │ └── UnitTest
- │ │ └── GetPrivateStorageRequestTest.cpp
- │ ├── Responder.h
- │ ├── Responders
- │ │ ├── SoftwareVersionResponder.cpp
- │ │ ├── SoftwareVersionResponder.h
- │ │ └── SoftwareVersionResponder.o
- │ ├── SetResponder.h
- │ └── UnitTest
- │ ├── IQRouterTest.cpp
- │ ├── RequestTest.cpp
- │ └── ResponderTest.cpp
- ├── Roster
- │ ├── GetRosterRequest.h
- │ ├── RosterMemoryStorage.cpp
- │ ├── RosterMemoryStorage.h
- │ ├── RosterMemoryStorage.o
- │ ├── RosterPushResponder.h
- │ ├── RosterStorage.cpp
- │ ├── RosterStorage.h
- │ ├── RosterStorage.o
- │ ├── SetRosterRequest.h
- │ ├── UnitTest
- │ │ ├── XMPPRosterControllerTest.cpp
- │ │ ├── XMPPRosterImplTest.cpp
- │ │ ├── XMPPRosterSignalHandler.cpp
- │ │ └── XMPPRosterSignalHandler.h
- │ ├── XMPPRosterController.cpp
- │ ├── XMPPRosterController.h
- │ ├── XMPPRosterController.o
- │ ├── XMPPRoster.cpp
- │ ├── XMPPRoster.h
- │ ├── XMPPRosterImpl.cpp
- │ ├── XMPPRosterImpl.h
- │ ├── XMPPRosterImpl.o
- │ ├── XMPPRosterItem.h
- │ └── XMPPRoster.o
- ├── SASL
- │ ├── ClientAuthenticator.cpp
- │ ├── ClientAuthenticator.h
- │ ├── ClientAuthenticator.o
- │ ├── DIGESTMD5ClientAuthenticator.cpp
- │ ├── DIGESTMD5ClientAuthenticator.h
- │ ├── DIGESTMD5ClientAuthenticator.o
- │ ├── DIGESTMD5Properties.cpp
- │ ├── DIGESTMD5Properties.h
- │ ├── DIGESTMD5Properties.o
- │ ├── EXTERNALClientAuthenticator.cpp
- │ ├── EXTERNALClientAuthenticator.h
- │ ├── EXTERNALClientAuthenticator.o
- │ ├── PLAINClientAuthenticator.cpp
- │ ├── PLAINClientAuthenticator.h
- │ ├── PLAINClientAuthenticator.o
- │ ├── PLAINMessage.cpp
- │ ├── PLAINMessage.h
- │ ├── PLAINMessage.o
- │ ├── SConscript
- │ ├── SCRAMSHA1ClientAuthenticator.cpp
- │ ├── SCRAMSHA1ClientAuthenticator.h
- │ ├── SCRAMSHA1ClientAuthenticator.o
- │ ├── UnitTest
- │ │ ├── DIGESTMD5ClientAuthenticatorTest.cpp
- │ │ ├── DIGESTMD5PropertiesTest.cpp
- │ │ ├── EXTERNALClientAuthenticatorTest.cpp
- │ │ ├── PLAINClientAuthenticatorTest.cpp
- │ │ ├── PLAINMessageTest.cpp
- │ │ ├── SCRAMSHA1ClientAuthenticatorTest.cpp
- │ │ └── WindowsServicePrincipalNameTest.cpp
- │ ├── WindowsAuthentication.cpp
- │ ├── WindowsAuthentication.h
- │ ├── WindowsGSSAPIClientAuthenticator.cpp
- │ ├── WindowsGSSAPIClientAuthenticator.h
- │ ├── WindowsServicePrincipalName.cpp
- │ └── WindowsServicePrincipalName.h
- ├── SConscript
- ├── Serializer
- │ ├── AuthChallengeSerializer.cpp
- │ ├── AuthChallengeSerializer.h
- │ ├── AuthChallengeSerializer.o
- │ ├── AuthFailureSerializer.h
- │ ├── AuthRequestSerializer.cpp
- │ ├── AuthRequestSerializer.h
- │ ├── AuthRequestSerializer.o
- │ ├── AuthResponseSerializer.cpp
- │ ├── AuthResponseSerializer.h
- │ ├── AuthResponseSerializer.o
- │ ├── AuthSuccessSerializer.cpp
- │ ├── AuthSuccessSerializer.h
- │ ├── AuthSuccessSerializer.o
- │ ├── ComponentHandshakeSerializer.cpp
- │ ├── ComponentHandshakeSerializer.h
- │ ├── ComponentHandshakeSerializer.o
- │ ├── CompressFailureSerializer.h
- │ ├── CompressRequestSerializer.cpp
- │ ├── CompressRequestSerializer.h
- │ ├── CompressRequestSerializer.o
- │ ├── ElementSerializer.cpp
- │ ├── ElementSerializer.h
- │ ├── ElementSerializer.o
- │ ├── EnableStreamManagementSerializer.h
- │ ├── GenericElementSerializer.h
- │ ├── GenericPayloadSerializer.h
- │ ├── GenericStanzaSerializer.h
- │ ├── IQSerializer.h
- │ ├── MessageSerializer.cpp
- │ ├── MessageSerializer.h
- │ ├── MessageSerializer.o
- │ ├── PayloadSerializerCollection.cpp
- │ ├── PayloadSerializerCollection.h
- │ ├── PayloadSerializerCollection.o
- │ ├── PayloadSerializer.cpp
- │ ├── PayloadSerializer.h
- │ ├── PayloadSerializer.o
- │ ├── PayloadSerializers
- │ │ ├── BlockSerializer.h
- │ │ ├── BodySerializer.h
- │ │ ├── BytestreamsSerializer.cpp
- │ │ ├── BytestreamsSerializer.h
- │ │ ├── BytestreamsSerializer.o
- │ │ ├── CapsInfoSerializer.cpp
- │ │ ├── CapsInfoSerializer.h
- │ │ ├── CapsInfoSerializer.o
- │ │ ├── CarbonsDisableSerializer.cpp
- │ │ ├── CarbonsDisableSerializer.h
- │ │ ├── CarbonsDisableSerializer.o
- │ │ ├── CarbonsEnableSerializer.cpp
- │ │ ├── CarbonsEnableSerializer.h
- │ │ ├── CarbonsEnableSerializer.o
- │ │ ├── CarbonsPrivateSerializer.cpp
- │ │ ├── CarbonsPrivateSerializer.h
- │ │ ├── CarbonsPrivateSerializer.o
- │ │ ├── CarbonsReceivedSerializer.cpp
- │ │ ├── CarbonsReceivedSerializer.h
- │ │ ├── CarbonsReceivedSerializer.o
- │ │ ├── CarbonsSentSerializer.cpp
- │ │ ├── CarbonsSentSerializer.h
- │ │ ├── CarbonsSentSerializer.o
- │ │ ├── ChatStateSerializer.cpp
- │ │ ├── ChatStateSerializer.h
- │ │ ├── ChatStateSerializer.o
- │ │ ├── ClientStateSerializer.cpp
- │ │ ├── ClientStateSerializer.h
- │ │ ├── ClientStateSerializer.o
- │ │ ├── CommandSerializer.cpp
- │ │ ├── CommandSerializer.h
- │ │ ├── CommandSerializer.o
- │ │ ├── DelaySerializer.cpp
- │ │ ├── DelaySerializer.h
- │ │ ├── DelaySerializer.o
- │ │ ├── DeliveryReceiptRequestSerializer.cpp
- │ │ ├── DeliveryReceiptRequestSerializer.h
- │ │ ├── DeliveryReceiptRequestSerializer.o
- │ │ ├── DeliveryReceiptSerializer.cpp
- │ │ ├── DeliveryReceiptSerializer.h
- │ │ ├── DeliveryReceiptSerializer.o
- │ │ ├── DiscoInfoSerializer.cpp
- │ │ ├── DiscoInfoSerializer.h
- │ │ ├── DiscoInfoSerializer.o
- │ │ ├── DiscoItemsSerializer.cpp
- │ │ ├── DiscoItemsSerializer.h
- │ │ ├── DiscoItemsSerializer.o
- │ │ ├── ErrorSerializer.cpp
- │ │ ├── ErrorSerializer.h
- │ │ ├── ErrorSerializer.o
- │ │ ├── FormSerializer.cpp
- │ │ ├── FormSerializer.h
- │ │ ├── FormSerializer.o
- │ │ ├── ForwardedSerializer.cpp
- │ │ ├── ForwardedSerializer.h
- │ │ ├── ForwardedSerializer.o
- │ │ ├── FullPayloadSerializerCollection.cpp
- │ │ ├── FullPayloadSerializerCollection.h
- │ │ ├── FullPayloadSerializerCollection.o
- │ │ ├── IBBSerializer.cpp
- │ │ ├── IBBSerializer.h
- │ │ ├── IBBSerializer.o
- │ │ ├── IdleSerializer.h
- │ │ ├── InBandRegistrationPayloadSerializer.cpp
- │ │ ├── InBandRegistrationPayloadSerializer.h
- │ │ ├── InBandRegistrationPayloadSerializer.o
- │ │ ├── IsodeIQDelegationSerializer.cpp
- │ │ ├── IsodeIQDelegationSerializer.h
- │ │ ├── IsodeIQDelegationSerializer.o
- │ │ ├── JingleContentPayloadSerializer.cpp
- │ │ ├── JingleContentPayloadSerializer.h
- │ │ ├── JingleContentPayloadSerializer.o
- │ │ ├── JingleFileTransferDescriptionSerializer.cpp
- │ │ ├── JingleFileTransferDescriptionSerializer.h
- │ │ ├── JingleFileTransferDescriptionSerializer.o
- │ │ ├── JingleFileTransferFileInfoSerializer.cpp
- │ │ ├── JingleFileTransferFileInfoSerializer.h
- │ │ ├── JingleFileTransferFileInfoSerializer.o
- │ │ ├── JingleFileTransferHashSerializer.cpp
- │ │ ├── JingleFileTransferHashSerializer.h
- │ │ ├── JingleFileTransferHashSerializer.o
- │ │ ├── JingleIBBTransportPayloadSerializer.cpp
- │ │ ├── JingleIBBTransportPayloadSerializer.h
- │ │ ├── JingleIBBTransportPayloadSerializer.o
- │ │ ├── JinglePayloadSerializer.cpp
- │ │ ├── JinglePayloadSerializer.h
- │ │ ├── JinglePayloadSerializer.o
- │ │ ├── JingleS5BTransportPayloadSerializer.cpp
- │ │ ├── JingleS5BTransportPayloadSerializer.h
- │ │ ├── JingleS5BTransportPayloadSerializer.o
- │ │ ├── LastSerializer.h
- │ │ ├── MAMFinSerializer.cpp
- │ │ ├── MAMFinSerializer.h
- │ │ ├── MAMFinSerializer.o
- │ │ ├── MAMQuerySerializer.cpp
- │ │ ├── MAMQuerySerializer.h
- │ │ ├── MAMQuerySerializer.o
- │ │ ├── MAMResultSerializer.cpp
- │ │ ├── MAMResultSerializer.h
- │ │ ├── MAMResultSerializer.o
- │ │ ├── MIXCreateSerializer.cpp
- │ │ ├── MIXCreateSerializer.h
- │ │ ├── MIXCreateSerializer.o
- │ │ ├── MIXDestroySerializer.cpp
- │ │ ├── MIXDestroySerializer.h
- │ │ ├── MIXDestroySerializer.o
- │ │ ├── MIXJoinSerializer.cpp
- │ │ ├── MIXJoinSerializer.h
- │ │ ├── MIXJoinSerializer.o
- │ │ ├── MIXLeaveSerializer.cpp
- │ │ ├── MIXLeaveSerializer.h
- │ │ ├── MIXLeaveSerializer.o
- │ │ ├── MIXParticipantSerializer.cpp
- │ │ ├── MIXParticipantSerializer.h
- │ │ ├── MIXParticipantSerializer.o
- │ │ ├── MIXPayloadSerializer.cpp
- │ │ ├── MIXPayloadSerializer.h
- │ │ ├── MIXPayloadSerializer.o
- │ │ ├── MIXRegisterNickSerializer.cpp
- │ │ ├── MIXRegisterNickSerializer.h
- │ │ ├── MIXRegisterNickSerializer.o
- │ │ ├── MIXSetNickSerializer.cpp
- │ │ ├── MIXSetNickSerializer.h
- │ │ ├── MIXSetNickSerializer.o
- │ │ ├── MIXUpdateSubscriptionSerializer.cpp
- │ │ ├── MIXUpdateSubscriptionSerializer.h
- │ │ ├── MIXUpdateSubscriptionSerializer.o
- │ │ ├── MIXUserPreferenceSerializer.cpp
- │ │ ├── MIXUserPreferenceSerializer.h
- │ │ ├── MIXUserPreferenceSerializer.o
- │ │ ├── MUCAdminPayloadSerializer.cpp
- │ │ ├── MUCAdminPayloadSerializer.h
- │ │ ├── MUCAdminPayloadSerializer.o
- │ │ ├── MUCDestroyPayloadSerializer.cpp
- │ │ ├── MUCDestroyPayloadSerializer.h
- │ │ ├── MUCDestroyPayloadSerializer.o
- │ │ ├── MUCInvitationPayloadSerializer.cpp
- │ │ ├── MUCInvitationPayloadSerializer.h
- │ │ ├── MUCInvitationPayloadSerializer.o
- │ │ ├── MUCItemSerializer.h
- │ │ ├── MUCOwnerPayloadSerializer.cpp
- │ │ ├── MUCOwnerPayloadSerializer.h
- │ │ ├── MUCOwnerPayloadSerializer.o
- │ │ ├── MUCPayloadSerializer.cpp
- │ │ ├── MUCPayloadSerializer.h
- │ │ ├── MUCPayloadSerializer.o
- │ │ ├── MUCUserPayloadSerializer.cpp
- │ │ ├── MUCUserPayloadSerializer.h
- │ │ ├── MUCUserPayloadSerializer.o
- │ │ ├── NicknameSerializer.cpp
- │ │ ├── NicknameSerializer.h
- │ │ ├── NicknameSerializer.o
- │ │ ├── PrioritySerializer.h
- │ │ ├── PrivateStorageSerializer.cpp
- │ │ ├── PrivateStorageSerializer.h
- │ │ ├── PrivateStorageSerializer.o
- │ │ ├── PubSubAffiliationSerializer.cpp
- │ │ ├── PubSubAffiliationSerializer.h
- │ │ ├── PubSubAffiliationSerializer.o
- │ │ ├── PubSubAffiliationsSerializer.cpp
- │ │ ├── PubSubAffiliationsSerializer.h
- │ │ ├── PubSubAffiliationsSerializer.o
- │ │ ├── PubSubConfigureSerializer.cpp
- │ │ ├── PubSubConfigureSerializer.h
- │ │ ├── PubSubConfigureSerializer.o
- │ │ ├── PubSubCreateSerializer.cpp
- │ │ ├── PubSubCreateSerializer.h
- │ │ ├── PubSubCreateSerializer.o
- │ │ ├── PubSubDefaultSerializer.cpp
- │ │ ├── PubSubDefaultSerializer.h
- │ │ ├── PubSubDefaultSerializer.o
- │ │ ├── PubSubErrorSerializer.cpp
- │ │ ├── PubSubErrorSerializer.h
- │ │ ├── PubSubErrorSerializer.o
- │ │ ├── PubSubEventAssociateSerializer.cpp
- │ │ ├── PubSubEventAssociateSerializer.h
- │ │ ├── PubSubEventAssociateSerializer.o
- │ │ ├── PubSubEventCollectionSerializer.cpp
- │ │ ├── PubSubEventCollectionSerializer.h
- │ │ ├── PubSubEventCollectionSerializer.o
- │ │ ├── PubSubEventConfigurationSerializer.cpp
- │ │ ├── PubSubEventConfigurationSerializer.h
- │ │ ├── PubSubEventConfigurationSerializer.o
- │ │ ├── PubSubEventDeleteSerializer.cpp
- │ │ ├── PubSubEventDeleteSerializer.h
- │ │ ├── PubSubEventDeleteSerializer.o
- │ │ ├── PubSubEventDisassociateSerializer.cpp
- │ │ ├── PubSubEventDisassociateSerializer.h
- │ │ ├── PubSubEventDisassociateSerializer.o
- │ │ ├── PubSubEventItemSerializer.cpp
- │ │ ├── PubSubEventItemSerializer.h
- │ │ ├── PubSubEventItemSerializer.o
- │ │ ├── PubSubEventItemsSerializer.cpp
- │ │ ├── PubSubEventItemsSerializer.h
- │ │ ├── PubSubEventItemsSerializer.o
- │ │ ├── PubSubEventPurgeSerializer.cpp
- │ │ ├── PubSubEventPurgeSerializer.h
- │ │ ├── PubSubEventPurgeSerializer.o
- │ │ ├── PubSubEventRedirectSerializer.cpp
- │ │ ├── PubSubEventRedirectSerializer.h
- │ │ ├── PubSubEventRedirectSerializer.o
- │ │ ├── PubSubEventRetractSerializer.cpp
- │ │ ├── PubSubEventRetractSerializer.h
- │ │ ├── PubSubEventRetractSerializer.o
- │ │ ├── PubSubEventSerializer.cpp
- │ │ ├── PubSubEventSerializer.h
- │ │ ├── PubSubEventSerializer.o
- │ │ ├── PubSubEventSubscriptionSerializer.cpp
- │ │ ├── PubSubEventSubscriptionSerializer.h
- │ │ ├── PubSubEventSubscriptionSerializer.o
- │ │ ├── PubSubItemSerializer.cpp
- │ │ ├── PubSubItemSerializer.h
- │ │ ├── PubSubItemSerializer.o
- │ │ ├── PubSubItemsSerializer.cpp
- │ │ ├── PubSubItemsSerializer.h
- │ │ ├── PubSubItemsSerializer.o
- │ │ ├── PubSubOptionsSerializer.cpp
- │ │ ├── PubSubOptionsSerializer.h
- │ │ ├── PubSubOptionsSerializer.o
- │ │ ├── PubSubOwnerAffiliationSerializer.cpp
- │ │ ├── PubSubOwnerAffiliationSerializer.h
- │ │ ├── PubSubOwnerAffiliationSerializer.o
- │ │ ├── PubSubOwnerAffiliationsSerializer.cpp
- │ │ ├── PubSubOwnerAffiliationsSerializer.h
- │ │ ├── PubSubOwnerAffiliationsSerializer.o
- │ │ ├── PubSubOwnerConfigureSerializer.cpp
- │ │ ├── PubSubOwnerConfigureSerializer.h
- │ │ ├── PubSubOwnerConfigureSerializer.o
- │ │ ├── PubSubOwnerDefaultSerializer.cpp
- │ │ ├── PubSubOwnerDefaultSerializer.h
- │ │ ├── PubSubOwnerDefaultSerializer.o
- │ │ ├── PubSubOwnerDeleteSerializer.cpp
- │ │ ├── PubSubOwnerDeleteSerializer.h
- │ │ ├── PubSubOwnerDeleteSerializer.o
- │ │ ├── PubSubOwnerPubSubSerializer.cpp
- │ │ ├── PubSubOwnerPubSubSerializer.h
- │ │ ├── PubSubOwnerPubSubSerializer.o
- │ │ ├── PubSubOwnerPurgeSerializer.cpp
- │ │ ├── PubSubOwnerPurgeSerializer.h
- │ │ ├── PubSubOwnerPurgeSerializer.o
- │ │ ├── PubSubOwnerRedirectSerializer.cpp
- │ │ ├── PubSubOwnerRedirectSerializer.h
- │ │ ├── PubSubOwnerRedirectSerializer.o
- │ │ ├── PubSubOwnerSubscriptionSerializer.cpp
- │ │ ├── PubSubOwnerSubscriptionSerializer.h
- │ │ ├── PubSubOwnerSubscriptionSerializer.o
- │ │ ├── PubSubOwnerSubscriptionsSerializer.cpp
- │ │ ├── PubSubOwnerSubscriptionsSerializer.h
- │ │ ├── PubSubOwnerSubscriptionsSerializer.o
- │ │ ├── PubSubPublishSerializer.cpp
- │ │ ├── PubSubPublishSerializer.h
- │ │ ├── PubSubPublishSerializer.o
- │ │ ├── PubSubRetractSerializer.cpp
- │ │ ├── PubSubRetractSerializer.h
- │ │ ├── PubSubRetractSerializer.o
- │ │ ├── PubSubSerializer.cpp
- │ │ ├── PubSubSerializer.h
- │ │ ├── PubSubSerializer.o
- │ │ ├── PubSubSubscribeOptionsSerializer.cpp
- │ │ ├── PubSubSubscribeOptionsSerializer.h
- │ │ ├── PubSubSubscribeOptionsSerializer.o
- │ │ ├── PubSubSubscribeSerializer.cpp
- │ │ ├── PubSubSubscribeSerializer.h
- │ │ ├── PubSubSubscribeSerializer.o
- │ │ ├── PubSubSubscriptionSerializer.cpp
- │ │ ├── PubSubSubscriptionSerializer.h
- │ │ ├── PubSubSubscriptionSerializer.o
- │ │ ├── PubSubSubscriptionsSerializer.cpp
- │ │ ├── PubSubSubscriptionsSerializer.h
- │ │ ├── PubSubSubscriptionsSerializer.o
- │ │ ├── PubSubUnsubscribeSerializer.cpp
- │ │ ├── PubSubUnsubscribeSerializer.h
- │ │ ├── PubSubUnsubscribeSerializer.o
- │ │ ├── RawXMLPayloadSerializer.h
- │ │ ├── ReferencePayloadSerializer.cpp
- │ │ ├── ReferencePayloadSerializer.h
- │ │ ├── ReferencePayloadSerializer.o
- │ │ ├── ReplaceSerializer.h
- │ │ ├── ResourceBindSerializer.cpp
- │ │ ├── ResourceBindSerializer.h
- │ │ ├── ResourceBindSerializer.o
- │ │ ├── ResultSetSerializer.cpp
- │ │ ├── ResultSetSerializer.h
- │ │ ├── ResultSetSerializer.o
- │ │ ├── RosterItemExchangeSerializer.cpp
- │ │ ├── RosterItemExchangeSerializer.h
- │ │ ├── RosterItemExchangeSerializer.o
- │ │ ├── RosterSerializer.cpp
- │ │ ├── RosterSerializer.h
- │ │ ├── RosterSerializer.o
- │ │ ├── S5BProxyRequestSerializer.h
- │ │ ├── SearchPayloadSerializer.cpp
- │ │ ├── SearchPayloadSerializer.h
- │ │ ├── SearchPayloadSerializer.o
- │ │ ├── SecurityLabelsCatalogSerializer.cpp
- │ │ ├── SecurityLabelsCatalogSerializer.h
- │ │ ├── SecurityLabelsCatalogSerializer.o
- │ │ ├── SecurityLabelSerializer.cpp
- │ │ ├── SecurityLabelSerializer.h
- │ │ ├── SecurityLabelSerializer.o
- │ │ ├── SoftwareVersionSerializer.cpp
- │ │ ├── SoftwareVersionSerializer.h
- │ │ ├── SoftwareVersionSerializer.o
- │ │ ├── StartSessionSerializer.h
- │ │ ├── StatusSerializer.h
- │ │ ├── StatusShowSerializer.h
- │ │ ├── StorageSerializer.cpp
- │ │ ├── StorageSerializer.h
- │ │ ├── StorageSerializer.o
- │ │ ├── StreamInitiationFileInfoSerializer.cpp
- │ │ ├── StreamInitiationFileInfoSerializer.h
- │ │ ├── StreamInitiationFileInfoSerializer.o
- │ │ ├── StreamInitiationSerializer.cpp
- │ │ ├── StreamInitiationSerializer.h
- │ │ ├── StreamInitiationSerializer.o
- │ │ ├── SubjectSerializer.h
- │ │ ├── ThreadSerializer.cpp
- │ │ ├── ThreadSerializer.h
- │ │ ├── ThreadSerializer.o
- │ │ ├── UnitTest
- │ │ │ ├── BlockSerializerTest.cpp
- │ │ │ ├── CapsInfoSerializerTest.cpp
- │ │ │ ├── CarbonsSerializerTest.cpp
- │ │ │ ├── ChatStateSerializerTest.cpp
- │ │ │ ├── ClientStateSerializerTest.cpp
- │ │ │ ├── DeliveryReceiptSerializerTest.cpp
- │ │ │ ├── DiscoInfoSerializerTest.cpp
- │ │ │ ├── ErrorSerializerTest.cpp
- │ │ │ ├── FormSerializerTest.cpp
- │ │ │ ├── ForwardedSerializerTest.cpp
- │ │ │ ├── IBBSerializerTest.cpp
- │ │ │ ├── IdleSerializerTest.cpp
- │ │ │ ├── InBandRegistrationPayloadSerializerTest.cpp
- │ │ │ ├── IsodeIQDelegationSerializerTest.cpp
- │ │ │ ├── JingleSerializersTest.cpp
- │ │ │ ├── MAMFinSerializerTest.cpp
- │ │ │ ├── MAMQuerySerializerTest.cpp
- │ │ │ ├── MAMResultSerializerTest.cpp
- │ │ │ ├── MIXCreateSerializerTest.cpp
- │ │ │ ├── MIXDestroySerializerTest.cpp
- │ │ │ ├── MIXJoinSerializerTest.cpp
- │ │ │ ├── MIXLeaveSerializerTest.cpp
- │ │ │ ├── MIXParticipantSerializerTest.cpp
- │ │ │ ├── MIXPayloadSerializerTest.cpp
- │ │ │ ├── MIXRegisterNickSerializerTest.cpp
- │ │ │ ├── MIXSetNickSerializerTest.cpp
- │ │ │ ├── MIXUpdateSubscriptionSerializerTest.cpp
- │ │ │ ├── MIXUserPreferenceSerializerTest.cpp
- │ │ │ ├── MUCAdminPayloadSerializerTest.cpp
- │ │ │ ├── PayloadsSerializer.cpp
- │ │ │ ├── PayloadsSerializer.h
- │ │ │ ├── PrioritySerializerTest.cpp
- │ │ │ ├── PrivateStorageSerializerTest.cpp
- │ │ │ ├── PubSubItemSerializerTest.cpp
- │ │ │ ├── PubSubItemsSerializerTest.cpp
- │ │ │ ├── PubSubRetractSerializerTest.cpp
- │ │ │ ├── ReferencePayloadSerializerTest.cpp
- │ │ │ ├── ReplaceSerializerTest.cpp
- │ │ │ ├── ResourceBindSerializerTest.cpp
- │ │ │ ├── ResultSetSerializerTest.cpp
- │ │ │ ├── RosterItemExchangeSerializerTest.cpp
- │ │ │ ├── RosterSerializerTest.cpp
- │ │ │ ├── SearchPayloadSerializerTest.cpp
- │ │ │ ├── SecurityLabelsCatalogSerializerTest.cpp
- │ │ │ ├── SecurityLabelSerializerTest.cpp
- │ │ │ ├── SoftwareVersionSerializerTest.cpp
- │ │ │ ├── StatusSerializerTest.cpp
- │ │ │ ├── StatusShowSerializerTest.cpp
- │ │ │ ├── StorageSerializerTest.cpp
- │ │ │ ├── StreamInitiationSerializerTest.cpp
- │ │ │ ├── UserLocationSerializerTest.cpp
- │ │ │ ├── UserTuneSerializerTest.cpp
- │ │ │ ├── VCardSerializerTest.cpp
- │ │ │ └── VCardUpdateSerializerTest.cpp
- │ │ ├── UserLocationSerializer.cpp
- │ │ ├── UserLocationSerializer.h
- │ │ ├── UserLocationSerializer.o
- │ │ ├── UserTuneSerializer.cpp
- │ │ ├── UserTuneSerializer.h
- │ │ ├── UserTuneSerializer.o
- │ │ ├── VCardSerializer.cpp
- │ │ ├── VCardSerializer.h
- │ │ ├── VCardSerializer.o
- │ │ ├── VCardUpdateSerializer.cpp
- │ │ ├── VCardUpdateSerializer.h
- │ │ ├── VCardUpdateSerializer.o
- │ │ ├── WhiteboardSerializer.cpp
- │ │ ├── WhiteboardSerializer.h
- │ │ └── WhiteboardSerializer.o
- │ ├── PresenceSerializer.cpp
- │ ├── PresenceSerializer.h
- │ ├── PresenceSerializer.o
- │ ├── StanzaAckRequestSerializer.h
- │ ├── StanzaAckSerializer.h
- │ ├── StanzaSerializer.cpp
- │ ├── StanzaSerializer.h
- │ ├── StanzaSerializer.o
- │ ├── StartTLSFailureSerializer.h
- │ ├── StartTLSRequestSerializer.h
- │ ├── StreamErrorSerializer.cpp
- │ ├── StreamErrorSerializer.h
- │ ├── StreamErrorSerializer.o
- │ ├── StreamFeaturesSerializer.cpp
- │ ├── StreamFeaturesSerializer.h
- │ ├── StreamFeaturesSerializer.o
- │ ├── StreamManagementEnabledSerializer.cpp
- │ ├── StreamManagementEnabledSerializer.h
- │ ├── StreamManagementEnabledSerializer.o
- │ ├── StreamManagementFailedSerializer.h
- │ ├── StreamResumedSerializer.cpp
- │ ├── StreamResumedSerializer.h
- │ ├── StreamResumedSerializer.o
- │ ├── StreamResumeSerializer.cpp
- │ ├── StreamResumeSerializer.h
- │ ├── StreamResumeSerializer.o
- │ ├── TLSProceedSerializer.h
- │ ├── UnitTest
- │ │ ├── AuthChallengeSerializerTest.cpp
- │ │ ├── AuthRequestSerializerTest.cpp
- │ │ ├── AuthResponseSerializerTest.cpp
- │ │ ├── AuthSuccessSerializerTest.cpp
- │ │ ├── StreamFeaturesSerializerTest.cpp
- │ │ └── XMPPSerializerTest.cpp
- │ ├── XML
- │ │ ├── UnitTest
- │ │ │ └── XMLElementTest.cpp
- │ │ ├── XMLElement.cpp
- │ │ ├── XMLElement.h
- │ │ ├── XMLElement.o
- │ │ ├── XMLNode.cpp
- │ │ ├── XMLNode.h
- │ │ ├── XMLNode.o
- │ │ ├── XMLRawTextNode.h
- │ │ └── XMLTextNode.h
- │ ├── XMPPSerializer.cpp
- │ ├── XMPPSerializer.h
- │ └── XMPPSerializer.o
- ├── Session
- │ ├── BasicSessionStream.cpp
- │ ├── BasicSessionStream.h
- │ ├── BasicSessionStream.o
- │ ├── BOSHSessionStream.cpp
- │ ├── BOSHSessionStream.h
- │ ├── BOSHSessionStream.o
- │ ├── Session.cpp
- │ ├── Session.h
- │ ├── Session.o
- │ ├── SessionStream.cpp
- │ ├── SessionStream.h
- │ ├── SessionStream.o
- │ ├── SessionTracer.cpp
- │ ├── SessionTracer.h
- │ └── SessionTracer.o
- ├── StreamManagement
- │ ├── SConscript
- │ ├── StanzaAckRequester.cpp
- │ ├── StanzaAckRequester.h
- │ ├── StanzaAckRequester.o
- │ ├── StanzaAckResponder.cpp
- │ ├── StanzaAckResponder.h
- │ ├── StanzaAckResponder.o
- │ └── UnitTest
- │ ├── StanzaAckRequesterTest.cpp
- │ └── StanzaAckResponderTest.cpp
- ├── StreamStack
- │ ├── CompressionLayer.h
- │ ├── ConnectionLayer.cpp
- │ ├── ConnectionLayer.h
- │ ├── ConnectionLayer.o
- │ ├── DummyStreamLayer.h
- │ ├── HighLayer.cpp
- │ ├── HighLayer.h
- │ ├── HighLayer.o
- │ ├── LowLayer.cpp
- │ ├── LowLayer.h
- │ ├── LowLayer.o
- │ ├── SConscript
- │ ├── StreamLayer.h
- │ ├── StreamStack.cpp
- │ ├── StreamStack.h
- │ ├── StreamStack.o
- │ ├── TLSLayer.cpp
- │ ├── TLSLayer.h
- │ ├── TLSLayer.o
- │ ├── UnitTest
- │ │ ├── StreamStackTest.cpp
- │ │ └── XMPPLayerTest.cpp
- │ ├── WhitespacePingLayer.cpp
- │ ├── WhitespacePingLayer.h
- │ ├── WhitespacePingLayer.o
- │ ├── XMPPLayer.cpp
- │ ├── XMPPLayer.h
- │ └── XMPPLayer.o
- ├── StringCodecs
- │ ├── Base64.cpp
- │ ├── Base64.h
- │ ├── Base64.o
- │ ├── Hexify.cpp
- │ ├── Hexify.h
- │ ├── Hexify.o
- │ ├── PBKDF2.h
- │ ├── SHA1_Windows.cpp
- │ ├── SHA1_Windows.h
- │ └── UnitTest
- │ ├── Base64Test.cpp
- │ ├── HexifyTest.cpp
- │ └── PBKDF2Test.cpp
- ├── Swiften.h
- ├── Swiften.rc
- ├── TLS
- │ ├── BlindCertificateTrustChecker.h
- │ ├── CAPICertificate.cpp
- │ ├── CAPICertificate.h
- │ ├── Certificate.cpp
- │ ├── CertificateFactory.cpp
- │ ├── CertificateFactory.h
- │ ├── CertificateFactory.o
- │ ├── Certificate.h
- │ ├── Certificate.o
- │ ├── CertificateTrustChecker.cpp
- │ ├── CertificateTrustChecker.h
- │ ├── CertificateTrustChecker.o
- │ ├── CertificateVerificationError.h
- │ ├── CertificateWithKey.h
- │ ├── OpenSSL
- │ │ ├── OpenSSLCertificate.cpp
- │ │ ├── OpenSSLCertificateFactory.cpp
- │ │ ├── OpenSSLCertificateFactory.h
- │ │ ├── OpenSSLCertificateFactory.o
- │ │ ├── OpenSSLCertificate.h
- │ │ ├── OpenSSLCertificate.o
- │ │ ├── OpenSSLContext.cpp
- │ │ ├── OpenSSLContextFactory.cpp
- │ │ ├── OpenSSLContextFactory.h
- │ │ ├── OpenSSLContextFactory.o
- │ │ ├── OpenSSLContext.h
- │ │ └── OpenSSLContext.o
- │ ├── PKCS12Certificate.h
- │ ├── PlatformTLSFactories.cpp
- │ ├── PlatformTLSFactories.h
- │ ├── PlatformTLSFactories.o
- │ ├── PrivateKey.cpp
- │ ├── PrivateKey.h
- │ ├── PrivateKey.o
- │ ├── Schannel
- │ │ ├── SchannelCertificate.cpp
- │ │ ├── SchannelCertificateFactory.h
- │ │ ├── SchannelCertificate.h
- │ │ ├── SchannelContext.cpp
- │ │ ├── SchannelContextFactory.cpp
- │ │ ├── SchannelContextFactory.h
- │ │ ├── SchannelContext.h
- │ │ └── SchannelUtil.h
- │ ├── SConscript
- │ ├── SecureTransport
- │ │ ├── SecureTransportCertificateFactory.h
- │ │ ├── SecureTransportCertificate.h
- │ │ ├── SecureTransportCertificate.mm
- │ │ ├── SecureTransportContextFactory.cpp
- │ │ ├── SecureTransportContextFactory.h
- │ │ ├── SecureTransportContext.h
- │ │ └── SecureTransportContext.mm
- │ ├── ServerIdentityVerifier.cpp
- │ ├── ServerIdentityVerifier.h
- │ ├── ServerIdentityVerifier.o
- │ ├── SimpleCertificate.h
- │ ├── TLSContext.cpp
- │ ├── TLSContextFactory.cpp
- │ ├── TLSContextFactory.h
- │ ├── TLSContextFactory.o
- │ ├── TLSContext.h
- │ ├── TLSContext.o
- │ ├── TLSError.h
- │ ├── TLSOptions.h
- │ └── UnitTest
- │ ├── CertificateTest.cpp
- │ ├── ClientServerTest.cpp
- │ └── ServerIdentityVerifierTest.cpp
- ├── VCards
- │ ├── GetVCardRequest.h
- │ ├── SConscript
- │ ├── SetVCardRequest.h
- │ ├── UnitTest
- │ │ └── VCardManagerTest.cpp
- │ ├── VCardManager.cpp
- │ ├── VCardManager.h
- │ ├── VCardManager.o
- │ ├── VCardMemoryStorage.h
- │ ├── VCardStorage.cpp
- │ ├── VCardStorage.h
- │ └── VCardStorage.o
- ├── Version.h
- └── Whiteboard
- ├── IncomingWhiteboardSession.cpp
- ├── IncomingWhiteboardSession.h
- ├── IncomingWhiteboardSession.o
- ├── OutgoingWhiteboardSession.cpp
- ├── OutgoingWhiteboardSession.h
- ├── OutgoingWhiteboardSession.o
- ├── UnitTest
- │ ├── WhiteboardClientTest.cpp
- │ └── WhiteboardServerTest.cpp
- ├── WhiteboardClient.cpp
- ├── WhiteboardClient.h
- ├── WhiteboardClient.o
- ├── WhiteboardResponder.cpp
- ├── WhiteboardResponder.h
- ├── WhiteboardResponder.o
- ├── WhiteboardServer.cpp
- ├── WhiteboardServer.h
- ├── WhiteboardServer.o
- ├── WhiteboardSession.cpp
- ├── WhiteboardSession.h
- ├── WhiteboardSessionManager.cpp
- ├── WhiteboardSessionManager.h
- ├── WhiteboardSessionManager.o
- ├── WhiteboardSession.o
- ├── WhiteboardTransformer.cpp
- ├── WhiteboardTransformer.h
- └── WhiteboardTransformer.o
- 118 directories, 2583 files
Add Comment
Please, Sign In to add comment