src/applications/onoff/onoff-application.h
changeset 2252 80595448707a
parent 2182 13c8ebd1a19e
child 2253 dfa0f692e38a
--- a/src/applications/onoff/onoff-application.h	Tue Jan 15 12:43:07 2008 +0100
+++ b/src/applications/onoff/onoff-application.h	Tue Jan 15 12:44:09 2008 +0100
@@ -54,20 +54,20 @@
   /**
    * \param n node associated to this application
    * \param remote remote ip address
-   * \param iid
+   * \param tid
    * \param ontime on time random variable
    * \param offtime off time random variable
    */
   OnOffApplication(Ptr<Node> n,
                    const Address &remote,
-                   std::string iid,
+                   std::string tid,
                    const RandomVariable& ontime,
                    const RandomVariable& offtime);
 
   /**
    * \param n node associated to this application
    * \param remote remote ip address
-   * \param iid
+   * \param tid
    * \param ontime on time random variable
    * \param offtime off time random variable
    * \param rate data rate when on
@@ -75,7 +75,7 @@
    */
   OnOffApplication(Ptr<Node> n,
                    const Address &remote,
-                   std::string iid,
+                   std::string tid,
                    const RandomVariable& ontime,
                    const RandomVariable& offtime,
                    DataRate  rate,
@@ -110,7 +110,7 @@
 
   void Construct (Ptr<Node> n,
                   const Address &remote,
-                  std::string iid,
+                  std::string tid,
                   const RandomVariable& ontime,
                   const RandomVariable& offtime,
                   uint32_t size);
@@ -135,7 +135,7 @@
   EventId         m_startStopEvent;     // Event id for next start or stop event
   EventId         m_sendEvent;    // Eventid of pending "send packet" event
   bool            m_sending;      // True if currently in sending state
-  std::string     m_iid;
+  std::string     m_tid;
   CallbackTraceSource<Ptr<const Packet> > m_txTrace;
   
 private: