Searched refs:client_flags (Results 1 – 9 of 9) sorted by relevance
/PHP-5.6/ext/mysql/ |
H A D | php_mysql.c | 726 long client_flags = 0; local 774 client_flags = CLIENT_INTERACTIVE; 780 &client_flags)==FAILURE) { 786 &new_link, &client_flags)==FAILURE) { 807 if ((PG(open_basedir) && PG(open_basedir)[0] != '\0') && (client_flags & CLIENT_LOCAL_FILES)) { 809 client_flags ^= CLIENT_LOCAL_FILES; 814 client_flags |= CLIENT_MULTI_RESULTS; /* compatibility with 5.2, see bug#50416 */ 817 client_flags &= ~CLIENT_MULTI_STATEMENTS; /* don't allow multi_queries via connect parameter */ 874 mysql->multi_query = client_flags & CLIENT_MULTI_STATEMENTS? 1:0; 926 mysql->multi_query = client_flags & CLIENT_MULTI_STATEMENTS? 1:0; [all …]
|
/PHP-5.6/ext/mysqlnd/ |
H A D | mysqlnd.h | 88 #define mysqlnd_init(client_flags, persistent) _mysqlnd_init((client_flags), (persistent) TSRMLS_CC) argument 89 PHPAPI MYSQLND * _mysqlnd_init(unsigned int client_flags, zend_bool persistent TSRMLS_DC);
|
H A D | mysqlnd_wireprotocol.h | 93 uint32_t client_flags; member
|
H A D | mysqlnd_auth.c | 85 auth_packet->client_flags = mysql_flags; in mysqlnd_auth_handshake()
|
H A D | mysqlnd.c | 484 auth_packet->client_flags = mysql_flags; in mysqlnd_switch_to_ssl_if_needed() 517 auth_packet->client_flags &= ~CLIENT_SSL; in mysqlnd_switch_to_ssl_if_needed()
|
H A D | mysqlnd_wireprotocol.c | 495 int4store(p, packet->client_flags); in php_mysqlnd_auth_write()
|
/PHP-5.6/ext/mysql/tests/ |
H A D | mysql_pconnect.phpt | 18 … ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )
|
H A D | mysql_connect.phpt | 15 … ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]] )
|
/PHP-5.6/ |
H A D | NEWS | 8520 - Fixed bug #44333 (SEGFAULT when using mysql_pconnect() with client_flags). (Felipe)
|
Completed in 112 milliseconds