📄 ssliop_util.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 + -