Fixed whitespace in all files (no tabs)
[senf.git] / Socket / LLAddressing.ct
index cf38dd4..f119259 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2006 
+// Copyright (C) 2006
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
@@ -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 <class ForwardRange>
-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 <class ForwardRange>
 prefix_ std::string
-satcom::lib::llAddress(ForwardRange const & address,
+senf::llAddress(ForwardRange const & address,
                        typename boost::enable_if< boost::is_class<ForwardRange> >::type *)
 {
     if (boost::empty(address))
@@ -66,7 +68,7 @@ satcom::lib::llAddress(ForwardRange const & address,
 }
 
 template <class ForwardRange>
-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
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: