⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socks5bytestreammanager.h

📁 Jabber code library, developed with c
💻 H
字号:
/*  Copyright (c) 2007-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 SOCKS5BYTESTREAMMANAGER_H__#define SOCKS5BYTESTREAMMANAGER_H__#include "iqhandler.h"#include "jid.h"namespace gloox{  class SOCKS5BytestreamHandler;  class SOCKS5BytestreamServer;  class SOCKS5Bytestream;  class ClientBase;  /**   * Describes a single StreamHost.   */  struct StreamHost  {    JID jid;                    /**< The StreamHost's JID. */    std::string host;           /**< The StreamHost's IP or host name. */    int port;                   /**< The StreamHost's port. *///         std::string zeroconf;       /**< A zeroconf identifier. */  };  /**   * A list of StreamHosts.   */  typedef std::list<StreamHost> StreamHostList;  /**   * @brief An SOCKS5BytestreamManager dispatches SOCKS5 Bytestreams.   *   * @author Jakob Schroeter <js@camaya.net>   * @since 0.9   */  class GLOOX_API SOCKS5BytestreamManager : public IqHandler  {    friend class SOCKS5Bytestream;    public:      /**       * Supported transport layer protocols.       */      enum S5BMode      {        S5BTCP/*,*/                     /**< Use TCP on the transport layer. */        /*S5BUDP*/                      /**< Use UDP on the transport layer. */      };      /**       * Constructs a new SOCKS5BytestreamManager.       * @param parent The ClientBase to use for sending data.       * @param s5bh A SOCKS5BytestreamManager -derived object that will receive       * incoming and outgoing SOCKS5Bytestreams.       */      SOCKS5BytestreamManager( ClientBase *parent, SOCKS5BytestreamHandler* s5bh );      /**       * Virtual destructor.       */      virtual ~SOCKS5BytestreamManager();      /**       * Sets a list of StreamHosts that will be used for subsequent bytestream requests.       * @note At least one StreamHost is required.       * @param hosts A list of StreamHosts.       */      void setStreamHosts( StreamHostList hosts ) { m_hosts = hosts; }      /**       * Adds one StreamHost to the list of StreamHosts.       * @param jid The StreamHost's JID.       * @param host The StreamHost's hostname.       * @param port The StreamHost's port.       */      void addStreamHost( const JID& jid, const std::string& host, int port );      /**       * This function requests a bytestream with the remote entity.       * Data can only be sent over an open stream. Use isOpen() to find out what the stream's       * current state is. However, successful opening/initiation will be announced by means of the       * SOCKS5BytestreamHandler interface. Multiple bytestreams (even per JID) can be initiated       * without waiting for success.       * @param to The recipient of the requested bytestream.       * @param mode The desired transport layer protocol.       * @param sid The bytestreakm's stream ID, if previously negotiated e.g. using SI (XEP-0095).       * @return @b False in case of an error, @b true otherwise. A return value of @b true does       * @b not indicate that the bytestream has been opened. This is announced by means of the       * SOCKS5BytestreamHandler.       */      bool requestSOCKS5Bytestream( const JID& to, S5BMode mode, const std::string& sid = "" );      /**       * To get rid of a bytestream (i.e., close and delete it), call this function. You       * should not use the bytestream any more.       * The remote entity will be notified about the closing of the stream.       * @param s5b The bytestream to dispose. It will be deleted here.       */      bool dispose( SOCKS5Bytestream *s5b );      /**       * Use this function to accept an incoming bytestream.       * @param sid The stream's id as passed to SOCKS5BytestreamHandler::handleIncomingSOCKS5Bytestream().       */      void acceptSOCKS5Bytestream( const std::string& sid );      /**       * Use this function to reject an incoming bytestream.       * @param sid The stream's id as passed to SOCKS5BytestreamHandler::handleIncomingSOCKS5Bytestream().       */      void rejectSOCKS5Bytestream( const std::string& sid );      /**       * Use this function to register an object that will receive new @b incoming bytestream       * requests from the SOCKS5BytestreamManager. Only one SOCKS5BytestreamHandler can be       * registered at any one time.       * @param s5bh The SOCKS5BytestreamHandler derived object to receive notifications.       */      void registerSOCKS5BytestreamHandler( SOCKS5BytestreamHandler *s5bh )        { m_socks5BytestreamHandler = s5bh; }      /**       * Removes the registered SOCKS5BytestreamHandler.       */      void removeSOCKS5BytestreamHandler()        { m_socks5BytestreamHandler = 0; }      /**       * Tells the SOCKS5BytestreamManager which SOCKS5BytestreamServer handles peer-2-peer SOCKS5       * bytestreams.       * @param server The SOCKS5BytestreamServer to use.       */      void registerSOCKS5BytestreamServer( SOCKS5BytestreamServer* server ) { m_server = server; }      /**       * Un-registers any local SOCKS5BytestreamServer.       */      void removeSOCKS5BytestreamServer() { m_server = 0; }      // reimplemented from IqHandler      virtual bool handleIq( Stanza *stanza );      // reimplemented from IqHandler      virtual bool handleIqID( Stanza *stanza, int context );    private:      void rejectSOCKS5Bytestream( const JID& from, const std::string& id, StanzaError reason );      bool haveStream( const JID& from );      const StreamHost* findProxy( const JID& from, const std::string& hostjid, const std::string& sid );      void acknowledgeStreamHost( bool success, const JID& jid, const std::string& sid );      enum IBBActionType      {        S5BOpenStream,        S5BCloseStream,        S5BActivateStream      };      typedef std::map<std::string, SOCKS5Bytestream*> S5BMap;      S5BMap m_s5bMap;      struct AsyncS5BItem      {        JID from;        std::string id;        StreamHostList sHosts;        bool incoming;      };      typedef std::map<std::string, AsyncS5BItem> AsyncTrackMap;      AsyncTrackMap m_asyncTrackMap;      ClientBase *m_parent;      SOCKS5BytestreamHandler* m_socks5BytestreamHandler;      SOCKS5BytestreamServer* m_server;      StreamHostList m_hosts;      StringMap m_trackMap;  };}#endif // SOCKS5BYTESTREAMMANAGER_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -