Class ProxyConnectionManager
java.lang.Object
org.jivesoftware.openfire.filetransfer.proxy.ProxyConnectionManager
Manages the connections to the proxy server. The connections go through two stages before
file transfer begins. The first stage is when the file transfer target initiates a connection
to this manager. Stage two is when the initiator connects, the manager will then match the two
connections using the unique SHA-1 hash defined in the SOCKS5 protocol.
- Author:
- Alexander Wenckus
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SystemProperty<Integer>
The number of threads to keep in the thread pool that powers proxy (SOCKS5) connections, even if they are idle.static final SystemProperty<Integer>
The maximum number of threads to allow in the thread pool that powers proxy (SOCKS5) connections.static final SystemProperty<Duration>
The number of threads in the thread pool that powers proxy (SOCKS5) connections is greater than the core, this is the maximum time that excess idle threads will wait for new tasks before terminating. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic String
createDigest
(String sessionID, org.xmpp.packet.JID initiator, org.xmpp.packet.JID target) Creates the digest needed for a byte stream.void
disable()
int
boolean
-
Field Details
-
EXECUTOR_CORE_POOL_SIZE
The number of threads to keep in the thread pool that powers proxy (SOCKS5) connections, even if they are idle. -
EXECUTOR_MAX_POOL_SIZE
The maximum number of threads to allow in the thread pool that powers proxy (SOCKS5) connections. -
EXECUTOR_POOL_KEEP_ALIVE
The number of threads in the thread pool that powers proxy (SOCKS5) connections is greater than the core, this is the maximum time that excess idle threads will wait for new tasks before terminating.
-
-
Constructor Details
-
ProxyConnectionManager
-
-
Method Details
-
getProxyPort
public int getProxyPort() -
createDigest
public static String createDigest(String sessionID, org.xmpp.packet.JID initiator, org.xmpp.packet.JID target) Creates the digest needed for a byte stream. It is the SHA1(sessionID + initiator + target).- Parameters:
sessionID
- The sessionID of the stream negotiationinitiator
- The initiator of the stream negotiationtarget
- The target of the stream negotiation- Returns:
- SHA-1 hash of the three parameters
-
isRunning
public boolean isRunning() -
disable
public void disable()
-