projects
/
umurmur.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc9c7b0
)
added stubs
author
Felix Morgner
<felix.morgner@gmail.com>
Fri, 30 Jan 2015 13:35:38 +0000
(14:35 +0100)
committer
Felix Morgner
<felix.morgner@gmail.com>
Sat, 31 Jan 2015 12:12:19 +0000
(13:12 +0100)
src/ssli_gnutls.c
patch
|
blob
|
history
diff --git
a/src/ssli_gnutls.c
b/src/ssli_gnutls.c
index dde1909de1abb35ca4bc805f60f457b0e6967d58..c4941cf94377e40a630b13a0ed2f9a5e4bfd1fd7 100644
(file)
--- a/
src/ssli_gnutls.c
+++ b/
src/ssli_gnutls.c
@@
-85,7
+85,7
@@
int SSLi_nonblockaccept( SSL_handle_t *session, bool_t * isSSLReady )
{
int error;
do {
- gnutls_handshake(*session);
+
gnutls_handshake(*session);
} while(error < GNUTLS_E_SUCCESS && !gnutls_error_is_fatal(error));
if ( error < GNUTLS_E_SUCCESS ) {
@@
-96,3
+96,8
@@
int SSLi_nonblockaccept( SSL_handle_t *session, bool_t * isSSLReady )
}
+void SSLi_shutdown(SSL_handle_t *ssl)
+ {
+ }
+
+void SSLi_free(SSL_handle_t *ssl) {}