| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| | |
into mysql.com:/home/jimw/my/mysql-5.0-clean
|
| |
| |
| |
| | |
added SSL_library_init()
|
|\ \
| |/
| |
| | |
into mysql.com:/opt/local/work/mysql-5.0-root
|
| | |
|
|\ \
| | |
| | |
| | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
|
| | |
| | |
| | |
| | |
| | | |
- Use yassl_includes and yassl_libs instead of openssl_includes and openssl_libs
to avoid that mysql_config returns that libyassl and libtaocrypt are needed for linking.
|
|\ \ \
| | |/
| |/|
| | | |
into mysql.com:/home/my/mysql-5.0
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
into ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.0
|
| | |
| | |
| | |
| | |
| | | |
signal handlers are set up, the blocking flags for sockets are set,
and which thread-related functions are used. (Bug #8731)
|
|\ \ \
| |/ /
| | /
| |/
|/| |
into moonbone.local:/work/12887-bug-5.0-mysql
|
| |\
| | |
| | |
| | | |
into mysql.com:/home/jimw/my/mysql-4.1-clean
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/home/jimw/my/mysql-5.0-clean
|
| | | |
|
| |\ \
| | |/
| |/|
| | | |
into selena.:H:/MYSQL/src/#05588-mysql-4.1
|
| | |
| | |
| | |
| | | |
read timeout properly on win32.
|
| | |
| | |
| | |
| | |
| | | |
- Make sure that mysqltest always uses ssl when connecting to the server.
- Pass a i32-bit int variable as argument to FIONREAD ioctl.
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/home/bk/mysql-5.0
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/usr/home/bar/mysql-5.0
|
| |\ \
| | | |
| | | |
| | | | |
into zim.(none):/home/brian/mysql/mysql-4.1
|
| | | | |
|
|\ \ \ \
| |/ / / |
|
| |/ /
| | |
| | |
| | |
| | | |
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/home/jimw/my/mysql-5.0-clean
|
| | | |
|
| | |
| | |
| | |
| | | |
Fix for link failures on boxes with non-gnu compiler.
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/home/jimw/my/mysql-5.0-clean
|
| | |
| | |
| | |
| | | |
implementation with normal socket behavior. (Bug #8572)
|
| | | |
|
|\ \ \
| |/ /
| | |
| | | |
into bk-internal.mysql.com:/users/rburnett/mysql-5.0
|
| | |
| | |
| | |
| | |
| | | |
viosocket.c:
Use ?: syntax to simplify code for setting both timeouts
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Added an extra parameter to all calls to timeout().
1 means we want to set the write timeout
0 means we wnat to set the read timeout
viossl.c:
Add which parameter to ssl timeout routine
vio_priv.h:
Added which parameter to vio_ignore_timeout and vio_ssl_timeout
violite.h:
Add which parameter to vio_timeout sigs
net_serv.cc:
Use proper which code in call to vio_timeout to set the proper timeout
viosocket.c:
Set the appropriate timeout in vio_timeout
|
|\ \ \
| |/ / |
|
| | |
| | |
| | |
| | | |
Argh!
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The patch implements the idea suggested by Olaf van der Spek in
thread "Client: many small reads?" (internals@lists.mysql.com).
Now small reads performed by the client library are buffered.
The buffering gives up to 2 times speedup when retrieving
one-column tables.
|
|\ \ \
| |/ / |
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
DIFFERENT host"
This fixes also the reverse lookup bug introduced by the previous patch
|
|\ \ \
| |/ / |
|
| |\ \
| | |/ |
|
| | |
| | |
| | |
| | | |
always initialized. (Bug #5569)
|
|\ \ \
| |/ /
| | |
| | | |
into mysql.com:/home/kostja/work/mysql-5.0-root
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
it's crucial to disable Nagle algorithm on client for no-reply commands
(like mysql_stmt_free) to always work fast.
Nagle algorithm instructs the sender to buffer (store) data if any
unacknowledged data is outstanding and the size of to-send data is less than
the network segment. It was exactly the case with COM_STMT_CLOSE after
COM_STMT_PREPARE, so the client was waiting for Nagle timer to expire or
for ACK from the server, while the server was holding up ACK because of
delayed acknowledgement algorithm.
The tricky part is that we have been already disabling Nagle
algorithm (by setting TCP_NODELAY)
almost everywhere except Windows (and maybe Netware).
It is the reason why the bug was repeatable only with Windows client.
|
|\ \ \
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
add space after comma
add space after equal
add comments in vio_close_shared_memory()
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
(continue)
added event_conn_closed
replaced WaitForSingleObject on WaitForMultipleObjects
inserted a check in vio_close()
added SetEvent() for event_conn_closed
|
| | | |
|