diff options
author | Diva Canto | 2009-12-31 14:59:26 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-31 14:59:26 -0800 |
commit | 0ce9be653d2194877cb972cbce261eecb0cd58a8 (patch) | |
tree | 6294c927ce714d140165bb32c1a2dbd337f25ea2 /OpenSim/Services/Interfaces/ILoginService.cs | |
parent | More progress on both the Simulation service and the Login service. Both stil... (diff) | |
download | opensim-SC_OLD-0ce9be653d2194877cb972cbce261eecb0cd58a8.zip opensim-SC_OLD-0ce9be653d2194877cb972cbce261eecb0cd58a8.tar.gz opensim-SC_OLD-0ce9be653d2194877cb972cbce261eecb0cd58a8.tar.bz2 opensim-SC_OLD-0ce9be653d2194877cb972cbce261eecb0cd58a8.tar.xz |
* Added the Login server handlers that were lost in yesterday's commit grief
* More beef to the LLLoginService
* Better design for handling local simulation service
Diffstat (limited to 'OpenSim/Services/Interfaces/ILoginService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/ILoginService.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/ILoginService.cs b/OpenSim/Services/Interfaces/ILoginService.cs index 5397b10..0f82de5 100644 --- a/OpenSim/Services/Interfaces/ILoginService.cs +++ b/OpenSim/Services/Interfaces/ILoginService.cs | |||
@@ -29,11 +29,14 @@ using System; | |||
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | 31 | ||
32 | using OpenMetaverse.StructuredData; | ||
33 | |||
32 | namespace OpenSim.Services.Interfaces | 34 | namespace OpenSim.Services.Interfaces |
33 | { | 35 | { |
34 | public abstract class LoginResponse | 36 | public abstract class LoginResponse |
35 | { | 37 | { |
36 | public abstract Hashtable ToHashtable(); | 38 | public abstract Hashtable ToHashtable(); |
39 | public abstract OSD ToOSDMap(); | ||
37 | } | 40 | } |
38 | 41 | ||
39 | public abstract class FailedLoginResponse : LoginResponse | 42 | public abstract class FailedLoginResponse : LoginResponse |