Assignment for RMIT Mixed Reality in 2020
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.

31 lines
880 B

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