diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 3 | ||||
-rw-r--r-- | OpenSim/Framework/RegionBanListItem.cs | 20 | ||||
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 24 |
3 files changed, 47 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index e4fac1f..10f8276 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -970,6 +970,9 @@ namespace OpenSim.Framework | |||
970 | 970 | ||
971 | 971 | ||
972 | void sendEstateManagersList(LLUUID invoice, LLUUID[] EstateManagers, uint estateID); | 972 | void sendEstateManagersList(LLUUID invoice, LLUUID[] EstateManagers, uint estateID); |
973 | |||
974 | void sendBannedUserList(LLUUID invoice, List<RegionBanListItem> banlist, uint estateID); | ||
975 | |||
973 | void sendRegionInfoToEstateMenu(RegionInfoForEstateMenuArgs args); | 976 | void sendRegionInfoToEstateMenu(RegionInfoForEstateMenuArgs args); |
974 | void sendEstateCovenantInformation(); | 977 | void sendEstateCovenantInformation(); |
975 | void sendDetailedEstateData(LLUUID invoice,string estateName, uint estateID); | 978 | void sendDetailedEstateData(LLUUID invoice,string estateName, uint estateID); |
diff --git a/OpenSim/Framework/RegionBanListItem.cs b/OpenSim/Framework/RegionBanListItem.cs new file mode 100644 index 0000000..60383fb --- /dev/null +++ b/OpenSim/Framework/RegionBanListItem.cs | |||
@@ -0,0 +1,20 @@ | |||
1 | using libsecondlife; | ||
2 | using System; | ||
3 | using System.Collections.Generic; | ||
4 | using System.Text; | ||
5 | |||
6 | namespace OpenSim.Framework | ||
7 | { | ||
8 | public class RegionBanListItem | ||
9 | { | ||
10 | public LLUUID regionUUID = LLUUID.Zero; | ||
11 | public LLUUID bannedUUID = LLUUID.Zero; | ||
12 | public string bannedIP = string.Empty; | ||
13 | public string bannedIPHostMask = string.Empty; | ||
14 | |||
15 | public RegionBanListItem() | ||
16 | { | ||
17 | |||
18 | } | ||
19 | } | ||
20 | } | ||
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 979ced5..f10f25d 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
29 | using System.Net; | 30 | using System.Net; |
30 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
31 | using System.Xml; | 32 | using System.Xml; |
@@ -210,6 +211,7 @@ namespace OpenSim.Framework | |||
210 | 211 | ||
211 | public LLUUID lastMapUUID = LLUUID.Zero; | 212 | public LLUUID lastMapUUID = LLUUID.Zero; |
212 | public string lastMapRefresh = "0"; | 213 | public string lastMapRefresh = "0"; |
214 | public List<RegionBanListItem> regionBanlist = new List<RegionBanListItem>(); | ||
213 | 215 | ||
214 | // Apparently, we're applying the same estatesettings regardless of whether it's local or remote. | 216 | // Apparently, we're applying the same estatesettings regardless of whether it's local or remote. |
215 | 217 | ||
@@ -346,6 +348,28 @@ namespace OpenSim.Framework | |||
346 | configMember.performConfigurationRetrieve(); | 348 | configMember.performConfigurationRetrieve(); |
347 | } | 349 | } |
348 | 350 | ||
351 | public bool CheckIfUserBanned(LLUUID user) | ||
352 | { | ||
353 | |||
354 | RegionBanListItem[] bl = regionBanlist.ToArray(); | ||
355 | |||
356 | bool banned = false; | ||
357 | |||
358 | for (int i = 0; i < bl.Length; i++) | ||
359 | { | ||
360 | if (bl[i] == null) | ||
361 | continue; | ||
362 | |||
363 | if (bl[i].bannedUUID == user) | ||
364 | { | ||
365 | banned = true; | ||
366 | break; | ||
367 | } | ||
368 | } | ||
369 | |||
370 | return banned; | ||
371 | } | ||
372 | |||
349 | public void loadConfigurationOptionsFromMe() | 373 | public void loadConfigurationOptionsFromMe() |
350 | { | 374 | { |
351 | configMember.addConfigurationOption("sim_UUID", ConfigurationOption.ConfigurationTypes.TYPE_LLUUID_NULL_FREE, | 375 | configMember.addConfigurationOption("sim_UUID", ConfigurationOption.ConfigurationTypes.TYPE_LLUUID_NULL_FREE, |