diff options
author | Vincent Richard <[email protected]> | 2006-10-11 14:52:41 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2006-10-11 14:52:41 +0000 |
commit | 0894c989596feb8d97d582e87cca021339cc26cd (patch) | |
tree | 75ac912b7b2355102a2c729e424aa504183fd66d /src/net/tls/TLSSocket.cpp | |
parent | Reissue EHLO after successful STARTTLS. (diff) | |
download | vmime-0894c989596feb8d97d582e87cca021339cc26cd.tar.gz vmime-0894c989596feb8d97d582e87cca021339cc26cd.zip |
Renamed 'vmime::platformDependant' to 'vmime::platform'.
Diffstat (limited to 'src/net/tls/TLSSocket.cpp')
-rw-r--r-- | src/net/tls/TLSSocket.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tls/TLSSocket.cpp b/src/net/tls/TLSSocket.cpp index b1896844..e36df7b7 100644 --- a/src/net/tls/TLSSocket.cpp +++ b/src/net/tls/TLSSocket.cpp @@ -27,7 +27,7 @@ #include "vmime/net/tls/TLSSocket.hpp" #include "vmime/net/tls/TLSSession.hpp" -#include "vmime/platformDependant.hpp" +#include "vmime/platform.hpp" #include "vmime/security/cert/X509Certificate.hpp" @@ -159,7 +159,7 @@ void TLSSocket::handshake(ref <timeoutHandler> toHandler) ret == GNUTLS_E_INTERRUPTED) { // Non-fatal error - platformDependant::getHandler()->wait(); + platform::getHandler()->wait(); } else { @@ -240,7 +240,7 @@ ssize_t TLSSocket::gnutlsPullFunc if (ret == 0) { // No data available yet - platformDependant::getHandler()->wait(); + platform::getHandler()->wait(); } else { |