diff options
author | Diva Canto | 2009-12-31 17:18:55 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-31 17:18:55 -0800 |
commit | 130c80efe004fa06808cc639ad8e2ee31c35744b (patch) | |
tree | 7ca8b57f70c36672ed06851f1f0efd0c36096c20 /OpenSim/Services/Interfaces/ILoginService.cs | |
parent | * Added the Login server handlers that were lost in yesterday's commit grief (diff) | |
download | opensim-SC_OLD-130c80efe004fa06808cc639ad8e2ee31c35744b.zip opensim-SC_OLD-130c80efe004fa06808cc639ad8e2ee31c35744b.tar.gz opensim-SC_OLD-130c80efe004fa06808cc639ad8e2ee31c35744b.tar.bz2 opensim-SC_OLD-130c80efe004fa06808cc639ad8e2ee31c35744b.tar.xz |
A lot more beef on the login service. The LLLoginResponse is a MONSTER! Almost done...
Diffstat (limited to 'OpenSim/Services/Interfaces/ILoginService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/ILoginService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/ILoginService.cs b/OpenSim/Services/Interfaces/ILoginService.cs index 0f82de5..24bf342 100644 --- a/OpenSim/Services/Interfaces/ILoginService.cs +++ b/OpenSim/Services/Interfaces/ILoginService.cs | |||
@@ -28,6 +28,7 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections; | 29 | using System.Collections; |
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Net; | ||
31 | 32 | ||
32 | using OpenMetaverse.StructuredData; | 33 | using OpenMetaverse.StructuredData; |
33 | 34 | ||
@@ -45,7 +46,7 @@ namespace OpenSim.Services.Interfaces | |||
45 | 46 | ||
46 | public interface ILoginService | 47 | public interface ILoginService |
47 | { | 48 | { |
48 | LoginResponse Login(string firstName, string lastName, string passwd, string startLocation); | 49 | LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, IPEndPoint clientIP); |
49 | } | 50 | } |
50 | 51 | ||
51 | 52 | ||