From 2db1438ef4ccfff85eb361efd97518b42c76e595 Mon Sep 17 00:00:00 2001 From: Damian Korczowski Date: Thu, 11 Mar 2021 19:11:40 +0100 Subject: [PATCH] Add note about end points --- Source/Engine/Networking/NetworkConfig.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Networking/NetworkConfig.h b/Source/Engine/Networking/NetworkConfig.h index c1b2126f2..8d5a589e9 100644 --- a/Source/Engine/Networking/NetworkConfig.h +++ b/Source/Engine/Networking/NetworkConfig.h @@ -2,6 +2,8 @@ #pragma once +#include "Engine/Platform/Network.h" + API_ENUM(Namespace="FlaxEngine.Networking") enum class NetworkTransportType { Undefined = 0, @@ -24,11 +26,12 @@ public: API_FIELD() uint16 Port = 7777; + // API_FIELD() + // NetworkEndPoint EndPoint = {}; // TODO: Use NetSockets C# API when done + API_FIELD() uint16 MessageSize = 1500; // MTU API_FIELD() uint16 MessagePoolSize = 2048; // (RX and TX) - - // TODO: End point for server/client };