diff options
Diffstat (limited to 'Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs')
| -rw-r--r-- | Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs b/Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs new file mode 100644 index 00000000..9cde9947 --- /dev/null +++ b/Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs @@ -0,0 +1,18 @@ +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; + } +}
\ No newline at end of file |
