diff options
| author | Vincent Richard <[email protected]> | 2005-09-17 09:08:45 +0000 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2005-09-17 09:08:45 +0000 |
| commit | 0edaa87860dbfd4871c597a9f2fbec07fca67ed6 (patch) | |
| tree | 0babae1fdc77724b92be66d90a03e0891dc8d0b8 /src/net/serviceFactory.cpp | |
| parent | Input buffer size. (diff) | |
| download | vmime-0edaa87860dbfd4871c597a9f2fbec07fca67ed6.tar.gz vmime-0edaa87860dbfd4871c597a9f2fbec07fca67ed6.zip | |
SASL authentication.
Diffstat (limited to 'src/net/serviceFactory.cpp')
| -rw-r--r-- | src/net/serviceFactory.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/serviceFactory.cpp b/src/net/serviceFactory.cpp index 43697cc8..f4b39925 100644 --- a/src/net/serviceFactory.cpp +++ b/src/net/serviceFactory.cpp @@ -48,14 +48,16 @@ serviceFactory* serviceFactory::getInstance() ref <service> serviceFactory::create - (ref <session> sess, const string& protocol, ref <authenticator> auth) + (ref <session> sess, const string& protocol, + ref <security::authenticator> auth) { return (getServiceByProtocol(protocol)->create(sess, auth)); } ref <service> serviceFactory::create - (ref <session> sess, const utility::url& u, ref <authenticator> auth) + (ref <session> sess, const utility::url& u, + ref <security::authenticator> auth) { ref <service> serv = create(sess, u.getProtocol(), auth); |
