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