- Home /
Unet Timeout
Hello,
after Some gametime, the Clients have a Timeout, but without any reason.
UNet Client Disconnect Error: Timeout UnityEngine.Networking.NetworkIdentity:UNetStaticUpdate()
Even the game disapers form the Matchmaker list.
there should not be a timeout.
have Anyone an idea why this happens?
I am having the same problem. $$anonymous$$y game ran stable, now clients disconnect with no reason given but:
UNet Client Disconnect Error: Timeout UnityEngine.Networking.NetworkIdentity:UNetStaticUpdate()
The error routinely occurs once there are more than two players connected, i.e. host plus two clients.
Edit: The error doesn't occur when the game's instances are being run from different devices.
Any resolution here? I recall in one of the Unity tutorials that the guy in video said this happens with matchmaker and he isn't sure why
I think its because using the Relayserver form Unet (wich has the 4 kb/s limit ?). (4 kb/s is not enough for my game, i need some bandwidth to have a good player experience)
Is thee a way to use the $$anonymous$$atchmaker like the old masterserver system? wich has no Relayserver?
I'm having the same problem. The timeout seems to take exactly 1$$anonymous$$ 25sec to happen. Seems to be related to 4kb/s limit + 2$$anonymous$$ buffer bandwith limiter.
http://forum.unity3d.com/threads/matchmaker-client-timeout.342745/
Here also suffering with same issue. If any one found the solution please let me know
Thank you in advance
Answer by AurimasBlazulionis · Feb 15, 2017 at 05:27 AM
It most likely is because you try to send too much data through network. You should look into sending not that important data through unreliable channel and only data that should not get lost like chat messages through reliable/TCP channel.