Esempio n. 1
0
LLCacheName::LLCacheName(LLMessageSystem* msg, const LLHost& upstream_host)
    : impl(* new Impl(msg))
{
    sCacheName["waiting"] = "(Loading...)";
    sCacheName["nobody"] = "(nobody)";
    sCacheName["none"] = "(none)";
    setUpstream(upstream_host);
}
Esempio n. 2
0
void LLAssetStorage::_init(LLMessageSystem *msg,
						   LLXferManager *xfer,
						   LLVFS *vfs,
						   const LLHost &upstream_host)
{
	mShutDown = FALSE;
	mMessageSys = msg;
	mXferManager = xfer;
	mVFS = vfs;

	setUpstream(upstream_host);
	msg->setHandlerFuncFast(_PREHASH_AssetUploadComplete, processUploadComplete, (void **)this);
}
Esempio n. 3
0
LLCacheName::LLCacheName(LLMessageSystem* msg, const LLHost& upstream_host)
	: impl(* new Impl(msg))
{
	setUpstream(upstream_host);
}