aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/tls/TLSSocket.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2006-10-11 14:52:41 +0000
committerVincent Richard <[email protected]>2006-10-11 14:52:41 +0000
commit0894c989596feb8d97d582e87cca021339cc26cd (patch)
tree75ac912b7b2355102a2c729e424aa504183fd66d /src/net/tls/TLSSocket.cpp
parentReissue EHLO after successful STARTTLS. (diff)
downloadvmime-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.cpp6
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
{