diff options
author | Andrey Hristov <andrey@php.net> | 2015-11-10 11:02:33 +0100 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2015-11-12 16:19:16 +0100 |
commit | 654d1a7caf068c67560fd49c86cf6f6354322d6f (patch) | |
tree | 731e7dddb2d0fa79a66ddf194c1e1fdca924460e /ext/mysqlnd/mysqlnd_vio.c | |
parent | 80d59a3a362052cfa5767f99dcd3954182947c55 (diff) | |
download | php-git-654d1a7caf068c67560fd49c86cf6f6354322d6f.tar.gz |
MNDR:
- rename MYSQLND_NET to MYSQLND_PPEC (protocol packet envelope codec).
PPEC does only the encoding and decoding to the protocol frame.
Diffstat (limited to 'ext/mysqlnd/mysqlnd_vio.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_vio.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/mysqlnd/mysqlnd_vio.c b/ext/mysqlnd/mysqlnd_vio.c index 0aa06e21df..aedec29469 100644 --- a/ext/mysqlnd/mysqlnd_vio.c +++ b/ext/mysqlnd/mysqlnd_vio.c @@ -14,7 +14,6 @@ +----------------------------------------------------------------------+ | Authors: Andrey Hristov <andrey@mysql.com> | | Ulf Wendel <uwendel@mysql.com> | - | Georg Richter <georg@mysql.com> | +----------------------------------------------------------------------+ */ @@ -475,7 +474,7 @@ MYSQLND_METHOD(mysqlnd_vio, consume_uneaten_data)(MYSQLND_VIO * const net, enum php_stream * net_stream = net->data->get_stream(net); int was_blocked = net_stream->ops->set_option(net_stream, opt, 0, NULL); - DBG_ENTER("mysqlnd_net::consume_uneaten_data"); + DBG_ENTER("mysqlnd_vio::consume_uneaten_data"); if (PHP_STREAM_OPTION_RETURN_ERR != was_blocked) { /* Do a read of 1 byte */ @@ -630,7 +629,7 @@ MYSQLND_METHOD(mysqlnd_vio, enable_ssl)(MYSQLND_VIO * const net) static enum_func_status MYSQLND_METHOD(mysqlnd_vio, disable_ssl)(MYSQLND_VIO * const vio) { - DBG_ENTER("mysqlnd_net::disable_ssl"); + DBG_ENTER("mysqlnd_vio::disable_ssl"); DBG_RETURN(PASS); } /* }}} */ |