branch merge
authorCraig Dowell <craigdo@ee.washington.edu>
Tue, 26 Aug 2008 23:16:31 -0700
changeset 3581 385bdac52fd3
parent 3580 e388935fa948 (current diff)
parent 3578 6c3efec9cbe6 (diff)
child 3582 775d9648a294
branch merge
--- a/bindings/python/wscript	Tue Aug 26 23:11:11 2008 -0700
+++ b/bindings/python/wscript	Tue Aug 26 23:16:31 2008 -0700
@@ -21,7 +21,7 @@
     os.environ['PYTHONPATH'] = LOCAL_PYBINDGEN_PATH
 
 ## https://launchpad.net/pybindgen/
-REQUIRED_PYBINDGEN_VERSION = (0, 9, 0, 563)
+REQUIRED_PYBINDGEN_VERSION = (0, 9, 0, 564)
 REQUIRED_PYGCCXML_VERSION = (0, 9, 5)
 
 
--- a/src/helper/on-off-helper.h	Tue Aug 26 23:11:11 2008 -0700
+++ b/src/helper/on-off-helper.h	Tue Aug 26 23:16:31 2008 -0700
@@ -31,13 +31,34 @@
 
 namespace ns3 {
 
+/**
+ * \brief instanciate an ns3::OnOffApplication on a set of nodes.
+ */
 class OnOffHelper
 {
 public:
+  /**
+   * \param protocol the name of the protocol to use to send traffic
+   *        by the applications. This string identifies the socket
+   *        factory type used to create sockets for the applications.
+   *        A typical value would be ns3::UdpSocketFactory.
+   * \param address the address of the remote node to send traffic
+   *        to.
+   */
   OnOffHelper (std::string protocol, Address address);
 
+  /**
+   * \param name the name of the application attribute to set
+   * \param value the value of the application attribute to set
+   */
   void SetAttribute (std::string name, const AttributeValue &value);
 
+  /**
+   * \param c the set of nodes on which an OnOffApplication will be installed.
+   *
+   * Install an ns3::OnOffApplication on each node of the input container
+   * configured with all the attributes set with SetAttribute.
+   */
   ApplicationContainer Install (NodeContainer c);
 
 private: