diff options
Diffstat (limited to 'OpenSim/ApplicationPlugins/RemoteController')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 5063375..d3fe0e0 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -54,6 +54,19 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
54 | private BaseHttpServer m_httpd; | 54 | private BaseHttpServer m_httpd; |
55 | private string requiredPassword = String.Empty; | 55 | private string requiredPassword = String.Empty; |
56 | 56 | ||
57 | // TODO: required by IPlugin, but likely not at all right | ||
58 | string m_name = "RemoteAdminPlugin"; | ||
59 | string m_version = "0.0"; | ||
60 | |||
61 | public string Version { get { return m_version; } } | ||
62 | public string Name { get { return m_name; } } | ||
63 | |||
64 | public void Initialise() | ||
65 | { | ||
66 | m_log.Info("[RADMIN]: " + Name + " cannot be default-initialized!"); | ||
67 | throw new PluginNotInitialisedException (Name); | ||
68 | } | ||
69 | |||
57 | public void Initialise(OpenSimBase openSim) | 70 | public void Initialise(OpenSimBase openSim) |
58 | { | 71 | { |
59 | try | 72 | try |
@@ -607,8 +620,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
607 | return response; | 620 | return response; |
608 | } | 621 | } |
609 | 622 | ||
610 | public void Close() | 623 | public void Dispose() |
611 | { | 624 | { |
612 | } | 625 | } |
613 | } | 626 | } |
614 | } \ No newline at end of file | 627 | } |