diff --git a/Unity-Technologies-networking/Runtime/Transport/LLAPITransport.cs b/Unity-Technologies-networking/Runtime/Transport/LLAPITransport.cs index 95e41b8fc..5c529aa5e 100644 --- a/Unity-Technologies-networking/Runtime/Transport/LLAPITransport.cs +++ b/Unity-Technologies-networking/Runtime/Transport/LLAPITransport.cs @@ -193,6 +193,13 @@ public bool ServerGetNextMessage(out int connectionId, out TransportEvent transp return false; } + // LLAPI client sends keep alive messages (75-6C-6C) on channel=110. + // ignore all messages that aren't for our selected channel. + if (channel != channelId) + { + return false; + } + switch (networkEvent) { case NetworkEventType.Nothing: