X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FLLAddressing.ct;h=f11925973ffdffe1ba231b14d1de968e4a9206fc;hb=9a988902090d28007578e93bffd809f6bd913155;hp=cf38dd47bce7a4a85d10876ff54ba1d61a840cef;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Socket/LLAddressing.ct b/Socket/LLAddressing.ct index cf38dd4..f119259 100644 --- a/Socket/LLAddressing.ct +++ b/Socket/LLAddressing.ct @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -20,7 +20,9 @@ // Free Software Foundation, Inc., // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// Definition of non-inline template functions +/** \file + \brief LLSocketAddress and LLAddressingPolicy non-inline template implementation + */ #include "LLAddressing.ih" @@ -33,7 +35,7 @@ ///////////////////////////////ct.p//////////////////////////////////////// template -prefix_ void satcom::lib::LLSocketAddress::address(ForwardRange const & address) +prefix_ void senf::LLSocketAddress::address(ForwardRange const & address) { if (boost::size(address) > sizeof(addr_.sll_addr)) throw InvalidLLSocketAddressException(); @@ -48,7 +50,7 @@ prefix_ void satcom::lib::LLSocketAddress::address(ForwardRange const & address) template prefix_ std::string -satcom::lib::llAddress(ForwardRange const & address, +senf::llAddress(ForwardRange const & address, typename boost::enable_if< boost::is_class >::type *) { if (boost::empty(address)) @@ -66,7 +68,7 @@ satcom::lib::llAddress(ForwardRange const & address, } template -prefix_ unsigned char satcom::lib::detail::HexConverter::operator()(ForwardRange const & v) +prefix_ unsigned char senf::detail::HexConverter::operator()(ForwardRange const & v) const { if (boost::size(v) != 2) @@ -82,5 +84,8 @@ prefix_ unsigned char satcom::lib::detail::HexConverter::operator()(ForwardRange // Local Variables: // mode: c++ -// c-file-style: "satcom" +// fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" // End: