Interface BytestreamRequest
- All Known Implementing Classes:
InBandBytestreamRequest
,Socks5BytestreamRequest
public interface BytestreamRequest
BytestreamRequest provides an interface to handle incoming bytestream requests.
There are two implementations of the interface. See Socks5BytestreamRequest
and
InBandBytestreamRequest
.
-
Method Summary
Modifier and TypeMethodDescriptionaccept()
Accepts the bytestream open request and returns the session to send/receive data.getFrom()
Returns the sender of the bytestream open request.Returns the session ID of the bytestream open request.void
reject()
Rejects the bytestream request by sending a reject error to the initiator.
-
Method Details
-
getFrom
Returns the sender of the bytestream open request.- Returns:
- the sender of the bytestream open request
-
getSessionID
Returns the session ID of the bytestream open request.- Returns:
- the session ID of the bytestream open request
-
accept
BytestreamSession accept() throws InterruptedException, XMPPException.XMPPErrorException, Socks5Exception.CouldNotConnectToAnyProvidedSocks5Host, SmackException.NotConnectedException, Socks5Exception.NoSocks5StreamHostsProvidedAccepts the bytestream open request and returns the session to send/receive data.- Returns:
- the session to send/receive data
- Throws:
XMPPException.XMPPErrorException
- if an error occurred while accepting the bytestream requestInterruptedException
- if the thread was interrupted while waiting in a blocking operationSmackException.NotConnectedException
- if the XMPP connection is not connected.Socks5Exception.CouldNotConnectToAnyProvidedSocks5Host
- if no connection to any provided stream host could be establishedSocks5Exception.NoSocks5StreamHostsProvided
- if no stream host was provided.
-
reject
Rejects the bytestream request by sending a reject error to the initiator.- Throws:
SmackException.NotConnectedException
- if the XMPP connection is not connected.InterruptedException
- if the calling thread was interrupted.
-