diff options
author | Andrey Hristov <andrey@php.net> | 2015-11-10 11:53:19 +0100 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2015-11-12 16:19:16 +0100 |
commit | a530ecff978cbf2e67a774cae40899d3934c163a (patch) | |
tree | 05f7626849f498bb8736fc7779a9f8ac04741992 /ext/mysqlnd/mysqlnd_ext_plugin.h | |
parent | 654d1a7caf068c67560fd49c86cf6f6354322d6f (diff) | |
download | php-git-a530ecff978cbf2e67a774cae40899d3934c163a.tar.gz |
MNDR:
- better name for MYSQLND_PPEC - MYSQLND_PFC (protocol frame codec)
Diffstat (limited to 'ext/mysqlnd/mysqlnd_ext_plugin.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_ext_plugin.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ext/mysqlnd/mysqlnd_ext_plugin.h b/ext/mysqlnd/mysqlnd_ext_plugin.h index 780517f5b1..8864e1b817 100644 --- a/ext/mysqlnd/mysqlnd_ext_plugin.h +++ b/ext/mysqlnd/mysqlnd_ext_plugin.h @@ -16,8 +16,6 @@ | Ulf Wendel <uwendel@mysql.com> | +----------------------------------------------------------------------+ */ -/* $Id: mysqlnd.h 318221 2011-10-19 15:04:12Z andrey $ */ - #ifndef MYSQLND_EXT_PLUGIN_H #define MYSQLND_EXT_PLUGIN_H @@ -31,7 +29,7 @@ struct st_mysqlnd_plugin__plugin_area_getters void ** (*get_result_buffered_aread_c)(const MYSQLND_RES_BUFFERED_C * result, unsigned int plugin_id); void ** (*get_stmt_area)(const MYSQLND_STMT * stmt, unsigned int plugin_id); void ** (*get_protocol_decoder_area)(const MYSQLND_PROTOCOL_PAYLOAD_DECODER_FACTORY * factory, unsigned int plugin_id); - void ** (*get_ppec_area)(const MYSQLND_PPEC * ppec, unsigned int plugin_id); + void ** (*get_ppec_area)(const MYSQLND_PFC * ppec, unsigned int plugin_id); void ** (*get_vio_area)(const MYSQLND_VIO * vio, unsigned int plugin_id); }; @@ -151,8 +149,8 @@ extern struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xetters; #define mysqlnd_protocol_get_methods() mysqlnd_plugin_methods_xetters.protocol.get() #define mysqlnd_protocol_set_methods(m) mysqlnd_plugin_methods_xetters.protocol.set((m)) -#define mysqlnd_ppec_get_methods() mysqlnd_plugin_methods_xetters.ppec.get() -#define mysqlnd_ppec_set_methods(m) mysqlnd_plugin_methods_xetters.ppec.set((m)) +#define mysqlnd_pfc_get_methods() mysqlnd_plugin_methods_xetters.ppec.get() +#define mysqlnd_pfc_set_methods(m) mysqlnd_plugin_methods_xetters.ppec.set((m)) #define mysqlnd_vio_get_methods() mysqlnd_plugin_methods_xetters.vio.get() #define mysqlnd_vio_set_methods(m) mysqlnd_plugin_methods_xetters.vio.set((m)) |