Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2007-03-28 15:34:52+02:00, msvensson@stripped +3 -0
Set yaSSL to use same type as MySQL do for socket handles
extra/yassl/include/openssl/ssl.h@stripped, 2007-03-28 15:04:27+02:00, msvensson@stripped +8 -2
Import patch yassl.diff
extra/yassl/src/ssl.cpp@stripped, 2007-03-28 15:04:28+02:00, msvensson@stripped +1 -1
Import patch yassl.diff
include/violite.h@stripped, 2007-03-28 15:34:51+02:00, msvensson@stripped +3 -0
Set yaSSL to use same type as MySQL do for socket handles
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: pilot.blaudden
# Root: /home/msvensson/mysql/yassl_import/my50-yassl_import
--- 1.49/include/violite.h 2006-12-23 20:04:05 +01:00
+++ 1.50/include/violite.h 2007-03-28 15:34:51 +02:00
@@ -102,6 +102,9 @@ void vio_timeout(Vio *vio,uint which, ui
#define HEADER_DES_LOCL_H dummy_something
#define YASSL_MYSQL_COMPATIBLE
#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/err.h>
--- 1.22/extra/yassl/include/openssl/ssl.h 2007-03-20 22:43:58 +01:00
+++ 1.23/extra/yassl/include/openssl/ssl.h 2007-03-28 15:04:27 +02:00
@@ -190,11 +190,17 @@ enum { /* ERR Constants */
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* SSL_new(SSL_CTX*);
-int SSL_set_fd (SSL*, int);
+int SSL_set_fd (SSL*, YASSL_SOCKET_T);
int SSL_connect(SSL*);
int SSL_write(SSL*, const void*, int);
int SSL_read(SSL*, void*, int);
--- 1.28/extra/yassl/src/ssl.cpp 2007-03-23 16:09:15 +01:00
+++ 1.29/extra/yassl/src/ssl.cpp 2007-03-28 15:04:28 +02:00
@@ -229,7 +229,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);
return SSL_SUCCESS;
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2422) | msvensson | 28 Mar |