diff options
author | Vincent Richard <[email protected]> | 2005-10-03 21:29:04 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-10-03 21:29:04 +0000 |
commit | 7d2d25da3eb891a70ec5dfd3b077b0e130571472 (patch) | |
tree | 44b1930480276fe83b6f94ecda308e5a9ceb3162 /src/net/serviceInfos.cpp | |
parent | Reduced waiting time. (diff) | |
download | vmime-7d2d25da3eb891a70ec5dfd3b077b0e130571472.tar.gz vmime-7d2d25da3eb891a70ec5dfd3b077b0e130571472.zip |
Added TLS/SSL support.
Diffstat (limited to 'src/net/serviceInfos.cpp')
-rw-r--r-- | src/net/serviceInfos.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/serviceInfos.cpp b/src/net/serviceInfos.cpp index 68d78c73..306c1ec3 100644 --- a/src/net/serviceInfos.cpp +++ b/src/net/serviceInfos.cpp @@ -46,6 +46,16 @@ const serviceInfos::property serviceInfos::property::AUTH_PASSWORD const serviceInfos::property serviceInfos::property::TIMEOUT_FACTORY ("timeout.factory", serviceInfos::property::TYPE_STRING); +#if VMIME_HAVE_TLS_SUPPORT + +const serviceInfos::property serviceInfos::property::CONNECTION_TLS + ("connection.tls", serviceInfos::property::TYPE_BOOL, "false"); + +const serviceInfos::property serviceInfos::property::CONNECTION_TLS_REQUIRED + ("connection.tls.required", serviceInfos::property::TYPE_BOOL, "false"); + +#endif // VMIME_HAVE_TLS_SUPPORT + // serviceInfos |