X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FSocketHandle.ct;h=7e66f3125d309c1c5f08601bf4f05d77789707d8;hb=b89e3166f7680755683dccee5e48cb3a820185c0;hp=96c5b131d8fdaa01e1e8f430291ba2548cfb2108;hpb=145f6a7d0f3a6aaa77b3625351c952d24cb0b8a1;p=senf.git diff --git a/Socket/SocketHandle.ct b/Socket/SocketHandle.ct index 96c5b13..7e66f31 100644 --- a/Socket/SocketHandle.ct +++ b/Socket/SocketHandle.ct @@ -1,9 +1,9 @@ // $Id$ // // Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // 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 @@ -28,20 +28,41 @@ // Custom includes #include +#include "../Utils/TypeInfo.hh" #define prefix_ ///////////////////////////////ct.p//////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////// +// senf::detail::StreamableString + template -prefix_ senf::detail::ConvertibleString & -senf::detail::ConvertibleString::operator+=(ConvertibleString const & other) +prefix_ senf::detail::StreamableString & +senf::detail::StreamableString::operator<<(T const & other) { if (!empty()) - this->std::string::operator+=(", "); - this->std::string::operator+=(other); + (*this) += ", "; + (*this) += boost::lexical_cast(other); return *this; } +/////////////////////////////////////////////////////////////////////////// +// senf::ProtocolSocketBody + +template +prefix_ senf::SocketProtocol const & senf::ProtocolSocketBody::v_protocol() + const +{ + return *this; +} + +template +prefix_ std::string senf::ProtocolSocketBody::v_protocolName() + const +{ + return senf::prettyName(typeid(SProtocol)); +} + ///////////////////////////////ct.e//////////////////////////////////////// #undef prefix_