mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 06:05:46 +03:00
Fixed warnings
This commit is contained in:
parent
66f771fee2
commit
2fbbd66c45
@ -97,7 +97,7 @@ public PlayersResponse GetPlayerList()
|
||||
|
||||
return pr;
|
||||
}
|
||||
catch ( SocketException e )
|
||||
catch ( SocketException )
|
||||
{
|
||||
return null;
|
||||
}
|
||||
@ -347,7 +347,7 @@ private byte[] ReassemblePacket( List<byte[]> splitPackets, bool isCompressed, i
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invert the Byte-order Mark of an value, used for compatibility between Little <-> Large BOM
|
||||
/// Invert the Byte-order Mark of an value, used for compatibility between Little Large BOM
|
||||
/// </summary>
|
||||
/// <param name="value">The value to invert</param>
|
||||
/// <returns>BOM-inversed value (if needed), otherwise the original value</returns>
|
||||
|
@ -138,7 +138,7 @@ public enum SendType : int
|
||||
/// </summary>
|
||||
UnreliableNoDelay = 1,
|
||||
|
||||
//// <summary>
|
||||
/// <summary>
|
||||
/// Reliable message send. Can send up to 1MB of data in a single message.
|
||||
/// Does fragmentation/re-assembly of messages under the hood, as well as a sliding window for efficient sends of large chunks of data.
|
||||
/// </summary>
|
||||
|
Loading…
Reference in New Issue
Block a user