0

I want to complete this scenarios in sipp.

When I make a call, if it return 486 status(busy), It could call pause a while, then continue recalling.

user1369887
  • 491
  • 1
  • 6
  • 10

1 Answers1

1

you can use a label and "next" attribute. Something like this:

<label id="10" />

...

<recv response="486" optional="true" next="10" />
  <pause milliseconds="1000" />
</recv>

Hope this helps

jcm
  • 2,568
  • 14
  • 18