mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-24 23:47:10 +02:00
Rename services with the official interface names
This commit is contained in:
parent
f15b1c76a1
commit
69e32e5bbc
29 changed files with 236 additions and 196 deletions
18
Ryujinx.Core/OsHle/Services/Bsd/BsdSocket.cs
Normal file
18
Ryujinx.Core/OsHle/Services/Bsd/BsdSocket.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.Services.Bsd
|
||||
{
|
||||
class BsdSocket
|
||||
{
|
||||
public int Family;
|
||||
public int Type;
|
||||
public int Protocol;
|
||||
|
||||
public IPAddress IpAddress;
|
||||
|
||||
public IPEndPoint RemoteEP;
|
||||
|
||||
public Socket Handle;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue