2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-07-19 01:06:45 +00:00
|
|
|
using System;
|
2018-02-28 03:31:52 +00:00
|
|
|
using System.Collections.Generic;
|
2018-07-19 01:06:45 +00:00
|
|
|
using System.Linq;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.NetworkInformation;
|
2018-08-16 23:47:36 +00:00
|
|
|
using System.Net.Sockets;
|
|
|
|
|
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IGeneralService : IpcService
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
public IGeneralService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-07-19 01:06:45 +00:00
|
|
|
{ 4, CreateRequest },
|
|
|
|
{ 12, GetCurrentIpAddress }
|
2018-02-28 03:31:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public long CreateRequest(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
int Unknown = Context.RequestData.ReadInt32();
|
|
|
|
|
2018-09-18 23:36:43 +00:00
|
|
|
MakeObject(Context, new IRequest(Context.Device.System));
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-19 01:06:45 +00:00
|
|
|
|
|
|
|
public long GetCurrentIpAddress(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
return MakeError(ErrorModule.Nifm, NifmErr.NoInternetConnection);
|
2018-07-19 01:06:45 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
IPHostEntry Host = Dns.GetHostEntry(Dns.GetHostName());
|
|
|
|
|
|
|
|
IPAddress Address = Host.AddressList.FirstOrDefault(A => A.AddressFamily == AddressFamily.InterNetwork);
|
2018-07-19 01:06:45 +00:00
|
|
|
|
|
|
|
Context.ResponseData.Write(BitConverter.ToUInt32(Address.GetAddressBytes()));
|
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintInfo(LogClass.ServiceNifm, $"Console's local IP is \"{Address}\".");
|
2018-07-19 01:06:45 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
2018-07-19 01:06:45 +00:00
|
|
|
}
|