From 64a81b776096ac89603106e2c8297e9fcc675738 Mon Sep 17 00:00:00 2001 From: Server Ubunto - HOME Date: Wed, 22 Oct 2025 03:17:29 +0100 Subject: [PATCH] Feature: Now server ports and IP are parsed using args. --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 412b332..2579722 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -209,7 +209,7 @@ int main(int argc, char *argv[]) { return EXIT_FAILURE; } - int SERVER_ID = atoi(argv[1]); + int SERVER_OUT_IP = atoi(argv[1]); int SERVER_IN_PORT = atoi(argv[2]); int SERVER_OUT_PORT = atoi(argv[3]);