diff options
author | root | 2013-09-07 17:57:53 +0200 |
---|---|---|
committer | root | 2013-09-07 17:57:53 +0200 |
commit | 66715a69a73d78c2da9b68b8776a02195bb2e953 (patch) | |
tree | 1508c0ce5ab13dd8538fd43d3a19ecc657ef9bff /OpenSim/Framework/GridInstantMessage.cs | |
parent | Add support for simple external CAPS texture services (diff) | |
download | opensim-SC-66715a69a73d78c2da9b68b8776a02195bb2e953.zip opensim-SC-66715a69a73d78c2da9b68b8776a02195bb2e953.tar.gz opensim-SC-66715a69a73d78c2da9b68b8776a02195bb2e953.tar.bz2 opensim-SC-66715a69a73d78c2da9b68b8776a02195bb2e953.tar.xz |
Add two argument constructor to GridInstantMessage
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/GridInstantMessage.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Framework/GridInstantMessage.cs b/OpenSim/Framework/GridInstantMessage.cs index 6ae0488..da3690c 100644 --- a/OpenSim/Framework/GridInstantMessage.cs +++ b/OpenSim/Framework/GridInstantMessage.cs | |||
@@ -53,6 +53,24 @@ namespace OpenSim.Framework | |||
53 | binaryBucket = new byte[0]; | 53 | binaryBucket = new byte[0]; |
54 | } | 54 | } |
55 | 55 | ||
56 | public GridInstantMessage(GridInstantMessage im, bool addTimestamp) | ||
57 | { | ||
58 | fromAgentID = im.fromAgentID; | ||
59 | fromAgentName = im.fromAgentName; | ||
60 | toAgentID = im.toAgentID; | ||
61 | dialog = im.dialog; | ||
62 | fromGroup = im.fromGroup; | ||
63 | message = im.message; | ||
64 | imSessionID = im.imSessionID; | ||
65 | offline = im.offline; | ||
66 | Position = im.Position; | ||
67 | binaryBucket = im.binaryBucket; | ||
68 | RegionID = im.RegionID; | ||
69 | |||
70 | if (addTimestamp) | ||
71 | timestamp = (uint)Util.UnixTimeSinceEpoch(); | ||
72 | } | ||
73 | |||
56 | public GridInstantMessage(IScene scene, UUID _fromAgentID, | 74 | public GridInstantMessage(IScene scene, UUID _fromAgentID, |
57 | string _fromAgentName, UUID _toAgentID, | 75 | string _fromAgentName, UUID _toAgentID, |
58 | byte _dialog, bool _fromGroup, string _message, | 76 | byte _dialog, bool _fromGroup, string _message, |