aboutsummaryrefslogtreecommitdiffstats
path: root/src/messaging/serviceFactory.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-04-14 11:27:49 +0000
committerVincent Richard <[email protected]>2005-04-14 11:27:49 +0000
commit34595491817bd3d062b05fe0d2bfd4289410ab51 (patch)
treede05c249d6e43a1b89c36ef95bd6f62743b9ea79 /src/messaging/serviceFactory.cpp
parentImplemented comparison operators. (diff)
downloadvmime-34595491817bd3d062b05fe0d2bfd4289410ab51.tar.gz
vmime-34595491817bd3d062b05fe0d2bfd4289410ab51.zip
Moved 'url' and 'urlUtils' classes to 'utility' namespace.
Diffstat (limited to 'src/messaging/serviceFactory.cpp')
-rw-r--r--src/messaging/serviceFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messaging/serviceFactory.cpp b/src/messaging/serviceFactory.cpp
index ea7166ba..ea1752dd 100644
--- a/src/messaging/serviceFactory.cpp
+++ b/src/messaging/serviceFactory.cpp
@@ -60,13 +60,13 @@ service* serviceFactory::create
service* serviceFactory::create
- (session* sess, const url& u, authenticator* auth)
+ (session* sess, const utility::url& u, authenticator* auth)
{
service* serv = create(sess, u.getProtocol(), auth);
sess->getProperties()[serv->getInfos().getPropertyPrefix() + "server.address"] = u.getHost();
- if (u.getPort() != url::UNSPECIFIED_PORT)
+ if (u.getPort() != utility::url::UNSPECIFIED_PORT)
sess->getProperties()[serv->getInfos().getPropertyPrefix() + "server.port"] = u.getPort();
// Path portion of the URL is used to point a specific folder (empty = root).