AuthenticateSessionsRemote.cs 528 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Xml;
  6. using libsecondlife;
  7. using OpenSim.Framework.Types;
  8. using OpenSim.Framework;
  9. using Nwc.XmlRpc;
  10. namespace OpenSim
  11. {
  12. public class AuthenticateSessionsRemote : AuthenticateSessionsBase
  13. {
  14. public AuthenticateSessionsRemote()
  15. {
  16. }
  17. public XmlRpcResponse ExpectUser(XmlRpcRequest request)
  18. {
  19. return new XmlRpcResponse();
  20. }
  21. }
  22. }