From: Gunnar Beutner Date: Fri, 23 Nov 2012 10:04:08 +0000 (+0100) Subject: Minor cleanups. X-Git-Tag: v0.0.2~718 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0785a082e9966a4b3f47cb7f89bbedf1f9c3b0fc;p=icinga2 Minor cleanups. --- diff --git a/components/compatido/idoconnection.cpp b/components/compatido/idoconnection.cpp index af4670c80..5850f6f5c 100644 --- a/components/compatido/idoconnection.cpp +++ b/components/compatido/idoconnection.cpp @@ -24,7 +24,7 @@ using namespace icinga; /** * Constructor for the IdoSocket class. * - * @param role The role of the underlying TCP client. + * @param stream The stream this connection should use. */ IdoConnection::IdoConnection(const Stream::Ptr& stream) : Connection(stream) @@ -37,11 +37,6 @@ IdoConnection::IdoConnection(const Stream::Ptr& stream) */ void IdoConnection::SendMessage(const String& message) { - /* - * write our message to the send queue - * as we inherit all the functionality - * of the tcpclient class - */ GetStream()->Write(message.CStr(), message.GetLength()); } diff --git a/lib/base/stream_bio.cpp b/lib/base/stream_bio.cpp index 44b79dced..ad5a46e1c 100644 --- a/lib/base/stream_bio.cpp +++ b/lib/base/stream_bio.cpp @@ -1,3 +1,22 @@ +/****************************************************************************** + * Icinga 2 * + * Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) * + * * + * This program is free software; you can redistribute it and/or * + * modify it under the terms of the GNU General Public License * + * as published by the Free Software Foundation; either version 2 * + * of the License, or (at your option) any later version. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the Free Software Foundation * + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * + ******************************************************************************/ + #include "i2-base.h" using namespace icinga; diff --git a/lib/base/tlsstream.h b/lib/base/tlsstream.h index f0d278355..659d48e4c 100644 --- a/lib/base/tlsstream.h +++ b/lib/base/tlsstream.h @@ -23,11 +23,11 @@ namespace icinga { -typedef enum +enum TlsRole { TlsRoleClient, TlsRoleServer -} TlsRole; +}; /** * A TLS stream. @@ -45,7 +45,7 @@ public: shared_ptr GetClientCertificate(void) const; shared_ptr GetPeerCertificate(void) const; - void Start(void); + virtual void Start(void); virtual void Close(void); virtual size_t GetAvailableBytes(void) const; @@ -53,12 +53,6 @@ public: virtual size_t Read(void *buffer, size_t count); virtual void Write(const void *buffer, size_t count); -protected: - void DataAvailableHandler(void); - void ClosedHandler(void); - - void HandleIO(void); - private: shared_ptr m_SSLContext; shared_ptr m_SSL; @@ -73,8 +67,12 @@ private: static int m_SSLIndex; static bool m_SSLIndexInitialized; - static void NullCertificateDeleter(X509 *certificate); + void DataAvailableHandler(void); + void ClosedHandler(void); + void HandleIO(void); + + static void NullCertificateDeleter(X509 *certificate); }; }