Set the timer but only if it is not already running.
| 152 | } |
| 153 | // Set the timer but only if it is not already running. |
| 154 | void setOnce(long wLimitTime) { |
| 155 | if (!mActive) set(wLimitTime); |
| 156 | } |
| 157 | // Double the timer value but no more than maxTime. Lots of UDP connection timers in SIP use this. |
| 158 | void setDouble(unsigned maxTime=10000) { |
| 159 | assert(mLimitTime!=0); |
no outgoing calls
no test coverage detected