1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 11:06:47 -06:00

18 lines
307 B
C#
Raw Normal View History

using System.Net;
using System.Net.Sockets;
namespace Ryujinx.HLE.OsHle.Services.Bsd
{
class BsdSocket
{
public int Family;
public int Type;
public int Protocol;
public IPAddress IpAddress;
public IPEndPoint RemoteEP;
public Socket Handle;
}
}