You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
858 B

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.P2P
{
/// <summary>
/// Types of packet reliability.
///
/// Ordered packets will only be ordered relative to other ordered packets. Reliable/unreliable and ordered/unordered communication
/// can be sent on the same Socket ID and Channel.
/// </summary>
public enum PacketReliability : int
{
/// <summary>
/// Packets will only be sent once and may be received out of order
/// </summary>
UnreliableUnordered = 0,
/// <summary>
/// Packets may be sent multiple times and may be received out of order
/// </summary>
ReliableUnordered = 1,
/// <summary>
/// Packets may be sent multiple times and will be received in order
/// </summary>
ReliableOrdered = 2
}
}