Hello,
From [1]:
“qualify_timeout
If the contact doesn’t respond to the OPTIONS request before the timeout, the contact is marked unavailable. If 0 no timeout. Time in fractional seconds.”
So I set my Asterisk 16.16.1 with:
[7005]
type = aor
max_contacts = 1
qualify_frequency = 30
qualify_timeout = 0.001
Then:
pjsip show qualify aor 7005
- AOR ‘7005’
Qualify frequency : 30 sec
Qualify timeout : 0 ms
Authenticate qualify : no
- I would expect Qualify timeout to be expressed as a double in fractional sec, to be consistent with:
- Wiki’s description
- current behaviour (a 0.001 value triggers an Unreachable message when response is received in 4ms)
- When I remove qualify_timeout in pjsip.conf, I would expected a default value to be 3.0, as documented.
In my testings, I had this instead:
Qualify timeout : 0 ms
[1] Asterisk 16 Configuration_res_pjsip - Asterisk Project - Asterisk Project Wiki
Best regards