2018-10-17 14:15:50 -03:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-07-18 21:06:45 -04:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.NetworkInformation;
|
2018-08-16 20:47:36 -03:00
|
|
|
using System.Net.Sockets;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
2018-02-28 00:31:52 -03:00
|
|
|
{
|
2018-03-19 15:58:46 -03:00
|
|
|
class IGeneralService : IpcService
|
2018-02-28 00:31:52 -03:00
|
|
|
{
|
2019-07-11 21:13:43 -04:00
|
|
|
public IGeneralService() { }
|
2018-02-28 00:31:52 -03:00
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(4)]
|
|
|
|
// CreateRequest(u32) -> object<nn::nifm::detail::IRequest>
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode CreateRequest(ServiceCtx context)
|
2018-02-28 00:31:52 -03:00
|
|
|
{
|
2018-12-06 08:16:24 -03:00
|
|
|
int unknown = context.RequestData.ReadInt32();
|
2018-02-28 00:31:52 -03:00
|
|
|
|
2018-12-06 08:16:24 -03:00
|
|
|
MakeObject(context, new IRequest(context.Device.System));
|
2018-02-28 00:31:52 -03:00
|
|
|
|
2019-01-10 21:11:46 -03:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm);
|
2018-02-28 00:31:52 -03:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-02-28 00:31:52 -03:00
|
|
|
}
|
2018-07-18 21:06:45 -04:00
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
[Command(12)]
|
|
|
|
// GetCurrentIpAddress() -> nn::nifm::IpV4Address
|
2019-07-14 15:04:38 -04:00
|
|
|
public ResultCode GetCurrentIpAddress(ServiceCtx context)
|
2018-07-18 21:06:45 -04:00
|
|
|
{
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
{
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.NoInternetConnection;
|
2018-07-18 21:06:45 -04:00
|
|
|
}
|
|
|
|
|
2018-12-06 08:16:24 -03:00
|
|
|
IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
|
2018-08-16 20:47:36 -03:00
|
|
|
|
2018-12-06 08:16:24 -03:00
|
|
|
IPAddress address = host.AddressList.FirstOrDefault(a => a.AddressFamily == AddressFamily.InterNetwork);
|
2018-07-18 21:06:45 -04:00
|
|
|
|
2018-12-06 08:16:24 -03:00
|
|
|
context.ResponseData.Write(BitConverter.ToUInt32(address.GetAddressBytes()));
|
2018-07-18 21:06:45 -04:00
|
|
|
|
2018-12-06 08:16:24 -03:00
|
|
|
Logger.PrintInfo(LogClass.ServiceNifm, $"Console's local IP is \"{address}\".");
|
2018-07-18 21:06:45 -04:00
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
return ResultCode.Success;
|
2018-07-18 21:06:45 -04:00
|
|
|
}
|
2018-02-28 00:31:52 -03:00
|
|
|
}
|
2019-07-11 21:13:43 -04:00
|
|
|
}
|