summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerassetstorage.h
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2017-03-20 16:04:02 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2017-03-20 16:04:02 -0400
commit17384ce6c43a9e07031d7deeea4ec9bbee76199c (patch)
treee9e2e385b610a5473e3223e12d1e71ea3f46d413 /indra/newview/llviewerassetstorage.h
parent6fb4bb4ed68026dcd23d88abeadcaa1cc8a1e893 (diff)
MAINT-7195 work (can't repro), removed UDP fetching path, handle more possible timing issues while connecting to region
Diffstat (limited to 'indra/newview/llviewerassetstorage.h')
-rw-r--r--indra/newview/llviewerassetstorage.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/indra/newview/llviewerassetstorage.h b/indra/newview/llviewerassetstorage.h
index 3ca8112601..2f3eaa15a7 100644
--- a/indra/newview/llviewerassetstorage.h
+++ b/indra/newview/llviewerassetstorage.h
@@ -73,13 +73,6 @@ protected:
BOOL duplicate,
BOOL is_priority);
- void queueRequestUDP(const LLUUID& uuid,
- LLAssetType::EType type,
- void (*callback) (LLVFS *vfs, const LLUUID&, LLAssetType::EType, void *, S32, LLExtStat),
- void *user_data,
- BOOL duplicate,
- BOOL is_priority);
-
void queueRequestHttp(const LLUUID& uuid,
LLAssetType::EType type,
void (*callback) (LLVFS *vfs, const LLUUID&, LLAssetType::EType, void *, S32, LLExtStat),
@@ -87,14 +80,17 @@ protected:
BOOL duplicate,
BOOL is_priority);
+ void capsRecvForRegion(const LLUUID& region_id, std::string pumpname);
+
void assetRequestCoro(LLViewerAssetRequest *req,
const LLUUID& uuid,
LLAssetType::EType atype,
void (*callback) (LLVFS *vfs, const LLUUID&, LLAssetType::EType, void *, S32, LLExtStat),
void *user_data);
- std::string getAssetURL(const LLUUID& uuid, LLAssetType::EType atype);
+ std::string getAssetURL(const std::string& cap_url, const LLUUID& uuid, LLAssetType::EType atype);
+ std::string mViewerAssetUrl;
};
#endif