diff --git a/GServer.Client/Program.cs b/GServer.Client/Program.cs
index e695799..3267707 100644
--- a/GServer.Client/Program.cs
+++ b/GServer.Client/Program.cs
@@ -20,7 +20,7 @@ public static class Program
TcpClient tcpClient = new();
tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
- tcpClient.Connect(serverEp);
+ tcpClient.ConnectAsync(serverEp);
try
{
diff --git a/GServer.Common/Networking/TcpGameClient.cs b/GServer.Common/Networking/TcpGameClient.cs
new file mode 100644
index 0000000..00a298f
--- /dev/null
+++ b/GServer.Common/Networking/TcpGameClient.cs
@@ -0,0 +1,31 @@
+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();
+ }
+}
\ No newline at end of file
diff --git a/GServer.RC/Program.cs b/GServer.RC/Program.cs
index 08d27de..7fef9d8 100644
--- a/GServer.RC/Program.cs
+++ b/GServer.RC/Program.cs
@@ -27,11 +27,9 @@ internal static class Program
{
try
{
- IPEndPoint serverEp = new(IPAddress.Any, GameServerPort);
-
- TcpClient tcpClient = new();
- tcpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
- tcpClient.Connect(serverEp);
+ string gameServerIp = IPAddress.Any.ToString();
+ Static.TcpGameClient.ConnectAsync(gameServerIp, GameServerPort).Wait();
+ Console.WriteLine($"Successfully connected to game server @ {gameServerIp}:{GameServerPort}");
}
catch (Exception e)
{
diff --git a/GServer.RC/Services/AuthService.cs b/GServer.RC/Services/AuthService.cs
new file mode 100644
index 0000000..97daf78
--- /dev/null
+++ b/GServer.RC/Services/AuthService.cs
@@ -0,0 +1,21 @@
+using GServer.Common.Networking.Messages.Client;
+using GServer.Common.Networking.Messages.Server;
+
+namespace GServer.RC.Services;
+
+public interface IAuthService
+{
+ AuthResponseMessage Authenticate(AuthMessage msg);
+}
+
+public class AuthService : IAuthService
+{
+ public AuthService()
+ {
+ }
+
+ public AuthResponseMessage Authenticate(AuthMessage msg)
+ {
+ throw new NotImplementedException();
+ }
+}
\ No newline at end of file
diff --git a/GServer.RC/Static.cs b/GServer.RC/Static.cs
new file mode 100644
index 0000000..497f56e
--- /dev/null
+++ b/GServer.RC/Static.cs
@@ -0,0 +1,8 @@
+using GServer.Common.Networking;
+
+namespace GServer.RC;
+
+public static class Static
+{
+ public static ITcpGameClient TcpGameClient { get; } = new TcpGameClient();
+}
\ No newline at end of file