Packets/80221Bundle: fixed MIH message validation unit test @ ubuntu hardy
[senf.git] / senf / Socket / Protocols / INet / RawINetSocketHandle.hh
index 10c23e0..9d15a45 100644 (file)
 #include <senf/Socket/ProtocolClientSocketHandle.hh>
 
 
-///////////////////////////////hh.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace senf {
 
     /// \addtogroup concrete_protocol_group
-    /// @{
+    //\{
 
     typedef MakeSocketPolicy<
         INet4AddressingPolicy,
@@ -64,7 +64,7 @@ namespace senf {
             INet4SocketAddress
 
         RawV4SocketProtocol provides an internet protocol raw socket based on IPv4 addressing.
-        This socket will put data written to it onto the IPv4 layer: if you call writeto don't inlude the header!
+        This socket will put data written to it onto the IPv4 layer: if you call writeto don't include the header!
         On the other hand `read` will return the packet data including the IP header.
         This behaviour is strange and differs from the behaviour of IPv6 RAW sockets and should be changed in the future.
 
@@ -86,11 +86,11 @@ namespace senf {
           public INet4MulticastSocketProtocol
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // internal interface
 
         ///\name Constructors
-        ///@{
+        //\{
 
         void init_client() const;       ///< Create unconnected client socket for IPPROTO_RAW
                                         /**< \note This member is implicitly called from the
@@ -105,7 +105,7 @@ namespace senf {
                                              \param[in] protocol Layer 4 protocol to filter for / to send
                                              \param[in] address local address to bind to */
 
-        ///@}
+        //\}
     };
 
     typedef ProtocolClientSocketHandle<RawV4SocketProtocol> RawV4ClientSocketHandle;
@@ -113,7 +113,7 @@ namespace senf {
 
 
 
-//////////////////////////////////////////////////////////////////// Raw IPv6 Socket //////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
     typedef MakeSocketPolicy<
         INet6AddressingPolicy,
         DatagramFramingPolicy,
@@ -135,7 +135,7 @@ namespace senf {
             INet6Address
 
         RawV6SocketProtocol provides an internet protocol raw socket based on IPv6 addressing.
-        This socket will put data written to it onto the IPv6 layer: if you call writeto don't inlude the header!
+        This socket will put data written to it onto the IPv6 layer: if you call writeto don't include the header!
         On the other hand `read` will return the packet data on top of the IPv6 layer, excluding the IP header.
         Note: This behaviour is differs from the behaviour of IPv4 RAW sockets.
 
@@ -157,11 +157,11 @@ namespace senf {
           public INet6MulticastSocketProtocol
     {
     public:
-        ///////////////////////////////////////////////////////////////////////////
+        //-////////////////////////////////////////////////////////////////////////
         // internal interface
 
         ///\name Constructors
-        ///@{
+        //\{
 
         void init_client() const;       ///< Create unconnected client socket for IPPROTO_RAW
                                         /**< \note This member is implicitly called from the
@@ -180,12 +180,12 @@ namespace senf {
                                              ProtocolClientSocketHandle::ProtocolClientSocketHandle()
                                              constructor */
 
-        ///@}
+        //\}
     };
 
     typedef ProtocolClientSocketHandle<RawV6SocketProtocol> RawV6ClientSocketHandle;
 
-    /// @}
+    //\}
 
 }