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 3
3
4
4
/**
5
5
* 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
7
7
*
8
8
* See the discussion at: https://github.com/php/php-src/pull/2961
9
9
*/
10
10
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 ' ;
12
12
13
13
const SOURCE_FILE = __DIR__ . '/curl_arginfo.h ' ;
14
14
25
25
'CURLOPT_SAFE_UPLOAD ' ,
26
26
];
27
27
28
- const CONSTANTS_REGEX_PATTERN = '~^CURL(?:OPT|_VERSION)_[A-Z0-9_]+$~ ' ;
28
+ const CONSTANTS_REGEX_PATTERN = '~^CURL(?:OPT|_VERSION|_HTTP )_[A-Z0-9_]+$~ ' ;
29
29
30
30
/**
31
31
* A simple helper to create ASCII tables.
You can’t perform that action at this time.
0 commit comments