BsdSocket.cs 307 B

123456789101112131415161718
  1. using System.Net;
  2. using System.Net.Sockets;
  3. namespace Ryujinx.HLE.OsHle.Services.Bsd
  4. {
  5. class BsdSocket
  6. {
  7. public int Family;
  8. public int Type;
  9. public int Protocol;
  10. public IPAddress IpAddress;
  11. public IPEndPoint RemoteEP;
  12. public Socket Handle;
  13. }
  14. }