Fix documentation typos
[senf.git] / Socket / LLAddressing.ih
index 57ec8b1..6ab4f14 100644 (file)
@@ -20,6 +20,9 @@
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
+/** \file
+    \brief LLSocketAddress and LLAddressingPolicy internal header
+ */
 #ifndef IH_LLAddressing_
 #define IH_LLAddressing_ 1
 
 
 ///////////////////////////////ih.p////////////////////////////////////////
 
-namespace satcom {
-namespace lib {
+namespace senf {
+
 namespace detail {
 
+    /** \brief Convert two-char hexbyte representation to numeric value
+       \internal
+     */
     struct HexConverter {
         typedef unsigned char result_type;
         template <class ForwardRange>
@@ -42,9 +48,12 @@ namespace detail {
     typedef boost::transform_iterator< HexConverter, StringSplitIterator > HexSplitIterator;
     typedef boost::iterator_range<HexSplitIterator> LLAddressFromStringRange;
 
+    /** \brief convert single hex digit to numeric value
+       \internal
+     */
     unsigned char hexnibble(char c);
 
-}}}
+}}
 
 ///////////////////////////////ih.e////////////////////////////////////////
 #endif
@@ -52,5 +61,5 @@ namespace detail {
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// c-file-style: "senf"
 // End: