Skip to content

Commit 1637686

Browse files
committed
Add \CURLOPT_INIFILESIZE_LARGE
This is my first PR on this repository and is based on: * https://github.com/symfony/symfony/pull/59654/files#r1935358570 So feel free to close it :-)
1 parent fa7c67d commit 1637686

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

ext/curl/curl.stub.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,16 @@
188188
* @cvalue CURLOPT_INFILESIZE
189189
*/
190190
const CURLOPT_INFILESIZE = UNKNOWN;
191+
/**
192+
* @var int
193+
* @cvalue CURLOPT_INFILESIZE_LARGE
194+
*/
195+
const CURLOPT_INFILESIZE_LARGE = UNKNOWN;
196+
/**
197+
* @var int
198+
* @cvalue CURLOPT_INFILESIZE_LARGE
199+
*/
200+
const CURLOPT_INFILESIZE_LARGE = UNKNOWN;
191201
/**
192202
* @var int
193203
* @cvalue CURLOPT_INTERFACE

ext/curl/curl_arginfo.h

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/curl/interface.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1731,6 +1731,7 @@ static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue
17311731
case CURLOPT_HTTPPROXYTUNNEL:
17321732
case CURLOPT_HTTP_VERSION:
17331733
case CURLOPT_INFILESIZE:
1734+
case CURLOPT_INFILESIZE_LARGE:
17341735
case CURLOPT_LOW_SPEED_LIMIT:
17351736
case CURLOPT_LOW_SPEED_TIME:
17361737
case CURLOPT_MAXCONNECTS:

0 commit comments

Comments
 (0)