diff options
author | hrxi <hrrrxi@gmail.com> | 2019-07-20 23:14:40 +0200 |
---|---|---|
committer | hrxi <hrrrxi@gmail.com> | 2019-08-05 20:55:37 +0200 |
commit | 642dac9aa0b90dd2f17df5dddd0e7914a7d306d3 (patch) | |
tree | 2888d7467535f41eda5ac8e783467604131bd289 /libdino/src | |
parent | 811408fcb5da3501b66d9a4d8a1da5a91da3a3da (diff) | |
download | dino-642dac9aa0b90dd2f17df5dddd0e7914a7d306d3.tar.gz dino-642dac9aa0b90dd2f17df5dddd0e7914a7d306d3.zip |
Add support for Jingle SOCKS5 bytestreams (XEP-0260)
Diffstat (limited to 'libdino/src')
-rw-r--r-- | libdino/src/service/module_manager.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdino/src/service/module_manager.vala b/libdino/src/service/module_manager.vala index 16bf5a60..6a07a146 100644 --- a/libdino/src/service/module_manager.vala +++ b/libdino/src/service/module_manager.vala @@ -78,8 +78,10 @@ public class ModuleManager { module_map[account].add(new StreamError.Module()); module_map[account].add(new Xep.InBandRegistration.Module()); module_map[account].add(new Xep.HttpFileUpload.Module()); + module_map[account].add(new Xep.Socks5Bytestreams.Module()); module_map[account].add(new Xep.InBandBytestreams.Module()); module_map[account].add(new Xep.Jingle.Module()); + module_map[account].add(new Xep.JingleSocks5Bytestreams.Module()); module_map[account].add(new Xep.JingleInBandBytestreams.Module()); module_map[account].add(new Xep.JingleFileTransfer.Module()); initialize_account_modules(account, module_map[account]); |