Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
8a0338bd
Commit
8a0338bd
authored
5 years ago
by
AndreyL ProductEngine
Browse files
Options
Downloads
Patches
Plain Diff
Backed out changeset: 3ea1714b65b8
parent
7ffe8d0a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llimprocessing.cpp
+28
-7
28 additions, 7 deletions
indra/newview/llimprocessing.cpp
with
28 additions
and
7 deletions
indra/newview/llimprocessing.cpp
+
28
−
7
View file @
8a0338bd
...
@@ -854,18 +854,39 @@ void LLIMProcessing::processNewMessage(LLUUID from_id,
...
@@ -854,18 +854,39 @@ void LLIMProcessing::processNewMessage(LLUUID from_id,
}
}
else
// IM_TASK_INVENTORY_OFFERED
else
// IM_TASK_INVENTORY_OFFERED
{
{
info
->
mType
=
(
LLAssetType
::
EType
)
binary_bucket
[
0
];
if
(
offline
==
IM_OFFLINE
&&
session_id
.
isNull
()
&&
aux_id
.
notNull
()
&&
binary_bucket_size
>
sizeof
(
S8
)
*
5
)
info
->
mObjectID
=
LLUUID
::
null
;
{
info
->
mFromObject
=
TRUE
;
// cap received offline message
}
std
::
string
str_bucket
=
ll_safe_string
((
char
*
)
binary_bucket
,
binary_bucket_size
);
typedef
boost
::
tokenizer
<
boost
::
char_separator
<
char
>
>
tokenizer
;
boost
::
char_separator
<
char
>
sep
(
"|"
,
""
,
boost
::
keep_empty_tokens
);
tokenizer
tokens
(
str_bucket
,
sep
);
tokenizer
::
iterator
iter
=
tokens
.
begin
();
info
->
mType
=
(
LLAssetType
::
EType
)(
atoi
((
*
(
iter
++
)).
c_str
()));
// Note There is more elements in 'tokens' ...
// In the case of an offline message, the transaction id will be in aux_id and th session_id will be null
info
->
mObjectID
=
LLUUID
::
null
;
// (conversely when online the transaction id is passed as session_id)
info
->
mFromObject
=
TRUE
;
info
->
mTransactionID
=
session_id
.
isNull
()
?
aux_id
:
session_id
;
}
else
{
if
(
sizeof
(
S8
)
!=
binary_bucket_size
)
{
LL_WARNS
(
"Messaging"
)
<<
"Malformed inventory offer from object"
<<
LL_ENDL
;
delete
info
;
break
;
}
info
->
mType
=
(
LLAssetType
::
EType
)
binary_bucket
[
0
];
info
->
mObjectID
=
LLUUID
::
null
;
info
->
mFromObject
=
TRUE
;
}
}
info
->
mIM
=
dialog
;
info
->
mIM
=
dialog
;
info
->
mFromID
=
from_id
;
info
->
mFromID
=
from_id
;
info
->
mFromGroup
=
from_group
;
info
->
mFromGroup
=
from_group
;
info
->
mTransactionID
=
session_id
;
info
->
mFolderID
=
gInventory
.
findCategoryUUIDForType
(
LLFolderType
::
assetTypeToFolderType
(
info
->
mType
));
info
->
mFolderID
=
gInventory
.
findCategoryUUIDForType
(
LLFolderType
::
assetTypeToFolderType
(
info
->
mType
));
info
->
mFromName
=
name
;
info
->
mFromName
=
name
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment