|
|
| 164 |
* |
164 |
* |
| 165 |
* This function returns true if the time elapsed strictly exceeds |
165 |
* This function returns true if the time elapsed strictly exceeds |
| 166 |
* the timeout value (i.e., is not less than or equal to the timeout). |
166 |
* the timeout value (i.e., is not less than or equal to the timeout). |
| 167 |
* Differs from IsExpiring() only in the boundary condition |
|
|
| 168 |
* delta == timeout. |
| 169 |
* \see IsExpiring |
| 170 |
*/ |
167 |
*/ |
| 171 |
bool IsExpired (void) const; |
168 |
bool IsExpired (void) const; |
| 172 |
/** |
|
|
| 173 |
* \return True if this entry is timing out or has already timed out; |
| 174 |
* false otherwise. |
| 175 |
* |
| 176 |
* This function returns true if the time elapsed is equal to or exceeds |
| 177 |
* the timeout value. Differs from IsExpired() only in the boundary |
| 178 |
* condition delta == timeout. |
| 179 |
* \see IsExpired |
| 180 |
*/ |
| 181 |
bool IsExpiring (void) const; |
| 182 |
|
| 183 |
/** |
169 |
/** |
| 184 |
* \returns 0 is no packet is pending, the next packet to send if |
170 |
* \returns 0 is no packet is pending, the next packet to send if |
| 185 |
* packets are pending. |
171 |
* packets are pending. |