src/internet/model/udp-socket-factory-impl.h
changeset 10440 1e48ff9185f1
parent 10158 971f362648c3
child 11045 6024c150e4c8
--- a/src/internet/model/udp-socket-factory-impl.h	Sun Nov 24 23:48:49 2013 +0100
+++ b/src/internet/model/udp-socket-factory-impl.h	Wed Nov 20 20:15:02 2013 +0100
@@ -57,6 +57,10 @@
   UdpSocketFactoryImpl ();
   virtual ~UdpSocketFactoryImpl ();
 
+  /**
+   * \brief Set the associated UDP L4 protocol.
+   * \param udp the UDP L4 protocol
+   */
   void SetUdp (Ptr<UdpL4Protocol> udp);
 
   /**
@@ -71,7 +75,7 @@
 protected:
   virtual void DoDispose (void);
 private:
-  Ptr<UdpL4Protocol> m_udp;
+  Ptr<UdpL4Protocol> m_udp; //!< the associated UDP L4 protocol
 };
 
 } // namespace ns3