aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2018-02-27 23:56:36 +0100
committerMax <post@wickenrode.com>2018-02-27 23:56:36 +0100
commitd9f773eae0bf2d158012dfe55139ffdc6b1c57ff (patch)
treebab70669649543698a50fae1d83c30c84daf7a6e /Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h
parent219d049c61d5588e5519171bd149fb2aa91351f3 (diff)
downloadsequelpro-d9f773eae0bf2d158012dfe55139ffdc6b1c57ff.tar.gz
sequelpro-d9f773eae0bf2d158012dfe55139ffdc6b1c57ff.tar.bz2
sequelpro-d9f773eae0bf2d158012dfe55139ffdc6b1c57ff.zip
Manually roll back all changes for #2979
Those will be moved to a different branch for the time being since other stuff needs to be changed first
Diffstat (limited to 'Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h')
-rw-r--r--Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h
index 353267aa..3a27ab41 100644
--- a/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h
+++ b/Frameworks/SPMySQLFramework/MySQL Client Libraries/include/mysql.h
@@ -288,18 +288,6 @@ typedef struct st_mysql
/* needed for embedded server - no net buffer to store the 'info' */
char *info_buffer;
void *extension;
-
- /* SPMySQL patch:
- * Set this to a callback function that will be invoked when mysql wants to do authentication.
- * @param mysql The MYSQL struct
- * @param plugin The name of the auth plugin that will be used (usually either
- * "mysql_native_password", "mysql_old_password" or "mysql_clear_password")
- * @param with_password A block function you must invoke, during which mysql can use the password you provide via the passwd parameter.
- * After the block you should immediately clear the password from memory again.
- */
- void (*passwd_callback)(struct st_mysql *mysql, const char *plugin, void (^with_password)(const char *passwd));
- /* SPMySQL patch: This is used with passwd_callback to bridge back to OOP land */
- void *sp_context;
} MYSQL;