A lot more beef on the login service. The LLLoginResponse is a MONSTER! Almost done...

This commit is contained in:
Diva Canto
2009-12-31 17:18:55 -08:00
parent 0ce9be653d
commit 130c80efe0
5 changed files with 303 additions and 24 deletions

View File

@@ -28,6 +28,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Net;
using OpenMetaverse.StructuredData;
@@ -45,7 +46,7 @@ namespace OpenSim.Services.Interfaces
public interface ILoginService
{
LoginResponse Login(string firstName, string lastName, string passwd, string startLocation);
LoginResponse Login(string firstName, string lastName, string passwd, string startLocation, IPEndPoint clientIP);
}