Accounting Plugin

Discuss any topic about Brekeke SIP Server.

Moderator: Brekeke Support Team

Post Reply
richtolley
Posts: 5
Joined: Thu Feb 26, 2015 6:55 pm
Location: UK

Accounting Plugin

Post by richtolley »

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
ambrosio
Posts: 215
Joined: Thu Mar 27, 2008 12:20 pm

Post by ambrosio »

Try this.

Code: Select all

  
public void eventTalkStart( EventStat es )
{
  // PDD [Milliseconds]
  long lenPDD = es.timeRingStart - es.timeRequestReceive ;  
}
Post Reply