aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Bsd/BsdSocket.cs
blob: 2786da1364247b0d76626a7668dc9b728627f338 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Net.Sockets;

namespace Ryujinx.HLE.HOS.Services.Bsd
{
    class BsdSocket
    {
        public int Family;
        public int Type;
        public int Protocol;

        public Socket Handle;
    }
}