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