File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
44/**
55 * This script checks the constants defined in the curl PHP extension, against those documented on the cURL website:
6- * https://curl.haxx. se/libcurl/c/symbols-in-versions.html
6+ * https://curl.se/libcurl/c/symbols-in-versions.html
77 *
88 * See the discussion at: https://github.com/php/php-src/pull/2961
99 */
1010
11- const CURL_DOC_FILE = 'https://curl.haxx. se/libcurl/c/symbols-in-versions.html ' ;
11+ const CURL_DOC_FILE = 'https://curl.se/libcurl/c/symbols-in-versions.html ' ;
1212
1313const SOURCE_FILE = __DIR__ . '/curl_arginfo.h ' ;
1414
2525 'CURLOPT_SAFE_UPLOAD ' ,
2626];
2727
28- const CONSTANTS_REGEX_PATTERN = '~^CURL(?:OPT|_VERSION)_[A-Z0-9_]+$~ ' ;
28+ const CONSTANTS_REGEX_PATTERN = '~^CURL(?:OPT|_VERSION|_HTTP )_[A-Z0-9_]+$~ ' ;
2929
3030/**
3131 * A simple helper to create ASCII tables.
You can’t perform that action at this time.
0 commit comments