Skip to content

Commit bf0b78b

Browse files
fix
This resolves the issue where a ConnectionRequestMessage could not exceed the transport MTU size because it was using the ReliableSequenced and not the ReliableFragmentedSequenced pipeline.
1 parent 3da80e7 commit bf0b78b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.unity.netcode.gameobjects/Runtime/Connection/NetworkConnectionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ private void SendConnectionRequest()
626626
}
627627
}
628628

629-
SendMessage(ref message, NetworkDelivery.ReliableSequenced, NetworkManager.ServerClientId);
629+
SendMessage(ref message, NetworkDelivery.ReliableFragmentedSequenced, NetworkManager.ServerClientId);
630630
message.MessageVersions.Dispose();
631631
}
632632

0 commit comments

Comments
 (0)