aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Ldn/UserServiceCreator/LdnMitm/Proxy/ILdnSocket.cs
blob: 9427cc94427c14f67154225789b693deaf3a7791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Net;

namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator.LdnMitm.Proxy
{
    internal interface ILdnSocket : IDisposable
    {
        bool SendPacketAsync(EndPoint endpoint, byte[] buffer);
        bool Start();
        bool Stop();
    }
}