msvensson@pilot.mysql.com
256cb08ba9
Merge 192.168.0.10:mysql/mysql-4.1-maint
...
into pilot.mysql.com:/home/msvensson/mysql/mysql-4.1-maint
2007-02-06 14:44:05 +01:00
gluh@mysql.com/eagle.(none)
010dc0b55c
Valgrind error fixes
...
Notes:
This patch doesn't fix all issues in the tree and we need jani's fix for that
This patch shoud not be merged into 5.0
2007-02-01 18:00:24 +04:00
msvensson@pilot.mysql.com
7eaa82ea38
Bug#22943 syscall pruning in libmysql
...
- Set the timeout values only where needed
2007-01-29 14:31:48 +01:00
kroki/tomash@moonlight.intranet
c746c08af9
BUG#9678: Client library hangs after network communication failure
...
Socket timeouts in client library were used only on Windows.
The solution is to use socket timeouts in client library on all
systems were they are supported.
No test case is provided because it is impossible to simulate network
failure in current test suit.
2006-08-14 20:01:19 +04:00
gluh@eagle.intranet.mysql.r18.ru
4b6a94ffb4
Fix for bug#14221 SSL support breaks going from OpenSSL 0.9.7i to 0.9.8a
...
added SSL_library_init()
2005-11-29 12:15:48 +04:00
gluh@eagle.intranet.mysql.r18.ru
f0f8b9c658
Fix for bug#14780 memory leak for mysql 4.1.14 with openssl enabled
2005-11-21 16:09:26 +04:00
monty@mysql.com
829a4831b1
Fixes during review of new code
2005-10-13 19:24:01 +03:00
jimw@mysql.com
c8a6c2c614
Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how
...
signal handlers are set up, the blocking flags for sockets are set,
and which thread-related functions are used. (Bug #8731 )
2005-10-11 09:12:12 -07:00
jimw@mysql.com
af4d71f734
Merge mysql.com:/home/jimw/my/mysql-4.1-12723
...
into mysql.com:/home/jimw/my/mysql-4.1-clean
2005-09-15 10:00:25 -07:00
SergeyV@selena.
33c3fedadc
Fixes bug #5588 . Additions after merge from 4.0.
2005-09-07 15:57:14 +04:00
SergeyV@selena.
784582b857
Merge selena.:H:/MYSQL/src/#05588-mysql-4.0
...
into selena.:H:/MYSQL/src/#05588-mysql-4.1
2005-09-07 14:59:41 +04:00
jimw@mysql.com
89decf6aa9
Fix shared memory connection handling on Windows. (Bug #12723 )
2005-08-31 15:04:25 -07:00
SergeyV@selena.
e82e15b051
Fixes bug #5588 . vio_was_interrupted() function was added to detect
...
read timeout properly on win32.
2005-08-30 19:19:28 +04:00
reggie@linux.site
c31d71c065
Fixed some vio code that was using ___WIN__ instead of __WIN__
2005-07-12 10:31:09 -06:00
brian@zim.(none)
61db785682
Merge baker@bk-internal.mysql.com:/home/bk/mysql-4.1
...
into zim.(none):/home/brian/mysql/mysql-4.1
2005-07-06 15:55:49 -07:00
brian@zim.(none)
8c9dd56b0e
Typo for debug code. Bug #11705
2005-07-06 15:54:02 -07:00
kent@mysql.com
a7be42163a
Makefile.am:
...
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
2005-07-05 23:24:48 +02:00
jimw@mysql.com
6b1a9f64bb
Fix Windows build warning and file missing from projects.
2005-06-08 01:25:06 +02:00
jimw@mysql.com
bd7775866c
Fix timeouts with SSL on Windows, and also sync the fastsend
...
implementation with normal socket behavior. (Bug #8572 )
2005-05-24 11:02:39 -07:00
rburnett@bk-internal.mysql.com
e4523c2319
Bug #9721 net_write_timeout not used on Windows
...
viosocket.c:
Use ?: syntax to simplify code for setting both timeouts
2005-05-06 15:08:10 +02:00
rburnett@bk-internal.mysql.com
e7d7c0f236
Bug #9721 net_write_timeout not used on Windows
...
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
2005-05-05 17:17:57 +02:00
serg@serg.mylan
1b4a815637
Fedora now defines read(2)/write(2) as macros.
...
Argh!
2005-03-29 23:31:56 +02:00
monty@mysql.com
44ceb84cdc
Merge with 4.0
2005-02-15 14:49:52 +02:00
monty@mysql.com
788a2658a3
Better bug fix for #5569 : "Incorrect "Access Denied" error with SAME login DIFFERENT host"
...
This fixes also the reverse lookup bug introduced by the previous patch
2005-02-15 14:42:13 +02:00
jimw@mysql.com
5f0c4ff140
Merge fixes for #8248 , #5569 .
2005-02-02 08:21:11 -08:00
jimw@mysql.com
94da57dc65
Always call vio_in_addr() so that thd->remote is
...
always initialized. (Bug #5569 )
2005-01-25 12:06:55 -08:00
konstantin@mysql.com
4a7fd21f12
A fix for Bug#5787 "mysql_stmt_prepare is upto 8 times slower":
...
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.
2005-01-25 02:31:51 +03:00
wax@kishkin.ru
4788b15201
fix indentation
...
add space after comma
add space after equal
add comments in vio_close_shared_memory()
2004-12-23 16:04:40 +05:00
wax@kishkin.ru
0c8a78cca1
BUG#6056
...
(continue)
added event_conn_closed
replaced WaitForSingleObject on WaitForMultipleObjects
inserted a check in vio_close()
added SetEvent() for event_conn_closed
2004-12-14 19:24:19 +05:00
monty@mysql.com
79b3b220be
Don't close already closed files in vio (not critical)
2004-07-12 07:38:46 +03:00
monty@mysql.com
b1d08ba2b4
Merge with 4.0 to get the latest bug patches to 4.1
2004-06-25 20:13:05 +03:00
lenz@mysql.com
4740e8b2b7
- Applied some portability fixes for SGI IRIX/MipsPro compiler
...
(e.g. a fix for BUG#3507 and some modifications recommended
by Andrea Suatoni and Joerg Behrens - thank you!)
2004-06-22 17:35:34 +02:00
monty@mysql.com
390d9898f9
merge with 4.0 to get Netware patches and fixes for libmysqld.dll
2004-05-25 22:54:00 +03:00
monty@mysql.com
f2e1e3ce4c
Added patches from Novell
2004-05-25 22:00:14 +03:00
monty@mysql.com
2742701574
Added missing timeout function for named pipes and shared memory (fixes core dump on windows)
...
Signed auto_increment keys for HASH tables (like for MyISAM tables in 4.0)
nitialize system_charset_info() early. Fixes core dump when starting windows service
2003-12-15 17:58:15 +02:00
monty@mysql.com
f266cdabab
Portability fixes (for binary build)
...
Added --protocol to mysqlbinlog
2003-12-01 13:13:16 +02:00
serg@serg.mylan
c9640c592a
uninitialized variable on Windows fixed
2003-10-17 13:17:15 +02:00
monty@narttu.mysql.fi
77a70a0a24
merge with 4.0.15
2003-08-29 13:44:35 +03:00
lenz@mysql.com
215935d611
- added missing file vio_priv.h to source distribution
2003-08-27 12:26:21 +02:00
monty@narttu.mysql.fi
66b160c253
vio ssl structure renames (to get rid of ending _)
...
Added TCP/IP read/write timeout for windows
Check on windows if second server is started with same TCP/IP port
2003-08-27 02:51:39 +03:00
monty@mashka.mysql.fi
2263e3e51f
Merge with 4.0.14
2003-08-11 22:44:43 +03:00
monty@mashka.mysql.fi
8f08c511ee
Review of changesets since last pull.
...
(Mostly code cleanups)
2003-08-07 20:16:37 +03:00
monty@mashka.(none)
428e348139
Portability fixes for Redhat 9
2003-07-18 12:35:29 +03:00
monty@narttu.mysql.fi
f0a5bc00cc
Fixed wrong usage of libvio.a (Bug #556 )
2003-07-03 12:30:52 +03:00
gluh@gluh.mysql.r18.ru
7d43750eb6
Fix bug #673 : MySQL 4.0.13 no SSL connection with mysql client possible
2003-06-26 12:47:36 +05:00
monty@narttu.mysql.fi
dd2b7918cd
Merge with 4.0.13
2003-05-19 16:35:49 +03:00
monty@mashka.mysql.fi
e741c893ea
Fix to remove compiler warnings
2003-04-28 19:05:57 +03:00
gluh@gluh.mysql.r18.ru
d2bfaed9c2
Fix bug (273):The x509 cert issuer seems not to be checked against the CA
2003-04-16 17:25:05 +05:00
monty@narttu.mysql.fi
a434bca704
Merge with 4.0
2003-03-16 19:17:54 +02:00
bell@sanja.is.com.ua
47b16dae7a
posreview changing (SCRUM)
...
increased compatibility
postmerge changing
2003-02-27 20:31:54 +02:00