using System.Net.Sockets; namespace GServer.Common.Networking; public interface ITcpGameClient { /// /// Connects to the game server. /// /// Game server host. /// Game server port. Task ConnectAsync(string host, int port); } public class TcpGameClient : ITcpGameClient, IDisposable { private TcpClient _tcpClient; public async Task ConnectAsync(string host, int port) { _tcpClient = new TcpClient(); _tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); await _tcpClient.ConnectAsync(host, port); } public void Dispose() { GC.SuppressFinalize(this); _tcpClient.Dispose(); } }