Remove unused disconnectInactiveTimeout

This commit is contained in:
vis2k 2020-09-30 12:05:20 +02:00
parent 076f9e0627
commit 0f47b4bbe2

View File

@ -43,15 +43,6 @@ public static class NetworkServer
/// </summary> /// </summary>
public static bool active { get; internal set; } public static bool active { get; internal set; }
/// <summary>
/// Timeout in seconds since last message from a client after which server will auto-disconnect.
/// <para>This value is initially set from NetworkManager in SetupServer and can be changed at runtime</para>
/// <para>By default, clients send at least a Ping message every 2 seconds.</para>
/// <para>The Host client is immune from idle timeout disconnection.</para>
/// <para>Default value is 60 seconds.</para>
/// </summary>
public static float disconnectInactiveTimeout = 60f;
/// <summary> /// <summary>
/// This shuts down the server and disconnects all clients. /// This shuts down the server and disconnects all clients.
/// </summary> /// </summary>