summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerregion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewerregion.cpp')
-rw-r--r--indra/newview/llviewerregion.cpp26
1 files changed, 25 insertions, 1 deletions
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 5235410156..262c7d8ed7 100644
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1260,8 +1260,19 @@ void LLViewerRegion::setSeedCapability(const std::string& url)
LLSD capabilityNames = LLSD::emptyArray();
capabilityNames.append("MapLayer");
capabilityNames.append("MapLayerGod");
- capabilityNames.append("NewAgentInventory");
+ capabilityNames.append("NewFileAgentInventory");
capabilityNames.append("EventQueueGet");
+ capabilityNames.append("UpdateGestureAgentInventory");
+ capabilityNames.append("UpdateNotecardAgentInventory");
+ capabilityNames.append("UpdateScriptAgentInventory");
+ capabilityNames.append("UpdateGestureTaskInventory");
+ capabilityNames.append("UpdateNotecardTaskInventory");
+ capabilityNames.append("UpdateScriptTaskInventory");
+ capabilityNames.append("SendPostcard");
+ capabilityNames.append("ViewerStartAuction");
+ capabilityNames.append("ParcelGodReserveForNewbie");
+ capabilityNames.append("SendUserReport");
+ capabilityNames.append("SendUserReportWithScreenshot");
capabilityNames.append("RequestTextureDownload");
LLHTTPClient::post(url, capabilityNames, BaseCapabilitiesComplete::build(this));
}
@@ -1304,3 +1315,16 @@ std::string LLViewerRegion::getCapability(const std::string& name) const
return iter->second;
}
+void LLViewerRegion::logActiveCapabilities() const
+{
+ CapabilityMap::const_iterator iter;
+ for (iter = mCapabilities.begin(); iter != mCapabilities.end(); iter++)
+ {
+ if (!iter->second.empty())
+ {
+ // llinfos << "Active capability is " << iter->first << llendl;
+ llinfos << iter->first << " URL is " << iter->second << llendl;
+ }
+ }
+}
+