requested_protocol  539 ext/mysqlnd/mysqlnd.c MYSQLND_METHOD(mysqlnd_conn_data, fetch_auth_plugin_by_name)(const char * const requested_protocol TSRMLS_DC)
requested_protocol  545 ext/mysqlnd/mysqlnd.c 	mnd_sprintf(&plugin_name, 0, "auth_plugin_%s", requested_protocol);
requested_protocol  579 ext/mysqlnd/mysqlnd.c 	char * requested_protocol = NULL;
requested_protocol  593 ext/mysqlnd/mysqlnd.c 	requested_protocol = mnd_pestrdup(auth_protocol? auth_protocol : MYSQLND_DEFAULT_AUTH_PROTOCOL, FALSE);
requested_protocol  594 ext/mysqlnd/mysqlnd.c 	if (!requested_protocol) {
requested_protocol  599 ext/mysqlnd/mysqlnd.c 		struct st_mysqlnd_authentication_plugin * auth_plugin = conn->m->fetch_auth_plugin_by_name(requested_protocol TSRMLS_CC);
requested_protocol  602 ext/mysqlnd/mysqlnd.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "The server requested authentication method unknown to the client [%s]", requested_protocol);
requested_protocol  641 ext/mysqlnd/mysqlnd.c 											requested_protocol,
requested_protocol  649 ext/mysqlnd/mysqlnd.c 											   requested_protocol,
requested_protocol  659 ext/mysqlnd/mysqlnd.c 			if (requested_protocol && switch_to_auth_protocol) {
requested_protocol  660 ext/mysqlnd/mysqlnd.c 				mnd_efree(requested_protocol);
requested_protocol  661 ext/mysqlnd/mysqlnd.c 				requested_protocol = switch_to_auth_protocol;
requested_protocol  674 ext/mysqlnd/mysqlnd.c 		DBG_INF_FMT("saving requested_protocol=%s", requested_protocol);
requested_protocol  675 ext/mysqlnd/mysqlnd.c 		conn->m->set_client_option(conn, MYSQLND_OPT_AUTH_PROTOCOL, requested_protocol TSRMLS_CC);
requested_protocol  681 ext/mysqlnd/mysqlnd.c 	if (requested_protocol) {
requested_protocol  682 ext/mysqlnd/mysqlnd.c 		mnd_efree(requested_protocol);
requested_protocol  508 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_authentication_plugin * (*func_mysqlnd_conn_data__fetch_auth_plugin_by_name)(const char * const requested_protocol TSRMLS_DC);