📄 socks5bytestreamhandler.h
字号:
/* Copyright (c) 2006-2008 by Jakob Schroeter <js@camaya.net> This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty.*/#ifndef SOCKS5BYTESTREAMHANDLER_H__#define SOCKS5BYTESTREAMHANDLER_H__#include "macros.h"#include "jid.h"#include "socks5bytestream.h"namespace gloox{ /** * @brief A virtual interface that allows to receive new incoming SOCKS5 Bytestream requests * from remote entities. * * See SOCKS5BytestreamManager for a detailed description on how to implement SOCKS5 Bytestreams. * * @author Jakob Schroeter <js@camaya.net> * @since 0.9 */ class GLOOX_API SOCKS5BytestreamHandler { public: /** * Virtual destructor. */ virtual ~SOCKS5BytestreamHandler() {} /** * Notifies the implementor of a new incoming SOCKS5 request. * You have to call either * SOCKS5BytestreamManager::acceptSOCKS5Bytestream() or * SOCKS5BytestreamManager::rejectSOCKS5Bytestream(), to accept or reject the bytestream * request, respectively. * @param sid The bytestream's id, to be passed to SOCKS5BytestreamManager::acceptSOCKS5Bytestream() * and SOCKS5BytestreamManager::rejectSOCKS5Bytestream(), respectively. * @param from The remote initiator of the bytestream request. */ virtual void handleIncomingSOCKS5BytestreamRequest( const std::string& sid, const JID& from ) = 0; /** * Notifies the implementor of a new incoming SOCKS5 bytestream. The bytestream is not yet ready to * send data. * To initialize the bytestream and to prepare it for data transfer, register a * SOCKS5BytestreamDataHandler with it and call its connect() method. * To not block your application while the data transfer lasts, you most * likely want to put the bytestream into its own thread or process (before calling connect() on it). * It is safe to do so without additional synchronization. * When you are finished using the bytestream, use SIProfileFT::dispose() (or * SOCKS5BytestreamManager::dispose() if you use SOCKS5BytestreamManager directly) to get rid of it. * @param s5b The bytestream. */ virtual void handleIncomingSOCKS5Bytestream( SOCKS5Bytestream* s5b ) = 0; /** * Notifies the implementor of successful establishing of an outgoing SOCKS5 bytestream request. * The stream has been accepted by the remote entity and is ready to send data. * The SOCKS5BytestreamHandler does @b not become the owner of the SOCKS5Bytestream object. * Use SIProfileFT::dispose() (or SOCKS5BytestreamManager::dispose() if you use * SOCKS5BytestreamManager directly) to get rid of the bytestream object after it has been closed. * @param s5b The new bytestream. */ virtual void handleOutgoingSOCKS5Bytestream( SOCKS5Bytestream *s5b ) = 0; /** * Notifies the handler of errors occuring when a bytestream was requested. * For example, if the remote entity does not implement SOCKS5 bytestreams. * @param stanza The error stanza. */ virtual void handleSOCKS5BytestreamError( Stanza* stanza, const std::string& sid ) = 0; };}#endif // SOCKS5BYTESTREAMHANDLER_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -