Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Closeconfig | Transport layer confuration object. |
maxConnections | The maximum number of client connections to allow. |
topology | Transport layer topology object to use. |
bool True if successfully configured.
This configures the transport layer settings for the server.
#pragma strict public class Example extends MonoBehaviour { function StartServer() { var config: ConnectionConfig = new ConnectionConfig(); config.AddChannel(QosType.ReliableSequenced); config.AddChannel(QosType.UnreliableSequenced); tuner.maxPacketSize = 500; NetworkServer.Configure(tuner, 10); NetworkServer.Listen(7070); } }
using UnityEngine; using UnityEngine.Networking;
public class Example : MonoBehaviour {
void StartServer() { ConnectionConfig config = new ConnectionConfig(); config.AddChannel(QosType.ReliableSequenced); config.AddChannel(QosType.UnreliableSequenced); tuner.maxPacketSize = 500; NetworkServer.Configure(tuner, 10); NetworkServer.Listen(7070); } }