gloox
1.0.28
|
#include <socks5bytestream.h>
Public Member Functions | |
virtual | ~SOCKS5Bytestream () |
virtual bool | connect () |
virtual void | close () |
virtual bool | send (const std::string &data) |
virtual ConnectionError | recv (int timeout=-1) |
void | setConnectionImpl (ConnectionBase *connection) |
ConnectionBase * | connectionImpl () |
void | setStreamHosts (const StreamHostList &hosts) |
virtual void | handleReceivedData (const ConnectionBase *connection, const std::string &data) |
virtual void | handleConnect (const ConnectionBase *connection) |
virtual void | handleDisconnect (const ConnectionBase *connection, ConnectionError reason) |
Public Member Functions inherited from ConnectionDataHandler | |
virtual | ~ConnectionDataHandler () |
Public Member Functions inherited from Bytestream | |
Bytestream (StreamType type, LogSink &logInstance, const JID &initiator, const JID &target, const std::string &sid) | |
virtual | ~Bytestream () |
bool | isOpen () const |
const std::string & | sid () const |
StreamType | type () const |
const JID & | target () const |
const JID & | initiator () const |
void | registerBytestreamDataHandler (BytestreamDataHandler *bdh) |
void | removeBytestreamDataHandler () |
Additional Inherited Members | |
Public Types inherited from Bytestream | |
enum | StreamType { S5B , IBB } |
Protected Attributes inherited from Bytestream | |
BytestreamDataHandler * | m_handler |
const LogSink & | m_logInstance |
const JID | m_initiator |
const JID | m_target |
StreamType | m_type |
std::string | m_sid |
bool | m_open |
An implementation of a single SOCKS5 Bytestream (XEP-0065).
One instance of this class handles one bytestream.
See SOCKS5BytestreamManager for a detailed description on how to implement SOCKS5 Bytestreams in your application.
Definition at line 42 of file socks5bytestream.h.
|
virtual |
Virtual destructor.
Definition at line 37 of file socks5bytestream.cpp.
|
virtual |
|
virtual |
This function starts the connection process. That is, it attempts to connect to each of the available StreamHosts. Once a working StreamHosts is found, the SOCKS5BytestreamManager is notified and the function returns.
Implements Bytestream.
Definition at line 60 of file socks5bytestream.cpp.
|
inline |
This function returns the concrete connection implementation currently in use.
Definition at line 101 of file socks5bytestream.h.
|
virtual |
This function is called when e.g. the raw TCP connection was established.
connection | The connection. |
Implements ConnectionDataHandler.
Definition at line 144 of file socks5bytestream.cpp.
|
virtual |
This connection is called when e.g. the raw TCP connection was closed.
connection | The connection. |
reason | The reason for the disconnect. |
Implements ConnectionDataHandler.
Definition at line 155 of file socks5bytestream.cpp.
|
virtual |
This function is called for received from the underlying transport.
connection | The connection that received the data. |
data | The data received. |
Implements ConnectionDataHandler.
Definition at line 121 of file socks5bytestream.cpp.
|
virtual |
Call this function repeatedly to receive data from the socket. You should even do this if you use the bytestream to merely send data.
timeout | The timeout to use for select in microseconds. Default of -1 means blocking. |
Implements Bytestream.
Definition at line 95 of file socks5bytestream.cpp.
|
virtual |
Use this function to send a chunk of data over an open bytestream. There is no limit for the size of the chunk (other than your machine's memory). If the stream is not open or has been closed again (by the remote entity or locally), nothing is sent and false is returned.
data | The block of data to send. |
Implements Bytestream.
Definition at line 87 of file socks5bytestream.cpp.
void setConnectionImpl | ( | ConnectionBase * | connection | ) |
Sets the connection to use.
connection | The connection. The bytestream will own the connection, any previously set connection gets deleted. |
Definition at line 46 of file socks5bytestream.cpp.
|
inline |
Use this function to set the available StreamHosts. Usually you should not need to use this function directly.
Definition at line 107 of file socks5bytestream.h.