|
reSIProcate/stack
9694
|


Go to the source code of this file.
Classes | |
| class | resip::QValue |
Namespaces | |
| namespace | resip |
SERNonceHelper implements the makeNonce function in the same way as SIP Express Router (SER) - http://www.iptel.org/ser. | |
Functions | |
| static int | doubleToInt (const double d) |
| static int doubleToInt | ( | const double | d | ) | [static] |
Definition at line 10 of file QValue.hxx.
Referenced by resip::QValue::operator!=(), resip::QValue::operator<(), resip::QValue::operator<=(), resip::QValue::operator=(), resip::QValue::operator==(), resip::QValue::operator>(), and resip::QValue::operator>=().
{ double f = floor(d); double c = ceil(d); return (((c-d) >= (d-f)) ? (int)f :(int)c); }
1.7.5.1