History log of /PHP-7.2/ext/mysqlnd/mysqlnd_net.c (Results 51 – 75 of 129)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# ec159081 07-May-2012 andrey

reorganize things a bit...just shifting code


Revision tags: php-5.4.2, php-5.3.12
# 174bf906 30-Apr-2012 andrey

refactor MYSQLND_NET, split it two parts for easy resharing


Revision tags: php-5.3.11, php-5.4.1, php-5.3.11RC2, php-5.4.1RC2, php-5.3.11RC1, php-5.4.1RC1, PHP-5.4.1-RC1, php-5.4.0, php-5.4.0RC8, php-5.3.10, php-5.4.0RC7, php-5.4.0RC6, php-5.3.9, php-5.4.0RC5
# e4ca0ed0 01-Jan-2012 Felipe Pena

- Year++


# 8775a375 01-Jan-2012 Felipe Pena

- Year++


# 4e198252 01-Jan-2012 Felipe Pena

- Year++


Revision tags: php-5.3.9RC4, php-5.4.0RC4, php-5.3.9RC3, php-5.4.0RC3, php-5.3.9RC2, php-5.4.0RC2, php-5.4.0RC1, php-5.3.9RC1
# 4321da03 24-Oct-2011 Andrey Hristov

move plugin specific stuff to one file. create object factory
for similar objects


# 37401880 24-Oct-2011 Andrey Hristov

move plugin specific stuff to one file. create object factory
for similar objects


# 652490d4 21-Oct-2011 Andrey Hristov

shift code around to two new files - mysqlnd_driver.c
and mysqlnd_ext_plugin.c (mysqlnd extension plugin)


# 13981387 21-Oct-2011 Andrey Hristov

shift code around to two new files - mysqlnd_driver.c
and mysqlnd_ext_plugin.c (mysqlnd extension plugin)


Revision tags: php-5.4.0beta2
# a498bc62 10-Oct-2011 Andrey Hristov

MYSQLND_NET refactored not to use any direct reference to MYSQLND (the connection)
QC will need an ifdef-layer to compile with this


# b5f57703 10-Oct-2011 Andrey Hristov

MYSQLND_NET refactored not to use any direct reference to MYSQLND (the connection)
QC will need an ifdef-layer to compile with this


# c3019a16 06-Oct-2011 Andrey Hristov

try not to crash when closing persistent sockets, because EG(persistent_list)
is cleaned before the extensions' MSHUTDOWNs are called.


# 5f6020bc 06-Oct-2011 Andrey Hristov

try not to crash when closing persistent sockets, because EG(persistent_list)
is cleaned before the extensions' MSHUTDOWNs are called.


Revision tags: php-5.4.0beta1
# fa8a1c38 31-Aug-2011 Andrey Hristov

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the length of the compressed payload
wasn't correctly calculated (actually the length of the uncompressed payload as assumed).
However, the uncompress() function has internally the length of the real payload and skips
the binary trash at the end - thus no data damage occurs!

show more ...


# 12a4dcf5 31-Aug-2011 Andrey Hristov

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the length of the compressed payload
wasn't correctly calculated (actually the length of the uncompressed payload as assumed).
However, the uncompress() function has internally the length of the real payload and skips
the binary trash at the end - thus no data damage occurs!

show more ...


# 604fa153 31-Aug-2011 Andrey Hristov

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the

Fix valgrind error (sending of initialized bytes over the network).
When the compression was successful the compressed data + uninitialized data
at the end was sent to the server, because the length of the compressed payload
wasn't correctly calculated (actually the length of the uncompressed payload as assumed).
However, the uncompress() function has internally the length of the real payload and skips
the binary trash at the end - thus no data damage occurs!

show more ...


Revision tags: yaf-2.1.0
# 344136e8 24-Aug-2011 Xinchen Hui

Apply r315270 to 5.3
Fixed test script failed when host mysql doesn't listen on 3306
Fxied test script failed due to mysql_pconnect trigger a warning


Revision tags: php-5.3.8
# 9baee858 22-Aug-2011 Andrey Hristov

Fix Bug #55473 mysql_pconnect leaks file descriptors on reconnect
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to a

Fix Bug #55473 mysql_pconnect leaks file descriptors on reconnect
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to all branches

show more ...


# 0aa6354a 22-Aug-2011 Andrey Hristov

Fix Bug #55473 mysql_pconnect leaks file descriptors on reconnect
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to a

Fix Bug #55473 mysql_pconnect leaks file descriptors on reconnect
The fix is for now in 5_4 and trunk, to be merged into 5_3 after 5.3.8
is packaged (expected today). The test case goes to all branches

show more ...


Revision tags: php-5.3.7, php-5.3.7RC5, php-5.4.0alpha3, php-5.3.7RC4, php-5.3.7RC3, php-5.4.0alpha2, php-5.3.7RC2, php-5.4.0alpha1, php-5.3.7RC1
# 9e5bc2c1 16-May-2011 Johannes Schlüter

- Move the access behind the check.
# I can't find an unsafe call, but let's play safe


# 8ab4c89d 16-May-2011 Johannes Schlüter

- Move the access behind the check.
# I can't find an unsafe call, but let's play safe


# 898e3095 16-May-2011 Johannes Schlüter

- Move the access behind the check.
# I can't find an unsafe call, but let's play safe


# 9484248c 22-Mar-2011 Andrey Hristov

remove unneeded includes


# 15fd9c4f 22-Mar-2011 Andrey Hristov

remove unneeded includes


# f0644359 18-Mar-2011 Andrey Hristov

add a proxy for sppintf and vspprintf


123456