Again some doc-build fixes
[senf.git] / Socket / INetProtocol.hh
index a5a3cd6..79a514c 100644 (file)
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-// TODO: what about OOB data? das OOB Data block receipt of normal data ?
+/** \file
 
-// TODO: Implement IP_RECVERR / MSG_ERRQUEUE. This should be placed
-// into an additional protocol class since IP_RECVERR is only valid
-// for SOCK_DGRAM (UDP) and not SOCK_STREAM (TCP) sockets
+    \todo what about OOB data? 
+
+    \todo Implement IP_RECVERR / MSG_ERRQUEUE. This should be placed
+    into an additional protocol class since IP_RECVERR is only valid
+    for SOCK_DGRAM (UDP) and not SOCK_STREAM (TCP) sockets
+ */
 
 #ifndef HH_INetProtocol_
 #define HH_INetProtocol_ 1
 //#include "INetProtocol.mpp"
 ///////////////////////////////hh.p////////////////////////////////////////
 
-namespace satcom {
-namespace lib {
+namespace senf {
+
+
+    /** \brief
 
+       \todo Is it safe, not to allow setting the interface index on
+       add/drop? what does it do (especially if the local addres is
+       given ?). What have I been thinking here ???
+       
+       \todo move all multicast-methods into an extra
+       IPv4MulticastProtocol class
+     */
     class IPv4Protocol 
         : public virtual SocketProtocol
     {
@@ -54,13 +66,6 @@ namespace lib {
         bool mcLoop() const;
         void mcLoop(bool value) const;
 
-        // TODO: Is it safe, not to allow setting the interface
-        // index on add/drop? what does it do (especially if
-        // the local addres is given ?)
-       
-        // TODO: move all multicast-methods into an extra
-        // IPv4MulticastProtocol class
-
         void mcAddMembership(INet4Address const & mcAddr) const;
         void mcAddMembership(INet4Address const & mcAddr, INet4Address const & localAddr) const;
 
@@ -74,7 +79,7 @@ namespace lib {
         : public virtual SocketProtocol
     {};
 
-}}
+}
 
 ///////////////////////////////hh.e////////////////////////////////////////
 //#include "INetProtocol.cci"
@@ -85,5 +90,5 @@ namespace lib {
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// c-file-style: "senf"
 // End: