Guest User

tree

a guest
Nov 30th, 2018
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 127.25 KB | None | 0 0
  1. .
  2. ├── build
  3. │   ├── CMakeCache.txt
  4. │   ├── CMakeFiles
  5. │   │   ├── 3.10.2
  6. │   │   │   ├── CMakeCCompiler.cmake
  7. │   │   │   ├── CMakeCXXCompiler.cmake
  8. │   │   │   ├── CMakeDetermineCompilerABI_C.bin
  9. │   │   │   ├── CMakeDetermineCompilerABI_CXX.bin
  10. │   │   │   ├── CMakeSystem.cmake
  11. │   │   │   ├── CompilerIdC
  12. │   │   │   │   ├── a.out
  13. │   │   │   │   ├── CMakeCCompilerId.c
  14. │   │   │   │   └── tmp
  15. │   │   │   └── CompilerIdCXX
  16. │   │   │   ├── a.out
  17. │   │   │   ├── CMakeCXXCompilerId.cpp
  18. │   │   │   └── tmp
  19. │   │   ├── cmake.check_cache
  20. │   │   ├── CMakeDirectoryInformation.cmake
  21. │   │   ├── CMakeOutput.log
  22. │   │   ├── CMakeTmp
  23. │   │   ├── feature_tests.bin
  24. │   │   ├── feature_tests.c
  25. │   │   ├── feature_tests.cxx
  26. │   │   ├── FindMPI
  27. │   │   │   ├── test_mpi_C.bin
  28. │   │   │   ├── test_mpi.cpp
  29. │   │   │   └── test_mpi_CXX.bin
  30. │   │   ├── Makefile2
  31. │   │   ├── Makefile.cmake
  32. │   │   ├── mtest.dir
  33. │   │   │   ├── build.make
  34. │   │   │   ├── cmake_clean.cmake
  35. │   │   │   ├── CXX.includecache
  36. │   │   │   ├── DependInfo.cmake
  37. │   │   │   ├── depend.internal
  38. │   │   │   ├── depend.make
  39. │   │   │   ├── flags.make
  40. │   │   │   ├── link.txt
  41. │   │   │   └── progress.make
  42. │   │   ├── Progress
  43. │   │   │   ├── 1
  44. │   │   │   └── count.txt
  45. │   │   ├── progress.marks
  46. │   │   └── TargetDirectories.txt
  47. │   ├── cmake_install.cmake
  48. │   ├── Makefile
  49. │   └── mtest
  50. ├── CMakeLists.txt
  51. ├── main.cpp
  52. └── Swiften
  53. ├── AdHoc
  54. │   ├── OutgoingAdHocCommandSession.cpp
  55. │   ├── OutgoingAdHocCommandSession.h
  56. │   ├── OutgoingAdHocCommandSession.o
  57. │   └── SConscript
  58. ├── Avatars
  59. │   ├── AvatarManager.cpp
  60. │   ├── AvatarManager.h
  61. │   ├── AvatarManagerImpl.cpp
  62. │   ├── AvatarManagerImpl.h
  63. │   ├── AvatarManagerImpl.o
  64. │   ├── AvatarManager.o
  65. │   ├── AvatarMemoryStorage.h
  66. │   ├── AvatarProvider.cpp
  67. │   ├── AvatarProvider.h
  68. │   ├── AvatarProvider.o
  69. │   ├── AvatarStorage.cpp
  70. │   ├── AvatarStorage.h
  71. │   ├── AvatarStorage.o
  72. │   ├── CombinedAvatarProvider.cpp
  73. │   ├── CombinedAvatarProvider.h
  74. │   ├── CombinedAvatarProvider.o
  75. │   ├── DummyAvatarManager.h
  76. │   ├── NullAvatarManager.h
  77. │   ├── OfflineAvatarManager.cpp
  78. │   ├── OfflineAvatarManager.h
  79. │   ├── OfflineAvatarManager.o
  80. │   ├── SConscript
  81. │   ├── UnitTest
  82. │   │   ├── AvatarManagerImplTest.cpp
  83. │   │   ├── CombinedAvatarProviderTest.cpp
  84. │   │   ├── VCardAvatarManagerTest.cpp
  85. │   │   └── VCardUpdateAvatarManagerTest.cpp
  86. │   ├── VCardAvatarManager.cpp
  87. │   ├── VCardAvatarManager.h
  88. │   ├── VCardAvatarManager.o
  89. │   ├── VCardUpdateAvatarManager.cpp
  90. │   ├── VCardUpdateAvatarManager.h
  91. │   └── VCardUpdateAvatarManager.o
  92. ├── Base
  93. │   ├── Algorithm.h
  94. │   ├── API.h
  95. │   ├── Atomic.h
  96. │   ├── BoostFilesystemVersion.h
  97. │   ├── ByteArray.cpp
  98. │   ├── ByteArray.h
  99. │   ├── ByteArray.o
  100. │   ├── Concat.h
  101. │   ├── DateTime.cpp
  102. │   ├── DateTime.h
  103. │   ├── DateTime.o
  104. │   ├── Debug.cpp
  105. │   ├── Debug.h
  106. │   ├── Debug.o
  107. │   ├── Error.cpp
  108. │   ├── Error.h
  109. │   ├── Error.o
  110. │   ├── FileSize.cpp
  111. │   ├── FileSize.h
  112. │   ├── FileSize.o
  113. │   ├── format.h
  114. │   ├── IDGenerator.cpp
  115. │   ├── IDGenerator.h
  116. │   ├── IDGenerator.o
  117. │   ├── Listenable.h
  118. │   ├── Log.cpp
  119. │   ├── Log.h
  120. │   ├── Log.o
  121. │   ├── LogSerializers.cpp
  122. │   ├── LogSerializers.h
  123. │   ├── LogSerializers.o
  124. │   ├── LRUCache.h
  125. │   ├── Path.cpp
  126. │   ├── Path.h
  127. │   ├── Path.o
  128. │   ├── Paths.cpp
  129. │   ├── Paths.h
  130. │   ├── Paths.o
  131. │   ├── Platform.h
  132. │   ├── RandomGenerator.cpp
  133. │   ├── RandomGenerator.h
  134. │   ├── RandomGenerator.o
  135. │   ├── Regex.cpp
  136. │   ├── Regex.h
  137. │   ├── Regex.o
  138. │   ├── SafeAllocator.cpp
  139. │   ├── SafeAllocator.h
  140. │   ├── SafeAllocator.o
  141. │   ├── SafeByteArray.cpp
  142. │   ├── SafeByteArray.h
  143. │   ├── SafeByteArray.o
  144. │   ├── SafeString.h
  145. │   ├── SConscript
  146. │   ├── SimpleIDGenerator.cpp
  147. │   ├── SimpleIDGenerator.h
  148. │   ├── SimpleIDGenerator.o
  149. │   ├── sleep.cpp
  150. │   ├── sleep.h
  151. │   ├── sleep.o
  152. │   ├── StartStopper.h
  153. │   ├── StdRandomGenerator.cpp
  154. │   ├── StdRandomGenerator.h
  155. │   ├── StdRandomGenerator.o
  156. │   ├── String.cpp
  157. │   ├── String.h
  158. │   ├── String.o
  159. │   ├── Tristate.h
  160. │   ├── UnitTest
  161. │   │   ├── ByteArrayTest.cpp
  162. │   │   ├── DateTimeTest.cpp
  163. │   │   ├── IDGeneratorTest.cpp
  164. │   │   ├── LRUCacheTest.cpp
  165. │   │   ├── PathTest.cpp
  166. │   │   ├── SimpleIDGeneratorTest.cpp
  167. │   │   ├── StringTest.cpp
  168. │   │   └── URLTest.cpp
  169. │   ├── URL.cpp
  170. │   ├── URL.h
  171. │   ├── URL.o
  172. │   └── WindowsRegistry.h
  173. ├── ChangeLog.md
  174. ├── Chat
  175. │   ├── ChatStateNotifier.cpp
  176. │   ├── ChatStateNotifier.h
  177. │   ├── ChatStateNotifier.o
  178. │   ├── ChatStateTracker.cpp
  179. │   ├── ChatStateTracker.h
  180. │   ├── ChatStateTracker.o
  181. │   └── UnitTest
  182. │   └── ChatStateNotifierTest.cpp
  183. ├── Client
  184. │   ├── BlockList.cpp
  185. │   ├── BlockList.h
  186. │   ├── BlockListImpl.cpp
  187. │   ├── BlockListImpl.h
  188. │   ├── BlockListImpl.o
  189. │   ├── BlockList.o
  190. │   ├── ClientBlockListManager.cpp
  191. │   ├── ClientBlockListManager.h
  192. │   ├── ClientBlockListManager.o
  193. │   ├── Client.cpp
  194. │   ├── ClientError.h
  195. │   ├── Client.h
  196. │   ├── Client.o
  197. │   ├── ClientOptions.h
  198. │   ├── ClientSession.cpp
  199. │   ├── ClientSession.h
  200. │   ├── ClientSession.o
  201. │   ├── ClientSessionStanzaChannel.cpp
  202. │   ├── ClientSessionStanzaChannel.h
  203. │   ├── ClientSessionStanzaChannel.o
  204. │   ├── ClientXMLTracer.cpp
  205. │   ├── ClientXMLTracer.h
  206. │   ├── ClientXMLTracer.o
  207. │   ├── CoreClient.cpp
  208. │   ├── CoreClient.h
  209. │   ├── CoreClient.o
  210. │   ├── DummyNickManager.h
  211. │   ├── DummyStanzaChannel.h
  212. │   ├── MemoryStorages.cpp
  213. │   ├── MemoryStorages.h
  214. │   ├── MemoryStorages.o
  215. │   ├── NickManager.cpp
  216. │   ├── NickManager.h
  217. │   ├── NickManagerImpl.cpp
  218. │   ├── NickManagerImpl.h
  219. │   ├── NickManagerImpl.o
  220. │   ├── NickManager.o
  221. │   ├── NickResolver.cpp
  222. │   ├── NickResolver.h
  223. │   ├── NickResolver.o
  224. │   ├── StanzaChannel.h
  225. │   ├── Storages.cpp
  226. │   ├── Storages.h
  227. │   ├── Storages.o
  228. │   ├── UnitTest
  229. │   │   ├── BlockListImplTest.cpp
  230. │   │   ├── ClientBlockListManagerTest.cpp
  231. │   │   ├── ClientSessionTest.cpp
  232. │   │   ├── NickResolverTest.cpp
  233. │   │   └── XMLBeautifierTest.cpp
  234. │   ├── XMLBeautifier.cpp
  235. │   ├── XMLBeautifier.h
  236. │   └── XMLBeautifier.o
  237. ├── Component
  238. │   ├── ComponentConnector.cpp
  239. │   ├── ComponentConnector.h
  240. │   ├── ComponentConnector.o
  241. │   ├── Component.cpp
  242. │   ├── ComponentError.h
  243. │   ├── Component.h
  244. │   ├── ComponentHandshakeGenerator.cpp
  245. │   ├── ComponentHandshakeGenerator.h
  246. │   ├── ComponentHandshakeGenerator.o
  247. │   ├── Component.o
  248. │   ├── ComponentSession.cpp
  249. │   ├── ComponentSession.h
  250. │   ├── ComponentSession.o
  251. │   ├── ComponentSessionStanzaChannel.cpp
  252. │   ├── ComponentSessionStanzaChannel.h
  253. │   ├── ComponentSessionStanzaChannel.o
  254. │   ├── ComponentXMLTracer.cpp
  255. │   ├── ComponentXMLTracer.h
  256. │   ├── ComponentXMLTracer.o
  257. │   ├── CoreComponent.cpp
  258. │   ├── CoreComponent.h
  259. │   ├── CoreComponent.o
  260. │   ├── SConscript
  261. │   └── UnitTest
  262. │   ├── ComponentConnectorTest.cpp
  263. │   ├── ComponentHandshakeGeneratorTest.cpp
  264. │   └── ComponentSessionTest.cpp
  265. ├── Compress
  266. │   ├── UnitTest
  267. │   │   ├── ZLibCompressorTest.cpp
  268. │   │   └── ZLibDecompressorTest.cpp
  269. │   ├── ZLibCodecompressor.cpp
  270. │   ├── ZLibCodecompressor.h
  271. │   ├── ZLibCodecompressor.o
  272. │   ├── ZLibCodecompressor_Private.h
  273. │   ├── ZLibCompressor.cpp
  274. │   ├── ZLibCompressor.h
  275. │   ├── ZLibCompressor.o
  276. │   ├── ZLibDecompressor.cpp
  277. │   ├── ZLibDecompressor.h
  278. │   ├── ZLibDecompressor.o
  279. │   └── ZLibException.h
  280. ├── Config
  281. │   ├── Path.cpp
  282. │   ├── Path.o
  283. │   ├── Paths.cpp
  284. │   ├── Paths.o
  285. │   ├── SConscript
  286. │   ├── String.cpp
  287. │   ├── String.o
  288. │   ├── swiften-config
  289. │   ├── swiften-config.cpp
  290. │   ├── swiften-config.h
  291. │   └── swiften-config.o
  292. ├── Crypto
  293. │   ├── CommonCryptoCryptoProvider.cpp
  294. │   ├── CommonCryptoCryptoProvider.h
  295. │   ├── CryptoProvider.cpp
  296. │   ├── CryptoProvider.h
  297. │   ├── CryptoProvider.o
  298. │   ├── Hash.cpp
  299. │   ├── Hash.h
  300. │   ├── Hash.o
  301. │   ├── OpenSSLCryptoProvider.cpp
  302. │   ├── OpenSSLCryptoProvider.h
  303. │   ├── OpenSSLCryptoProvider.o
  304. │   ├── PlatformCryptoProvider.cpp
  305. │   ├── PlatformCryptoProvider.h
  306. │   ├── PlatformCryptoProvider.o
  307. │   ├── SConscript
  308. │   ├── UnitTest
  309. │   │   └── CryptoProviderTest.cpp
  310. │   ├── WindowsCryptoProvider.cpp
  311. │   └── WindowsCryptoProvider.h
  312. ├── Disco
  313. │   ├── CapsInfoGenerator.cpp
  314. │   ├── CapsInfoGenerator.h
  315. │   ├── CapsInfoGenerator.o
  316. │   ├── CapsManager.cpp
  317. │   ├── CapsManager.h
  318. │   ├── CapsManager.o
  319. │   ├── CapsMemoryStorage.h
  320. │   ├── CapsProvider.h
  321. │   ├── CapsStorage.cpp
  322. │   ├── CapsStorage.h
  323. │   ├── CapsStorage.o
  324. │   ├── ClientDiscoManager.cpp
  325. │   ├── ClientDiscoManager.h
  326. │   ├── ClientDiscoManager.o
  327. │   ├── DiscoInfoResponder.cpp
  328. │   ├── DiscoInfoResponder.h
  329. │   ├── DiscoInfoResponder.o
  330. │   ├── DiscoServiceWalker.cpp
  331. │   ├── DiscoServiceWalker.h
  332. │   ├── DiscoServiceWalker.o
  333. │   ├── DummyEntityCapsProvider.cpp
  334. │   ├── DummyEntityCapsProvider.h
  335. │   ├── DummyEntityCapsProvider.o
  336. │   ├── EntityCapsManager.cpp
  337. │   ├── EntityCapsManager.h
  338. │   ├── EntityCapsManager.o
  339. │   ├── EntityCapsProvider.cpp
  340. │   ├── EntityCapsProvider.h
  341. │   ├── EntityCapsProvider.o
  342. │   ├── FeatureOracle.cpp
  343. │   ├── FeatureOracle.h
  344. │   ├── FeatureOracle.o
  345. │   ├── GetDiscoInfoRequest.h
  346. │   ├── GetDiscoItemsRequest.h
  347. │   ├── JIDDiscoInfoResponder.cpp
  348. │   ├── JIDDiscoInfoResponder.h
  349. │   ├── JIDDiscoInfoResponder.o
  350. │   ├── SConscript
  351. │   └── UnitTest
  352. │   ├── CapsInfoGeneratorTest.cpp
  353. │   ├── CapsManagerTest.cpp
  354. │   ├── DiscoInfoResponderTest.cpp
  355. │   ├── EntityCapsManagerTest.cpp
  356. │   ├── FeatureOracleTest.cpp
  357. │   └── JIDDiscoInfoResponderTest.cpp
  358. ├── Elements
  359. │   ├── AuthChallenge.h
  360. │   ├── AuthFailure.h
  361. │   ├── AuthRequest.h
  362. │   ├── AuthResponse.h
  363. │   ├── AuthSuccess.h
  364. │   ├── BlockListPayload.h
  365. │   ├── BlockPayload.h
  366. │   ├── Body.h
  367. │   ├── Bytestreams.h
  368. │   ├── CapsInfo.h
  369. │   ├── CarbonsDisable.cpp
  370. │   ├── CarbonsDisable.h
  371. │   ├── CarbonsDisable.o
  372. │   ├── CarbonsEnable.cpp
  373. │   ├── CarbonsEnable.h
  374. │   ├── CarbonsEnable.o
  375. │   ├── CarbonsPrivate.cpp
  376. │   ├── CarbonsPrivate.h
  377. │   ├── CarbonsPrivate.o
  378. │   ├── CarbonsReceived.cpp
  379. │   ├── CarbonsReceived.h
  380. │   ├── CarbonsReceived.o
  381. │   ├── CarbonsSent.cpp
  382. │   ├── CarbonsSent.h
  383. │   ├── CarbonsSent.o
  384. │   ├── ChatState.h
  385. │   ├── ClientState.h
  386. │   ├── Command.h
  387. │   ├── ComponentHandshake.h
  388. │   ├── Compressed.h
  389. │   ├── CompressFailure.h
  390. │   ├── CompressRequest.h
  391. │   ├── ContainerPayload.h
  392. │   ├── Delay.h
  393. │   ├── DeliveryReceipt.h
  394. │   ├── DeliveryReceiptRequest.h
  395. │   ├── DiscoInfo.cpp
  396. │   ├── DiscoInfo.h
  397. │   ├── DiscoInfo.o
  398. │   ├── DiscoItems.h
  399. │   ├── Element.cpp
  400. │   ├── Element.h
  401. │   ├── Element.o
  402. │   ├── EnableStreamManagement.h
  403. │   ├── ErrorPayload.h
  404. │   ├── Form.cpp
  405. │   ├── FormField.cpp
  406. │   ├── FormField.h
  407. │   ├── FormField.o
  408. │   ├── Form.h
  409. │   ├── Form.o
  410. │   ├── FormPage.cpp
  411. │   ├── FormPage.h
  412. │   ├── FormPage.o
  413. │   ├── FormReportedRef.h
  414. │   ├── FormSection.cpp
  415. │   ├── FormSection.h
  416. │   ├── FormSection.o
  417. │   ├── FormText.cpp
  418. │   ├── FormText.h
  419. │   ├── FormText.o
  420. │   ├── Forwarded.cpp
  421. │   ├── Forwarded.h
  422. │   ├── Forwarded.o
  423. │   ├── HashElement.h
  424. │   ├── IBB.h
  425. │   ├── Idle.h
  426. │   ├── InBandRegistrationPayload.h
  427. │   ├── IQ.cpp
  428. │   ├── IQ.h
  429. │   ├── IQ.o
  430. │   ├── IsodeIQDelegation.cpp
  431. │   ├── IsodeIQDelegation.h
  432. │   ├── IsodeIQDelegation.o
  433. │   ├── JingleContentPayload.h
  434. │   ├── JingleDescription.h
  435. │   ├── JingleFileTransferDescription.h
  436. │   ├── JingleFileTransferFileInfo.h
  437. │   ├── JingleFileTransferHash.h
  438. │   ├── JingleIBBTransportPayload.h
  439. │   ├── JinglePayload.h
  440. │   ├── JingleS5BTransportPayload.h
  441. │   ├── JingleTransportPayload.h
  442. │   ├── Last.h
  443. │   ├── MAMFin.cpp
  444. │   ├── MAMFin.h
  445. │   ├── MAMFin.o
  446. │   ├── MAMQuery.cpp
  447. │   ├── MAMQuery.h
  448. │   ├── MAMQuery.o
  449. │   ├── MAMResult.cpp
  450. │   ├── MAMResult.h
  451. │   ├── MAMResult.o
  452. │   ├── Message.h
  453. │   ├── MIXCreate.h
  454. │   ├── MIXDestroy.h
  455. │   ├── MIXJoin.h
  456. │   ├── MIXLeave.h
  457. │   ├── MIXParticipant.h
  458. │   ├── MIXPayload.h
  459. │   ├── MIXRegisterNick.h
  460. │   ├── MIXSetNick.h
  461. │   ├── MIXUpdateSubscription.h
  462. │   ├── MIXUserPreference.h
  463. │   ├── MUCAdminPayload.h
  464. │   ├── MUCDestroyPayload.h
  465. │   ├── MUCInvitationPayload.h
  466. │   ├── MUCItem.h
  467. │   ├── MUCOccupant.cpp
  468. │   ├── MUCOccupant.h
  469. │   ├── MUCOccupant.o
  470. │   ├── MUCOwnerPayload.h
  471. │   ├── MUCPayload.h
  472. │   ├── MUCUserPayload.h
  473. │   ├── Nickname.h
  474. │   ├── Payload.cpp
  475. │   ├── Payload.h
  476. │   ├── Payload.o
  477. │   ├── Presence.cpp
  478. │   ├── Presence.h
  479. │   ├── Presence.o
  480. │   ├── Priority.h
  481. │   ├── PrivateStorage.h
  482. │   ├── ProtocolHeader.h
  483. │   ├── PubSubAffiliation.cpp
  484. │   ├── PubSubAffiliation.h
  485. │   ├── PubSubAffiliation.o
  486. │   ├── PubSubAffiliations.cpp
  487. │   ├── PubSubAffiliations.h
  488. │   ├── PubSubAffiliations.o
  489. │   ├── PubSubConfigure.cpp
  490. │   ├── PubSubConfigure.h
  491. │   ├── PubSubConfigure.o
  492. │   ├── PubSub.cpp
  493. │   ├── PubSubCreate.cpp
  494. │   ├── PubSubCreate.h
  495. │   ├── PubSubCreate.o
  496. │   ├── PubSubDefault.cpp
  497. │   ├── PubSubDefault.h
  498. │   ├── PubSubDefault.o
  499. │   ├── PubSubError.cpp
  500. │   ├── PubSubError.h
  501. │   ├── PubSubError.o
  502. │   ├── PubSubEventAssociate.cpp
  503. │   ├── PubSubEventAssociate.h
  504. │   ├── PubSubEventAssociate.o
  505. │   ├── PubSubEventCollection.cpp
  506. │   ├── PubSubEventCollection.h
  507. │   ├── PubSubEventCollection.o
  508. │   ├── PubSubEventConfiguration.cpp
  509. │   ├── PubSubEventConfiguration.h
  510. │   ├── PubSubEventConfiguration.o
  511. │   ├── PubSubEvent.cpp
  512. │   ├── PubSubEventDelete.cpp
  513. │   ├── PubSubEventDelete.h
  514. │   ├── PubSubEventDelete.o
  515. │   ├── PubSubEventDisassociate.cpp
  516. │   ├── PubSubEventDisassociate.h
  517. │   ├── PubSubEventDisassociate.o
  518. │   ├── PubSubEvent.h
  519. │   ├── PubSubEventItem.cpp
  520. │   ├── PubSubEventItem.h
  521. │   ├── PubSubEventItem.o
  522. │   ├── PubSubEventItems.cpp
  523. │   ├── PubSubEventItems.h
  524. │   ├── PubSubEventItems.o
  525. │   ├── PubSubEvent.o
  526. │   ├── PubSubEventPayload.cpp
  527. │   ├── PubSubEventPayload.h
  528. │   ├── PubSubEventPayload.o
  529. │   ├── PubSubEventPurge.cpp
  530. │   ├── PubSubEventPurge.h
  531. │   ├── PubSubEventPurge.o
  532. │   ├── PubSubEventRedirect.cpp
  533. │   ├── PubSubEventRedirect.h
  534. │   ├── PubSubEventRedirect.o
  535. │   ├── PubSubEventRetract.cpp
  536. │   ├── PubSubEventRetract.h
  537. │   ├── PubSubEventRetract.o
  538. │   ├── PubSubEventSubscription.cpp
  539. │   ├── PubSubEventSubscription.h
  540. │   ├── PubSubEventSubscription.o
  541. │   ├── PubSub.h
  542. │   ├── PubSubItem.cpp
  543. │   ├── PubSubItem.h
  544. │   ├── PubSubItem.o
  545. │   ├── PubSubItems.cpp
  546. │   ├── PubSubItems.h
  547. │   ├── PubSubItems.o
  548. │   ├── PubSub.o
  549. │   ├── PubSubOptions.cpp
  550. │   ├── PubSubOptions.h
  551. │   ├── PubSubOptions.o
  552. │   ├── PubSubOwnerAffiliation.cpp
  553. │   ├── PubSubOwnerAffiliation.h
  554. │   ├── PubSubOwnerAffiliation.o
  555. │   ├── PubSubOwnerAffiliations.cpp
  556. │   ├── PubSubOwnerAffiliations.h
  557. │   ├── PubSubOwnerAffiliations.o
  558. │   ├── PubSubOwnerConfigure.cpp
  559. │   ├── PubSubOwnerConfigure.h
  560. │   ├── PubSubOwnerConfigure.o
  561. │   ├── PubSubOwnerDefault.cpp
  562. │   ├── PubSubOwnerDefault.h
  563. │   ├── PubSubOwnerDefault.o
  564. │   ├── PubSubOwnerDelete.cpp
  565. │   ├── PubSubOwnerDelete.h
  566. │   ├── PubSubOwnerDelete.o
  567. │   ├── PubSubOwnerPayload.cpp
  568. │   ├── PubSubOwnerPayload.h
  569. │   ├── PubSubOwnerPayload.o
  570. │   ├── PubSubOwnerPubSub.cpp
  571. │   ├── PubSubOwnerPubSub.h
  572. │   ├── PubSubOwnerPubSub.o
  573. │   ├── PubSubOwnerPurge.cpp
  574. │   ├── PubSubOwnerPurge.h
  575. │   ├── PubSubOwnerPurge.o
  576. │   ├── PubSubOwnerRedirect.cpp
  577. │   ├── PubSubOwnerRedirect.h
  578. │   ├── PubSubOwnerRedirect.o
  579. │   ├── PubSubOwnerSubscription.cpp
  580. │   ├── PubSubOwnerSubscription.h
  581. │   ├── PubSubOwnerSubscription.o
  582. │   ├── PubSubOwnerSubscriptions.cpp
  583. │   ├── PubSubOwnerSubscriptions.h
  584. │   ├── PubSubOwnerSubscriptions.o
  585. │   ├── PubSubPayload.cpp
  586. │   ├── PubSubPayload.h
  587. │   ├── PubSubPayload.o
  588. │   ├── PubSubPublish.cpp
  589. │   ├── PubSubPublish.h
  590. │   ├── PubSubPublish.o
  591. │   ├── PubSubRetract.cpp
  592. │   ├── PubSubRetract.h
  593. │   ├── PubSubRetract.o
  594. │   ├── PubSubSubscribe.cpp
  595. │   ├── PubSubSubscribe.h
  596. │   ├── PubSubSubscribe.o
  597. │   ├── PubSubSubscribeOptions.cpp
  598. │   ├── PubSubSubscribeOptions.h
  599. │   ├── PubSubSubscribeOptions.o
  600. │   ├── PubSubSubscription.cpp
  601. │   ├── PubSubSubscription.h
  602. │   ├── PubSubSubscription.o
  603. │   ├── PubSubSubscriptions.cpp
  604. │   ├── PubSubSubscriptions.h
  605. │   ├── PubSubSubscriptions.o
  606. │   ├── PubSubUnsubscribe.cpp
  607. │   ├── PubSubUnsubscribe.h
  608. │   ├── PubSubUnsubscribe.o
  609. │   ├── RawXMLPayload.h
  610. │   ├── ReferencePayload.cpp
  611. │   ├── ReferencePayload.h
  612. │   ├── ReferencePayload.o
  613. │   ├── Replace.h
  614. │   ├── ResourceBind.h
  615. │   ├── ResultSet.cpp
  616. │   ├── ResultSet.h
  617. │   ├── ResultSet.o
  618. │   ├── RosterItemExchangePayload.cpp
  619. │   ├── RosterItemExchangePayload.h
  620. │   ├── RosterItemExchangePayload.o
  621. │   ├── RosterItemPayload.h
  622. │   ├── RosterPayload.cpp
  623. │   ├── RosterPayload.h
  624. │   ├── RosterPayload.o
  625. │   ├── S5BProxyRequest.h
  626. │   ├── SearchPayload.h
  627. │   ├── SecurityLabel.cpp
  628. │   ├── SecurityLabel.h
  629. │   ├── SecurityLabel.o
  630. │   ├── SecurityLabelsCatalog.h
  631. │   ├── SoftwareVersion.h
  632. │   ├── StanzaAck.cpp
  633. │   ├── StanzaAck.h
  634. │   ├── StanzaAck.o
  635. │   ├── StanzaAckRequest.h
  636. │   ├── Stanza.cpp
  637. │   ├── Stanza.h
  638. │   ├── Stanza.o
  639. │   ├── StartSession.h
  640. │   ├── StartTLSFailure.h
  641. │   ├── StartTLSRequest.h
  642. │   ├── Status.h
  643. │   ├── StatusShow.cpp
  644. │   ├── StatusShow.h
  645. │   ├── StatusShow.o
  646. │   ├── Storage.h
  647. │   ├── StreamError.h
  648. │   ├── StreamFeatures.cpp
  649. │   ├── StreamFeatures.h
  650. │   ├── StreamFeatures.o
  651. │   ├── StreamInitiationFileInfo.h
  652. │   ├── StreamInitiation.h
  653. │   ├── StreamManagementEnabled.cpp
  654. │   ├── StreamManagementEnabled.h
  655. │   ├── StreamManagementEnabled.o
  656. │   ├── StreamManagementFailed.h
  657. │   ├── StreamResume.cpp
  658. │   ├── StreamResumed.cpp
  659. │   ├── StreamResumed.h
  660. │   ├── StreamResumed.o
  661. │   ├── StreamResume.h
  662. │   ├── StreamResume.o
  663. │   ├── StreamType.h
  664. │   ├── Subject.h
  665. │   ├── Thread.cpp
  666. │   ├── Thread.h
  667. │   ├── Thread.o
  668. │   ├── TLSProceed.h
  669. │   ├── ToplevelElement.cpp
  670. │   ├── ToplevelElement.h
  671. │   ├── ToplevelElement.o
  672. │   ├── UnblockPayload.h
  673. │   ├── UnitTest
  674. │   │   ├── FormTest.cpp
  675. │   │   ├── IQTest.cpp
  676. │   │   └── StanzaTest.cpp
  677. │   ├── UnknownElement.h
  678. │   ├── UserLocation.cpp
  679. │   ├── UserLocation.h
  680. │   ├── UserLocation.o
  681. │   ├── UserTune.cpp
  682. │   ├── UserTune.h
  683. │   ├── UserTune.o
  684. │   ├── VCard.cpp
  685. │   ├── VCard.h
  686. │   ├── VCard.o
  687. │   ├── VCardUpdate.h
  688. │   ├── Version.h
  689. │   ├── Whiteboard
  690. │   │   ├── WhiteboardColor.cpp
  691. │   │   ├── WhiteboardColor.h
  692. │   │   ├── WhiteboardColor.o
  693. │   │   ├── WhiteboardDeleteOperation.h
  694. │   │   ├── WhiteboardElement.h
  695. │   │   ├── WhiteboardElementVisitor.h
  696. │   │   ├── WhiteboardEllipseElement.h
  697. │   │   ├── WhiteboardFreehandPathElement.h
  698. │   │   ├── WhiteboardInsertOperation.h
  699. │   │   ├── WhiteboardLineElement.h
  700. │   │   ├── WhiteboardOperation.h
  701. │   │   ├── WhiteboardPolygonElement.h
  702. │   │   ├── WhiteboardRectElement.h
  703. │   │   ├── WhiteboardTextElement.h
  704. │   │   └── WhiteboardUpdateOperation.h
  705. │   └── WhiteboardPayload.h
  706. ├── Entity
  707. │   ├── Entity.cpp
  708. │   ├── Entity.h
  709. │   ├── Entity.o
  710. │   ├── GenericPayloadPersister.h
  711. │   ├── PayloadPersister.cpp
  712. │   ├── PayloadPersister.h
  713. │   ├── PayloadPersister.o
  714. │   └── SConscript
  715. ├── EventLoop
  716. │   ├── BoostASIOEventLoop.cpp
  717. │   ├── BoostASIOEventLoop.h
  718. │   ├── BoostASIOEventLoop.o
  719. │   ├── Cocoa
  720. │   │   ├── CocoaEvent.h
  721. │   │   ├── CocoaEventLoop.h
  722. │   │   ├── CocoaEventLoop.mm
  723. │   │   └── CocoaEvent.mm
  724. │   ├── DummyEventLoop.cpp
  725. │   ├── DummyEventLoop.h
  726. │   ├── DummyEventLoop.o
  727. │   ├── Event.cpp
  728. │   ├── Event.h
  729. │   ├── EventLoop.cpp
  730. │   ├── EventLoop.h
  731. │   ├── EventLoop.o
  732. │   ├── Event.o
  733. │   ├── EventOwner.cpp
  734. │   ├── EventOwner.h
  735. │   ├── EventOwner.o
  736. │   ├── Qt
  737. │   │   └── QtEventLoop.h
  738. │   ├── SConscript
  739. │   ├── SimpleEventLoop.cpp
  740. │   ├── SimpleEventLoop.h
  741. │   ├── SimpleEventLoop.o
  742. │   ├── SingleThreadedEventLoop.cpp
  743. │   ├── SingleThreadedEventLoop.h
  744. │   ├── SingleThreadedEventLoop.o
  745. │   └── UnitTest
  746. │   ├── EventLoopTest.cpp
  747. │   └── SimpleEventLoopTest.cpp
  748. ├── Examples
  749. │   ├── BenchTool
  750. │   │   ├── BenchTool
  751. │   │   ├── BenchTool.cpp
  752. │   │   ├── BenchTool.o
  753. │   │   └── SConscript
  754. │   ├── ConnectivityTest
  755. │   │   ├── ConnectivityTest
  756. │   │   ├── ConnectivityTest.cpp
  757. │   │   ├── ConnectivityTest.o
  758. │   │   └── SConscript
  759. │   ├── LinkLocalTool
  760. │   │   ├── LinkLocalTool
  761. │   │   ├── main.cpp
  762. │   │   ├── main.o
  763. │   │   └── SConscript
  764. │   ├── MUCListAndJoin
  765. │   │   ├── MUCListAndJoin
  766. │   │   ├── MUCListAndJoin.cpp
  767. │   │   ├── MUCListAndJoin.o
  768. │   │   └── SConscript
  769. │   ├── NetworkTool
  770. │   │   ├── main.cpp
  771. │   │   └── SConscript
  772. │   ├── ParserTester
  773. │   │   ├── ParserTester
  774. │   │   ├── ParserTester.cpp
  775. │   │   ├── ParserTester.o
  776. │   │   └── SConscript
  777. │   ├── SConscript
  778. │   ├── SendFile
  779. │   │   ├── ReceiveFile
  780. │   │   ├── ReceiveFile.cpp
  781. │   │   ├── ReceiveFile.o
  782. │   │   ├── SConscript
  783. │   │   ├── SendFile
  784. │   │   ├── SendFile.cpp
  785. │   │   └── SendFile.o
  786. │   └── SendMessage
  787. │   ├── SConscript
  788. │   ├── SendMessage
  789. │   ├── SendMessage.cpp
  790. │   └── SendMessage.o
  791. ├── FileTransfer
  792. │   ├── ByteArrayReadBytestream.cpp
  793. │   ├── ByteArrayReadBytestream.h
  794. │   ├── ByteArrayReadBytestream.o
  795. │   ├── ByteArrayWriteBytestream.h
  796. │   ├── BytestreamException.h
  797. │   ├── BytestreamsRequest.h
  798. │   ├── DefaultFileTransferTransporter.cpp
  799. │   ├── DefaultFileTransferTransporterFactory.cpp
  800. │   ├── DefaultFileTransferTransporterFactory.h
  801. │   ├── DefaultFileTransferTransporterFactory.o
  802. │   ├── DefaultFileTransferTransporter.h
  803. │   ├── DefaultFileTransferTransporter.o
  804. │   ├── FailingTransportSession.cpp
  805. │   ├── FailingTransportSession.h
  806. │   ├── FailingTransportSession.o
  807. │   ├── FileReadBytestream.cpp
  808. │   ├── FileReadBytestream.h
  809. │   ├── FileReadBytestream.o
  810. │   ├── FileTransfer.cpp
  811. │   ├── FileTransferError.h
  812. │   ├── FileTransfer.h
  813. │   ├── FileTransferManager.cpp
  814. │   ├── FileTransferManager.h
  815. │   ├── FileTransferManagerImpl.cpp
  816. │   ├── FileTransferManagerImpl.h
  817. │   ├── FileTransferManagerImpl.o
  818. │   ├── FileTransferManager.o
  819. │   ├── FileTransfer.o
  820. │   ├── FileTransferOptions.cpp
  821. │   ├── FileTransferOptions.h
  822. │   ├── FileTransferOptions.o
  823. │   ├── FileTransferTransporter.cpp
  824. │   ├── FileTransferTransporterFactory.cpp
  825. │   ├── FileTransferTransporterFactory.h
  826. │   ├── FileTransferTransporterFactory.o
  827. │   ├── FileTransferTransporter.h
  828. │   ├── FileTransferTransporter.o
  829. │   ├── FileWriteBytestream.cpp
  830. │   ├── FileWriteBytestream.h
  831. │   ├── FileWriteBytestream.o
  832. │   ├── IBBReceiveSession.cpp
  833. │   ├── IBBReceiveSession.h
  834. │   ├── IBBReceiveSession.o
  835. │   ├── IBBReceiveTransportSession.cpp
  836. │   ├── IBBReceiveTransportSession.h
  837. │   ├── IBBReceiveTransportSession.o
  838. │   ├── IBBRequest.h
  839. │   ├── IBBSendSession.cpp
  840. │   ├── IBBSendSession.h
  841. │   ├── IBBSendSession.o
  842. │   ├── IBBSendTransportSession.cpp
  843. │   ├── IBBSendTransportSession.h
  844. │   ├── IBBSendTransportSession.o
  845. │   ├── IncomingFileTransfer.cpp
  846. │   ├── IncomingFileTransfer.h
  847. │   ├── IncomingFileTransferManager.cpp
  848. │   ├── IncomingFileTransferManager.h
  849. │   ├── IncomingFileTransferManager.o
  850. │   ├── IncomingFileTransfer.o
  851. │   ├── IncomingJingleFileTransfer.cpp
  852. │   ├── IncomingJingleFileTransfer.h
  853. │   ├── IncomingJingleFileTransfer.o
  854. │   ├── IncrementalBytestreamHashCalculator.cpp
  855. │   ├── IncrementalBytestreamHashCalculator.h
  856. │   ├── IncrementalBytestreamHashCalculator.o
  857. │   ├── JingleFileTransfer.cpp
  858. │   ├── JingleFileTransfer.h
  859. │   ├── JingleFileTransfer.o
  860. │   ├── LocalJingleTransportCandidateGenerator.cpp
  861. │   ├── LocalJingleTransportCandidateGenerator.h
  862. │   ├── LocalJingleTransportCandidateGenerator.o
  863. │   ├── OutgoingFileTransfer.cpp
  864. │   ├── OutgoingFileTransfer.h
  865. │   ├── OutgoingFileTransferManager.cpp
  866. │   ├── OutgoingFileTransferManager.h
  867. │   ├── OutgoingFileTransferManager.o
  868. │   ├── OutgoingFileTransfer.o
  869. │   ├── OutgoingJingleFileTransfer.cpp
  870. │   ├── OutgoingJingleFileTransfer.h
  871. │   ├── OutgoingJingleFileTransfer.o
  872. │   ├── ReadBytestream.cpp
  873. │   ├── ReadBytestream.h
  874. │   ├── ReadBytestream.o
  875. │   ├── RemoteJingleTransportCandidateSelector.cpp
  876. │   ├── RemoteJingleTransportCandidateSelector.h
  877. │   ├── RemoteJingleTransportCandidateSelector.o
  878. │   ├── S5BTransportSession.h
  879. │   ├── SConscript
  880. │   ├── SOCKS5BytestreamClientSession.cpp
  881. │   ├── SOCKS5BytestreamClientSession.h
  882. │   ├── SOCKS5BytestreamClientSession.o
  883. │   ├── SOCKS5BytestreamProxiesManager.cpp
  884. │   ├── SOCKS5BytestreamProxiesManager.h
  885. │   ├── SOCKS5BytestreamProxiesManager.o
  886. │   ├── SOCKS5BytestreamProxyFinder.cpp
  887. │   ├── SOCKS5BytestreamProxyFinder.h
  888. │   ├── SOCKS5BytestreamProxyFinder.o
  889. │   ├── SOCKS5BytestreamRegistry.cpp
  890. │   ├── SOCKS5BytestreamRegistry.h
  891. │   ├── SOCKS5BytestreamRegistry.o
  892. │   ├── SOCKS5BytestreamServer.cpp
  893. │   ├── SOCKS5BytestreamServer.h
  894. │   ├── SOCKS5BytestreamServerManager.cpp
  895. │   ├── SOCKS5BytestreamServerManager.h
  896. │   ├── SOCKS5BytestreamServerManager.o
  897. │   ├── SOCKS5BytestreamServer.o
  898. │   ├── SOCKS5BytestreamServerPortForwardingUser.cpp
  899. │   ├── SOCKS5BytestreamServerPortForwardingUser.h
  900. │   ├── SOCKS5BytestreamServerPortForwardingUser.o
  901. │   ├── SOCKS5BytestreamServerResourceUser.cpp
  902. │   ├── SOCKS5BytestreamServerResourceUser.h
  903. │   ├── SOCKS5BytestreamServerResourceUser.o
  904. │   ├── SOCKS5BytestreamServerSession.cpp
  905. │   ├── SOCKS5BytestreamServerSession.h
  906. │   ├── SOCKS5BytestreamServerSession.o
  907. │   ├── StreamInitiationRequest.h
  908. │   ├── TransportSession.cpp
  909. │   ├── TransportSession.h
  910. │   ├── TransportSession.o
  911. │   ├── UnitTest
  912. │   │   ├── DummyFileTransferManager.h
  913. │   │   ├── DummyFileTransferTransporterFactory.h
  914. │   │   ├── IBBReceiveSessionTest.cpp
  915. │   │   ├── IBBSendSessionTest.cpp
  916. │   │   ├── IncomingJingleFileTransferTest.cpp
  917. │   │   ├── OutgoingJingleFileTransferTest.cpp
  918. │   │   ├── SOCKS5BytestreamClientSessionTest.cpp
  919. │   │   └── SOCKS5BytestreamServerSessionTest.cpp
  920. │   ├── WriteBytestream.cpp
  921. │   ├── WriteBytestream.h
  922. │   └── WriteBytestream.o
  923. ├── History
  924. │   ├── HistoryMessage.h
  925. │   ├── HistoryStorage.h
  926. │   ├── SConscript
  927. │   ├── SQLiteHistoryStorage.cpp
  928. │   ├── SQLiteHistoryStorage.h
  929. │   └── UnitTest
  930. │   └── SQLiteHistoryManagerTest.cpp
  931. ├── IDN
  932. │   ├── ICUConverter.cpp
  933. │   ├── ICUConverter.h
  934. │   ├── IDNConverter.cpp
  935. │   ├── IDNConverter.h
  936. │   ├── IDNConverter.o
  937. │   ├── LibIDNConverter.cpp
  938. │   ├── LibIDNConverter.h
  939. │   ├── LibIDNConverter.o
  940. │   ├── PlatformIDNConverter.cpp
  941. │   ├── PlatformIDNConverter.h
  942. │   ├── PlatformIDNConverter.o
  943. │   ├── SConscript
  944. │   ├── UnitTest
  945. │   │   ├── IDNConverterTest.cpp
  946. │   │   └── UTF8ValidatorTest.cpp
  947. │   └── UTF8Validator.h
  948. ├── JID
  949. │   ├── JID.cpp
  950. │   ├── JID.h
  951. │   ├── JID.o
  952. │   ├── SConscript
  953. │   └── UnitTest
  954. │   └── JIDTest.cpp
  955. ├── Jingle
  956. │   ├── AbstractJingleSessionListener.cpp
  957. │   ├── AbstractJingleSessionListener.h
  958. │   ├── AbstractJingleSessionListener.o
  959. │   ├── FakeJingleSession.cpp
  960. │   ├── FakeJingleSession.h
  961. │   ├── FakeJingleSession.o
  962. │   ├── IncomingJingleSessionHandler.cpp
  963. │   ├── IncomingJingleSessionHandler.h
  964. │   ├── IncomingJingleSessionHandler.o
  965. │   ├── JingleContentID.h
  966. │   ├── Jingle.h
  967. │   ├── JingleResponder.cpp
  968. │   ├── JingleResponder.h
  969. │   ├── JingleResponder.o
  970. │   ├── JingleSession.cpp
  971. │   ├── JingleSession.h
  972. │   ├── JingleSessionImpl.cpp
  973. │   ├── JingleSessionImpl.h
  974. │   ├── JingleSessionImpl.o
  975. │   ├── JingleSessionListener.cpp
  976. │   ├── JingleSessionListener.h
  977. │   ├── JingleSessionListener.o
  978. │   ├── JingleSessionManager.cpp
  979. │   ├── JingleSessionManager.h
  980. │   ├── JingleSessionManager.o
  981. │   ├── JingleSession.o
  982. │   └── SConscript
  983. ├── libSwiften.a
  984. ├── LinkLocal
  985. │   ├── DNSSD
  986. │   │   ├── Avahi
  987. │   │   │   ├── AvahiBrowseQuery.cpp
  988. │   │   │   ├── AvahiBrowseQuery.h
  989. │   │   │   ├── AvahiQuerier.cpp
  990. │   │   │   ├── AvahiQuerier.h
  991. │   │   │   ├── AvahiQuery.cpp
  992. │   │   │   ├── AvahiQuery.h
  993. │   │   │   ├── AvahiRegisterQuery.cpp
  994. │   │   │   ├── AvahiRegisterQuery.h
  995. │   │   │   ├── AvahiResolveHostnameQuery.cpp
  996. │   │   │   ├── AvahiResolveHostnameQuery.h
  997. │   │   │   ├── AvahiResolveServiceQuery.cpp
  998. │   │   │   └── AvahiResolveServiceQuery.h
  999. │   │   ├── Bonjour
  1000. │   │   │   ├── BonjourBrowseQuery.h
  1001. │   │   │   ├── BonjourQuerier.cpp
  1002. │   │   │   ├── BonjourQuerier.h
  1003. │   │   │   ├── BonjourQuery.cpp
  1004. │   │   │   ├── BonjourQuery.h
  1005. │   │   │   ├── BonjourRegisterQuery.h
  1006. │   │   │   ├── BonjourResolveHostnameQuery.h
  1007. │   │   │   └── BonjourResolveServiceQuery.h
  1008. │   │   ├── DNSSDBrowseQuery.cpp
  1009. │   │   ├── DNSSDBrowseQuery.h
  1010. │   │   ├── DNSSDBrowseQuery.o
  1011. │   │   ├── DNSSDQuerier.cpp
  1012. │   │   ├── DNSSDQuerier.h
  1013. │   │   ├── DNSSDQuerier.o
  1014. │   │   ├── DNSSDRegisterQuery.cpp
  1015. │   │   ├── DNSSDRegisterQuery.h
  1016. │   │   ├── DNSSDRegisterQuery.o
  1017. │   │   ├── DNSSDResolveHostnameQuery.cpp
  1018. │   │   ├── DNSSDResolveHostnameQuery.h
  1019. │   │   ├── DNSSDResolveHostnameQuery.o
  1020. │   │   ├── DNSSDResolveServiceQuery.cpp
  1021. │   │   ├── DNSSDResolveServiceQuery.h
  1022. │   │   ├── DNSSDResolveServiceQuery.o
  1023. │   │   ├── DNSSDServiceID.cpp
  1024. │   │   ├── DNSSDServiceID.h
  1025. │   │   ├── DNSSDServiceID.o
  1026. │   │   ├── Fake
  1027. │   │   │   ├── FakeDNSSDBrowseQuery.h
  1028. │   │   │   ├── FakeDNSSDQuerier.cpp
  1029. │   │   │   ├── FakeDNSSDQuerier.h
  1030. │   │   │   ├── FakeDNSSDQuerier.o
  1031. │   │   │   ├── FakeDNSSDQuery.cpp
  1032. │   │   │   ├── FakeDNSSDQuery.h
  1033. │   │   │   ├── FakeDNSSDQuery.o
  1034. │   │   │   ├── FakeDNSSDRegisterQuery.h
  1035. │   │   │   ├── FakeDNSSDResolveHostnameQuery.h
  1036. │   │   │   └── FakeDNSSDResolveServiceQuery.h
  1037. │   │   ├── PlatformDNSSDQuerierFactory.cpp
  1038. │   │   ├── PlatformDNSSDQuerierFactory.h
  1039. │   │   └── PlatformDNSSDQuerierFactory.o
  1040. │   ├── IncomingLinkLocalSession.cpp
  1041. │   ├── IncomingLinkLocalSession.h
  1042. │   ├── IncomingLinkLocalSession.o
  1043. │   ├── LinkLocalConnector.cpp
  1044. │   ├── LinkLocalConnector.h
  1045. │   ├── LinkLocalConnector.o
  1046. │   ├── LinkLocalServiceBrowser.cpp
  1047. │   ├── LinkLocalServiceBrowser.h
  1048. │   ├── LinkLocalServiceBrowser.o
  1049. │   ├── LinkLocalService.cpp
  1050. │   ├── LinkLocalService.h
  1051. │   ├── LinkLocalServiceInfo.cpp
  1052. │   ├── LinkLocalServiceInfo.h
  1053. │   ├── LinkLocalServiceInfo.o
  1054. │   ├── LinkLocalService.o
  1055. │   ├── OutgoingLinkLocalSession.cpp
  1056. │   ├── OutgoingLinkLocalSession.h
  1057. │   ├── OutgoingLinkLocalSession.o
  1058. │   ├── SConscript
  1059. │   └── UnitTest
  1060. │   ├── LinkLocalConnectorTest.cpp
  1061. │   ├── LinkLocalServiceBrowserTest.cpp
  1062. │   ├── LinkLocalServiceInfoTest.cpp
  1063. │   └── LinkLocalServiceTest.cpp
  1064. ├── MIX
  1065. │   ├── MIX.cpp
  1066. │   ├── MIX.h
  1067. │   ├── MIXImpl.cpp
  1068. │   ├── MIXImpl.h
  1069. │   ├── MIXImpl.o
  1070. │   ├── MIX.o
  1071. │   └── UnitTest
  1072. │   └── MIXImplTest.cpp
  1073. ├── MUC
  1074. │   ├── MUCBookmark.h
  1075. │   ├── MUCBookmarkManager.cpp
  1076. │   ├── MUCBookmarkManager.h
  1077. │   ├── MUCBookmarkManager.o
  1078. │   ├── MUC.cpp
  1079. │   ├── MUC.h
  1080. │   ├── MUCImpl.cpp
  1081. │   ├── MUCImpl.h
  1082. │   ├── MUCImpl.o
  1083. │   ├── MUCManager.cpp
  1084. │   ├── MUCManager.h
  1085. │   ├── MUCManager.o
  1086. │   ├── MUC.o
  1087. │   ├── MUCRegistry.cpp
  1088. │   ├── MUCRegistry.h
  1089. │   ├── MUCRegistry.o
  1090. │   └── UnitTest
  1091. │   ├── MockMUC.cpp
  1092. │   ├── MockMUC.h
  1093. │   └── MUCTest.cpp
  1094. ├── Network
  1095. │   ├── BoostConnection.cpp
  1096. │   ├── BoostConnectionFactory.cpp
  1097. │   ├── BoostConnectionFactory.h
  1098. │   ├── BoostConnectionFactory.o
  1099. │   ├── BoostConnection.h
  1100. │   ├── BoostConnection.o
  1101. │   ├── BoostConnectionServer.cpp
  1102. │   ├── BoostConnectionServerFactory.cpp
  1103. │   ├── BoostConnectionServerFactory.h
  1104. │   ├── BoostConnectionServerFactory.o
  1105. │   ├── BoostConnectionServer.h
  1106. │   ├── BoostConnectionServer.o
  1107. │   ├── BoostIOServiceThread.cpp
  1108. │   ├── BoostIOServiceThread.h
  1109. │   ├── BoostIOServiceThread.o
  1110. │   ├── BoostNetworkFactories.cpp
  1111. │   ├── BoostNetworkFactories.h
  1112. │   ├── BoostNetworkFactories.o
  1113. │   ├── BoostTimer.cpp
  1114. │   ├── BoostTimerFactory.cpp
  1115. │   ├── BoostTimerFactory.h
  1116. │   ├── BoostTimerFactory.o
  1117. │   ├── BoostTimer.h
  1118. │   ├── BoostTimer.o
  1119. │   ├── BOSHConnection.cpp
  1120. │   ├── BOSHConnection.h
  1121. │   ├── BOSHConnection.o
  1122. │   ├── BOSHConnectionPool.cpp
  1123. │   ├── BOSHConnectionPool.h
  1124. │   ├── BOSHConnectionPool.o
  1125. │   ├── CachingDomainNameResolver.cpp
  1126. │   ├── CachingDomainNameResolver.h
  1127. │   ├── CachingDomainNameResolver.o
  1128. │   ├── ChainedConnector.cpp
  1129. │   ├── ChainedConnector.h
  1130. │   ├── ChainedConnector.o
  1131. │   ├── Connection.cpp
  1132. │   ├── ConnectionFactory.cpp
  1133. │   ├── ConnectionFactory.h
  1134. │   ├── ConnectionFactory.o
  1135. │   ├── Connection.h
  1136. │   ├── Connection.o
  1137. │   ├── ConnectionServer.cpp
  1138. │   ├── ConnectionServerFactory.cpp
  1139. │   ├── ConnectionServerFactory.h
  1140. │   ├── ConnectionServerFactory.o
  1141. │   ├── ConnectionServer.h
  1142. │   ├── ConnectionServer.o
  1143. │   ├── Connector.cpp
  1144. │   ├── Connector.h
  1145. │   ├── Connector.o
  1146. │   ├── DomainNameAddressQuery.cpp
  1147. │   ├── DomainNameAddressQuery.h
  1148. │   ├── DomainNameAddressQuery.o
  1149. │   ├── DomainNameResolveError.h
  1150. │   ├── DomainNameResolver.cpp
  1151. │   ├── DomainNameResolver.h
  1152. │   ├── DomainNameResolver.o
  1153. │   ├── DomainNameServiceQuery.cpp
  1154. │   ├── DomainNameServiceQuery.h
  1155. │   ├── DomainNameServiceQuery.o
  1156. │   ├── DummyConnection.cpp
  1157. │   ├── DummyConnectionFactory.h
  1158. │   ├── DummyConnection.h
  1159. │   ├── DummyConnection.o
  1160. │   ├── DummyConnectionServerFactory.h
  1161. │   ├── DummyConnectionServer.h
  1162. │   ├── DummyTimerFactory.cpp
  1163. │   ├── DummyTimerFactory.h
  1164. │   ├── DummyTimerFactory.o
  1165. │   ├── EnvironmentProxyProvider.cpp
  1166. │   ├── EnvironmentProxyProvider.h
  1167. │   ├── EnvironmentProxyProvider.o
  1168. │   ├── FakeConnection.cpp
  1169. │   ├── FakeConnection.h
  1170. │   ├── FakeConnection.o
  1171. │   ├── GConfProxyProvider.cpp
  1172. │   ├── GConfProxyProvider.h
  1173. │   ├── HostAddress.cpp
  1174. │   ├── HostAddress.h
  1175. │   ├── HostAddress.o
  1176. │   ├── HostAddressPort.cpp
  1177. │   ├── HostAddressPort.h
  1178. │   ├── HostAddressPort.o
  1179. │   ├── HostNameOrAddress.cpp
  1180. │   ├── HostNameOrAddress.h
  1181. │   ├── HostNameOrAddress.o
  1182. │   ├── HTTPConnectProxiedConnection.cpp
  1183. │   ├── HTTPConnectProxiedConnectionFactory.cpp
  1184. │   ├── HTTPConnectProxiedConnectionFactory.h
  1185. │   ├── HTTPConnectProxiedConnectionFactory.o
  1186. │   ├── HTTPConnectProxiedConnection.h
  1187. │   ├── HTTPConnectProxiedConnection.o
  1188. │   ├── HTTPTrafficFilter.cpp
  1189. │   ├── HTTPTrafficFilter.h
  1190. │   ├── HTTPTrafficFilter.o
  1191. │   ├── MacOSXProxyProvider.cpp
  1192. │   ├── MacOSXProxyProvider.h
  1193. │   ├── MiniUPnPInterface.cpp
  1194. │   ├── MiniUPnPInterface.h
  1195. │   ├── MiniUPnPInterface.o
  1196. │   ├── NATPMPInterface.cpp
  1197. │   ├── NATPMPInterface.h
  1198. │   ├── NATPMPInterface.o
  1199. │   ├── NATPortMapping.h
  1200. │   ├── NATTraversalForwardPortRequest.cpp
  1201. │   ├── NATTraversalForwardPortRequest.h
  1202. │   ├── NATTraversalForwardPortRequest.o
  1203. │   ├── NATTraversalGetPublicIPRequest.cpp
  1204. │   ├── NATTraversalGetPublicIPRequest.h
  1205. │   ├── NATTraversalGetPublicIPRequest.o
  1206. │   ├── NATTraversalInterface.cpp
  1207. │   ├── NATTraversalInterface.h
  1208. │   ├── NATTraversalInterface.o
  1209. │   ├── NATTraversalRemovePortForwardingRequest.cpp
  1210. │   ├── NATTraversalRemovePortForwardingRequest.h
  1211. │   ├── NATTraversalRemovePortForwardingRequest.o
  1212. │   ├── NATTraverser.cpp
  1213. │   ├── NATTraverser.h
  1214. │   ├── NATTraverser.o
  1215. │   ├── NetworkEnvironment.cpp
  1216. │   ├── NetworkEnvironment.h
  1217. │   ├── NetworkEnvironment.o
  1218. │   ├── NetworkFactories.cpp
  1219. │   ├── NetworkFactories.h
  1220. │   ├── NetworkFactories.o
  1221. │   ├── NetworkInterface.h
  1222. │   ├── NullNATTraversalInterface.h
  1223. │   ├── NullNATTraverser.cpp
  1224. │   ├── NullNATTraverser.h
  1225. │   ├── NullNATTraverser.o
  1226. │   ├── NullProxyProvider.cpp
  1227. │   ├── NullProxyProvider.h
  1228. │   ├── NullProxyProvider.o
  1229. │   ├── PlatformDomainNameAddressQuery.cpp
  1230. │   ├── PlatformDomainNameAddressQuery.h
  1231. │   ├── PlatformDomainNameAddressQuery.o
  1232. │   ├── PlatformDomainNameQuery.h
  1233. │   ├── PlatformDomainNameResolver.cpp
  1234. │   ├── PlatformDomainNameResolver.h
  1235. │   ├── PlatformDomainNameResolver.o
  1236. │   ├── PlatformDomainNameServiceQuery.cpp
  1237. │   ├── PlatformDomainNameServiceQuery.h
  1238. │   ├── PlatformDomainNameServiceQuery.o
  1239. │   ├── PlatformNATTraversalWorker.cpp
  1240. │   ├── PlatformNATTraversalWorker.h
  1241. │   ├── PlatformNATTraversalWorker.o
  1242. │   ├── PlatformNetworkEnvironment.h
  1243. │   ├── PlatformProxyProvider.h
  1244. │   ├── ProxiedConnection.cpp
  1245. │   ├── ProxiedConnection.h
  1246. │   ├── ProxiedConnection.o
  1247. │   ├── ProxyProvider.cpp
  1248. │   ├── ProxyProvider.h
  1249. │   ├── ProxyProvider.o
  1250. │   ├── SConscript
  1251. │   ├── SOCKS5ProxiedConnection.cpp
  1252. │   ├── SOCKS5ProxiedConnectionFactory.cpp
  1253. │   ├── SOCKS5ProxiedConnectionFactory.h
  1254. │   ├── SOCKS5ProxiedConnectionFactory.o
  1255. │   ├── SOCKS5ProxiedConnection.h
  1256. │   ├── SOCKS5ProxiedConnection.o
  1257. │   ├── SolarisNetworkEnvironment.cpp
  1258. │   ├── SolarisNetworkEnvironment.h
  1259. │   ├── StaticDomainNameResolver.cpp
  1260. │   ├── StaticDomainNameResolver.h
  1261. │   ├── StaticDomainNameResolver.o
  1262. │   ├── Timer.cpp
  1263. │   ├── TimerFactory.cpp
  1264. │   ├── TimerFactory.h
  1265. │   ├── TimerFactory.o
  1266. │   ├── Timer.h
  1267. │   ├── Timer.o
  1268. │   ├── TLSConnection.cpp
  1269. │   ├── TLSConnectionFactory.cpp
  1270. │   ├── TLSConnectionFactory.h
  1271. │   ├── TLSConnectionFactory.o
  1272. │   ├── TLSConnection.h
  1273. │   ├── TLSConnection.o
  1274. │   ├── UnboundDomainNameResolver.cpp
  1275. │   ├── UnboundDomainNameResolver.h
  1276. │   ├── UnitTest
  1277. │   │   ├── BOSHConnectionPoolTest.cpp
  1278. │   │   ├── BOSHConnectionTest.cpp
  1279. │   │   ├── ChainedConnectorTest.cpp
  1280. │   │   ├── ConnectorTest.cpp
  1281. │   │   ├── DomainNameServiceQueryTest.cpp
  1282. │   │   ├── HostAddressTest.cpp
  1283. │   │   └── HTTPConnectProxiedConnectionTest.cpp
  1284. │   ├── UnixNetworkEnvironment.cpp
  1285. │   ├── UnixNetworkEnvironment.h
  1286. │   ├── UnixNetworkEnvironment.o
  1287. │   ├── UnixProxyProvider.cpp
  1288. │   ├── UnixProxyProvider.h
  1289. │   ├── UnixProxyProvider.o
  1290. │   ├── WindowsNetworkEnvironment.cpp
  1291. │   ├── WindowsNetworkEnvironment.h
  1292. │   ├── WindowsProxyProvider.cpp
  1293. │   └── WindowsProxyProvider.h
  1294. ├── Parser
  1295. │   ├── Attribute.h
  1296. │   ├── AttributeMap.cpp
  1297. │   ├── AttributeMap.h
  1298. │   ├── AttributeMap.o
  1299. │   ├── AuthChallengeParser.cpp
  1300. │   ├── AuthChallengeParser.h
  1301. │   ├── AuthChallengeParser.o
  1302. │   ├── AuthFailureParser.h
  1303. │   ├── AuthRequestParser.cpp
  1304. │   ├── AuthRequestParser.h
  1305. │   ├── AuthRequestParser.o
  1306. │   ├── AuthResponseParser.cpp
  1307. │   ├── AuthResponseParser.h
  1308. │   ├── AuthResponseParser.o
  1309. │   ├── AuthSuccessParser.cpp
  1310. │   ├── AuthSuccessParser.h
  1311. │   ├── AuthSuccessParser.o
  1312. │   ├── BOSHBodyExtractor.cpp
  1313. │   ├── BOSHBodyExtractor.h
  1314. │   ├── BOSHBodyExtractor.o
  1315. │   ├── ComponentHandshakeParser.cpp
  1316. │   ├── ComponentHandshakeParser.h
  1317. │   ├── ComponentHandshakeParser.o
  1318. │   ├── CompressedParser.h
  1319. │   ├── CompressFailureParser.h
  1320. │   ├── CompressParser.cpp
  1321. │   ├── CompressParser.h
  1322. │   ├── CompressParser.o
  1323. │   ├── ElementParser.cpp
  1324. │   ├── ElementParser.h
  1325. │   ├── ElementParser.o
  1326. │   ├── EnableStreamManagementParser.h
  1327. │   ├── EnumParser.h
  1328. │   ├── ExpatParser.cpp
  1329. │   ├── ExpatParser.h
  1330. │   ├── ExpatParser.o
  1331. │   ├── GenericElementParser.h
  1332. │   ├── GenericPayloadParserFactory2.h
  1333. │   ├── GenericPayloadParserFactory.h
  1334. │   ├── GenericPayloadParser.h
  1335. │   ├── GenericPayloadTreeParser.h
  1336. │   ├── GenericStanzaParser.h
  1337. │   ├── IQParser.cpp
  1338. │   ├── IQParser.h
  1339. │   ├── IQParser.o
  1340. │   ├── LibXMLParser.cpp
  1341. │   ├── LibXMLParser.h
  1342. │   ├── MessageParser.cpp
  1343. │   ├── MessageParser.h
  1344. │   ├── MessageParser.o
  1345. │   ├── PayloadParser.cpp
  1346. │   ├── PayloadParserFactoryCollection.cpp
  1347. │   ├── PayloadParserFactoryCollection.h
  1348. │   ├── PayloadParserFactoryCollection.o
  1349. │   ├── PayloadParserFactory.cpp
  1350. │   ├── PayloadParserFactory.h
  1351. │   ├── PayloadParserFactory.o
  1352. │   ├── PayloadParser.h
  1353. │   ├── PayloadParser.o
  1354. │   ├── PayloadParsers
  1355. │   │   ├── BlockParser.h
  1356. │   │   ├── BodyParser.cpp
  1357. │   │   ├── BodyParser.h
  1358. │   │   ├── BodyParser.o
  1359. │   │   ├── BytestreamsParser.cpp
  1360. │   │   ├── BytestreamsParser.h
  1361. │   │   ├── BytestreamsParser.o
  1362. │   │   ├── CapsInfoParser.cpp
  1363. │   │   ├── CapsInfoParser.h
  1364. │   │   ├── CapsInfoParser.o
  1365. │   │   ├── CarbonsDisableParser.cpp
  1366. │   │   ├── CarbonsDisableParser.h
  1367. │   │   ├── CarbonsDisableParser.o
  1368. │   │   ├── CarbonsEnableParser.cpp
  1369. │   │   ├── CarbonsEnableParser.h
  1370. │   │   ├── CarbonsEnableParser.o
  1371. │   │   ├── CarbonsPrivateParser.cpp
  1372. │   │   ├── CarbonsPrivateParser.h
  1373. │   │   ├── CarbonsPrivateParser.o
  1374. │   │   ├── CarbonsReceivedParser.cpp
  1375. │   │   ├── CarbonsReceivedParser.h
  1376. │   │   ├── CarbonsReceivedParser.o
  1377. │   │   ├── CarbonsSentParser.cpp
  1378. │   │   ├── CarbonsSentParser.h
  1379. │   │   ├── CarbonsSentParser.o
  1380. │   │   ├── ChatStateParser.cpp
  1381. │   │   ├── ChatStateParserFactory.h
  1382. │   │   ├── ChatStateParser.h
  1383. │   │   ├── ChatStateParser.o
  1384. │   │   ├── ClientStateParser.cpp
  1385. │   │   ├── ClientStateParserFactory.h
  1386. │   │   ├── ClientStateParser.h
  1387. │   │   ├── ClientStateParser.o
  1388. │   │   ├── CommandParser.cpp
  1389. │   │   ├── CommandParser.h
  1390. │   │   ├── CommandParser.o
  1391. │   │   ├── DelayParser.cpp
  1392. │   │   ├── DelayParser.h
  1393. │   │   ├── DelayParser.o
  1394. │   │   ├── DeliveryReceiptParser.cpp
  1395. │   │   ├── DeliveryReceiptParserFactory.h
  1396. │   │   ├── DeliveryReceiptParser.h
  1397. │   │   ├── DeliveryReceiptParser.o
  1398. │   │   ├── DeliveryReceiptRequestParser.cpp
  1399. │   │   ├── DeliveryReceiptRequestParserFactory.h
  1400. │   │   ├── DeliveryReceiptRequestParser.h
  1401. │   │   ├── DeliveryReceiptRequestParser.o
  1402. │   │   ├── DiscoInfoParser.cpp
  1403. │   │   ├── DiscoInfoParser.h
  1404. │   │   ├── DiscoInfoParser.o
  1405. │   │   ├── DiscoItemsParser.cpp
  1406. │   │   ├── DiscoItemsParser.h
  1407. │   │   ├── DiscoItemsParser.o
  1408. │   │   ├── ErrorParser.cpp
  1409. │   │   ├── ErrorParserFactory.h
  1410. │   │   ├── ErrorParser.h
  1411. │   │   ├── ErrorParser.o
  1412. │   │   ├── FormParser.cpp
  1413. │   │   ├── FormParserFactory.h
  1414. │   │   ├── FormParser.h
  1415. │   │   ├── FormParser.o
  1416. │   │   ├── ForwardedParser.cpp
  1417. │   │   ├── ForwardedParser.h
  1418. │   │   ├── ForwardedParser.o
  1419. │   │   ├── FullPayloadParserFactoryCollection.cpp
  1420. │   │   ├── FullPayloadParserFactoryCollection.h
  1421. │   │   ├── FullPayloadParserFactoryCollection.o
  1422. │   │   ├── IBBParser.cpp
  1423. │   │   ├── IBBParser.h
  1424. │   │   ├── IBBParser.o
  1425. │   │   ├── IdleParser.cpp
  1426. │   │   ├── IdleParser.h
  1427. │   │   ├── IdleParser.o
  1428. │   │   ├── InBandRegistrationPayloadParser.cpp
  1429. │   │   ├── InBandRegistrationPayloadParser.h
  1430. │   │   ├── InBandRegistrationPayloadParser.o
  1431. │   │   ├── IsodeIQDelegationParser.cpp
  1432. │   │   ├── IsodeIQDelegationParser.h
  1433. │   │   ├── IsodeIQDelegationParser.o
  1434. │   │   ├── JingleContentPayloadParser.cpp
  1435. │   │   ├── JingleContentPayloadParserFactory.h
  1436. │   │   ├── JingleContentPayloadParser.h
  1437. │   │   ├── JingleContentPayloadParser.o
  1438. │   │   ├── JingleFileTransferDescriptionParser.cpp
  1439. │   │   ├── JingleFileTransferDescriptionParserFactory.h
  1440. │   │   ├── JingleFileTransferDescriptionParser.h
  1441. │   │   ├── JingleFileTransferDescriptionParser.o
  1442. │   │   ├── JingleFileTransferFileInfoParser.cpp
  1443. │   │   ├── JingleFileTransferFileInfoParser.h
  1444. │   │   ├── JingleFileTransferFileInfoParser.o
  1445. │   │   ├── JingleFileTransferHashParser.cpp
  1446. │   │   ├── JingleFileTransferHashParser.h
  1447. │   │   ├── JingleFileTransferHashParser.o
  1448. │   │   ├── JingleIBBTransportMethodPayloadParser.cpp
  1449. │   │   ├── JingleIBBTransportMethodPayloadParser.h
  1450. │   │   ├── JingleIBBTransportMethodPayloadParser.o
  1451. │   │   ├── JingleParser.cpp
  1452. │   │   ├── JingleParserFactory.h
  1453. │   │   ├── JingleParser.h
  1454. │   │   ├── JingleParser.o
  1455. │   │   ├── JingleReasonParser.cpp
  1456. │   │   ├── JingleReasonParser.h
  1457. │   │   ├── JingleReasonParser.o
  1458. │   │   ├── JingleS5BTransportMethodPayloadParser.cpp
  1459. │   │   ├── JingleS5BTransportMethodPayloadParser.h
  1460. │   │   ├── JingleS5BTransportMethodPayloadParser.o
  1461. │   │   ├── LastParser.cpp
  1462. │   │   ├── LastParser.h
  1463. │   │   ├── LastParser.o
  1464. │   │   ├── MAMFinParser.cpp
  1465. │   │   ├── MAMFinParser.h
  1466. │   │   ├── MAMFinParser.o
  1467. │   │   ├── MAMQueryParser.cpp
  1468. │   │   ├── MAMQueryParser.h
  1469. │   │   ├── MAMQueryParser.o
  1470. │   │   ├── MAMResultParser.cpp
  1471. │   │   ├── MAMResultParser.h
  1472. │   │   ├── MAMResultParser.o
  1473. │   │   ├── MIXCreateParser.cpp
  1474. │   │   ├── MIXCreateParser.h
  1475. │   │   ├── MIXCreateParser.o
  1476. │   │   ├── MIXDestroyParser.cpp
  1477. │   │   ├── MIXDestroyParser.h
  1478. │   │   ├── MIXDestroyParser.o
  1479. │   │   ├── MIXJoinParser.cpp
  1480. │   │   ├── MIXJoinParserFactory.h
  1481. │   │   ├── MIXJoinParser.h
  1482. │   │   ├── MIXJoinParser.o
  1483. │   │   ├── MIXLeaveParser.cpp
  1484. │   │   ├── MIXLeaveParser.h
  1485. │   │   ├── MIXLeaveParser.o
  1486. │   │   ├── MIXParticipantParser.cpp
  1487. │   │   ├── MIXParticipantParserFactory.h
  1488. │   │   ├── MIXParticipantParser.h
  1489. │   │   ├── MIXParticipantParser.o
  1490. │   │   ├── MIXPayloadParser.cpp
  1491. │   │   ├── MIXPayloadParserFactory.h
  1492. │   │   ├── MIXPayloadParser.h
  1493. │   │   ├── MIXPayloadParser.o
  1494. │   │   ├── MIXRegisterNickParser.cpp
  1495. │   │   ├── MIXRegisterNickParserFactory.h
  1496. │   │   ├── MIXRegisterNickParser.h
  1497. │   │   ├── MIXRegisterNickParser.o
  1498. │   │   ├── MIXSetNickParser.cpp
  1499. │   │   ├── MIXSetNickParserFactory.h
  1500. │   │   ├── MIXSetNickParser.h
  1501. │   │   ├── MIXSetNickParser.o
  1502. │   │   ├── MIXUpdateSubscriptionParser.cpp
  1503. │   │   ├── MIXUpdateSubscriptionParser.h
  1504. │   │   ├── MIXUpdateSubscriptionParser.o
  1505. │   │   ├── MIXUserPreferenceParser.cpp
  1506. │   │   ├── MIXUserPreferenceParser.h
  1507. │   │   ├── MIXUserPreferenceParser.o
  1508. │   │   ├── MUCAdminPayloadParser.cpp
  1509. │   │   ├── MUCAdminPayloadParser.h
  1510. │   │   ├── MUCAdminPayloadParser.o
  1511. │   │   ├── MUCDestroyPayloadParser.cpp
  1512. │   │   ├── MUCDestroyPayloadParser.h
  1513. │   │   ├── MUCDestroyPayloadParser.o
  1514. │   │   ├── MUCInvitationPayloadParser.cpp
  1515. │   │   ├── MUCInvitationPayloadParser.h
  1516. │   │   ├── MUCInvitationPayloadParser.o
  1517. │   │   ├── MUCItemParser.cpp
  1518. │   │   ├── MUCItemParser.h
  1519. │   │   ├── MUCItemParser.o
  1520. │   │   ├── MUCOwnerPayloadParser.cpp
  1521. │   │   ├── MUCOwnerPayloadParserFactory.h
  1522. │   │   ├── MUCOwnerPayloadParser.h
  1523. │   │   ├── MUCOwnerPayloadParser.o
  1524. │   │   ├── MUCUserPayloadParser.cpp
  1525. │   │   ├── MUCUserPayloadParserFactory.h
  1526. │   │   ├── MUCUserPayloadParser.h
  1527. │   │   ├── MUCUserPayloadParser.o
  1528. │   │   ├── NicknameParser.cpp
  1529. │   │   ├── NicknameParser.h
  1530. │   │   ├── NicknameParser.o
  1531. │   │   ├── PriorityParser.cpp
  1532. │   │   ├── PriorityParser.h
  1533. │   │   ├── PriorityParser.o
  1534. │   │   ├── PrivateStorageParser.cpp
  1535. │   │   ├── PrivateStorageParserFactory.h
  1536. │   │   ├── PrivateStorageParser.h
  1537. │   │   ├── PrivateStorageParser.o
  1538. │   │   ├── PubSubAffiliationParser.cpp
  1539. │   │   ├── PubSubAffiliationParser.h
  1540. │   │   ├── PubSubAffiliationParser.o
  1541. │   │   ├── PubSubAffiliationsParser.cpp
  1542. │   │   ├── PubSubAffiliationsParser.h
  1543. │   │   ├── PubSubAffiliationsParser.o
  1544. │   │   ├── PubSubConfigureParser.cpp
  1545. │   │   ├── PubSubConfigureParser.h
  1546. │   │   ├── PubSubConfigureParser.o
  1547. │   │   ├── PubSubCreateParser.cpp
  1548. │   │   ├── PubSubCreateParser.h
  1549. │   │   ├── PubSubCreateParser.o
  1550. │   │   ├── PubSubDefaultParser.cpp
  1551. │   │   ├── PubSubDefaultParser.h
  1552. │   │   ├── PubSubDefaultParser.o
  1553. │   │   ├── PubSubErrorParser.cpp
  1554. │   │   ├── PubSubErrorParserFactory.cpp
  1555. │   │   ├── PubSubErrorParserFactory.h
  1556. │   │   ├── PubSubErrorParserFactory.o
  1557. │   │   ├── PubSubErrorParser.h
  1558. │   │   ├── PubSubErrorParser.o
  1559. │   │   ├── PubSubEventAssociateParser.cpp
  1560. │   │   ├── PubSubEventAssociateParser.h
  1561. │   │   ├── PubSubEventAssociateParser.o
  1562. │   │   ├── PubSubEventCollectionParser.cpp
  1563. │   │   ├── PubSubEventCollectionParser.h
  1564. │   │   ├── PubSubEventCollectionParser.o
  1565. │   │   ├── PubSubEventConfigurationParser.cpp
  1566. │   │   ├── PubSubEventConfigurationParser.h
  1567. │   │   ├── PubSubEventConfigurationParser.o
  1568. │   │   ├── PubSubEventDeleteParser.cpp
  1569. │   │   ├── PubSubEventDeleteParser.h
  1570. │   │   ├── PubSubEventDeleteParser.o
  1571. │   │   ├── PubSubEventDisassociateParser.cpp
  1572. │   │   ├── PubSubEventDisassociateParser.h
  1573. │   │   ├── PubSubEventDisassociateParser.o
  1574. │   │   ├── PubSubEventItemParser.cpp
  1575. │   │   ├── PubSubEventItemParser.h
  1576. │   │   ├── PubSubEventItemParser.o
  1577. │   │   ├── PubSubEventItemsParser.cpp
  1578. │   │   ├── PubSubEventItemsParser.h
  1579. │   │   ├── PubSubEventItemsParser.o
  1580. │   │   ├── PubSubEventParser.cpp
  1581. │   │   ├── PubSubEventParser.h
  1582. │   │   ├── PubSubEventParser.o
  1583. │   │   ├── PubSubEventPurgeParser.cpp
  1584. │   │   ├── PubSubEventPurgeParser.h
  1585. │   │   ├── PubSubEventPurgeParser.o
  1586. │   │   ├── PubSubEventRedirectParser.cpp
  1587. │   │   ├── PubSubEventRedirectParser.h
  1588. │   │   ├── PubSubEventRedirectParser.o
  1589. │   │   ├── PubSubEventRetractParser.cpp
  1590. │   │   ├── PubSubEventRetractParser.h
  1591. │   │   ├── PubSubEventRetractParser.o
  1592. │   │   ├── PubSubEventSubscriptionParser.cpp
  1593. │   │   ├── PubSubEventSubscriptionParser.h
  1594. │   │   ├── PubSubEventSubscriptionParser.o
  1595. │   │   ├── PubSubItemParser.cpp
  1596. │   │   ├── PubSubItemParser.h
  1597. │   │   ├── PubSubItemParser.o
  1598. │   │   ├── PubSubItemsParser.cpp
  1599. │   │   ├── PubSubItemsParser.h
  1600. │   │   ├── PubSubItemsParser.o
  1601. │   │   ├── PubSubOptionsParser.cpp
  1602. │   │   ├── PubSubOptionsParser.h
  1603. │   │   ├── PubSubOptionsParser.o
  1604. │   │   ├── PubSubOwnerAffiliationParser.cpp
  1605. │   │   ├── PubSubOwnerAffiliationParser.h
  1606. │   │   ├── PubSubOwnerAffiliationParser.o
  1607. │   │   ├── PubSubOwnerAffiliationsParser.cpp
  1608. │   │   ├── PubSubOwnerAffiliationsParser.h
  1609. │   │   ├── PubSubOwnerAffiliationsParser.o
  1610. │   │   ├── PubSubOwnerConfigureParser.cpp
  1611. │   │   ├── PubSubOwnerConfigureParser.h
  1612. │   │   ├── PubSubOwnerConfigureParser.o
  1613. │   │   ├── PubSubOwnerDefaultParser.cpp
  1614. │   │   ├── PubSubOwnerDefaultParser.h
  1615. │   │   ├── PubSubOwnerDefaultParser.o
  1616. │   │   ├── PubSubOwnerDeleteParser.cpp
  1617. │   │   ├── PubSubOwnerDeleteParser.h
  1618. │   │   ├── PubSubOwnerDeleteParser.o
  1619. │   │   ├── PubSubOwnerPubSubParser.cpp
  1620. │   │   ├── PubSubOwnerPubSubParser.h
  1621. │   │   ├── PubSubOwnerPubSubParser.o
  1622. │   │   ├── PubSubOwnerPurgeParser.cpp
  1623. │   │   ├── PubSubOwnerPurgeParser.h
  1624. │   │   ├── PubSubOwnerPurgeParser.o
  1625. │   │   ├── PubSubOwnerRedirectParser.cpp
  1626. │   │   ├── PubSubOwnerRedirectParser.h
  1627. │   │   ├── PubSubOwnerRedirectParser.o
  1628. │   │   ├── PubSubOwnerSubscriptionParser.cpp
  1629. │   │   ├── PubSubOwnerSubscriptionParser.h
  1630. │   │   ├── PubSubOwnerSubscriptionParser.o
  1631. │   │   ├── PubSubOwnerSubscriptionsParser.cpp
  1632. │   │   ├── PubSubOwnerSubscriptionsParser.h
  1633. │   │   ├── PubSubOwnerSubscriptionsParser.o
  1634. │   │   ├── PubSubParser.cpp
  1635. │   │   ├── PubSubParser.h
  1636. │   │   ├── PubSubParser.o
  1637. │   │   ├── PubSubPublishParser.cpp
  1638. │   │   ├── PubSubPublishParser.h
  1639. │   │   ├── PubSubPublishParser.o
  1640. │   │   ├── PubSubRetractParser.cpp
  1641. │   │   ├── PubSubRetractParser.h
  1642. │   │   ├── PubSubRetractParser.o
  1643. │   │   ├── PubSubSubscribeOptionsParser.cpp
  1644. │   │   ├── PubSubSubscribeOptionsParser.h
  1645. │   │   ├── PubSubSubscribeOptionsParser.o
  1646. │   │   ├── PubSubSubscribeParser.cpp
  1647. │   │   ├── PubSubSubscribeParser.h
  1648. │   │   ├── PubSubSubscribeParser.o
  1649. │   │   ├── PubSubSubscriptionParser.cpp
  1650. │   │   ├── PubSubSubscriptionParser.h
  1651. │   │   ├── PubSubSubscriptionParser.o
  1652. │   │   ├── PubSubSubscriptionsParser.cpp
  1653. │   │   ├── PubSubSubscriptionsParser.h
  1654. │   │   ├── PubSubSubscriptionsParser.o
  1655. │   │   ├── PubSubUnsubscribeParser.cpp
  1656. │   │   ├── PubSubUnsubscribeParser.h
  1657. │   │   ├── PubSubUnsubscribeParser.o
  1658. │   │   ├── RawXMLPayloadParser.cpp
  1659. │   │   ├── RawXMLPayloadParserFactory.h
  1660. │   │   ├── RawXMLPayloadParser.h
  1661. │   │   ├── RawXMLPayloadParser.o
  1662. │   │   ├── ReferencePayloadParser.cpp
  1663. │   │   ├── ReferencePayloadParser.h
  1664. │   │   ├── ReferencePayloadParser.o
  1665. │   │   ├── ReplaceParser.cpp
  1666. │   │   ├── ReplaceParser.h
  1667. │   │   ├── ReplaceParser.o
  1668. │   │   ├── ResourceBindParser.cpp
  1669. │   │   ├── ResourceBindParser.h
  1670. │   │   ├── ResourceBindParser.o
  1671. │   │   ├── ResultSetParser.cpp
  1672. │   │   ├── ResultSetParser.h
  1673. │   │   ├── ResultSetParser.o
  1674. │   │   ├── RosterItemExchangeParser.cpp
  1675. │   │   ├── RosterItemExchangeParser.h
  1676. │   │   ├── RosterItemExchangeParser.o
  1677. │   │   ├── RosterParser.cpp
  1678. │   │   ├── RosterParser.h
  1679. │   │   ├── RosterParser.o
  1680. │   │   ├── S5BProxyRequestParser.cpp
  1681. │   │   ├── S5BProxyRequestParser.h
  1682. │   │   ├── S5BProxyRequestParser.o
  1683. │   │   ├── SearchPayloadParser.cpp
  1684. │   │   ├── SearchPayloadParser.h
  1685. │   │   ├── SearchPayloadParser.o
  1686. │   │   ├── SecurityLabelParser.cpp
  1687. │   │   ├── SecurityLabelParserFactory.h
  1688. │   │   ├── SecurityLabelParser.h
  1689. │   │   ├── SecurityLabelParser.o
  1690. │   │   ├── SecurityLabelsCatalogParser.cpp
  1691. │   │   ├── SecurityLabelsCatalogParser.h
  1692. │   │   ├── SecurityLabelsCatalogParser.o
  1693. │   │   ├── SoftwareVersionParser.cpp
  1694. │   │   ├── SoftwareVersionParser.h
  1695. │   │   ├── SoftwareVersionParser.o
  1696. │   │   ├── StartSessionParser.h
  1697. │   │   ├── StatusParser.cpp
  1698. │   │   ├── StatusParser.h
  1699. │   │   ├── StatusParser.o
  1700. │   │   ├── StatusShowParser.cpp
  1701. │   │   ├── StatusShowParser.h
  1702. │   │   ├── StatusShowParser.o
  1703. │   │   ├── StorageParser.cpp
  1704. │   │   ├── StorageParser.h
  1705. │   │   ├── StorageParser.o
  1706. │   │   ├── StreamInitiationFileInfoParser.cpp
  1707. │   │   ├── StreamInitiationFileInfoParser.h
  1708. │   │   ├── StreamInitiationFileInfoParser.o
  1709. │   │   ├── StreamInitiationParser.cpp
  1710. │   │   ├── StreamInitiationParser.h
  1711. │   │   ├── StreamInitiationParser.o
  1712. │   │   ├── SubjectParser.cpp
  1713. │   │   ├── SubjectParser.h
  1714. │   │   ├── SubjectParser.o
  1715. │   │   ├── ThreadParser.cpp
  1716. │   │   ├── ThreadParser.h
  1717. │   │   ├── ThreadParser.o
  1718. │   │   ├── UnitTest
  1719. │   │   │   ├── BlockParserTest.cpp
  1720. │   │   │   ├── BodyParserTest.cpp
  1721. │   │   │   ├── CarbonsParserTest.cpp
  1722. │   │   │   ├── ClientStateParserTest.cpp
  1723. │   │   │   ├── CommandParserTest.cpp
  1724. │   │   │   ├── DeliveryReceiptParserTest.cpp
  1725. │   │   │   ├── DiscoInfoParserTest.cpp
  1726. │   │   │   ├── DiscoItemsParserTest.cpp
  1727. │   │   │   ├── ErrorParserTest.cpp
  1728. │   │   │   ├── FormParserTest.cpp
  1729. │   │   │   ├── ForwardedParserTest.cpp
  1730. │   │   │   ├── IBBParserTest.cpp
  1731. │   │   │   ├── IdleParserTest.cpp
  1732. │   │   │   ├── InBandRegistrationPayloadParserTest.cpp
  1733. │   │   │   ├── JingleParserTest.cpp
  1734. │   │   │   ├── MAMFinParserTest.cpp
  1735. │   │   │   ├── MAMQueryParserTest.cpp
  1736. │   │   │   ├── MAMResultParserTest.cpp
  1737. │   │   │   ├── MIXCreateParserTest.cpp
  1738. │   │   │   ├── MIXDestroyParser.cpp
  1739. │   │   │   ├── MIXDestroyParserTest.cpp
  1740. │   │   │   ├── MIXJoinParserTest.cpp
  1741. │   │   │   ├── MIXLeaveParserTest.cpp
  1742. │   │   │   ├── MIXParticipantParserTest.cpp
  1743. │   │   │   ├── MIXPayloadParserTest.cpp
  1744. │   │   │   ├── MIXRegisterNickParserTest.cpp
  1745. │   │   │   ├── MIXSetNickParserTest.cpp
  1746. │   │   │   ├── MIXUpdateSubscriptionParserTest.cpp
  1747. │   │   │   ├── MIXUserPreferenceParserTest.cpp
  1748. │   │   │   ├── MUCAdminPayloadParserTest.cpp
  1749. │   │   │   ├── MUCUserPayloadParserTest.cpp
  1750. │   │   │   ├── PayloadParserTester.h
  1751. │   │   │   ├── PayloadsParserTester.h
  1752. │   │   │   ├── PriorityParserTest.cpp
  1753. │   │   │   ├── PrivateStorageParserTest.cpp
  1754. │   │   │   ├── PubSubRetractParserTest.cpp
  1755. │   │   │   ├── RawXMLPayloadParserTest.cpp
  1756. │   │   │   ├── ReferencePayloadParserTest.cpp
  1757. │   │   │   ├── ReplaceTest.cpp
  1758. │   │   │   ├── ResourceBindParserTest.cpp
  1759. │   │   │   ├── ResultSetParserTest.cpp
  1760. │   │   │   ├── RosterItemExchangeParserTest.cpp
  1761. │   │   │   ├── RosterParserTest.cpp
  1762. │   │   │   ├── SearchPayloadParserTest.cpp
  1763. │   │   │   ├── SecurityLabelParserTest.cpp
  1764. │   │   │   ├── SecurityLabelsCatalogParserTest.cpp
  1765. │   │   │   ├── SoftwareVersionParserTest.cpp
  1766. │   │   │   ├── StatusParserTest.cpp
  1767. │   │   │   ├── StatusShowParserTest.cpp
  1768. │   │   │   ├── StorageParserTest.cpp
  1769. │   │   │   ├── StreamInitiationParserTest.cpp
  1770. │   │   │   ├── UserLocationParserTest.cpp
  1771. │   │   │   ├── UserTuneParserTest.cpp
  1772. │   │   │   ├── VCardParserTest.cpp
  1773. │   │   │   └── VCardUpdateParserTest.cpp
  1774. │   │   ├── UserLocationParser.cpp
  1775. │   │   ├── UserLocationParser.h
  1776. │   │   ├── UserLocationParser.o
  1777. │   │   ├── UserTuneParser.cpp
  1778. │   │   ├── UserTuneParser.h
  1779. │   │   ├── UserTuneParser.o
  1780. │   │   ├── VCardParser.cpp
  1781. │   │   ├── VCardParser.h
  1782. │   │   ├── VCardParser.o
  1783. │   │   ├── VCardUpdateParser.cpp
  1784. │   │   ├── VCardUpdateParser.h
  1785. │   │   ├── VCardUpdateParser.o
  1786. │   │   ├── WhiteboardParser.cpp
  1787. │   │   ├── WhiteboardParser.h
  1788. │   │   └── WhiteboardParser.o
  1789. │   ├── PlatformXMLParserFactory.cpp
  1790. │   ├── PlatformXMLParserFactory.h
  1791. │   ├── PlatformXMLParserFactory.o
  1792. │   ├── PresenceParser.cpp
  1793. │   ├── PresenceParser.h
  1794. │   ├── PresenceParser.o
  1795. │   ├── SConscript
  1796. │   ├── SerializingParser.cpp
  1797. │   ├── SerializingParser.h
  1798. │   ├── SerializingParser.o
  1799. │   ├── StanzaAckParser.cpp
  1800. │   ├── StanzaAckParser.h
  1801. │   ├── StanzaAckParser.o
  1802. │   ├── StanzaAckRequestParser.h
  1803. │   ├── StanzaParser.cpp
  1804. │   ├── StanzaParser.h
  1805. │   ├── StanzaParser.o
  1806. │   ├── StartTLSFailureParser.h
  1807. │   ├── StartTLSParser.h
  1808. │   ├── StreamErrorParser.cpp
  1809. │   ├── StreamErrorParser.h
  1810. │   ├── StreamErrorParser.o
  1811. │   ├── StreamFeaturesParser.cpp
  1812. │   ├── StreamFeaturesParser.h
  1813. │   ├── StreamFeaturesParser.o
  1814. │   ├── StreamManagementEnabledParser.cpp
  1815. │   ├── StreamManagementEnabledParser.h
  1816. │   ├── StreamManagementEnabledParser.o
  1817. │   ├── StreamManagementFailedParser.h
  1818. │   ├── StreamResumedParser.cpp
  1819. │   ├── StreamResumedParser.h
  1820. │   ├── StreamResumedParser.o
  1821. │   ├── StreamResumeParser.cpp
  1822. │   ├── StreamResumeParser.h
  1823. │   ├── StreamResumeParser.o
  1824. │   ├── TLSProceedParser.h
  1825. │   ├── Tree
  1826. │   │   ├── NullParserElement.cpp
  1827. │   │   ├── NullParserElement.h
  1828. │   │   ├── NullParserElement.o
  1829. │   │   ├── ParserElement.cpp
  1830. │   │   ├── ParserElement.h
  1831. │   │   ├── ParserElement.o
  1832. │   │   ├── TreeReparser.cpp
  1833. │   │   ├── TreeReparser.h
  1834. │   │   └── TreeReparser.o
  1835. │   ├── UnitTest
  1836. │   │   ├── AttributeMapTest.cpp
  1837. │   │   ├── BOSHBodyExtractorTest.cpp
  1838. │   │   ├── ElementParserTester.h
  1839. │   │   ├── EnumParserTest.cpp
  1840. │   │   ├── GenericPayloadTreeParserTest.cpp
  1841. │   │   ├── IQParserTest.cpp
  1842. │   │   ├── MessageParserTest.cpp
  1843. │   │   ├── ParserTester.h
  1844. │   │   ├── PayloadParserFactoryCollectionTest.cpp
  1845. │   │   ├── PresenceParserTest.cpp
  1846. │   │   ├── SerializingParserTest.cpp
  1847. │   │   ├── StanzaAckParserTest.cpp
  1848. │   │   ├── StanzaParserTest.cpp
  1849. │   │   ├── StanzaParserTester.h
  1850. │   │   ├── StreamFeaturesParserTest.cpp
  1851. │   │   ├── StreamManagementEnabledParserTest.cpp
  1852. │   │   ├── XMLParserTest.cpp
  1853. │   │   └── XMPPParserTest.cpp
  1854. │   ├── UnknownElementParser.h
  1855. │   ├── UnknownPayloadParser.h
  1856. │   ├── XMLParserClient.cpp
  1857. │   ├── XMLParserClient.h
  1858. │   ├── XMLParserClient.o
  1859. │   ├── XMLParser.cpp
  1860. │   ├── XMLParserFactory.cpp
  1861. │   ├── XMLParserFactory.h
  1862. │   ├── XMLParserFactory.o
  1863. │   ├── XMLParser.h
  1864. │   ├── XMLParser.o
  1865. │   ├── XMPPParserClient.cpp
  1866. │   ├── XMPPParserClient.h
  1867. │   ├── XMPPParserClient.o
  1868. │   ├── XMPPParser.cpp
  1869. │   ├── XMPPParser.h
  1870. │   └── XMPPParser.o
  1871. ├── Presence
  1872. │   ├── DirectedPresenceSender.cpp
  1873. │   ├── DirectedPresenceSender.h
  1874. │   ├── DirectedPresenceSender.o
  1875. │   ├── PayloadAddingPresenceSender.cpp
  1876. │   ├── PayloadAddingPresenceSender.h
  1877. │   ├── PayloadAddingPresenceSender.o
  1878. │   ├── PresenceOracle.cpp
  1879. │   ├── PresenceOracle.h
  1880. │   ├── PresenceOracle.o
  1881. │   ├── PresenceSender.cpp
  1882. │   ├── PresenceSender.h
  1883. │   ├── PresenceSender.o
  1884. │   ├── SConscript
  1885. │   ├── StanzaChannelPresenceSender.cpp
  1886. │   ├── StanzaChannelPresenceSender.h
  1887. │   ├── StanzaChannelPresenceSender.o
  1888. │   ├── SubscriptionManager.cpp
  1889. │   ├── SubscriptionManager.h
  1890. │   ├── SubscriptionManager.o
  1891. │   └── UnitTest
  1892. │   ├── DirectedPresenceSenderTest.cpp
  1893. │   ├── PayloadAddingPresenceSenderTest.cpp
  1894. │   └── PresenceOracleTest.cpp
  1895. ├── PubSub
  1896. │   ├── PubSubManager.cpp
  1897. │   ├── PubSubManager.h
  1898. │   ├── PubSubManagerImpl.cpp
  1899. │   ├── PubSubManagerImpl.h
  1900. │   ├── PubSubManagerImpl.o
  1901. │   ├── PubSubManager.o
  1902. │   └── PubSubUtil.h
  1903. ├── QA
  1904. │   ├── ClientTest
  1905. │   │   ├── ClientTest.cpp
  1906. │   │   └── SConscript
  1907. │   ├── ConcurrentFileTransferTest
  1908. │   │   ├── ConcurrentFileTransferTest.cpp
  1909. │   │   └── SConscript
  1910. │   ├── DNSSDTest
  1911. │   │   ├── DNSSDTest.cpp
  1912. │   │   └── SConscript
  1913. │   ├── FileTransferTest
  1914. │   │   ├── FileTransferTest.cpp
  1915. │   │   └── SConscript
  1916. │   ├── NetworkTest
  1917. │   │   ├── BoostConnectionServerTest.cpp
  1918. │   │   ├── BoostConnectionTest.cpp
  1919. │   │   ├── DomainNameResolverTest.cpp
  1920. │   │   └── SConscript
  1921. │   ├── ProxyProviderTest
  1922. │   │   ├── ProxyProviderTest.cpp
  1923. │   │   └── SConscript
  1924. │   ├── ReconnectTest
  1925. │   │   ├── ReconnectTest.cpp
  1926. │   │   └── SConscript
  1927. │   ├── SConscript
  1928. │   ├── ScriptedTests
  1929. │   │   ├── MultipleClients.lua
  1930. │   │   ├── PubSub.lua
  1931. │   │   ├── SConscript
  1932. │   │   └── SendMessage.lua
  1933. │   ├── StorageTest
  1934. │   │   ├── FileReadBytestreamTest.cpp
  1935. │   │   ├── FileWriteBytestreamTest.cpp
  1936. │   │   ├── SConscript
  1937. │   │   └── VCardFileStorageTest.cpp
  1938. │   └── TLSTest
  1939. │   ├── CertificateErrorTest.cpp
  1940. │   ├── CertificateTest.cpp
  1941. │   ├── jabber_org.crt
  1942. │   └── SConscript
  1943. ├── Queries
  1944. │   ├── DummyIQChannel.h
  1945. │   ├── GenericRequest.h
  1946. │   ├── GetResponder.h
  1947. │   ├── IQChannel.cpp
  1948. │   ├── IQChannel.h
  1949. │   ├── IQChannel.o
  1950. │   ├── IQHandler.cpp
  1951. │   ├── IQHandler.h
  1952. │   ├── IQHandler.o
  1953. │   ├── IQRouter.cpp
  1954. │   ├── IQRouter.h
  1955. │   ├── IQRouter.o
  1956. │   ├── PubSubRequest.h
  1957. │   ├── RawRequest.h
  1958. │   ├── Request.cpp
  1959. │   ├── Request.h
  1960. │   ├── Request.o
  1961. │   ├── Requests
  1962. │   │   ├── EnableCarbonsRequest.h
  1963. │   │   ├── GetInBandRegistrationFormRequest.h
  1964. │   │   ├── GetPrivateStorageRequest.h
  1965. │   │   ├── GetSecurityLabelsCatalogRequest.h
  1966. │   │   ├── GetSoftwareVersionRequest.h
  1967. │   │   ├── SetPrivateStorageRequest.h
  1968. │   │   ├── SubmitInBandRegistrationFormRequest.h
  1969. │   │   └── UnitTest
  1970. │   │   └── GetPrivateStorageRequestTest.cpp
  1971. │   ├── Responder.h
  1972. │   ├── Responders
  1973. │   │   ├── SoftwareVersionResponder.cpp
  1974. │   │   ├── SoftwareVersionResponder.h
  1975. │   │   └── SoftwareVersionResponder.o
  1976. │   ├── SetResponder.h
  1977. │   └── UnitTest
  1978. │   ├── IQRouterTest.cpp
  1979. │   ├── RequestTest.cpp
  1980. │   └── ResponderTest.cpp
  1981. ├── Roster
  1982. │   ├── GetRosterRequest.h
  1983. │   ├── RosterMemoryStorage.cpp
  1984. │   ├── RosterMemoryStorage.h
  1985. │   ├── RosterMemoryStorage.o
  1986. │   ├── RosterPushResponder.h
  1987. │   ├── RosterStorage.cpp
  1988. │   ├── RosterStorage.h
  1989. │   ├── RosterStorage.o
  1990. │   ├── SetRosterRequest.h
  1991. │   ├── UnitTest
  1992. │   │   ├── XMPPRosterControllerTest.cpp
  1993. │   │   ├── XMPPRosterImplTest.cpp
  1994. │   │   ├── XMPPRosterSignalHandler.cpp
  1995. │   │   └── XMPPRosterSignalHandler.h
  1996. │   ├── XMPPRosterController.cpp
  1997. │   ├── XMPPRosterController.h
  1998. │   ├── XMPPRosterController.o
  1999. │   ├── XMPPRoster.cpp
  2000. │   ├── XMPPRoster.h
  2001. │   ├── XMPPRosterImpl.cpp
  2002. │   ├── XMPPRosterImpl.h
  2003. │   ├── XMPPRosterImpl.o
  2004. │   ├── XMPPRosterItem.h
  2005. │   └── XMPPRoster.o
  2006. ├── SASL
  2007. │   ├── ClientAuthenticator.cpp
  2008. │   ├── ClientAuthenticator.h
  2009. │   ├── ClientAuthenticator.o
  2010. │   ├── DIGESTMD5ClientAuthenticator.cpp
  2011. │   ├── DIGESTMD5ClientAuthenticator.h
  2012. │   ├── DIGESTMD5ClientAuthenticator.o
  2013. │   ├── DIGESTMD5Properties.cpp
  2014. │   ├── DIGESTMD5Properties.h
  2015. │   ├── DIGESTMD5Properties.o
  2016. │   ├── EXTERNALClientAuthenticator.cpp
  2017. │   ├── EXTERNALClientAuthenticator.h
  2018. │   ├── EXTERNALClientAuthenticator.o
  2019. │   ├── PLAINClientAuthenticator.cpp
  2020. │   ├── PLAINClientAuthenticator.h
  2021. │   ├── PLAINClientAuthenticator.o
  2022. │   ├── PLAINMessage.cpp
  2023. │   ├── PLAINMessage.h
  2024. │   ├── PLAINMessage.o
  2025. │   ├── SConscript
  2026. │   ├── SCRAMSHA1ClientAuthenticator.cpp
  2027. │   ├── SCRAMSHA1ClientAuthenticator.h
  2028. │   ├── SCRAMSHA1ClientAuthenticator.o
  2029. │   ├── UnitTest
  2030. │   │   ├── DIGESTMD5ClientAuthenticatorTest.cpp
  2031. │   │   ├── DIGESTMD5PropertiesTest.cpp
  2032. │   │   ├── EXTERNALClientAuthenticatorTest.cpp
  2033. │   │   ├── PLAINClientAuthenticatorTest.cpp
  2034. │   │   ├── PLAINMessageTest.cpp
  2035. │   │   ├── SCRAMSHA1ClientAuthenticatorTest.cpp
  2036. │   │   └── WindowsServicePrincipalNameTest.cpp
  2037. │   ├── WindowsAuthentication.cpp
  2038. │   ├── WindowsAuthentication.h
  2039. │   ├── WindowsGSSAPIClientAuthenticator.cpp
  2040. │   ├── WindowsGSSAPIClientAuthenticator.h
  2041. │   ├── WindowsServicePrincipalName.cpp
  2042. │   └── WindowsServicePrincipalName.h
  2043. ├── SConscript
  2044. ├── Serializer
  2045. │   ├── AuthChallengeSerializer.cpp
  2046. │   ├── AuthChallengeSerializer.h
  2047. │   ├── AuthChallengeSerializer.o
  2048. │   ├── AuthFailureSerializer.h
  2049. │   ├── AuthRequestSerializer.cpp
  2050. │   ├── AuthRequestSerializer.h
  2051. │   ├── AuthRequestSerializer.o
  2052. │   ├── AuthResponseSerializer.cpp
  2053. │   ├── AuthResponseSerializer.h
  2054. │   ├── AuthResponseSerializer.o
  2055. │   ├── AuthSuccessSerializer.cpp
  2056. │   ├── AuthSuccessSerializer.h
  2057. │   ├── AuthSuccessSerializer.o
  2058. │   ├── ComponentHandshakeSerializer.cpp
  2059. │   ├── ComponentHandshakeSerializer.h
  2060. │   ├── ComponentHandshakeSerializer.o
  2061. │   ├── CompressFailureSerializer.h
  2062. │   ├── CompressRequestSerializer.cpp
  2063. │   ├── CompressRequestSerializer.h
  2064. │   ├── CompressRequestSerializer.o
  2065. │   ├── ElementSerializer.cpp
  2066. │   ├── ElementSerializer.h
  2067. │   ├── ElementSerializer.o
  2068. │   ├── EnableStreamManagementSerializer.h
  2069. │   ├── GenericElementSerializer.h
  2070. │   ├── GenericPayloadSerializer.h
  2071. │   ├── GenericStanzaSerializer.h
  2072. │   ├── IQSerializer.h
  2073. │   ├── MessageSerializer.cpp
  2074. │   ├── MessageSerializer.h
  2075. │   ├── MessageSerializer.o
  2076. │   ├── PayloadSerializerCollection.cpp
  2077. │   ├── PayloadSerializerCollection.h
  2078. │   ├── PayloadSerializerCollection.o
  2079. │   ├── PayloadSerializer.cpp
  2080. │   ├── PayloadSerializer.h
  2081. │   ├── PayloadSerializer.o
  2082. │   ├── PayloadSerializers
  2083. │   │   ├── BlockSerializer.h
  2084. │   │   ├── BodySerializer.h
  2085. │   │   ├── BytestreamsSerializer.cpp
  2086. │   │   ├── BytestreamsSerializer.h
  2087. │   │   ├── BytestreamsSerializer.o
  2088. │   │   ├── CapsInfoSerializer.cpp
  2089. │   │   ├── CapsInfoSerializer.h
  2090. │   │   ├── CapsInfoSerializer.o
  2091. │   │   ├── CarbonsDisableSerializer.cpp
  2092. │   │   ├── CarbonsDisableSerializer.h
  2093. │   │   ├── CarbonsDisableSerializer.o
  2094. │   │   ├── CarbonsEnableSerializer.cpp
  2095. │   │   ├── CarbonsEnableSerializer.h
  2096. │   │   ├── CarbonsEnableSerializer.o
  2097. │   │   ├── CarbonsPrivateSerializer.cpp
  2098. │   │   ├── CarbonsPrivateSerializer.h
  2099. │   │   ├── CarbonsPrivateSerializer.o
  2100. │   │   ├── CarbonsReceivedSerializer.cpp
  2101. │   │   ├── CarbonsReceivedSerializer.h
  2102. │   │   ├── CarbonsReceivedSerializer.o
  2103. │   │   ├── CarbonsSentSerializer.cpp
  2104. │   │   ├── CarbonsSentSerializer.h
  2105. │   │   ├── CarbonsSentSerializer.o
  2106. │   │   ├── ChatStateSerializer.cpp
  2107. │   │   ├── ChatStateSerializer.h
  2108. │   │   ├── ChatStateSerializer.o
  2109. │   │   ├── ClientStateSerializer.cpp
  2110. │   │   ├── ClientStateSerializer.h
  2111. │   │   ├── ClientStateSerializer.o
  2112. │   │   ├── CommandSerializer.cpp
  2113. │   │   ├── CommandSerializer.h
  2114. │   │   ├── CommandSerializer.o
  2115. │   │   ├── DelaySerializer.cpp
  2116. │   │   ├── DelaySerializer.h
  2117. │   │   ├── DelaySerializer.o
  2118. │   │   ├── DeliveryReceiptRequestSerializer.cpp
  2119. │   │   ├── DeliveryReceiptRequestSerializer.h
  2120. │   │   ├── DeliveryReceiptRequestSerializer.o
  2121. │   │   ├── DeliveryReceiptSerializer.cpp
  2122. │   │   ├── DeliveryReceiptSerializer.h
  2123. │   │   ├── DeliveryReceiptSerializer.o
  2124. │   │   ├── DiscoInfoSerializer.cpp
  2125. │   │   ├── DiscoInfoSerializer.h
  2126. │   │   ├── DiscoInfoSerializer.o
  2127. │   │   ├── DiscoItemsSerializer.cpp
  2128. │   │   ├── DiscoItemsSerializer.h
  2129. │   │   ├── DiscoItemsSerializer.o
  2130. │   │   ├── ErrorSerializer.cpp
  2131. │   │   ├── ErrorSerializer.h
  2132. │   │   ├── ErrorSerializer.o
  2133. │   │   ├── FormSerializer.cpp
  2134. │   │   ├── FormSerializer.h
  2135. │   │   ├── FormSerializer.o
  2136. │   │   ├── ForwardedSerializer.cpp
  2137. │   │   ├── ForwardedSerializer.h
  2138. │   │   ├── ForwardedSerializer.o
  2139. │   │   ├── FullPayloadSerializerCollection.cpp
  2140. │   │   ├── FullPayloadSerializerCollection.h
  2141. │   │   ├── FullPayloadSerializerCollection.o
  2142. │   │   ├── IBBSerializer.cpp
  2143. │   │   ├── IBBSerializer.h
  2144. │   │   ├── IBBSerializer.o
  2145. │   │   ├── IdleSerializer.h
  2146. │   │   ├── InBandRegistrationPayloadSerializer.cpp
  2147. │   │   ├── InBandRegistrationPayloadSerializer.h
  2148. │   │   ├── InBandRegistrationPayloadSerializer.o
  2149. │   │   ├── IsodeIQDelegationSerializer.cpp
  2150. │   │   ├── IsodeIQDelegationSerializer.h
  2151. │   │   ├── IsodeIQDelegationSerializer.o
  2152. │   │   ├── JingleContentPayloadSerializer.cpp
  2153. │   │   ├── JingleContentPayloadSerializer.h
  2154. │   │   ├── JingleContentPayloadSerializer.o
  2155. │   │   ├── JingleFileTransferDescriptionSerializer.cpp
  2156. │   │   ├── JingleFileTransferDescriptionSerializer.h
  2157. │   │   ├── JingleFileTransferDescriptionSerializer.o
  2158. │   │   ├── JingleFileTransferFileInfoSerializer.cpp
  2159. │   │   ├── JingleFileTransferFileInfoSerializer.h
  2160. │   │   ├── JingleFileTransferFileInfoSerializer.o
  2161. │   │   ├── JingleFileTransferHashSerializer.cpp
  2162. │   │   ├── JingleFileTransferHashSerializer.h
  2163. │   │   ├── JingleFileTransferHashSerializer.o
  2164. │   │   ├── JingleIBBTransportPayloadSerializer.cpp
  2165. │   │   ├── JingleIBBTransportPayloadSerializer.h
  2166. │   │   ├── JingleIBBTransportPayloadSerializer.o
  2167. │   │   ├── JinglePayloadSerializer.cpp
  2168. │   │   ├── JinglePayloadSerializer.h
  2169. │   │   ├── JinglePayloadSerializer.o
  2170. │   │   ├── JingleS5BTransportPayloadSerializer.cpp
  2171. │   │   ├── JingleS5BTransportPayloadSerializer.h
  2172. │   │   ├── JingleS5BTransportPayloadSerializer.o
  2173. │   │   ├── LastSerializer.h
  2174. │   │   ├── MAMFinSerializer.cpp
  2175. │   │   ├── MAMFinSerializer.h
  2176. │   │   ├── MAMFinSerializer.o
  2177. │   │   ├── MAMQuerySerializer.cpp
  2178. │   │   ├── MAMQuerySerializer.h
  2179. │   │   ├── MAMQuerySerializer.o
  2180. │   │   ├── MAMResultSerializer.cpp
  2181. │   │   ├── MAMResultSerializer.h
  2182. │   │   ├── MAMResultSerializer.o
  2183. │   │   ├── MIXCreateSerializer.cpp
  2184. │   │   ├── MIXCreateSerializer.h
  2185. │   │   ├── MIXCreateSerializer.o
  2186. │   │   ├── MIXDestroySerializer.cpp
  2187. │   │   ├── MIXDestroySerializer.h
  2188. │   │   ├── MIXDestroySerializer.o
  2189. │   │   ├── MIXJoinSerializer.cpp
  2190. │   │   ├── MIXJoinSerializer.h
  2191. │   │   ├── MIXJoinSerializer.o
  2192. │   │   ├── MIXLeaveSerializer.cpp
  2193. │   │   ├── MIXLeaveSerializer.h
  2194. │   │   ├── MIXLeaveSerializer.o
  2195. │   │   ├── MIXParticipantSerializer.cpp
  2196. │   │   ├── MIXParticipantSerializer.h
  2197. │   │   ├── MIXParticipantSerializer.o
  2198. │   │   ├── MIXPayloadSerializer.cpp
  2199. │   │   ├── MIXPayloadSerializer.h
  2200. │   │   ├── MIXPayloadSerializer.o
  2201. │   │   ├── MIXRegisterNickSerializer.cpp
  2202. │   │   ├── MIXRegisterNickSerializer.h
  2203. │   │   ├── MIXRegisterNickSerializer.o
  2204. │   │   ├── MIXSetNickSerializer.cpp
  2205. │   │   ├── MIXSetNickSerializer.h
  2206. │   │   ├── MIXSetNickSerializer.o
  2207. │   │   ├── MIXUpdateSubscriptionSerializer.cpp
  2208. │   │   ├── MIXUpdateSubscriptionSerializer.h
  2209. │   │   ├── MIXUpdateSubscriptionSerializer.o
  2210. │   │   ├── MIXUserPreferenceSerializer.cpp
  2211. │   │   ├── MIXUserPreferenceSerializer.h
  2212. │   │   ├── MIXUserPreferenceSerializer.o
  2213. │   │   ├── MUCAdminPayloadSerializer.cpp
  2214. │   │   ├── MUCAdminPayloadSerializer.h
  2215. │   │   ├── MUCAdminPayloadSerializer.o
  2216. │   │   ├── MUCDestroyPayloadSerializer.cpp
  2217. │   │   ├── MUCDestroyPayloadSerializer.h
  2218. │   │   ├── MUCDestroyPayloadSerializer.o
  2219. │   │   ├── MUCInvitationPayloadSerializer.cpp
  2220. │   │   ├── MUCInvitationPayloadSerializer.h
  2221. │   │   ├── MUCInvitationPayloadSerializer.o
  2222. │   │   ├── MUCItemSerializer.h
  2223. │   │   ├── MUCOwnerPayloadSerializer.cpp
  2224. │   │   ├── MUCOwnerPayloadSerializer.h
  2225. │   │   ├── MUCOwnerPayloadSerializer.o
  2226. │   │   ├── MUCPayloadSerializer.cpp
  2227. │   │   ├── MUCPayloadSerializer.h
  2228. │   │   ├── MUCPayloadSerializer.o
  2229. │   │   ├── MUCUserPayloadSerializer.cpp
  2230. │   │   ├── MUCUserPayloadSerializer.h
  2231. │   │   ├── MUCUserPayloadSerializer.o
  2232. │   │   ├── NicknameSerializer.cpp
  2233. │   │   ├── NicknameSerializer.h
  2234. │   │   ├── NicknameSerializer.o
  2235. │   │   ├── PrioritySerializer.h
  2236. │   │   ├── PrivateStorageSerializer.cpp
  2237. │   │   ├── PrivateStorageSerializer.h
  2238. │   │   ├── PrivateStorageSerializer.o
  2239. │   │   ├── PubSubAffiliationSerializer.cpp
  2240. │   │   ├── PubSubAffiliationSerializer.h
  2241. │   │   ├── PubSubAffiliationSerializer.o
  2242. │   │   ├── PubSubAffiliationsSerializer.cpp
  2243. │   │   ├── PubSubAffiliationsSerializer.h
  2244. │   │   ├── PubSubAffiliationsSerializer.o
  2245. │   │   ├── PubSubConfigureSerializer.cpp
  2246. │   │   ├── PubSubConfigureSerializer.h
  2247. │   │   ├── PubSubConfigureSerializer.o
  2248. │   │   ├── PubSubCreateSerializer.cpp
  2249. │   │   ├── PubSubCreateSerializer.h
  2250. │   │   ├── PubSubCreateSerializer.o
  2251. │   │   ├── PubSubDefaultSerializer.cpp
  2252. │   │   ├── PubSubDefaultSerializer.h
  2253. │   │   ├── PubSubDefaultSerializer.o
  2254. │   │   ├── PubSubErrorSerializer.cpp
  2255. │   │   ├── PubSubErrorSerializer.h
  2256. │   │   ├── PubSubErrorSerializer.o
  2257. │   │   ├── PubSubEventAssociateSerializer.cpp
  2258. │   │   ├── PubSubEventAssociateSerializer.h
  2259. │   │   ├── PubSubEventAssociateSerializer.o
  2260. │   │   ├── PubSubEventCollectionSerializer.cpp
  2261. │   │   ├── PubSubEventCollectionSerializer.h
  2262. │   │   ├── PubSubEventCollectionSerializer.o
  2263. │   │   ├── PubSubEventConfigurationSerializer.cpp
  2264. │   │   ├── PubSubEventConfigurationSerializer.h
  2265. │   │   ├── PubSubEventConfigurationSerializer.o
  2266. │   │   ├── PubSubEventDeleteSerializer.cpp
  2267. │   │   ├── PubSubEventDeleteSerializer.h
  2268. │   │   ├── PubSubEventDeleteSerializer.o
  2269. │   │   ├── PubSubEventDisassociateSerializer.cpp
  2270. │   │   ├── PubSubEventDisassociateSerializer.h
  2271. │   │   ├── PubSubEventDisassociateSerializer.o
  2272. │   │   ├── PubSubEventItemSerializer.cpp
  2273. │   │   ├── PubSubEventItemSerializer.h
  2274. │   │   ├── PubSubEventItemSerializer.o
  2275. │   │   ├── PubSubEventItemsSerializer.cpp
  2276. │   │   ├── PubSubEventItemsSerializer.h
  2277. │   │   ├── PubSubEventItemsSerializer.o
  2278. │   │   ├── PubSubEventPurgeSerializer.cpp
  2279. │   │   ├── PubSubEventPurgeSerializer.h
  2280. │   │   ├── PubSubEventPurgeSerializer.o
  2281. │   │   ├── PubSubEventRedirectSerializer.cpp
  2282. │   │   ├── PubSubEventRedirectSerializer.h
  2283. │   │   ├── PubSubEventRedirectSerializer.o
  2284. │   │   ├── PubSubEventRetractSerializer.cpp
  2285. │   │   ├── PubSubEventRetractSerializer.h
  2286. │   │   ├── PubSubEventRetractSerializer.o
  2287. │   │   ├── PubSubEventSerializer.cpp
  2288. │   │   ├── PubSubEventSerializer.h
  2289. │   │   ├── PubSubEventSerializer.o
  2290. │   │   ├── PubSubEventSubscriptionSerializer.cpp
  2291. │   │   ├── PubSubEventSubscriptionSerializer.h
  2292. │   │   ├── PubSubEventSubscriptionSerializer.o
  2293. │   │   ├── PubSubItemSerializer.cpp
  2294. │   │   ├── PubSubItemSerializer.h
  2295. │   │   ├── PubSubItemSerializer.o
  2296. │   │   ├── PubSubItemsSerializer.cpp
  2297. │   │   ├── PubSubItemsSerializer.h
  2298. │   │   ├── PubSubItemsSerializer.o
  2299. │   │   ├── PubSubOptionsSerializer.cpp
  2300. │   │   ├── PubSubOptionsSerializer.h
  2301. │   │   ├── PubSubOptionsSerializer.o
  2302. │   │   ├── PubSubOwnerAffiliationSerializer.cpp
  2303. │   │   ├── PubSubOwnerAffiliationSerializer.h
  2304. │   │   ├── PubSubOwnerAffiliationSerializer.o
  2305. │   │   ├── PubSubOwnerAffiliationsSerializer.cpp
  2306. │   │   ├── PubSubOwnerAffiliationsSerializer.h
  2307. │   │   ├── PubSubOwnerAffiliationsSerializer.o
  2308. │   │   ├── PubSubOwnerConfigureSerializer.cpp
  2309. │   │   ├── PubSubOwnerConfigureSerializer.h
  2310. │   │   ├── PubSubOwnerConfigureSerializer.o
  2311. │   │   ├── PubSubOwnerDefaultSerializer.cpp
  2312. │   │   ├── PubSubOwnerDefaultSerializer.h
  2313. │   │   ├── PubSubOwnerDefaultSerializer.o
  2314. │   │   ├── PubSubOwnerDeleteSerializer.cpp
  2315. │   │   ├── PubSubOwnerDeleteSerializer.h
  2316. │   │   ├── PubSubOwnerDeleteSerializer.o
  2317. │   │   ├── PubSubOwnerPubSubSerializer.cpp
  2318. │   │   ├── PubSubOwnerPubSubSerializer.h
  2319. │   │   ├── PubSubOwnerPubSubSerializer.o
  2320. │   │   ├── PubSubOwnerPurgeSerializer.cpp
  2321. │   │   ├── PubSubOwnerPurgeSerializer.h
  2322. │   │   ├── PubSubOwnerPurgeSerializer.o
  2323. │   │   ├── PubSubOwnerRedirectSerializer.cpp
  2324. │   │   ├── PubSubOwnerRedirectSerializer.h
  2325. │   │   ├── PubSubOwnerRedirectSerializer.o
  2326. │   │   ├── PubSubOwnerSubscriptionSerializer.cpp
  2327. │   │   ├── PubSubOwnerSubscriptionSerializer.h
  2328. │   │   ├── PubSubOwnerSubscriptionSerializer.o
  2329. │   │   ├── PubSubOwnerSubscriptionsSerializer.cpp
  2330. │   │   ├── PubSubOwnerSubscriptionsSerializer.h
  2331. │   │   ├── PubSubOwnerSubscriptionsSerializer.o
  2332. │   │   ├── PubSubPublishSerializer.cpp
  2333. │   │   ├── PubSubPublishSerializer.h
  2334. │   │   ├── PubSubPublishSerializer.o
  2335. │   │   ├── PubSubRetractSerializer.cpp
  2336. │   │   ├── PubSubRetractSerializer.h
  2337. │   │   ├── PubSubRetractSerializer.o
  2338. │   │   ├── PubSubSerializer.cpp
  2339. │   │   ├── PubSubSerializer.h
  2340. │   │   ├── PubSubSerializer.o
  2341. │   │   ├── PubSubSubscribeOptionsSerializer.cpp
  2342. │   │   ├── PubSubSubscribeOptionsSerializer.h
  2343. │   │   ├── PubSubSubscribeOptionsSerializer.o
  2344. │   │   ├── PubSubSubscribeSerializer.cpp
  2345. │   │   ├── PubSubSubscribeSerializer.h
  2346. │   │   ├── PubSubSubscribeSerializer.o
  2347. │   │   ├── PubSubSubscriptionSerializer.cpp
  2348. │   │   ├── PubSubSubscriptionSerializer.h
  2349. │   │   ├── PubSubSubscriptionSerializer.o
  2350. │   │   ├── PubSubSubscriptionsSerializer.cpp
  2351. │   │   ├── PubSubSubscriptionsSerializer.h
  2352. │   │   ├── PubSubSubscriptionsSerializer.o
  2353. │   │   ├── PubSubUnsubscribeSerializer.cpp
  2354. │   │   ├── PubSubUnsubscribeSerializer.h
  2355. │   │   ├── PubSubUnsubscribeSerializer.o
  2356. │   │   ├── RawXMLPayloadSerializer.h
  2357. │   │   ├── ReferencePayloadSerializer.cpp
  2358. │   │   ├── ReferencePayloadSerializer.h
  2359. │   │   ├── ReferencePayloadSerializer.o
  2360. │   │   ├── ReplaceSerializer.h
  2361. │   │   ├── ResourceBindSerializer.cpp
  2362. │   │   ├── ResourceBindSerializer.h
  2363. │   │   ├── ResourceBindSerializer.o
  2364. │   │   ├── ResultSetSerializer.cpp
  2365. │   │   ├── ResultSetSerializer.h
  2366. │   │   ├── ResultSetSerializer.o
  2367. │   │   ├── RosterItemExchangeSerializer.cpp
  2368. │   │   ├── RosterItemExchangeSerializer.h
  2369. │   │   ├── RosterItemExchangeSerializer.o
  2370. │   │   ├── RosterSerializer.cpp
  2371. │   │   ├── RosterSerializer.h
  2372. │   │   ├── RosterSerializer.o
  2373. │   │   ├── S5BProxyRequestSerializer.h
  2374. │   │   ├── SearchPayloadSerializer.cpp
  2375. │   │   ├── SearchPayloadSerializer.h
  2376. │   │   ├── SearchPayloadSerializer.o
  2377. │   │   ├── SecurityLabelsCatalogSerializer.cpp
  2378. │   │   ├── SecurityLabelsCatalogSerializer.h
  2379. │   │   ├── SecurityLabelsCatalogSerializer.o
  2380. │   │   ├── SecurityLabelSerializer.cpp
  2381. │   │   ├── SecurityLabelSerializer.h
  2382. │   │   ├── SecurityLabelSerializer.o
  2383. │   │   ├── SoftwareVersionSerializer.cpp
  2384. │   │   ├── SoftwareVersionSerializer.h
  2385. │   │   ├── SoftwareVersionSerializer.o
  2386. │   │   ├── StartSessionSerializer.h
  2387. │   │   ├── StatusSerializer.h
  2388. │   │   ├── StatusShowSerializer.h
  2389. │   │   ├── StorageSerializer.cpp
  2390. │   │   ├── StorageSerializer.h
  2391. │   │   ├── StorageSerializer.o
  2392. │   │   ├── StreamInitiationFileInfoSerializer.cpp
  2393. │   │   ├── StreamInitiationFileInfoSerializer.h
  2394. │   │   ├── StreamInitiationFileInfoSerializer.o
  2395. │   │   ├── StreamInitiationSerializer.cpp
  2396. │   │   ├── StreamInitiationSerializer.h
  2397. │   │   ├── StreamInitiationSerializer.o
  2398. │   │   ├── SubjectSerializer.h
  2399. │   │   ├── ThreadSerializer.cpp
  2400. │   │   ├── ThreadSerializer.h
  2401. │   │   ├── ThreadSerializer.o
  2402. │   │   ├── UnitTest
  2403. │   │   │   ├── BlockSerializerTest.cpp
  2404. │   │   │   ├── CapsInfoSerializerTest.cpp
  2405. │   │   │   ├── CarbonsSerializerTest.cpp
  2406. │   │   │   ├── ChatStateSerializerTest.cpp
  2407. │   │   │   ├── ClientStateSerializerTest.cpp
  2408. │   │   │   ├── DeliveryReceiptSerializerTest.cpp
  2409. │   │   │   ├── DiscoInfoSerializerTest.cpp
  2410. │   │   │   ├── ErrorSerializerTest.cpp
  2411. │   │   │   ├── FormSerializerTest.cpp
  2412. │   │   │   ├── ForwardedSerializerTest.cpp
  2413. │   │   │   ├── IBBSerializerTest.cpp
  2414. │   │   │   ├── IdleSerializerTest.cpp
  2415. │   │   │   ├── InBandRegistrationPayloadSerializerTest.cpp
  2416. │   │   │   ├── IsodeIQDelegationSerializerTest.cpp
  2417. │   │   │   ├── JingleSerializersTest.cpp
  2418. │   │   │   ├── MAMFinSerializerTest.cpp
  2419. │   │   │   ├── MAMQuerySerializerTest.cpp
  2420. │   │   │   ├── MAMResultSerializerTest.cpp
  2421. │   │   │   ├── MIXCreateSerializerTest.cpp
  2422. │   │   │   ├── MIXDestroySerializerTest.cpp
  2423. │   │   │   ├── MIXJoinSerializerTest.cpp
  2424. │   │   │   ├── MIXLeaveSerializerTest.cpp
  2425. │   │   │   ├── MIXParticipantSerializerTest.cpp
  2426. │   │   │   ├── MIXPayloadSerializerTest.cpp
  2427. │   │   │   ├── MIXRegisterNickSerializerTest.cpp
  2428. │   │   │   ├── MIXSetNickSerializerTest.cpp
  2429. │   │   │   ├── MIXUpdateSubscriptionSerializerTest.cpp
  2430. │   │   │   ├── MIXUserPreferenceSerializerTest.cpp
  2431. │   │   │   ├── MUCAdminPayloadSerializerTest.cpp
  2432. │   │   │   ├── PayloadsSerializer.cpp
  2433. │   │   │   ├── PayloadsSerializer.h
  2434. │   │   │   ├── PrioritySerializerTest.cpp
  2435. │   │   │   ├── PrivateStorageSerializerTest.cpp
  2436. │   │   │   ├── PubSubItemSerializerTest.cpp
  2437. │   │   │   ├── PubSubItemsSerializerTest.cpp
  2438. │   │   │   ├── PubSubRetractSerializerTest.cpp
  2439. │   │   │   ├── ReferencePayloadSerializerTest.cpp
  2440. │   │   │   ├── ReplaceSerializerTest.cpp
  2441. │   │   │   ├── ResourceBindSerializerTest.cpp
  2442. │   │   │   ├── ResultSetSerializerTest.cpp
  2443. │   │   │   ├── RosterItemExchangeSerializerTest.cpp
  2444. │   │   │   ├── RosterSerializerTest.cpp
  2445. │   │   │   ├── SearchPayloadSerializerTest.cpp
  2446. │   │   │   ├── SecurityLabelsCatalogSerializerTest.cpp
  2447. │   │   │   ├── SecurityLabelSerializerTest.cpp
  2448. │   │   │   ├── SoftwareVersionSerializerTest.cpp
  2449. │   │   │   ├── StatusSerializerTest.cpp
  2450. │   │   │   ├── StatusShowSerializerTest.cpp
  2451. │   │   │   ├── StorageSerializerTest.cpp
  2452. │   │   │   ├── StreamInitiationSerializerTest.cpp
  2453. │   │   │   ├── UserLocationSerializerTest.cpp
  2454. │   │   │   ├── UserTuneSerializerTest.cpp
  2455. │   │   │   ├── VCardSerializerTest.cpp
  2456. │   │   │   └── VCardUpdateSerializerTest.cpp
  2457. │   │   ├── UserLocationSerializer.cpp
  2458. │   │   ├── UserLocationSerializer.h
  2459. │   │   ├── UserLocationSerializer.o
  2460. │   │   ├── UserTuneSerializer.cpp
  2461. │   │   ├── UserTuneSerializer.h
  2462. │   │   ├── UserTuneSerializer.o
  2463. │   │   ├── VCardSerializer.cpp
  2464. │   │   ├── VCardSerializer.h
  2465. │   │   ├── VCardSerializer.o
  2466. │   │   ├── VCardUpdateSerializer.cpp
  2467. │   │   ├── VCardUpdateSerializer.h
  2468. │   │   ├── VCardUpdateSerializer.o
  2469. │   │   ├── WhiteboardSerializer.cpp
  2470. │   │   ├── WhiteboardSerializer.h
  2471. │   │   └── WhiteboardSerializer.o
  2472. │   ├── PresenceSerializer.cpp
  2473. │   ├── PresenceSerializer.h
  2474. │   ├── PresenceSerializer.o
  2475. │   ├── StanzaAckRequestSerializer.h
  2476. │   ├── StanzaAckSerializer.h
  2477. │   ├── StanzaSerializer.cpp
  2478. │   ├── StanzaSerializer.h
  2479. │   ├── StanzaSerializer.o
  2480. │   ├── StartTLSFailureSerializer.h
  2481. │   ├── StartTLSRequestSerializer.h
  2482. │   ├── StreamErrorSerializer.cpp
  2483. │   ├── StreamErrorSerializer.h
  2484. │   ├── StreamErrorSerializer.o
  2485. │   ├── StreamFeaturesSerializer.cpp
  2486. │   ├── StreamFeaturesSerializer.h
  2487. │   ├── StreamFeaturesSerializer.o
  2488. │   ├── StreamManagementEnabledSerializer.cpp
  2489. │   ├── StreamManagementEnabledSerializer.h
  2490. │   ├── StreamManagementEnabledSerializer.o
  2491. │   ├── StreamManagementFailedSerializer.h
  2492. │   ├── StreamResumedSerializer.cpp
  2493. │   ├── StreamResumedSerializer.h
  2494. │   ├── StreamResumedSerializer.o
  2495. │   ├── StreamResumeSerializer.cpp
  2496. │   ├── StreamResumeSerializer.h
  2497. │   ├── StreamResumeSerializer.o
  2498. │   ├── TLSProceedSerializer.h
  2499. │   ├── UnitTest
  2500. │   │   ├── AuthChallengeSerializerTest.cpp
  2501. │   │   ├── AuthRequestSerializerTest.cpp
  2502. │   │   ├── AuthResponseSerializerTest.cpp
  2503. │   │   ├── AuthSuccessSerializerTest.cpp
  2504. │   │   ├── StreamFeaturesSerializerTest.cpp
  2505. │   │   └── XMPPSerializerTest.cpp
  2506. │   ├── XML
  2507. │   │   ├── UnitTest
  2508. │   │   │   └── XMLElementTest.cpp
  2509. │   │   ├── XMLElement.cpp
  2510. │   │   ├── XMLElement.h
  2511. │   │   ├── XMLElement.o
  2512. │   │   ├── XMLNode.cpp
  2513. │   │   ├── XMLNode.h
  2514. │   │   ├── XMLNode.o
  2515. │   │   ├── XMLRawTextNode.h
  2516. │   │   └── XMLTextNode.h
  2517. │   ├── XMPPSerializer.cpp
  2518. │   ├── XMPPSerializer.h
  2519. │   └── XMPPSerializer.o
  2520. ├── Session
  2521. │   ├── BasicSessionStream.cpp
  2522. │   ├── BasicSessionStream.h
  2523. │   ├── BasicSessionStream.o
  2524. │   ├── BOSHSessionStream.cpp
  2525. │   ├── BOSHSessionStream.h
  2526. │   ├── BOSHSessionStream.o
  2527. │   ├── Session.cpp
  2528. │   ├── Session.h
  2529. │   ├── Session.o
  2530. │   ├── SessionStream.cpp
  2531. │   ├── SessionStream.h
  2532. │   ├── SessionStream.o
  2533. │   ├── SessionTracer.cpp
  2534. │   ├── SessionTracer.h
  2535. │   └── SessionTracer.o
  2536. ├── StreamManagement
  2537. │   ├── SConscript
  2538. │   ├── StanzaAckRequester.cpp
  2539. │   ├── StanzaAckRequester.h
  2540. │   ├── StanzaAckRequester.o
  2541. │   ├── StanzaAckResponder.cpp
  2542. │   ├── StanzaAckResponder.h
  2543. │   ├── StanzaAckResponder.o
  2544. │   └── UnitTest
  2545. │   ├── StanzaAckRequesterTest.cpp
  2546. │   └── StanzaAckResponderTest.cpp
  2547. ├── StreamStack
  2548. │   ├── CompressionLayer.h
  2549. │   ├── ConnectionLayer.cpp
  2550. │   ├── ConnectionLayer.h
  2551. │   ├── ConnectionLayer.o
  2552. │   ├── DummyStreamLayer.h
  2553. │   ├── HighLayer.cpp
  2554. │   ├── HighLayer.h
  2555. │   ├── HighLayer.o
  2556. │   ├── LowLayer.cpp
  2557. │   ├── LowLayer.h
  2558. │   ├── LowLayer.o
  2559. │   ├── SConscript
  2560. │   ├── StreamLayer.h
  2561. │   ├── StreamStack.cpp
  2562. │   ├── StreamStack.h
  2563. │   ├── StreamStack.o
  2564. │   ├── TLSLayer.cpp
  2565. │   ├── TLSLayer.h
  2566. │   ├── TLSLayer.o
  2567. │   ├── UnitTest
  2568. │   │   ├── StreamStackTest.cpp
  2569. │   │   └── XMPPLayerTest.cpp
  2570. │   ├── WhitespacePingLayer.cpp
  2571. │   ├── WhitespacePingLayer.h
  2572. │   ├── WhitespacePingLayer.o
  2573. │   ├── XMPPLayer.cpp
  2574. │   ├── XMPPLayer.h
  2575. │   └── XMPPLayer.o
  2576. ├── StringCodecs
  2577. │   ├── Base64.cpp
  2578. │   ├── Base64.h
  2579. │   ├── Base64.o
  2580. │   ├── Hexify.cpp
  2581. │   ├── Hexify.h
  2582. │   ├── Hexify.o
  2583. │   ├── PBKDF2.h
  2584. │   ├── SHA1_Windows.cpp
  2585. │   ├── SHA1_Windows.h
  2586. │   └── UnitTest
  2587. │   ├── Base64Test.cpp
  2588. │   ├── HexifyTest.cpp
  2589. │   └── PBKDF2Test.cpp
  2590. ├── Swiften.h
  2591. ├── Swiften.rc
  2592. ├── TLS
  2593. │   ├── BlindCertificateTrustChecker.h
  2594. │   ├── CAPICertificate.cpp
  2595. │   ├── CAPICertificate.h
  2596. │   ├── Certificate.cpp
  2597. │   ├── CertificateFactory.cpp
  2598. │   ├── CertificateFactory.h
  2599. │   ├── CertificateFactory.o
  2600. │   ├── Certificate.h
  2601. │   ├── Certificate.o
  2602. │   ├── CertificateTrustChecker.cpp
  2603. │   ├── CertificateTrustChecker.h
  2604. │   ├── CertificateTrustChecker.o
  2605. │   ├── CertificateVerificationError.h
  2606. │   ├── CertificateWithKey.h
  2607. │   ├── OpenSSL
  2608. │   │   ├── OpenSSLCertificate.cpp
  2609. │   │   ├── OpenSSLCertificateFactory.cpp
  2610. │   │   ├── OpenSSLCertificateFactory.h
  2611. │   │   ├── OpenSSLCertificateFactory.o
  2612. │   │   ├── OpenSSLCertificate.h
  2613. │   │   ├── OpenSSLCertificate.o
  2614. │   │   ├── OpenSSLContext.cpp
  2615. │   │   ├── OpenSSLContextFactory.cpp
  2616. │   │   ├── OpenSSLContextFactory.h
  2617. │   │   ├── OpenSSLContextFactory.o
  2618. │   │   ├── OpenSSLContext.h
  2619. │   │   └── OpenSSLContext.o
  2620. │   ├── PKCS12Certificate.h
  2621. │   ├── PlatformTLSFactories.cpp
  2622. │   ├── PlatformTLSFactories.h
  2623. │   ├── PlatformTLSFactories.o
  2624. │   ├── PrivateKey.cpp
  2625. │   ├── PrivateKey.h
  2626. │   ├── PrivateKey.o
  2627. │   ├── Schannel
  2628. │   │   ├── SchannelCertificate.cpp
  2629. │   │   ├── SchannelCertificateFactory.h
  2630. │   │   ├── SchannelCertificate.h
  2631. │   │   ├── SchannelContext.cpp
  2632. │   │   ├── SchannelContextFactory.cpp
  2633. │   │   ├── SchannelContextFactory.h
  2634. │   │   ├── SchannelContext.h
  2635. │   │   └── SchannelUtil.h
  2636. │   ├── SConscript
  2637. │   ├── SecureTransport
  2638. │   │   ├── SecureTransportCertificateFactory.h
  2639. │   │   ├── SecureTransportCertificate.h
  2640. │   │   ├── SecureTransportCertificate.mm
  2641. │   │   ├── SecureTransportContextFactory.cpp
  2642. │   │   ├── SecureTransportContextFactory.h
  2643. │   │   ├── SecureTransportContext.h
  2644. │   │   └── SecureTransportContext.mm
  2645. │   ├── ServerIdentityVerifier.cpp
  2646. │   ├── ServerIdentityVerifier.h
  2647. │   ├── ServerIdentityVerifier.o
  2648. │   ├── SimpleCertificate.h
  2649. │   ├── TLSContext.cpp
  2650. │   ├── TLSContextFactory.cpp
  2651. │   ├── TLSContextFactory.h
  2652. │   ├── TLSContextFactory.o
  2653. │   ├── TLSContext.h
  2654. │   ├── TLSContext.o
  2655. │   ├── TLSError.h
  2656. │   ├── TLSOptions.h
  2657. │   └── UnitTest
  2658. │   ├── CertificateTest.cpp
  2659. │   ├── ClientServerTest.cpp
  2660. │   └── ServerIdentityVerifierTest.cpp
  2661. ├── VCards
  2662. │   ├── GetVCardRequest.h
  2663. │   ├── SConscript
  2664. │   ├── SetVCardRequest.h
  2665. │   ├── UnitTest
  2666. │   │   └── VCardManagerTest.cpp
  2667. │   ├── VCardManager.cpp
  2668. │   ├── VCardManager.h
  2669. │   ├── VCardManager.o
  2670. │   ├── VCardMemoryStorage.h
  2671. │   ├── VCardStorage.cpp
  2672. │   ├── VCardStorage.h
  2673. │   └── VCardStorage.o
  2674. ├── Version.h
  2675. └── Whiteboard
  2676. ├── IncomingWhiteboardSession.cpp
  2677. ├── IncomingWhiteboardSession.h
  2678. ├── IncomingWhiteboardSession.o
  2679. ├── OutgoingWhiteboardSession.cpp
  2680. ├── OutgoingWhiteboardSession.h
  2681. ├── OutgoingWhiteboardSession.o
  2682. ├── UnitTest
  2683. │   ├── WhiteboardClientTest.cpp
  2684. │   └── WhiteboardServerTest.cpp
  2685. ├── WhiteboardClient.cpp
  2686. ├── WhiteboardClient.h
  2687. ├── WhiteboardClient.o
  2688. ├── WhiteboardResponder.cpp
  2689. ├── WhiteboardResponder.h
  2690. ├── WhiteboardResponder.o
  2691. ├── WhiteboardServer.cpp
  2692. ├── WhiteboardServer.h
  2693. ├── WhiteboardServer.o
  2694. ├── WhiteboardSession.cpp
  2695. ├── WhiteboardSession.h
  2696. ├── WhiteboardSessionManager.cpp
  2697. ├── WhiteboardSessionManager.h
  2698. ├── WhiteboardSessionManager.o
  2699. ├── WhiteboardSession.o
  2700. ├── WhiteboardTransformer.cpp
  2701. ├── WhiteboardTransformer.h
  2702. └── WhiteboardTransformer.o
  2703.  
  2704. 118 directories, 2583 files
Add Comment
Please, Sign In to add comment