Add note about end points

This commit is contained in:
Damian Korczowski
2021-03-11 19:11:40 +01:00
parent 42d31c0c65
commit 2db1438ef4

View File

@@ -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
};