CallProtocol

public struct CallProtocol : Codable, Equatable, FunctionResult

Specifies the supported call protocols

  • True, if UDP peer-to-peer connections are supported

    Declaration

    Swift

    public let udpP2p: Bool
  • True, if connection through UDP reflectors is supported

    Declaration

    Swift

    public let udpReflector: Bool
  • The minimum supported API layer; use 65

    Declaration

    Swift

    public let minLayer: Int32
  • The maximum supported API layer; use 65

    Declaration

    Swift

    public let maxLayer: Int32
  • Specifies the supported call protocols

    Declaration

    Swift

    public init(udpP2p: Bool, udpReflector: Bool, minLayer: Int32, maxLayer: Int32)

    Parameters

    udpP2p

    True, if UDP peer-to-peer connections are supported

    udpReflector

    True, if connection through UDP reflectors is supported

    minLayer

    The minimum supported API layer; use 65

    maxLayer

    The maximum supported API layer; use 65