📄 sslactive.cc
字号:
// -*- Mode: C++; -*-// Package : omniORB// sslActive.cc Created on: 24 Jul 2001// Author : Sai Lai Lo (sll)//// Copyright (C) 2001 AT&T Laboratories Cambridge//// This file is part of the omniORB library//// The omniORB library is free software; you can redistribute it and/or// modify it under the terms of the GNU Library General Public// License as published by the Free Software Foundation; either// version 2 of the License, or (at your option) any later version.//// This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU// Library General Public License for more details.//// You should have received a copy of the GNU Library General Public// License along with this library; if not, write to the Free// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA// 02111-1307, USA////// Description:// *** PROPRIETORY INTERFACE ***///* $Log: sslActive.cc,v $ Revision 1.1.2.2 2002/08/21 06:23:16 dgrisby Properly clean up bidir connections and ropes. Other small tweaks. Revision 1.1.2.1 2001/07/31 16:16:24 sll New transport interface to support the monitoring of active connections.*/#include <omniORB4/CORBA.h>#include <omniORB4/giopEndpoint.h>#include <omniORB4/sslContext.h>#include <SocketCollection.h>#include <ssl/sslConnection.h>#include <ssl/sslEndpoint.h>#include <omniORB4/linkHacks.h>OMNI_EXPORT_LINK_FORCE_SYMBOL(sslActive);OMNI_NAMESPACE_BEGIN(omni)/////////////////////////////////////////////////////////////////////////static sslActiveCollection myCollection;/////////////////////////////////////////////////////////////////////////sslActiveCollection::sslActiveCollection() : pd_n_sockets(0), pd_shutdown(0) {}/////////////////////////////////////////////////////////////////////////sslActiveCollection::~sslActiveCollection() {}/////////////////////////////////////////////////////////////////////////const char*sslActiveCollection::type() const { return "giop:ssl";}/////////////////////////////////////////////////////////////////////////voidsslActiveCollection::Monitor(giopConnection::notifyReadable_t func, void* cookie) { pd_callback_func = func; pd_callback_cookie = cookie; CORBA::Boolean doit; while (!isEmpty()) { if (!Select()) break; }}/////////////////////////////////////////////////////////////////////////CORBA::BooleansslActiveCollection::notifyReadable(SocketHandle_t fd) { SocketLink* conn = findSocket(fd,1); if (conn) { pd_callback_func(pd_callback_cookie,(sslConnection*)conn); } return 1;}/////////////////////////////////////////////////////////////////////////voidsslActiveCollection::addMonitor(SocketHandle_t) { omni_tracedmutex_lock sync(pd_lock); pd_n_sockets++; pd_shutdown = 0;}/////////////////////////////////////////////////////////////////////////voidsslActiveCollection::removeMonitor(SocketHandle_t) { omni_tracedmutex_lock sync(pd_lock); pd_n_sockets--;}/////////////////////////////////////////////////////////////////////////voidsslActiveCollection::deactivate() { omni_tracedmutex_lock sync(pd_lock); pd_shutdown = 1;}/////////////////////////////////////////////////////////////////////////CORBA::BooleansslActiveCollection::isEmpty() const { omni_tracedmutex_lock sync((omni_tracedmutex&)pd_lock); return (pd_n_sockets == 0 || pd_shutdown);}/////////////////////////////////////////////////////////////////////////sslActiveConnection::sslActiveConnection(SocketHandle_t sock, ::SSL* ssl) : sslConnection(sock,ssl,&myCollection), pd_registered(0) {}/////////////////////////////////////////////////////////////////////////sslActiveConnection::~sslActiveConnection() { if (pd_registered) { myCollection.removeMonitor(pd_socket); }}/////////////////////////////////////////////////////////////////////////giopActiveCollection*sslActiveConnection::registerMonitor() { if (pd_registered) return &myCollection; pd_registered = 1; myCollection.addMonitor(pd_socket); return &myCollection;}/////////////////////////////////////////////////////////////////////////giopConnection&sslActiveConnection::getConnection() { return *this;}OMNI_NAMESPACE_END(omni)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -