Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
1ccf651a
Commit
1ccf651a
authored
Mar 28, 2007
by
msvensson@pilot.blaudden
Browse files
Options
Browse Files
Download
Plain Diff
Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
into pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint
parents
6969acd2
c2bbf3c0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
extra/yassl/include/openssl/ssl.h
extra/yassl/include/openssl/ssl.h
+8
-2
extra/yassl/src/ssl.cpp
extra/yassl/src/ssl.cpp
+1
-1
include/violite.h
include/violite.h
+3
-0
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-0
No files found.
extra/yassl/include/openssl/ssl.h
View file @
1ccf651a
...
@@ -189,11 +189,17 @@ enum { /* ERR Constants */
...
@@ -189,11 +189,17 @@ enum { /* ERR Constants */
ERR_TXT_STRING
=
1
,
ERR_TXT_STRING
=
1
,
EVP_R_BAD_DECRYPT
=
2
EVP_R_BAD_DECRYPT
=
2
};
};
/*
Allow type used by SSL_set_fd to be changed, default to int
in order to be compatible with OpenSSL
*/
#ifndef YASSL_SOCKET_T_DEFINED
typedef
int
YASSL_SOCKET_T
;
#endif
SSL_CTX
*
SSL_CTX_new
(
SSL_METHOD
*
);
SSL_CTX
*
SSL_CTX_new
(
SSL_METHOD
*
);
SSL
*
SSL_new
(
SSL_CTX
*
);
SSL
*
SSL_new
(
SSL_CTX
*
);
int
SSL_set_fd
(
SSL
*
,
int
);
int
SSL_set_fd
(
SSL
*
,
YASSL_SOCKET_T
);
int
SSL_connect
(
SSL
*
);
int
SSL_connect
(
SSL
*
);
int
SSL_write
(
SSL
*
,
const
void
*
,
int
);
int
SSL_write
(
SSL
*
,
const
void
*
,
int
);
int
SSL_read
(
SSL
*
,
void
*
,
int
);
int
SSL_read
(
SSL
*
,
void
*
,
int
);
...
...
extra/yassl/src/ssl.cpp
View file @
1ccf651a
...
@@ -233,7 +233,7 @@ void SSL_free(SSL* ssl)
...
@@ -233,7 +233,7 @@ void SSL_free(SSL* ssl)
}
}
int
SSL_set_fd
(
SSL
*
ssl
,
int
fd
)
int
SSL_set_fd
(
SSL
*
ssl
,
YASSL_SOCKET_T
fd
)
{
{
ssl
->
useSocket
().
set_fd
(
fd
);
ssl
->
useSocket
().
set_fd
(
fd
);
return
SSL_SUCCESS
;
return
SSL_SUCCESS
;
...
...
include/violite.h
View file @
1ccf651a
...
@@ -102,6 +102,9 @@ void vio_timeout(Vio *vio,uint which, uint timeout);
...
@@ -102,6 +102,9 @@ void vio_timeout(Vio *vio,uint which, uint timeout);
#define HEADER_DES_LOCL_H dummy_something
#define HEADER_DES_LOCL_H dummy_something
#define YASSL_MYSQL_COMPATIBLE
#define YASSL_MYSQL_COMPATIBLE
#define YASSL_PREFIX
#define YASSL_PREFIX
/* Set yaSSL to use same type as MySQL do for socket handles */
typedef
my_socket
YASSL_SOCKET_T
;
#define YASSL_SOCKET_T_DEFINED
#include <openssl/ssl.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#include <openssl/err.h>
...
...
mysql-test/mysql-test-run.pl
View file @
1ccf651a
...
@@ -1520,6 +1520,7 @@ sub executable_setup () {
...
@@ -1520,6 +1520,7 @@ sub executable_setup () {
$exe_mysqlshow
=
mtr_exe_exists
("
$path_client_bindir
/mysqlshow
");
$exe_mysqlshow
=
mtr_exe_exists
("
$path_client_bindir
/mysqlshow
");
$exe_mysqlbinlog
=
mtr_exe_exists
("
$path_client_bindir
/mysqlbinlog
");
$exe_mysqlbinlog
=
mtr_exe_exists
("
$path_client_bindir
/mysqlbinlog
");
$exe_mysqladmin
=
mtr_exe_exists
("
$path_client_bindir
/mysqladmin
");
$exe_mysqladmin
=
mtr_exe_exists
("
$path_client_bindir
/mysqladmin
");
$exe_mysql
=
mtr_exe_exists
("
$path_client_bindir
/mysql
");
if
(
!
$opt_extern
)
if
(
!
$opt_extern
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment