IceState

public enum IceState : Int

Enum describing ICE states.

  • ICE has not been activated for this call or stream.

    Declaration

    Swift

    case NotActivated = 0
  • ICE processing has failed.

    Declaration

    Swift

    case Failed = 1
  • ICE process is in progress.

    Declaration

    Swift

    case InProgress = 2
  • ICE has established a direct connection to the remote host.

    Declaration

    Swift

    case HostConnection = 3
  • ICE has established a connection to the remote host through one or several NATs.

    Declaration

    Swift

    case ReflexiveConnection = 4
  • ICE has established a connection through a relay.

    Declaration

    Swift

    case RelayConnection = 5