History log of /PHP-5.6/ext/mysqlnd/mysqlnd.c (Results 126 – 150 of 304)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.3.6RC1
# d82b05a6 31-Jan-2011 Andrey Hristov

Don't lose this data anymore. It worked without the fix,
but it with it is just correct (trunk only).


# 2e3e86b9 28-Jan-2011 Andrey Hristov

clear error before doing anything, because we can get
trapped by previous error :
php -r '$link = mysqli_init();
var_dump($link->real_connect("127.0.0.1", "unknown", "unknown"));
var_

clear error before doing anything, because we can get
trapped by previous error :
php -r '$link = mysqli_init();
var_dump($link->real_connect("127.0.0.1", "unknown", "unknown"));
var_dump($link->real_connect("127.0.0.1", "known", "password"));'

shows the problem. The second connect did not work, as it should be.

show more ...


# 4439bde5 24-Jan-2011 Andrey Hristov

small cleanups


# ce4e6f4d 24-Jan-2011 Andrey Hristov

Handle MySQL 5.5 authentication features.
Authentication protocol can be changed, a new raw
packet is introduced, which includes only the "encrypted"
data for the auth plugin, sent after

Handle MySQL 5.5 authentication features.
Authentication protocol can be changed, a new raw
packet is introduced, which includes only the "encrypted"
data for the auth plugin, sent after change protocol (0xFE)
is sent to the client.

show more ...


# 87a2104c 19-Jan-2011 Andrey Hristov

fix ZTS build


# 16c6ce94 14-Jan-2011 Andrey Hristov

Update on the mysqlnd auth plugins, changed the plugin
structure and where they load themselves.
0xFE packets (method switch) needs to be done, additional
wire-level packet to be created

Update on the mysqlnd auth plugins, changed the plugin
structure and where they load themselves.
0xFE packets (method switch) needs to be done, additional
wire-level packet to be created to be parsed and the packet
doesn't fit the PACKET_OK structure anymore.

show more ...


# 5ca5c2bf 14-Jan-2011 Andrey Hristov

Change things to allow passing of the password length
to mysqlnd. This is needed as a password might include
a \0 and thus we need to be binary safe.


# 429e07bb 12-Jan-2011 Andrey Hristov

grok the MySQL 5.5 extended handshake.
Move the authentication routines, the native ones, to
separate file and encapsulate them in a plugin.
Depending on the server version and what the s

grok the MySQL 5.5 extended handshake.
Move the authentication routines, the native ones, to
separate file and encapsulate them in a plugin.
Depending on the server version and what the server
requests (or doesn't in old versions) load the authentication
plugin to handle it.
Currently only the 4.1+ authentication is supported. More to come

show more ...


# ddbbcdce 11-Jan-2011 Andrey Hristov

Use common code to handle initial authentication and
COM_CHANGE_USER


Revision tags: php-5.2.17, php-5.3.5
# 927bf09c 01-Jan-2011 Felipe Pena

- Year++


# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++


# cfac5f5b 28-Dec-2010 Andrey Hristov

extending the API interface - plugins can register
themselves with a structure and can be searched.
Every plugin can have statistics and they are shown
under the statistics of mysqlnd in

extending the API interface - plugins can register
themselves with a structure and can be searched.
Every plugin can have statistics and they are shown
under the statistics of mysqlnd in MINFO.

show more ...


# 17b83360 16-Dec-2010 Andrey Hristov

fix a small bug about affected_rows in the text protocol


# b51abfb3 16-Dec-2010 Andrey Hristov

fix a small bug about affected_rows in the text protocol


Revision tags: php-5.2.16, php-5.2.15, php-5.3.4
# e183ea04 06-Dec-2010 Andrey Hristov

don't crash if the API is used incorrectly


# 03fd10c4 06-Dec-2010 Andrey Hristov

don't crash if the API is used incorrectly


Revision tags: php-5.2.15RC2, php-5.3.4RC2, php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1
# fe719c5e 22-Oct-2010 Andrey Hristov

profiling in trace mode


# 924bb781 22-Oct-2010 Andrey Hristov

profiling in trace mode


# 25e84b6a 05-Oct-2010 Andrey Hristov

Rename a method so it doesn't clash with a global symbol - a function
Fix compiler waring by extening the type of a variable


# 396402fc 05-Oct-2010 Andrey Hristov

Rename a method so it doesn't clash with a global symbol - a function
Fix compiler waring by extening the type of a variable


# 548661d9 05-Oct-2010 Andrey Hristov

rename parameter, should not conflict with global symbol -
the socket function


# 60bfedb1 05-Oct-2010 Andrey Hristov

rename parameter, should not conflict with global symbol -
the socket function


# 216effe4 23-Sep-2010 Andrey Hristov

WS fixes


# 859a1404 23-Sep-2010 Andrey Hristov

WS fixes


# 1ac15b2f 23-Sep-2010 Kalle Sommer Nielsen

Added TSRMLS macros into php_get_current_user()


12345678910>>...13