2018-04-06 00:01:52 -04:00
|
|
|
using System.Net;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE.OsHle.Services.Bsd
|
2018-04-06 00:01:52 -04:00
|
|
|
{
|
|
|
|
class BsdSocket
|
|
|
|
{
|
|
|
|
public int Family;
|
|
|
|
public int Type;
|
|
|
|
public int Protocol;
|
|
|
|
|
|
|
|
public IPAddress IpAddress;
|
|
|
|
|
|
|
|
public IPEndPoint RemoteEP;
|
|
|
|
|
|
|
|
public Socket Handle;
|
|
|
|
}
|
|
|
|
}
|