Merge pull request #548 from sschoener/patch-1

Expose message size in IsP2PPacketAvailable
This commit is contained in:
Garry Newman 2021-04-08 16:12:34 +01:00 committed by GitHub
commit d5b49fdeab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,13 +59,22 @@ internal static void InstallEvents( bool server )
public static bool CloseP2PSessionWithUser( SteamId user ) => Internal.CloseP2PSessionWithUser( user );
/// <summary>
/// Checks if a P2P packet is available to read, and gets the size of the message if there is one.
/// Checks if a P2P packet is available to read.
/// </summary>
public static bool IsP2PPacketAvailable( int channel = 0 )
{
uint _ = 0;
return Internal.IsP2PPacketAvailable( ref _, channel );
}
/// <summary>
/// Checks if a P2P packet is available to read, and gets the size of the message if there is one.
/// </summary>
public static bool IsP2PPacketAvailable( out uint msgSize, int channel = 0 )
{
msgSize = 0;
return Internal.IsP2PPacketAvailable( ref msgSize, channel );
}
/// <summary>
/// Reads in a packet that has been sent from another user via SendP2PPacket..