summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcachename.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage/llcachename.h')
-rw-r--r--indra/llmessage/llcachename.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/indra/llmessage/llcachename.h b/indra/llmessage/llcachename.h
index 879eb5fadb..dfa028c901 100644
--- a/indra/llmessage/llcachename.h
+++ b/indra/llmessage/llcachename.h
@@ -31,7 +31,9 @@
#ifndef LL_LLCACHENAME_H
#define LL_LLCACHENAME_H
-
+#include "llhttpclient.h"
+#include "llhost.h"
+#include "lluri.h"
class LLMessageSystem;
class LLHost;
class LLUUID;
@@ -97,10 +99,15 @@ public:
// This method needs to be called from time to time to send out
// requests.
void processPending();
-
+ void setAgentURL(const std::string& url);
+ void setGroupURL(const std::string& url);
+
// Expire entries created more than "secs" seconds ago.
void deleteEntriesOlderThan(S32 secs);
+ //send the information retrived from backbone
+ void sendAgentNames(const LLUUID& id, std::string& first, std::string& last);
+ void sendGroupNames(const LLUUID& id, std::string& name);
// Debugging
void dump(); // Dumps the contents of the cache
void dumpStats(); // Dumps the sizes of the cache and associated queues.
@@ -111,9 +118,8 @@ private:
class Impl;
Impl& impl;
-};
-
+};
extern LLCacheName* gCacheName;