Socket/Protocols/INet: Change INet4Address to use a boost::array for storage
[senf.git] / Packets / DataPacket.hh
index 33c2d63..62e1200 100644 (file)
 
 namespace senf {
 
-    /** \brief Internal: Packet type of DataPacket
-
-        \internal
-     */
-    struct DataPacketType : public PacketTypeBase
-    {};
+    /** \brief Generic payload-only packet
 
+        \par Packet type (typedef):
+            \ref DataPacket
 
-    /** \brief Generic payload-only packet
-        
         DataPacket is a simple generic packet with just a payload of uninterpreted data. This is the
         packet used whenever no more specific packet type can be found for a sub-packet (e.g. as the
         payload data of a UDP packet)
 
         \ingroup packet_module
      */
+    struct DataPacketType : public PacketTypeBase
+    {};
+
+    /** \brief Generic payload-only packet typedef */
     typedef ConcretePacket<DataPacketType> DataPacket;
 }