aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/IClientNetworkServer.cs
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-03 21:44:39 +1000
committerDavid Walter Seikel2016-11-03 21:44:39 +1000
commit134f86e8d5c414409631b25b8c6f0ee45fbd8631 (patch)
tree216b89d3fb89acfb81be1e440c25c41ab09fa96d /OpenSim/Region/ClientStack/IClientNetworkServer.cs
parentMore changing to production grid. Double oops. (diff)
downloadopensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.zip
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.gz
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.bz2
opensim-SC_OLD-134f86e8d5c414409631b25b8c6f0ee45fbd8631.tar.xz
Initial update to OpenSim 0.8.2.1 source code.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Interfaces/IBansService.cs (renamed from OpenSim/Region/ClientStack/IClientNetworkServer.cs)32
1 files changed, 16 insertions, 16 deletions
diff --git a/OpenSim/Region/ClientStack/IClientNetworkServer.cs b/OpenSim/Services/Interfaces/IBansService.cs
index 54a441b..8fd3521 100644
--- a/OpenSim/Region/ClientStack/IClientNetworkServer.cs
+++ b/OpenSim/Services/Interfaces/IBansService.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 *
@@ -24,25 +24,25 @@
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27using System;
28using System.Collections.Generic;
27 29
28using System.Net;
29using System.Net.Sockets;
30using Nini.Config;
31using OpenSim.Framework; 30using OpenSim.Framework;
31using OpenMetaverse;
32 32
33namespace OpenSim.Region.ClientStack 33namespace OpenSim.Services.Interfaces
34{ 34{
35 public interface IClientNetworkServer 35 public interface IBansService
36 { 36 {
37 void Initialise( 37 /// <summary>
38 IPAddress _listenIP, ref uint port, int proxyPortOffsetParm, bool allow_alternate_port, IConfigSource configSource, 38 /// Are any of the given arguments banned from the grid?
39 AgentCircuitManager authenticateClass); 39 /// </summary>
40 40 /// <param name="userID"></param>
41 void NetworkStop(); 41 /// <param name="ip"></param>
42 bool HandlesRegion(Location x); 42 /// <param name="id0"></param>
43 void AddScene(IScene x); 43 /// <param name="origin"></param>
44 44 /// <returns></returns>
45 void Start(); 45 bool IsBanned(string userID, string ip, string id0, string origin);
46 void Stop();
47 } 46 }
47
48} 48}