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

📄 ssliop_util.h

📁 这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用于网络游戏医学图像网关的高qos要求.更详细的内容可阅读相应的材料
💻 H
字号:
// -*- C++ -*-

//=============================================================================
/**
 *  @file    SSLIOP_Util.h
 *
 *  SSLIOP_Util.h,v 1.2 2003/07/21 23:51:33 dhinton Exp
 *
 *  Utility class used by the SSLIOP pluggable protocol.
 *
 *  @author  Ossama Othman <ossama@uci.edu>
 */
//=============================================================================


#ifndef TAO_SSLIOP_UTIL_H
#define TAO_SSLIOP_UTIL_H

#include /**/ "ace/pre.h"

#include "ace/config-all.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */


class TAO_ORB_Core;
class TAO_IIOP_Properties;
class TAO_SSLIOP_Connection_Handler_State;

/**
 * @class TAO_SSLIOP_Util
 *
 * @brief Class that provides utility/helper methods for several
 *        classes in the SSLIOP pluggable protocol.
 *
 * Methods useful to many classes in the SSLIOP pluggable protocol are
 * centrally located in this uility class.
 */
class TAO_SSLIOP_Util
{
public:

  /// Setup the state that will be passed to the connection handler
  /// when the handler is constructed.
  static int setup_handler_state (TAO_ORB_Core *orb_core,
                                  TAO_IIOP_Properties *tcp_properties,
                                  TAO_SSLIOP_Connection_Handler_State &state);

};


#include /**/ "ace/post.h"

#endif  /* TAO_SSLIOP_UTIL_H */

⌨️ 快捷键说明

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