Skip to content
This repository has been archived by the owner on Sep 5, 2022. It is now read-only.

Commit

Permalink
Update RelayHandlerCallbacks.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
cxxpxr authored Sep 3, 2021
1 parent 9b7c45b commit 0572dc2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public void HandleMessage(int clientId, ArraySegment<byte> segmentData, int chan
var sendBuffer = _sendBuffers.Rent(1);
sendBuffer.WriteByte(ref writePos, (byte)OpCodes.Authenticated);
Program.transport.ServerSend(clientId, 0, new ArraySegment<byte>(sendBuffer, 0, writePos));

_sendBuffers.Return(sendBuffer);
}
else
{
Expand Down

0 comments on commit 0572dc2

Please sign in to comment.