View of /trunk/ModularRex/RexNetwork/RexLogin/RexLocalLoginService.cs
Parent Directory
|
Revision Log
Revision 4 -
(download)
(annotate)
Tue Sep 30 15:04:27 2008 UTC (4 years, 7 months ago) by afrisby
File size: 1186 byte(s)
Tue Sep 30 15:04:27 2008 UTC (4 years, 7 months ago) by afrisby
File size: 1186 byte(s)
* Major refactoring of RexClientView * Added preliminary work on LoginMethod. (nb, not complete)
using System.Collections;
using Nwc.XmlRpc;
using OpenSim.Framework;
using OpenSim.Framework.Communications;
using OpenSim.Framework.Communications.Cache;
using OpenSim.Region.Communications.Local;
namespace ModularRex.RexNetwork.RexLogin
{
class RexLocalLoginService : LocalLoginService
{
public RexLocalLoginService(UserManagerBase userManager, string welcomeMess, IInterServiceInventoryServices interServiceInventoryService, LocalBackEndServices gridService, NetworkServersInfo serversInfo, bool authenticate, LibraryRootFolder libraryRootFolder) : base(userManager, welcomeMess, interServiceInventoryService, gridService, serversInfo, authenticate, libraryRootFolder)
{
}
public override XmlRpcResponse XmlRpcLoginMethod(XmlRpcRequest request)
{
XmlRpcResponse retVal = base.XmlRpcLoginMethod(request);
Hashtable response = (Hashtable)retVal.Value;
response["rex"] = "running rex mode";
response["message"] = "Connected to ModularRex Extensions";
//response["sim_port"] = 9001; // RexPort
return retVal;
}
}
}
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

