mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 00:20:06 +02:00
18 lines
307 B
C#
18 lines
307 B
C#
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;
|
|
}
|
|
} |