aboutsummaryrefslogtreecommitdiffstats
path: root/src/platforms
diff options
context:
space:
mode:
Diffstat (limited to 'src/platforms')
-rw-r--r--src/platforms/posix/posixHandler.cpp4
-rw-r--r--src/platforms/posix/posixSocket.cpp2
-rw-r--r--src/platforms/windows/windowsHandler.cpp4
-rw-r--r--src/platforms/windows/windowsSocket.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/platforms/posix/posixHandler.cpp b/src/platforms/posix/posixHandler.cpp
index cd7f35fa..48d96984 100644
--- a/src/platforms/posix/posixHandler.cpp
+++ b/src/platforms/posix/posixHandler.cpp
@@ -166,14 +166,14 @@ const unsigned int posixHandler::getProcessId() const
#if VMIME_HAVE_MESSAGING_FEATURES
-vmime::messaging::socketFactory* posixHandler::getSocketFactory
+vmime::net::socketFactory* posixHandler::getSocketFactory
(const vmime::string& /* name */) const
{
return (m_socketFactory);
}
-vmime::messaging::timeoutHandlerFactory* posixHandler::getTimeoutHandlerFactory
+vmime::net::timeoutHandlerFactory* posixHandler::getTimeoutHandlerFactory
(const vmime::string& /* name */) const
{
// Not used by default
diff --git a/src/platforms/posix/posixSocket.cpp b/src/platforms/posix/posixSocket.cpp
index be346b2a..8a042950 100644
--- a/src/platforms/posix/posixSocket.cpp
+++ b/src/platforms/posix/posixSocket.cpp
@@ -172,7 +172,7 @@ void posixSocket::sendRaw(const char* buffer, const int count)
// posixSocketFactory
//
-ref <vmime::messaging::socket> posixSocketFactory::create()
+ref <vmime::net::socket> posixSocketFactory::create()
{
return vmime::create <posixSocket>();
}
diff --git a/src/platforms/windows/windowsHandler.cpp b/src/platforms/windows/windowsHandler.cpp
index d6f28037..19788642 100644
--- a/src/platforms/windows/windowsHandler.cpp
+++ b/src/platforms/windows/windowsHandler.cpp
@@ -233,14 +233,14 @@ const unsigned int windowsHandler::getProcessId() const
#if VMIME_HAVE_MESSAGING_FEATURES
-vmime::messaging::socketFactory* windowsHandler::getSocketFactory
+vmime::net::socketFactory* windowsHandler::getSocketFactory
(const vmime::string& /* name */) const
{
return (m_socketFactory);
}
-vmime::messaging::timeoutHandlerFactory* windowsHandler::getTimeoutHandlerFactory
+vmime::net::timeoutHandlerFactory* windowsHandler::getTimeoutHandlerFactory
(const vmime::string& /* name */) const
{
// Not used by default
diff --git a/src/platforms/windows/windowsSocket.cpp b/src/platforms/windows/windowsSocket.cpp
index b325eedd..bedfb07c 100644
--- a/src/platforms/windows/windowsSocket.cpp
+++ b/src/platforms/windows/windowsSocket.cpp
@@ -167,7 +167,7 @@ void windowsSocket::sendRaw(const char* buffer, const int count)
// posixSocketFactory
//
-ref <vmime::messaging::socket> windowsSocketFactory::create()
+ref <vmime::net::socket> windowsSocketFactory::create()
{
return vmime::create <windowsSocket>();
}