This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/Oculus/Platform/Scripts/PeerConnectionState.cs
2020-07-09 11:41:01 -07:00

31 lines
880 B
C#

// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
public enum PeerConnectionState : int
{
[Description("UNKNOWN")]
Unknown,
/// Connection to the peer is established.
[Description("CONNECTED")]
Connected,
/// A timeout expired while attempting to (re)establish a connection. This can
/// happen if peer is unreachable or rejected the connection.
[Description("TIMEOUT")]
Timeout,
/// Connection to the peer is closed. A connection transitions into this state
/// when it is explicitly closed by either the local or remote peer calling
/// Net.Close(). It also enters this state if the remote peer no longer
/// responds to our keep-alive probes.
[Description("CLOSED")]
Closed,
}
}