1. Brekeke Product Name and Version: 3.3.9.3/379-8
2. Java version: 1.8.0_31
3. OS type and the version: Windows 8.1
4. UA (phone), gateway or other hardware/software involved:
5. Your problem:
I am writing an accounting plugin. I really need to be able to capture Post Dial Delay (PDD).
Would anyone know if there is an event I can use to capture this information.
I suspect it's the 183 response I'm looking for.
Any help would be greatly appreciated.
Many Thanks
Rich
Accounting Plugin
Moderator: Brekeke Support Team
Try this.
Code: Select all
public void eventTalkStart( EventStat es )
{
// PDD [Milliseconds]
long lenPDD = es.timeRingStart - es.timeRequestReceive ;
}