| 475 | } |
| 476 | |
| 477 | static int pv_get_timem(struct sip_msg *msg, pv_param_t *param, |
| 478 | pv_value_t *res) |
| 479 | { |
| 480 | struct timeval TP; |
| 481 | |
| 482 | if(msg==NULL) |
| 483 | return -1; |
| 484 | |
| 485 | gettimeofday(&TP, NULL); |
| 486 | return pv_get_uintval(msg, param, res, (unsigned int)TP.tv_usec); |
| 487 | } |
| 488 | |
| 489 | static int pv_get_start_times(struct sip_msg *msg, pv_param_t *param, |
| 490 | pv_value_t *res) |
nothing calls this directly
no test coverage detected