diff options
author | Oren Hurvitz | 2013-10-29 16:03:58 +0200 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-01-16 00:16:33 +0000 |
commit | 46c2791fe2f9ea92535d3933602e24dcba8f96f9 (patch) | |
tree | f57849d8fe1568a7ce49aceda182f2d81e885f70 /OpenSim/Data/IOfflineIMData.cs | |
parent | Fixed offline IM (diff) | |
download | opensim-SC_OLD-46c2791fe2f9ea92535d3933602e24dcba8f96f9.zip opensim-SC_OLD-46c2791fe2f9ea92535d3933602e24dcba8f96f9.tar.gz opensim-SC_OLD-46c2791fe2f9ea92535d3933602e24dcba8f96f9.tar.bz2 opensim-SC_OLD-46c2791fe2f9ea92535d3933602e24dcba8f96f9.tar.xz |
In the offline message table, store the sender.
This data is useful for preventing abuse (e.g., someone who sends too many messages), or for deleting message if their sender has been deleted.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/IOfflineIMData.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Data/IOfflineIMData.cs b/OpenSim/Data/IOfflineIMData.cs index e780304..58501a3 100644 --- a/OpenSim/Data/IOfflineIMData.cs +++ b/OpenSim/Data/IOfflineIMData.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) Contributors, http://opensimulator.org/ | 2 | * Copyright (c) Contributors, http://opensimulator.org/ |
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | 3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. |
4 | * | 4 | * |
@@ -34,6 +34,7 @@ namespace OpenSim.Data | |||
34 | public class OfflineIMData | 34 | public class OfflineIMData |
35 | { | 35 | { |
36 | public UUID PrincipalID; | 36 | public UUID PrincipalID; |
37 | public UUID FromID; | ||
37 | public Dictionary<string, string> Data; | 38 | public Dictionary<string, string> Data; |
38 | } | 39 | } |
39 | 40 | ||