@@ -29,7 +29,7 @@ struct st_mysqlnd_plugin__plugin_area_getters
29
29
void * * (* get_result_buffered_aread_c )(const MYSQLND_RES_BUFFERED_C * result , unsigned int plugin_id );
30
30
void * * (* get_stmt_area )(const MYSQLND_STMT * stmt , unsigned int plugin_id );
31
31
void * * (* get_protocol_decoder_area )(const MYSQLND_PROTOCOL_PAYLOAD_DECODER_FACTORY * factory , unsigned int plugin_id );
32
- void * * (* get_ppec_area )(const MYSQLND_PFC * ppec , unsigned int plugin_id );
32
+ void * * (* get_pfc_area )(const MYSQLND_PFC * pfc , unsigned int plugin_id );
33
33
void * * (* get_vio_area )(const MYSQLND_VIO * vio , unsigned int plugin_id );
34
34
};
35
35
@@ -43,8 +43,8 @@ extern struct st_mysqlnd_plugin__plugin_area_getters mysqlnd_plugin_area_getters
43
43
#define mysqlnd_plugin_get_plugin_result_buffered_data_c (res , p_id ) mysqlnd_plugin_area_getters.get_result_buffered_aread_c((res), (p_id))
44
44
#define mysqlnd_plugin_get_plugin_stmt_data (stmt , p_id ) mysqlnd_plugin_area_getters.get_stmt_area((stmt), (p_id))
45
45
#define mysqlnd_plugin_get_plugin_protocol_data (proto , p_id ) mysqlnd_plugin_area_getters.get_protocol_decoder_area((proto), (p_id))
46
- #define mysqlnd_plugin_get_plugin_ppec_data ( ppec , p_id ) mysqlnd_plugin_area_getters.get_ppec_area((ppec ), (p_id))
47
- #define mysqlnd_plugin_get_plugin_vio_data (vio , p_id ) mysqlnd_plugin_area_getters.get_ppec_area ((vio), (p_id))
46
+ #define mysqlnd_plugin_get_plugin_pfc_data ( pfc , p_id ) mysqlnd_plugin_area_getters.get_pfc_area((pfc ), (p_id))
47
+ #define mysqlnd_plugin_get_plugin_vio_data (vio , p_id ) mysqlnd_plugin_area_getters.get_pfc_area ((vio), (p_id))
48
48
49
49
50
50
struct st_mysqlnd_plugin_methods_xetters
@@ -97,11 +97,11 @@ struct st_mysqlnd_plugin_methods_xetters
97
97
void (* set )(MYSQLND_CLASS_METHODS_TYPE (mysqlnd_protocol_payload_decoder_factory ) * methods );
98
98
} protocol ;
99
99
100
- struct st_mnd_ppec_xetters
100
+ struct st_mnd_pfc_xetters
101
101
{
102
102
MYSQLND_CLASS_METHODS_TYPE (mysqlnd_protocol_packet_frame_codec ) * (* get )();
103
103
void (* set )(MYSQLND_CLASS_METHODS_TYPE (mysqlnd_protocol_packet_frame_codec ) * methods );
104
- } ppec ;
104
+ } pfc ;
105
105
106
106
struct st_mnd_vio_xetters
107
107
{
@@ -149,8 +149,8 @@ extern struct st_mysqlnd_plugin_methods_xetters mysqlnd_plugin_methods_xetters;
149
149
#define mysqlnd_protocol_get_methods () mysqlnd_plugin_methods_xetters.protocol.get()
150
150
#define mysqlnd_protocol_set_methods (m ) mysqlnd_plugin_methods_xetters.protocol.set((m))
151
151
152
- #define mysqlnd_pfc_get_methods () mysqlnd_plugin_methods_xetters.ppec .get()
153
- #define mysqlnd_pfc_set_methods (m ) mysqlnd_plugin_methods_xetters.ppec .set((m))
152
+ #define mysqlnd_pfc_get_methods () mysqlnd_plugin_methods_xetters.pfc .get()
153
+ #define mysqlnd_pfc_set_methods (m ) mysqlnd_plugin_methods_xetters.pfc .set((m))
154
154
155
155
#define mysqlnd_vio_get_methods () mysqlnd_plugin_methods_xetters.vio.get()
156
156
#define mysqlnd_vio_set_methods (m ) mysqlnd_plugin_methods_xetters.vio.set((m))
0 commit comments