aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/Services/Bsd/BsdSocket.cs
blob: 9cde99478c6d8673fc5324b86c1696e193952893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
}