diff options
author | Justin Clarke Casey | 2009-03-19 19:21:17 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-19 19:21:17 +0000 |
commit | 8f1844665ba9f1fa1ee7e16ed137d112497473b7 (patch) | |
tree | fe1dbaaee66ea7620b780de3918fef8fcb26ca72 /OpenSim/ApplicationPlugins | |
parent | * refactor: Create IHttpServer interface instead of accessing BaseHttpServer ... (diff) | |
download | opensim-SC_OLD-8f1844665ba9f1fa1ee7e16ed137d112497473b7.zip opensim-SC_OLD-8f1844665ba9f1fa1ee7e16ed137d112497473b7.tar.gz opensim-SC_OLD-8f1844665ba9f1fa1ee7e16ed137d112497473b7.tar.bz2 opensim-SC_OLD-8f1844665ba9f1fa1ee7e16ed137d112497473b7.tar.xz |
* Group OpenSim.Framework.Servers interfaces together
Diffstat (limited to 'OpenSim/ApplicationPlugins')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs | 2 | ||||
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/RestPlugin.cs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs index 81801df..f0a5308 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs | |||
@@ -29,6 +29,7 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | 30 | using System.Reflection; |
31 | using OpenSim.Framework.Servers; | 31 | using OpenSim.Framework.Servers; |
32 | using OpenSim.Framework.Servers.Interfaces; | ||
32 | 33 | ||
33 | namespace OpenSim.ApplicationPlugins.Rest.Inventory | 34 | namespace OpenSim.ApplicationPlugins.Rest.Inventory |
34 | { | 35 | { |
@@ -51,7 +52,6 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory | |||
51 | 52 | ||
52 | public class RestHandler : RestPlugin, IRestHandler, IHttpAgentHandler | 53 | public class RestHandler : RestPlugin, IRestHandler, IHttpAgentHandler |
53 | { | 54 | { |
54 | |||
55 | // Handler tables: both stream and REST are supported. The path handlers and their | 55 | // Handler tables: both stream and REST are supported. The path handlers and their |
56 | // respective allocators are stored in separate tables. | 56 | // respective allocators are stored in separate tables. |
57 | 57 | ||
diff --git a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs index f3c3016..727ccfe 100644 --- a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs +++ b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs | |||
@@ -35,6 +35,7 @@ using Nini.Config; | |||
35 | using OpenMetaverse; | 35 | using OpenMetaverse; |
36 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
37 | using OpenSim.Framework.Servers; | 37 | using OpenSim.Framework.Servers; |
38 | using OpenSim.Framework.Servers.Interfaces; | ||
38 | 39 | ||
39 | namespace OpenSim.ApplicationPlugins.Rest | 40 | namespace OpenSim.ApplicationPlugins.Rest |
40 | { | 41 | { |