mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
18 lines
308 B
C#
18 lines
308 B
C#
|
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;
|
||
|
}
|
||
|
}
|