Home
last modified time | relevance | path

Searched refs:handshakeFunction (Results 1 – 8 of 8) sorted by relevance

/dports/security/cryptlib/cryptlib-3.4.3/session/
H A Dssh.c625 const SSH_HANDSHAKE_FUNCTION handshakeFunction = \ in completeHandshake() local
634 REQUIRES( handshakeFunction != NULL ); in completeHandshake()
637 status = handshakeFunction( sessionInfoPtr, handshakeInfo ); in completeHandshake()
664 SSH_HANDSHAKE_FUNCTION handshakeFunction; in completeStartup() local
685 handshakeFunction = FNPTR_GET( handshakeInfo.beginHandshake ); in completeStartup()
686 ENSURES( handshakeFunction != NULL ); in completeStartup()
687 status = handshakeFunction( sessionInfoPtr, &handshakeInfo ); in completeStartup()
701 handshakeFunction = FNPTR_GET( handshakeInfo.exchangeKeys ); in completeStartup()
702 ENSURES( handshakeFunction != NULL ); in completeStartup()
703 status = handshakeFunction( sessionInfoPtr, &handshakeInfo ); in completeStartup()
H A Dssl.c742 SSL_HANDSHAKE_FUNCTION handshakeFunction; in commonStartup() local
754 handshakeFunction = FNPTR_GET( handshakeInfo.beginHandshake ); in commonStartup()
755 ENSURES( handshakeFunction != NULL ); in commonStartup()
756 status = handshakeFunction( sessionInfoPtr, &handshakeInfo ); in commonStartup()
771 handshakeFunction = FNPTR_GET( handshakeInfo.exchangeKeys ); in commonStartup()
772 ENSURES( handshakeFunction != NULL ); in commonStartup()
773 status = handshakeFunction( sessionInfoPtr, &handshakeInfo ); in commonStartup()
/dports/net-im/gloox/gloox-1.0.24/src/
H A Dtlsopensslserver.h56 virtual int handshakeFunction();
H A Dtlsopensslclient.h61 virtual int handshakeFunction();
H A Dtlsopensslclient.cpp54 int OpenSSLClient::handshakeFunction() in handshakeFunction() function in gloox::OpenSSLClient
H A Dtlsopensslbase.h76 virtual int handshakeFunction() = 0;
H A Dtlsopensslserver.cpp48 int OpenSSLServer::handshakeFunction() in handshakeFunction() function in gloox::OpenSSLServer
H A Dtlsopensslbase.cpp181 ret = handshakeFunction(); in doTLSOperation()