* Return the current time scaled & translated to our internally used format. */
| 1274 | * Return the current time scaled & translated to our internally used format. |
| 1275 | */ |
| 1276 | static pptptime_t |
| 1277 | ng_pptpgre_time(void) |
| 1278 | { |
| 1279 | struct timeval tv; |
| 1280 | pptptime_t t; |
| 1281 | |
| 1282 | microuptime(&tv); |
| 1283 | t = (pptptime_t)tv.tv_sec * PPTP_TIME_SCALE; |
| 1284 | t += tv.tv_usec / (1000000 / PPTP_TIME_SCALE); |
| 1285 | return(t); |
| 1286 | } |
no test coverage detected