summaryrefslogtreecommitdiff
path: root/indra/llmessage/llmail.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-02-23 00:48:50 +0000
committerJames Cook <james@lindenlab.com>2007-02-23 00:48:50 +0000
commitbb2b96d6c34974c9bf4a57a277e6ff182e8d137d (patch)
treeb2679790400d673cbe927488f988bcd00b6d4e8a /indra/llmessage/llmail.cpp
parentb7b4135e5507fd7be5aab24d5de64675dd28caca (diff)
Ported dataserver connectInventory() inventory host name hint code from loadstone-inventory-host-3 which should dramatically reduces read queries against the user table for IM processing. Reviewed by Tess.
Diffstat (limited to 'indra/llmessage/llmail.cpp')
-rw-r--r--indra/llmessage/llmail.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llmessage/llmail.cpp b/indra/llmessage/llmail.cpp
index 5417976006..1e0eb7fe3a 100644
--- a/indra/llmessage/llmail.cpp
+++ b/indra/llmessage/llmail.cpp
@@ -308,6 +308,9 @@ std::string LLMail::encryptIMEmailAddress(const LLUUID& from_agent_id,
const U8* secret,
size_t secret_size)
{
+#if LL_WINDOWS
+ return "blowfish-not-supported-on-windows";
+#else
size_t data_size = 4 + UUID_BYTES + UUID_BYTES;
// Convert input data into a binary blob
std::vector<U8> data;
@@ -351,4 +354,5 @@ std::string LLMail::encryptIMEmailAddress(const LLUUID& from_agent_id,
delete [] encrypted;
return address;
+#endif
}