Commit a558c3a1 authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

File transfer proxy. JM-108

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3446 b35dd754-fafc-0310-a699-88a17e54d16e
parent d76b5e97
...@@ -37,6 +37,7 @@ import org.jivesoftware.wildfire.roster.RosterManager; ...@@ -37,6 +37,7 @@ import org.jivesoftware.wildfire.roster.RosterManager;
import org.jivesoftware.wildfire.spi.*; import org.jivesoftware.wildfire.spi.*;
import org.jivesoftware.wildfire.transport.TransportHandler; import org.jivesoftware.wildfire.transport.TransportHandler;
import org.jivesoftware.wildfire.user.UserManager; import org.jivesoftware.wildfire.user.UserManager;
import org.jivesoftware.wildfire.filetransfer.FileTransferProxy;
import org.xmpp.packet.JID; import org.xmpp.packet.JID;
import java.io.File; import java.io.File;
...@@ -412,6 +413,7 @@ public class XMPPServer { ...@@ -412,6 +413,7 @@ public class XMPPServer {
loadModule(IQSharedGroupHandler.class.getName()); loadModule(IQSharedGroupHandler.class.getName());
loadModule(AdHocCommandHandler.class.getName()); loadModule(AdHocCommandHandler.class.getName());
loadModule(IQPrivacyHandler.class.getName()); loadModule(IQPrivacyHandler.class.getName());
loadModule(FileTransferProxy.class.getName());
// Load this module always last since we don't want to start listening for clients // Load this module always last since we don't want to start listening for clients
// before the rest of the modules have been started // before the rest of the modules have been started
loadModule(ConnectionManagerImpl.class.getName()); loadModule(ConnectionManagerImpl.class.getName());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment