src/internet/model/tcp-socket.h
changeset 10855 7ef081ddfc7f
parent 10405 45c8fceae24e
child 10978 754c8256c35c
equal deleted inserted replaced
10854:e6e590450831 10855:7ef081ddfc7f
   117    * \returns the segment size (in bytes)
   117    * \returns the segment size (in bytes)
   118    */
   118    */
   119   virtual uint32_t GetSegSize (void) const = 0;
   119   virtual uint32_t GetSegSize (void) const = 0;
   120 
   120 
   121   /**
   121   /**
   122    * \brief Set the Slow Start Threshold.
   122    * \brief Set the initial Slow Start Threshold.
   123    * \param threshold the Slow Start Threshold (in bytes)
   123    * \param threshold the Slow Start Threshold (in bytes)
   124    */
   124    */
   125   virtual void SetSSThresh (uint32_t threshold) = 0;
   125   virtual void SetInitialSSThresh (uint32_t threshold) = 0;
   126 
   126 
   127   /**
   127   /**
   128    * \brief Get the Slow Start Threshold.
   128    * \brief Get the initial Slow Start Threshold.
   129    * \returns the Slow Start Threshold (in bytes)
   129    * \returns the Slow Start Threshold (in bytes)
   130    */
   130    */
   131   virtual uint32_t GetSSThresh (void) const = 0;
   131   virtual uint32_t GetInitialSSThresh (void) const = 0;
   132 
   132 
   133   /**
   133   /**
   134    * \brief Set the initial Congestion Window.
   134    * \brief Set the initial Congestion Window.
   135    * \param cwnd the initial congestion window (in bytes)
   135    * \param cwnd the initial congestion window (in bytes)
   136    */
   136    */