mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 00:27:58 +02:00
18 lines
308 B
C#
18 lines
308 B
C#
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
namespace Ryujinx.Core.OsHle.Services.Bsd
|
|
{
|
|
class BsdSocket
|
|
{
|
|
public int Family;
|
|
public int Type;
|
|
public int Protocol;
|
|
|
|
public IPAddress IpAddress;
|
|
|
|
public IPEndPoint RemoteEP;
|
|
|
|
public Socket Handle;
|
|
}
|
|
} |