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