BsdSocket.cs 213 B

12345678910111213
  1. using System.Net.Sockets;
  2. namespace Ryujinx.HLE.HOS.Services.Bsd
  3. {
  4. class BsdSocket
  5. {
  6. public int Family;
  7. public int Type;
  8. public int Protocol;
  9. public Socket Handle;
  10. }
  11. }