mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Currently any response from res_curl where we get an answer from the web server, regardless of what the response is (404, 403 etc.) Asterisk currently treats it as a success. This patch allows you to set which codes should be considered as a failure by Asterisk. If say we set failurecodes=404,403 then when using curl in realtime if a server gives a 404 error Asterisk will try to failover to the next option set in extconfig.conf ASTERISK-28825 Reported by: Dovid Bender Code by: Gobinda Paul Change-Id: I94443e508343e0a3e535e51ea6e0562767639987
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
;
|
|
; CURLOPT global settings (mostly set for realtime)
|
|
;
|
|
[globals]
|
|
;proxy=myproxy.example.com
|
|
proxytype=http
|
|
proxyport=8001
|
|
;proxyuserpwd=asterisk:asteriskrocks
|
|
;failurecodes=404,408,503
|