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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
04c4cdde
Commit
04c4cdde
authored
Mar 28, 2007
by
msvensson@pilot.blaudden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Import yaSSL
parent
1ccf651a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
7 deletions
+6
-7
extra/yassl/include/lock.hpp
extra/yassl/include/lock.hpp
+1
-1
extra/yassl/include/openssl/ssl.h
extra/yassl/include/openssl/ssl.h
+1
-0
extra/yassl/include/socket_wrapper.hpp
extra/yassl/include/socket_wrapper.hpp
+3
-2
extra/yassl/include/yassl.hpp
extra/yassl/include/yassl.hpp
+1
-1
extra/yassl/src/ssl.cpp
extra/yassl/src/ssl.cpp
+0
-1
extra/yassl/taocrypt/mySTL/algorithm.hpp
extra/yassl/taocrypt/mySTL/algorithm.hpp
+0
-2
No files found.
extra/yassl/include/lock.hpp
View file @
04c4cdde
...
...
@@ -28,7 +28,7 @@ namespace yaSSL {
#ifdef MULTI_THREADED
#if defined(_WIN32) || defined(_WIN64)
#ifdef _WIN32
#include <windows.h>
class
Mutex
{
...
...
extra/yassl/include/openssl/ssl.h
View file @
04c4cdde
...
...
@@ -189,6 +189,7 @@ enum { /* ERR Constants */
ERR_TXT_STRING
=
1
,
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
...
...
extra/yassl/include/socket_wrapper.hpp
View file @
04c4cdde
...
...
@@ -28,8 +28,9 @@
#include <assert.h>
#include "openssl/ssl.h"
/* for socket_t */
#if !defined(_WIN32) && !defined(_WIN64)
#ifdef _WIN32
#include <winsock2.h>
#else
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
...
...
extra/yassl/include/yassl.hpp
View file @
04c4cdde
...
...
@@ -28,7 +28,7 @@
namespace
yaSSL
{
#if
defined(_WIN32) || defined(_WIN64)
#if
def _WIN32
typedef
unsigned
int
SOCKET_T
;
#else
typedef
int
SOCKET_T
;
...
...
extra/yassl/src/ssl.cpp
View file @
04c4cdde
...
...
@@ -39,7 +39,6 @@
#include "coding.hpp" // HexDecoder
#include "helpers.hpp" // for placement new hack
#include <stdio.h>
#include <assert.h>
#ifdef _WIN32
#include <windows.h> // FindFirstFile etc..
...
...
extra/yassl/taocrypt/mySTL/algorithm.hpp
View file @
04c4cdde
...
...
@@ -27,8 +27,6 @@
namespace
mySTL
{
#undef max
#undef min
template
<
typename
T
>
inline
const
T
&
max
(
const
T
&
a
,
const
T
&
b
)
...
...
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