Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#
Method group is Obsolete

NetworkServer.Configure

Obsolete public static bool Configure(ConnectionConfig config, int maxConnections);
Obsolete public static bool Configure(HostTopology topology);

Parameters

configTransport layer confuration object.
maxConnectionsThe maximum number of client connections to allow.
topologyTransport layer topology object to use.

Returns

bool True if successfully configured.

Description

This configures the transport layer settings for the server.

using UnityEngine;
using UnityEngine.Networking;

public class Example : MonoBehaviour { void StartServer() { ConnectionConfig config = new ConnectionConfig(); config.AddChannel(QosType.ReliableSequenced); config.AddChannel(QosType.UnreliableSequenced); config.PacketSize = 500; NetworkServer.Configure(config, 10); NetworkServer.Listen(7070); } }

Did you find this page useful? Please give it a rating: