diff options
author | Marvin W <git@larma.de> | 2019-08-29 00:44:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 00:44:59 +0200 |
commit | 9f613d5812f1893481f06d3806ef4f03048df2b8 (patch) | |
tree | d8d63db8c3cef6d3616fb78be0c50d40673b0d6e /libdino/src/service/module_manager.vala | |
parent | f0c2ce0047debe75565877f5033ccdccfbd4b755 (diff) | |
parent | 6028fd15a81a084b63311bc61f7b48d9f3d00746 (diff) | |
download | dino-9f613d5812f1893481f06d3806ef4f03048df2b8.tar.gz dino-9f613d5812f1893481f06d3806ef4f03048df2b8.zip |
Merge pull request #592 from hrxi/gsoc_1
Add SOCKS5 bytestreams and a couple of other fixes
Diffstat (limited to 'libdino/src/service/module_manager.vala')
-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]); |