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
872d85da
Commit
872d85da
authored
Sep 15, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #13029 YaSSL not compatibile w/ JSSE (Java implementation of SSL)
-Applied patch from Todd
parent
ff4a6e13
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
extra/yassl/src/ssl.cpp
extra/yassl/src/ssl.cpp
+15
-3
No files found.
extra/yassl/src/ssl.cpp
View file @
872d85da
...
@@ -171,13 +171,25 @@ int SSL_accept(SSL* ssl)
...
@@ -171,13 +171,25 @@ int SSL_accept(SSL* ssl)
sendServerHelloDone
(
*
ssl
);
sendServerHelloDone
(
*
ssl
);
ssl
->
flushBuffer
();
ssl
->
flushBuffer
();
// Java Client sends fragmented response
while
(
ssl
->
getStates
().
getServer
()
<
clientFinishedComplete
)
{
if
(
ssl
->
GetError
())
break
;
processReply
(
*
ssl
);
processReply
(
*
ssl
);
}
}
}
sendChangeCipher
(
*
ssl
);
sendChangeCipher
(
*
ssl
);
sendFinished
(
*
ssl
,
server_end
);
sendFinished
(
*
ssl
,
server_end
);
ssl
->
flushBuffer
();
ssl
->
flushBuffer
();
if
(
ssl
->
getSecurity
().
get_resuming
())
if
(
ssl
->
getSecurity
().
get_resuming
())
{
// Java Client sends fragmented response
while
(
ssl
->
getStates
().
getServer
()
<
clientFinishedComplete
)
{
if
(
ssl
->
GetError
())
break
;
processReply
(
*
ssl
);
processReply
(
*
ssl
);
}
}
ssl
->
useLog
().
ShowTCP
(
ssl
->
getSocket
().
get_fd
());
ssl
->
useLog
().
ShowTCP
(
ssl
->
getSocket
().
get_fd
());
...
...
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