/php-src/ext/mysqli/tests/ |
H A D | mysqli_pconnect.phpt | 21 $connections = array(); 25 $connections[] = $link; 27 while (count($connections)) { 31 mysqli_close($connections[$index]); 32 unset($connections[$index]); 36 $connections = array(); 41 $connections[] = $link; 52 unset($connections[$index]); 61 while (count($connections)) { 65 mysqli_close($connections[$index]); [all …]
|
H A D | mysqli_pconn_disabled.phpt | 21 // automatic downgrade to normal connections has failed 30 // automatic downgrade to normal connections has failed 57 Warning: my_mysqli_connect(): Persistent connections are disabled. Downgrading to normal in %s on l… 59 Warning: my_mysqli_connect(): Persistent connections are disabled. Downgrading to normal in %s on l…
|
H A D | bug39457.phpt | 2 Bug #39457 (Multiple invoked OO connections never close)
|
H A D | mysqli_pconn_max_links.phpt | 2 Persistent connections and mysqli.max_links 110 // persistent connections cannot be closed but only be killed 131 // this fails and we have 0 (<= $num_plinks) connections 132 // Do not remove the variable assignment as it is important that we have 2 active connections 172 // Do not remove the variable assignment as it is important that we have 2 active connections 174 printf("[015] Can open more persistent connections than allowed, [%d] %s\n", 189 …printf("[017] mysqli.max_persistent=%d allows %d open connections!\n", ini_get('mysqli.max_persist… 266 [015] Can open more persistent connections than allowed, [0]
|
H A D | bug73462.phpt | 2 Bug #73462 (Persistent connections don't set $connect_errno)
|
H A D | 001.phpt | 59 /* todo ssl connections */
|
H A D | mysqli_pconn_reuse.phpt | 2 mysqli_pconnect() - reusing/caching persistent connections - TODO 78 …printf("[010] Seems as if we have got a new connection, connections should have been cached and re…
|
H A D | bug55283.phpt | 2 Bug #55283 (SSL options set by mysqli_ssl_set ignored for MySQLi persistent connections)
|
H A D | mysqli_pconn_limits.phpt | 2 Persistent connections - limits (-1, unlimited)
|
H A D | mysqli_poll.phpt | 104 // Difference: pass two connections
|
H A D | mysqli_pconn_kill.phpt | 21 // get the thread ids of the two connections...
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_pconnect.phpt | 81 $connections = []; 83 $connections[$i] = new PDO($dsn, $user, $pass, [PDO::ATTR_PERSISTENT => true]); 87 if (isset($connections[$i])) 88 unset($connections[$i]); 89 } while (!empty($connections));
|
/php-src/ext/pgsql/tests/ |
H A D | gh13519.phpt | 2 GH-13519 - PGSQL_CONNECT_FORCE_NEW with persistent connections.
|
/php-src/ext/dba/ |
H A D | dba.c | 59 HashTable connections; variable 304 zend_hash_del(&DBA_G(connections), connection->hash); in dba_close_connection() 391 zend_hash_init(&dba_globals->connections, 0, NULL, NULL, true); in PHP_INI_END() 392 GC_MAKE_PERSISTENT_LOCAL(&dba_globals->connections); in PHP_INI_END() 398 zend_hash_destroy(&dba_globals->connections); in PHP_GSHUTDOWN_FUNCTION() 495 ZEND_HASH_MAP_FOREACH_VAL(&DBA_G(connections), zv) { in php_dba_find() 592 if (zend_hash_exists(&DBA_G(connections), connection->hash)) { in php_dba_open() 593 zend_hash_del(&DBA_G(connections), connection->hash); in php_dba_open() 596 zend_hash_add_new(&DBA_G(connections), connection->hash, return_value); in php_dba_open() 943 zend_hash_add_new(&DBA_G(connections), connection->hash, return_value); in php_dba_open() [all …]
|
/php-src/ext/curl/tests/ |
H A D | bug78775.phpt | 2 Bug #78775: TLS issues from HTTP request affecting other encrypted connections
|
/php-src/ext/openssl/tests/ |
H A D | stream_crypto_flags_003.phpt | 20 // Only accept TLSv1.0 and TLSv1.2 connections
|
/php-src/sapi/fpm/tests/ |
H A D | status.inc | 243 … "# HELP phpfpm_listen_queue The number of requests in the queue of pending connections\.\n" . 246 …ax_listen_queue The maximum number of requests in the queue of pending connections since FPM has s… 250 … "# HELP phpfpm_listen_queue_length The size of the socket queue of pending connections\.\n" .
|
/php-src/ext/ldap/tests/ |
H A D | README.md | 54 listening on port 369 for incoming LDAP-connections. The machine is already 72 CAVEAT: The current setup does not (yet) test secure connections.
|
/php-src/ext/odbc/tests/ |
H A D | odbc_non_persistent_connection_reuse.phpt | 2 odbc_pconnect(): Make sure non-persistent connections are reused
|
/php-src/ext/dba/tests/ |
H A D | dba_db4_018.phpt | 2 DBA DB4 with persistent connections
|
H A D | dba015.phpt | 2 DBA with persistent connections
|
/php-src/ext/odbc/ |
H A D | php_odbc_includes.h | 254 HashTable connections; variable
|
H A D | php_odbc.c | 163 zend_hash_del(&ODBCG(connections), link->hash); in odbc_link_free() 488 zend_hash_init(&odbc_globals->connections, 0, NULL, NULL, true); in PHP_INI_END() 489 GC_MAKE_PERSISTENT_LOCAL(&odbc_globals->connections); in PHP_INI_END() 494 zend_hash_destroy(&odbc_globals->connections); in PHP_GSHUTDOWN_FUNCTION() 867 ZEND_HASH_FOREACH_VAL(&ODBCG(connections), zv) { in PHP_FUNCTION() 874 zend_hash_clean(&ODBCG(connections)); in PHP_FUNCTION() 2347 zend_hash_str_add_new(&ODBCG(connections), hashed_details, hashed_details_len, return_value); 2398 …if ((link_zval = zend_hash_str_find(&ODBCG(connections), hashed_details, hashed_details_len)) == N… 2412 …if ((link_zval = zend_hash_str_find(&ODBCG(connections), hashed_details, hashed_details_len)) == N… 2426 zend_hash_str_add_new(&ODBCG(connections), hashed_details, hashed_details_len, return_value);
|
/php-src/ext/pgsql/ |
H A D | php_pgsql.h | 191 HashTable connections; variable
|
/php-src/sapi/fpm/ |
H A D | www.conf.in | 48 ; permissions must be set in order to allow connections from a web server. Many 49 ; BSD-derived systems allow connections regardless of permissions. The owner 66 ; must be separated by a comma. If this value is left blank, connections will be 169 ; connections (see backlog in listen(2)); 171 ; of pending connections since FPM has started; 172 ; listen queue len - the size of the socket queue of pending connections;
|