aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/ILoginService.cs
diff options
context:
space:
mode:
authorDiva Canto2009-12-31 17:18:55 -0800
committerDiva Canto2009-12-31 17:18:55 -0800
commit130c80efe004fa06808cc639ad8e2ee31c35744b (patch)
tree7ca8b57f70c36672ed06851f1f0efd0c36096c20 /OpenSim/Services/Interfaces/ILoginService.cs
parent* Added the Login server handlers that were lost in yesterday's commit grief (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Services/Interfaces/ILoginService.cs3
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 @@
28using System; 28using System;
29using System.Collections; 29using System.Collections;
30using System.Collections.Generic; 30using System.Collections.Generic;
31using System.Net;
31 32
32using OpenMetaverse.StructuredData; 33using 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