We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c91dcf commit fdbe2bdCopy full SHA for fdbe2bd
doc/libfbdoc/CHttpStream.bas
@@ -152,9 +152,10 @@ namespace fb
152
153
curl_easy_setopt( curl, CURLOPT_URL, url )
154
155
- '' Follow at most one redirection to allow for url rewrite on server side
156
- curl_easy_setopt( curl, CURLOPT_FOLLOWLOCATION, 1 )
157
- curl_easy_setopt( curl, CURLOPT_MAXREDIRS, 1 )
+ '' Follow at most two redirection to allow for url rewrite
+ '' and page redirect on service side
+ curl_easy_setopt( curl, CURLOPT_FOLLOWLOCATION, 2 )
158
+ curl_easy_setopt( curl, CURLOPT_MAXREDIRS, 2 )
159
160
curl_easy_setopt( curl, CURLOPT_WRITEFUNCTION, @recv_cb )
161
curl_easy_setopt( curl, CURLOPT_WRITEDATA, @ctx->stream )
0 commit comments