mirror of
https://github.com/php-win-ext/pecl-expect.git
synced 2026-03-24 05:02:05 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4411953272 | ||
|
|
f80a041dac |
11
expect.c
11
expect.c
@@ -91,6 +91,16 @@ static PHP_INI_MH(OnSetExpectTimeout)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_INI_MH
|
||||
* */
|
||||
static PHP_INI_MH(OnSetExpectMatchMax)
|
||||
{
|
||||
if (new_value) {
|
||||
exp_match_max = atoi(new_value);
|
||||
}
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
|
||||
/* {{{ PHP_INI_MH
|
||||
* */
|
||||
@@ -140,6 +150,7 @@ PHP_INI_BEGIN()
|
||||
PHP_INI_ENTRY("expect.timeout", "10", PHP_INI_ALL, OnSetExpectTimeout)
|
||||
PHP_INI_ENTRY_EX("expect.loguser", "1", PHP_INI_ALL, OnSetExpectLogUser, php_ini_boolean_displayer_cb)
|
||||
PHP_INI_ENTRY("expect.logfile", "", PHP_INI_ALL, OnSetExpectLogFile)
|
||||
PHP_INI_ENTRY("expect.match_max", "5000", PHP_INI_ALL, OnSetExpectMatchMax)
|
||||
PHP_INI_END()
|
||||
|
||||
|
||||
|
||||
10
package.xml
10
package.xml
@@ -14,11 +14,11 @@ http://pear.php.net/dtd/package-2.0.xsd">
|
||||
<email>michael@php.net</email>
|
||||
<active>yes</active>
|
||||
</lead>
|
||||
<date>2010-10-10</date>
|
||||
<time>09:28:00</time>
|
||||
<date>2011-01-25</date>
|
||||
<time>23:07:00</time>
|
||||
<version>
|
||||
<release>0.2.7</release>
|
||||
<api>0.2.7</api>
|
||||
<release>0.2.9</release>
|
||||
<api>0.2.9</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>beta</release>
|
||||
@@ -26,7 +26,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
|
||||
</stability>
|
||||
<license uri="http://www.php.net/license">PHP License</license>
|
||||
<notes>
|
||||
Fixed bug #18998 (Change expect.logfile on runtime leave file descriptor opened)
|
||||
Provide a default value for expect.match_max (Bug #21823)
|
||||
</notes>
|
||||
<contents>
|
||||
<dir name="/">
|
||||
|
||||
Reference in New Issue
Block a user