twilio / twilio-voice-ios

Programmable Voice SDK by Twilio
https://www.twilio.com/voice
38 stars 14 forks source link

Service Unavailable error when trying to connect #14

Closed jbohman closed 5 years ago

jbohman commented 5 years ago

Description

I can't connect to a conference call using the iOS SDK. I only get Service Unavailable every time I try. I've attached code and logs below.

Steps to Reproduce

  1. Start app
  2. Navigate to section that uses the code below
  3. Wait for server to return access token and ice servers
  4. Access token and ice servers are sent to connect function
  5. call with didFailToConnectWithError is triggered and the error is: Service Unavailable

Code

  @objc(connect:to:iceServers:)
  func connect(token: String, to: String, iceServers: [NSDictionary]) -> Void {

    guard let iceServersParam = iceServers as? [[String: Any]] else {
      return
    }

    // ICE Servers fetched from https://www.twilio.com/docs/stun-turn/api at the same time as access token
    var iceServers: Array<TVOIceServer> = Array()
    iceServersParam.forEach { (server) in
        let url = server["url"] as! String
        let username = server["username"] as! String
        let password = server["password"] as! String
        let newServer: TVOIceServer = TVOIceServer(urlString: url, username: username, password: password)
        iceServers.append(newServer)
    }

    let iceOptions: TVOIceOptions = TVOIceOptions { (builder) in
        builder.servers = iceServers
    }

    let connectOptions: TVOConnectOptions = TVOConnectOptions(accessToken: token) { (builder) in
        builder.params = [twimlParamTo : to]
        builder.iceOptions = iceOptions
    }

    self.call = TwilioVoice.connect(with: connectOptions, delegate: self)
  }

  @objc
  func callDidConnect(_ call: TVOCall) {
    print("Success")
    self.sendEvent(withName: "success", body: true)
    self.call = call
  }

  @objc
  func call(_ call: TVOCall, didFailToConnectWithError error: Error) {
    // This is the function that is triggered with the service unavailable
    self.sendEvent(withName: "error", body: error.localizedDescription)
    print("Failed with connect error \(error)")
  }

  @objc
  func call(_ call: TVOCall, didDisconnectWithError error: Error?) {
    self.sendEvent(withName: "error", body: error?.localizedDescription)
    print("Failed with disconnect error \(String(describing: error))")
  }

Expected Behavior

To be able to connect to the conference call and hear the waiting sound play.

Actual Behavior

Connect fails with error Service Unavailable.

Reproduces How Often

All the time

Logs

Log is from iOS Simulator (iPhone XR)

2019-06-07 18:55:51.682049+0200 eventapp[58085:503481] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:101 -[TVORTCAudioSession initWithAudioSession:]): RTCAudioSession (0x600001224cb0): init.
2019-06-07 18:55:51.682417+0200 eventapp[58085:503481] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:187 -[TVORTCAudioSession addDelegate:]): Adding delegate: (0x600003fc00e0)
2019-06-07 18:55:51.685350+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating peer connection signaling thread ...
2019-06-07 18:55:51.686674+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating peer connection worker thread ...
2019-06-07 18:55:51.686840+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating peer connection networking thread ...
2019-06-07 18:55:51.686959+0200 eventapp[58085:503481] TRACE:Twilio:[Core]:Creating built-in AudioDecoderFactory ...
2019-06-07 18:55:51.687089+0200 eventapp[58085:503481] TRACE:Twilio:[Core]:Creating built-in AudioEncoderFactory ...
2019-06-07 18:55:51.687669+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating media engine ...
2019-06-07 18:55:51.692342+0200 eventapp[58085:503481] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
2019-06-07 18:55:51.695014+0200 eventapp[58085:503481] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:211): WebRtcVoiceEngine::WebRtcVoiceEngine
2019-06-07 18:55:51.695269+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Done creating media engine.
2019-06-07 18:55:51.695383+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating peer connection factory ...
2019-06-07 18:55:51.700825+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:234): WebRtcVoiceEngine::Init
2019-06-07 18:55:51.701064+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:241): Supported send codecs in order of preference:
2019-06-07 18:55:51.706877+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-07 18:55:51.707072+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/16000/1 (103)
2019-06-07 18:55:51.707210+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/32000/1 (104)
2019-06-07 18:55:51.707326+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): G722/8000/1 (9)
2019-06-07 18:55:51.707544+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMU/8000/1 (0)
2019-06-07 18:55:51.707734+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMA/8000/1 (8)
2019-06-07 18:55:51.707898+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/32000/1 (106)
2019-06-07 18:55:51.708043+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/16000/1 (105)
2019-06-07 18:55:51.708226+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/8000/1 (13)
2019-06-07 18:55:51.708372+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/48000/1 (110)
2019-06-07 18:55:51.708504+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/32000/1 (112)
2019-06-07 18:55:51.708639+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/16000/1 (113)
2019-06-07 18:55:51.708771+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/8000/1 (126)
2019-06-07 18:55:51.708903+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:247): Supported recv codecs in order of preference:
2019-06-07 18:55:51.709647+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-07 18:55:51.709767+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/16000/1 (103)
2019-06-07 18:55:51.709904+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/32000/1 (104)
2019-06-07 18:55:51.710022+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): G722/8000/1 (9)
2019-06-07 18:55:51.710139+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMU/8000/1 (0)
2019-06-07 18:55:51.710258+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMA/8000/1 (8)
2019-06-07 18:55:51.710375+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/32000/1 (106)
2019-06-07 18:55:51.710569+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/16000/1 (105)
2019-06-07 18:55:51.710782+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/8000/1 (13)
2019-06-07 18:55:51.711035+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/48000/1 (110)
2019-06-07 18:55:51.711219+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/32000/1 (112)
2019-06-07 18:55:51.711432+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/16000/1 (113)
2019-06-07 18:55:51.711688+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/8000/1 (126)
2019-06-07 18:55:51.712447+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:74): Create
2019-06-07 18:55:51.712686+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:64): AudioDeviceBuffer::ctor
2019-06-07 18:55:51.712880+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:108): AudioDeviceModuleImpl
2019-06-07 18:55:51.713003+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:112): CheckPlatform
2019-06-07 18:55:51.713150+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:126): current platform is IOS
2019-06-07 18:55:51.713257+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:142): CreatePlatformSpecificObjects
2019-06-07 18:55:51.713359+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:912): PlatformAudioLayer
2019-06-07 18:55:51.713666+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:115): AudioDeviceIOS::ctor<NSThread: 0x6000020bf200>{number = 19, name = (null)}
2019-06-07 18:55:51.713851+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:254): iPhone Audio APIs will be utilized.
2019-06-07 18:55:51.714261+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:282): AttachAudioBuffer
2019-06-07 18:55:51.714395+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:129): AudioDeviceIOS::AttachAudioBuffer
2019-06-07 18:55:51.714601+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:302): Init
2019-06-07 18:55:51.714809+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:136): AudioDeviceIOS::Init
2019-06-07 18:55:51.714952+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:643): AudioDeviceIOS::UpdateAudioDevicebuffer
2019-06-07 18:55:51.715158+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:204): SetPlayoutSampleRate(44100)
2019-06-07 18:55:51.715372+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:228): SetPlayoutChannels(1)
2019-06-07 18:55:51.715569+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:197): SetRecordingSampleRate(44100)
2019-06-07 18:55:51.715816+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:221): SetRecordingChannels(1)
2019-06-07 18:55:51.716418+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:643): SetPlayoutDevice(0)
2019-06-07 18:55:51.716537+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:84): SetPlayoutDevice: Not implemented
2019-06-07 18:55:51.716680+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:335): InitSpeaker
2019-06-07 18:55:51.716847+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:547): StereoPlayoutIsAvailable
2019-06-07 18:55:51.716954+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:554): output: 0
2019-06-07 18:55:51.717092+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:559): SetStereoPlayout(0)
2019-06-07 18:55:51.717341+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:137): SetStereoPlayout: Not implemented
2019-06-07 18:55:51.717447+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:567): stereo playout is not supported
2019-06-07 18:55:51.717607+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(adm_helpers.cc:56): Failed to set stereo playout mode.
2019-06-07 18:55:51.717883+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:705): SetRecordingDevice(0)
2019-06-07 18:55:51.718089+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:186): SetRecordingDevice: Not implemented
2019-06-07 18:55:51.718435+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:341): InitMicrophone
2019-06-07 18:55:51.718668+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:504): StereoRecordingIsAvailable
2019-06-07 18:55:51.718798+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:511): output: 0
2019-06-07 18:55:51.719041+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:516): SetStereoRecording(0)
2019-06-07 18:55:51.719281+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:122): SetStereoRecording: Not implemented
2019-06-07 18:55:51.719504+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:523): failed to change stereo recording
2019-06-07 18:55:51.719797+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(adm_helpers.cc:76): Failed to set stereo recording mode.
2019-06-07 18:55:51.720190+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
2019-06-07 18:55:51.720723+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 0
2019-06-07 18:55:51.720873+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-07 18:55:51.721802+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:818): RegisterAudioCallback
2019-06-07 18:55:51.721944+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:84): RegisterAudioCallback
2019-06-07 18:55:51.722087+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {aec: true, agc: true, ns: true, hf: true, swap: false, audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, typing: true, experimental_agc: false, extended_filter_aec: false, delay_agnostic_aec: false, experimental_ns: false, intelligibility_enhancer: false, residual_echo_detector: true, }
2019-06-07 18:55:51.722274+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-07 18:55:51.722449+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-07 18:55:51.722558+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-07 18:55:51.722697+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-07 18:55:51.722865+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-07 18:55:51.722973+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-07 18:55:51.723118+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-07 18:55:51.723230+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-07 18:55:51.723396+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-07 18:55:51.723504+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-07 18:55:51.723635+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-07 18:55:51.723813+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-07 18:55:51.723928+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-07 18:55:51.724126+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-07 18:55:51.724374+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-07 18:55:51.724597+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-07 18:55:51.724874+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:507): Stereo swapping enabled? 0
2019-06-07 18:55:51.725085+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-07 18:55:51.725341+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-07 18:55:51.725552+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-07 18:55:51.725799+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-07 18:55:51.725975+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-07 18:55:51.726220+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-07 18:55:51.726474+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-07 18:55:51.726584+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-07 18:55:51.726821+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-07 18:55:51.727263+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-07 18:55:51.727885+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Done creating peer connection factory.
2019-06-07 18:55:51.728258+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:824): RegisterRecordingSink
2019-06-07 18:55:51.728370+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:95): RegisterRecordingSink
2019-06-07 18:55:51.728589+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Adding audio track ...
2019-06-07 18:55:51.733607+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating dedicated notifier queue ...
2019-06-07 18:55:51.734220+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Initializing SIP stack ...
2019-06-07 18:55:51.741579+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Adding IPv4/IPv6 TLS transports ...
2019-06-07 18:55:51.742249+0200 eventapp[58085:503481] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-07 18:55:51.742374+0200 eventapp[58085:503481] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-07 18:55:51.743792+0200 eventapp[58085:503481] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-07 18:55:51.743961+0200 eventapp[58085:503481] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-07 18:55:51.744136+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Initializing DUM ...
2019-06-07 18:55:51.746150+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Starting SIP stack thread ...
2019-06-07 18:55:51.746345+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Starting DUM thread ...
2019-06-07 18:55:51.746824+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:AppleReachability::AppleReachability()
2019-06-07 18:55:51.746992+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Creating zeroAddrReachability
2019-06-07 18:55:51.747802+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Creating peer connection ...
2019-06-07 18:55:51.751422+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(alr_experiment.cc:65): Using ALR experiment settings: pacing factor: 1, max pacer queue length: 2875, ALR start bandwidth usage percent: 80, ALR end budget level percent: 40, ALR end budget level percent: -60, ALR experiment group ID: 3
2019-06-07 18:55:51.751657+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(bitrate_prober.cc:62): Bandwidth probing enabled, set to inactive
2019-06-07 18:55:51.752760+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-07 18:55:51.752879+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:105): Using Trendline filter for delay change estimation with window size 20
2019-06-07 18:55:51.753433+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-07 18:55:51.753566+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:313): BWE Setting start bitrate to: 300000
2019-06-07 18:55:51.753692+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x600000859cc0
2019-06-07 18:55:51.753924+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(cpu_info.cc:46): Available number of cores: 4
2019-06-07 18:55:51.754642+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-07 18:55:51.754759+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(remote_bitrate_estimator_single_stream.cc:56): RemoteBitrateEstimatorSingleStream: Instantiating.
2019-06-07 18:55:51.759028+0200 eventapp[58085:503481] INFO:Twilio:[Core]:Adding local stream to peer connection ...
2019-06-07 18:55:51.759084+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(opensslidentity.cc:44): Making key pair
2019-06-07 18:55:51.760253+0200 eventapp[58085:503481] DEBUG:Twilio:[Core]:Create initial local offer
2019-06-07 18:55:51.760409+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(opensslidentity.cc:92): Returning key pair
2019-06-07 18:55:51.760692+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(opensslidentity.cc:99): Making certificate for WebRTC
2019-06-07 18:55:51.761013+0200 eventapp[58085:503395] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: outgoing
2019-06-07 18:55:51.761106+0200 eventapp[58085:503481] DEBUG:Twilio:[Platform]:-[TVOLocalAudioTrack dealloc]
2019-06-07 18:55:51.761299+0200 eventapp[58085:503481] DEBUG:Twilio:[Platform]:-[TVOAudioTrack dealloc]
2019-06-07 18:55:51.761580+0200 eventapp[58085:503395] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending outgoing event
2019-06-07 18:55:51.762958+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(opensslidentity.cc:146): Returning certificate
2019-06-07 18:55:51.769304+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:onCreateSessionLocalDescription
2019-06-07 18:55:51.771288+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:441): Set backup connection ping interval to 25000 milliseconds.
2019-06-07 18:55:51.771438+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:450): Set ICE receiving timeout to 30000 milliseconds
2019-06-07 18:55:51.771564+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:457): Set ping most likely connection to 0
2019-06-07 18:55:51.771675+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:464): Set stable_writable_connection_ping_interval to 2500
2019-06-07 18:55:51.771782+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:477): Set presume writable when fully relayed to 0
2019-06-07 18:55:51.771887+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:486): Set regather_on_failed_networks_interval to 300000
2019-06-07 18:55:51.771991+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:505): Set receiving_switching_delay to1000
2019-06-07 18:55:51.772520+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:71): Setting RTCP Transport on audio transport 0x0
2019-06-07 18:55:51.800106+0200 eventapp[58085:503832] INFO:Twilio:[WebRTC]:(paced_sender.cc:97): PacedSender paused.
2019-06-07 18:55:51.800286+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:76): Setting RTP Transport on audio transport 0x7fdfe1846ce0
2019-06-07 18:55:51.800575+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:378): Set ICE ufrag: hglC pwd: 7K2KF0sCzu68OgiAgCdUzhlS on transport audio
2019-06-07 18:55:51.801036+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-07 18:55:51.801231+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-07 18:55:51.801367+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-07 18:55:51.801501+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-07 18:55:51.801670+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-07 18:55:51.801782+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-07 18:55:51.801972+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-07 18:55:51.802082+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-07 18:55:51.802317+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-07 18:55:51.802444+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-07 18:55:51.802583+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-07 18:55:51.802751+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-07 18:55:51.802888+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-07 18:55:51.803010+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-07 18:55:51.803133+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-07 18:55:51.803289+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-07 18:55:51.803439+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-07 18:55:51.803618+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-07 18:55:51.803771+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-07 18:55:51.803990+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-07 18:55:51.804206+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-07 18:55:51.804453+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-07 18:55:51.804687+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-07 18:55:51.804926+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-07 18:55:51.805068+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-07 18:55:51.805332+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-07 18:55:51.805505+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-07 18:55:51.805768+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-07 18:55:51.805972+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-07 18:55:51.806266+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(channel.cc:111): Created channel for audio
2019-06-07 18:55:51.806898+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-07 18:55:51.807013+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-07 18:55:51.807142+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-07 18:55:51.807311+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-07 18:55:51.807544+0200 eventapp[58085:503827] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 3354471533141687528 Old state: kStable New state: kHaveLocalOffer
2019-06-07 18:55:51.807688+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-07 18:55:51.807789+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Signaling state: have-local-offer
2019-06-07 18:55:51.808394+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(channel.cc:743): Setting local voice description
2019-06-07 18:55:51.808435+0200 eventapp[58085:503395] DEBUG:Twilio:[Platform]:Received signaling-state event: have-local-offer
2019-06-07 18:55:51.808851+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1338): WebRtcVoiceMediaChannel::SetRecvParameters: {codecs: [AudioCodec[111:opus:48000:0:2], AudioCodec[103:ISAC:16000:0:1], AudioCodec[104:ISAC:32000:0:1], AudioCodec[9:G722:8000:0:1], AudioCodec[0:PCMU:8000:0:1], AudioCodec[8:PCMA:8000:0:1], AudioCodec[106:CN:32000:0:1], AudioCodec[105:CN:16000:0:1], AudioCodec[13:CN:8000:0:1], AudioCodec[110:telephone-event:48000:0:1], AudioCodec[112:telephone-event:32000:0:1], AudioCodec[113:telephone-event:16000:0:1], AudioCodec[126:telephone-event:8000:0:1]], extensions: [{uri: urn:ietf:params:rtp-hdrext:ssrc-audio-level, id: 1}]}
2019-06-07 18:55:51.809084+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1510): Setting receive voice codecs.
2019-06-07 18:55:51.809429+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1780): AddSendStream: {id:5d9aF9Cd3eccAAF1297Aeb5FF41ED540;ssrcs:[668718670];ssrc_groups:;cname:hg1cTkE1GRCWk+LJ;stream_ids:d3Efce19f5891A8fd0B5092e78Ed76EB;}
2019-06-07 18:55:51.811230+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(neteq_impl.cc:110): NetEq config: sample_rate_hz=16000, enable_post_decode_vad=true, max_packets_in_buffer=0, background_noise_mode=2, playout_mode=0, enable_fast_accelerate=false, enable_muted_state= true
2019-06-07 18:55:51.811980+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_coding_module.cc:461): Created
2019-06-07 18:55:51.812655+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:134): AudioSendStream: 668718670
2019-06-07 18:55:51.812817+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:199): AudioSendStream::ConfigureStream: {rtp: {ssrc: 668718670, extensions: [], nack: {rtp_history_ms: 0}, c_name: hg1cTkE1GRCWk+LJ}, send_transport: (Transport), min_bitrate_bps: -1, max_bitrate_bps: -1, send_codec_spec: <unset>}
2019-06-07 18:55:51.813153+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-07 18:55:51.813343+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-07 18:55:51.813450+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(channel.cc:573): Add send stream ssrc: 668718670
2019-06-07 18:55:51.813664+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(channel.cc:735): Changing voice state, recv=0 send=0
2019-06-07 18:55:51.813885+0200 eventapp[58085:503827] INFO:Twilio:[WebRTC]:(peerconnection.cc:4735): Local and Remote descriptions must be applied to get the SSL Role of the SCTP transport.
2019-06-07 18:55:51.814277+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {}
2019-06-07 18:55:51.814432+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-07 18:55:51.814570+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-07 18:55:51.814782+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-07 18:55:51.814975+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-07 18:55:51.815141+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-07 18:55:51.815333+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-07 18:55:51.815598+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-07 18:55:51.815794+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-07 18:55:51.816032+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-07 18:55:51.816207+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-07 18:55:51.816423+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-07 18:55:51.816581+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-07 18:55:51.816997+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-07 18:55:51.817138+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-07 18:55:51.817676+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-07 18:55:51.818192+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-07 18:55:51.819528+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-07 18:55:51.819716+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-07 18:55:51.819849+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-07 18:55:51.820221+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-07 18:55:51.820456+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-07 18:55:51.820647+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-07 18:55:51.820908+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-07 18:55:51.821106+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-07 18:55:51.821303+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-07 18:55:51.821555+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-07 18:55:51.821816+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-07 18:55:51.822088+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-07 18:55:51.822673+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:312): Start getting ports with prune_turn_ports disabled
2019-06-07 18:55:51.822887+0200 eventapp[58085:503827] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 54ms to dispatch. Posted from: PostCreateSessionDescriptionSucceeded@../../../src/pc/webrtcsessiondescriptionfactory.cc:447
2019-06-07 18:55:51.823531+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:onSetSessionLocalDescription
2019-06-07 18:55:51.823977+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Local SDP - v=0
2019-06-07 18:55:51.825327+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:803): Network manager has started
2019-06-07 18:55:51.825594+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:718): Allocate ports on 1 networks
2019-06-07 18:55:51.825821+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:New SipCall ...
2019-06-07 18:55:51.825937+0200 eventapp[58085:503827] INFO:Twilio:[Core]:Looking up: chunderm.gll.twilio.com
2019-06-07 18:55:51.826094+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Udp
2019-06-07 18:55:51.826641+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fdfde1dc000::1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-07 18:55:51.826852+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-07 18:55:51.827000+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-07 18:55:51.827172+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-07 18:55:51.827639+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:2437072876:1:udp:2122260223:192.168.1.x:63848:local::0:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:51.827924+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-07 18:55:51.828092+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-07 18:55:51.828503+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-07 18:55:51.828683+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-07 18:55:51.828929+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-07 18:55:51.832043+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-07 18:55:51.834199+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-07 18:55:51.856999+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:941443129:1:udp:1686052607:155.4.52.x:63848:stun:192.168.1.2:63848:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:51.858341+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Address family: 2: 35.157.205.11
2019-06-07 18:55:51.858649+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Address family: 2: 35.157.205.11
2019-06-07 18:55:51.858943+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fdfde1dc000:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-07 18:55:51.859148+0200 eventapp[58085:503827] INFO:Twilio:[Core]:Setting outbound proxy to: sip:35.157.205.11:443;transport=tls
2019-06-07 18:55:51.864856+0200 eventapp[58085:503395] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-07 18:55:51.864861+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2437072876 1 udp 2122260223 192.168.1.2 63848 typ host generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:51.865067+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:941443129 1 udp 1686052607 155.4.52.133 63848 typ srflx raddr 192.168.1.2 rport 63848 generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:51.868790+0200 eventapp[58085:503830] DEBUG:Twilio:[Core]:Socket created in ../resiprocate-1.8/resip/stack/TcpBaseTransport.cxx at line 223, transport: 1, socket: 66
2019-06-07 18:55:51.869835+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 35.157.205.11:443 TLS target domain=35.157.205.11 mFlowKey=66 ]
2019-06-07 18:55:51.869999+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS connection for domain  [ V4 35.157.205.11:443 TLS target domain=35.157.205.11 mFlowKey=0 ] on 66
2019-06-07 18:55:51.885161+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Relay
2019-06-07 18:55:51.885430+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fdfdf819200::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-07 18:55:51.885559+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-07 18:55:51.885696+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-07 18:55:51.885872+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-07 18:55:51.886087+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fdfdf8e9c00::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-07 18:55:51.886236+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-07 18:55:51.893141+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake starting (client mode)
2019-06-07 18:55:51.897147+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-07 18:55:51.897225+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-07 18:55:51.897521+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-07 18:55:51.897832+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fdfde1eae00::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-07 18:55:51.898096+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-07 18:55:51.898642+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-07 18:55:51.898984+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-07 18:55:51.900039+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-07 18:55:51.901203+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=54737158537376626d2b6747
2019-06-07 18:55:51.901864+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-07 18:55:51.904612+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-07 18:55:51.904943+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-07 18:55:51.905122+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-07 18:55:51.905583+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-07 18:55:51.925414+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=54737158537376626d2b6747, code=401, rtt=25
2019-06-07 18:55:51.925906+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=556c675a354268784f78664a
2019-06-07 18:55:51.929546+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.251:443 using tcp.
2019-06-07 18:55:51.929870+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=6863734271596d31364e6832
2019-06-07 18:55:51.930036+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.251:3478 using tcp.
2019-06-07 18:55:51.930433+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=677a6779327556564c464733
2019-06-07 18:55:51.950711+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Tcp
2019-06-07 18:55:51.951063+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fdfdf087800::1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-07 18:55:51.951560+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-07 18:55:51.951696+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-07 18:55:51.951863+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS sessions set up with TLSv1.2 TLSv1/SSLv3 ECDHE-RSA-AES128-GCM-SHA256
2019-06-07 18:55:51.951874+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fdfdf087800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-07 18:55:51.952002+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <*.twilio.com>
2019-06-07 18:55:51.952080+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfdf087800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:3753982748:1:tcp:1518280447:192.168.1.x:49568:local::0:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:51.952142+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <twilio.com>
2019-06-07 18:55:51.952285+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fdfdf087800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-07 18:55:51.952441+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-07 18:55:51.952613+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake done for peer *.twilio.com, twilio.com
2019-06-07 18:55:51.952797+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fdfdf087800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-07 18:55:51.953429+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fdfdf087800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-07 18:55:51.953467+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3753982748 1 tcp 1518280447 192.168.1.2 49568 typ host tcptype passive generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:51.954632+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=6863734271596d31364e6832, code=401, rtt=25
2019-06-07 18:55:51.954953+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=4a2b73325a674b5044766549
2019-06-07 18:55:51.955166+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=677a6779327556564c464733, code=401, rtt=24
2019-06-07 18:55:51.955405+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=45534e316d49636831652f39
2019-06-07 18:55:51.978789+0200 eventapp[58085:503831] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 100 tid=d2c8f973b2d491e4 cseq=1 INVITE / 1 from(wire)
2019-06-07 18:55:52.128647+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=556c675a354268784f78664a, code=0, rtt=203
2019-06-07 18:55:52.129243+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:257568702:1:udp:41885951:18.195.48.x:28254:relay:155.4.52.133:63848:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:52.129702+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-07 18:55:52.130080+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-07 18:55:52.130410+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-07 18:55:52.130840+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-07 18:55:52.131781+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-07 18:55:52.140846+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:257568702 1 udp 41885951 18.195.48.251 28254 typ relay raddr 155.4.52.133 rport 63848 generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:52.157041+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=45534e316d49636831652f39, code=0, rtt=201
2019-06-07 18:55:52.157320+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:1104794446:1:udp:25108479:18.195.48.x:19838:relay:155.4.52.133:49567:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:52.157448+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-07 18:55:52.157595+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-07 18:55:52.157774+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-07 18:55:52.158071+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-07 18:55:52.158122+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1104794446 1 udp 25108479 18.195.48.251 19838 typ relay raddr 155.4.52.133 rport 49567 generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:52.158346+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-07 18:55:52.158537+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=4a2b73325a674b5044766549, code=0, rtt=204
2019-06-07 18:55:52.158698+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:1104794446:1:udp:25108223:18.195.48.x:48578:relay:155.4.52.133:49566:hglC:7K2KF0sCzu68OgiAgCdUzhlS:1:10:0]
2019-06-07 18:55:52.158889+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-07 18:55:52.159025+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-07 18:55:52.159176+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-07 18:55:52.159366+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-07 18:55:52.159465+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1104794446 1 udp 25108223 18.195.48.251 48578 typ relay raddr 155.4.52.133 rport 49566 generation 0 ufrag hglC network-id 1 network-cost 10
2019-06-07 18:55:52.159892+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1061): All candidates gathered for audio:1:0
2019-06-07 18:55:52.160133+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:768): P2PTransportChannel: audio, component 1 gathering complete
2019-06-07 18:55:52.160360+0200 eventapp[58085:503395] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-07 18:55:52.160407+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-07 18:55:52.176657+0200 eventapp[58085:503830] WARN:Twilio:[Signaling]:RESIP::TRANSPORT: Can't find matching transport [ V4 192.168.1.2:0 TLS target domain=unspecified mFlowKey=0 ]
2019-06-07 18:55:52.176966+0200 eventapp[58085:503831] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 503 tid=d2c8f973b2d491e4 cseq=1 INVITE / 1 from(wire)
2019-06-07 18:55:52.179290+0200 eventapp[58085:503831] INFO:Twilio:[Signaling]:RESIP::DUM: Failure:  error response: SipResp: 503 tid=d2c8f973b2d491e4 cseq=1 INVITE / 1 from(wire)
2019-06-07 18:55:52.179769+0200 eventapp[58085:503831] INFO:Twilio:[Signaling]:RESIP::DUM: Transition UAC_Start -> InviteSession::Terminated
2019-06-07 18:55:52.180205+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:virtual void twilio::voice::SipCall::onFailure(resip::ClientInviteSessionHandle, const resip::SipMessage &)
2019-06-07 18:55:52.180389+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:Received incoming SIP message from infra:
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=2f7a85a0a4e6a4f0274902cbd6623f6a-4d41
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=eab2bd0e
Server: Twilio Client SBC
2019-06-07 18:55:52.180870+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:onFailure
2019-06-07 18:55:52.181146+0200 eventapp[58085:503395] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: error
2019-06-07 18:55:52.180988+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:onTerminated: reason 0
2019-06-07 18:55:52.181550+0200 eventapp[58085:503395] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending error event
2019-06-07 18:55:52.181091+0200 eventapp[58085:503827] TRACE:Twilio:[Core]:stopDependents
2019-06-07 18:55:52.181621+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=2f7a85a0a4e6a4f0274902cbd6623f6a-4d41
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=eab2bd0e
Server: Twilio Client SBC
2019-06-07 18:55:52.182043+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
2019-06-07 18:55:52.182527+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:onTerminated
2019-06-07 18:55:52.183538+0200 eventapp[58085:503831] DEBUG:Twilio:[Core]:~SipCall(): 0x7fdfde030000
2019-06-07 18:55:52.184588+0200 eventapp[58085:503827] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 3354471533141687528 Old state: kHaveLocalOffer New state: kClosed
2019-06-07 18:55:52.184756+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:OnIceConnectionChange
2019-06-07 18:55:52.184861+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Call State: Disconnected ICE connection state: closed
2019-06-07 18:55:52.185064+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-07 18:55:52.185086+0200 eventapp[58085:503395] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-07 18:55:52.185221+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Signaling state: closed
2019-06-07 18:55:52.186116+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1817): RemoveSendStream: 668718670
2019-06-07 18:55:52.186230+0200 eventapp[58085:503395] DEBUG:Twilio:[Platform]:Received signaling-state event: closed
2019-06-07 18:55:52.186282+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-07 18:55:52.186655+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-07 18:55:52.186770+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:157): ~AudioSendStream: 668718670
2019-06-07 18:55:52.187314+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(channel.cc:125): Destroyed channel: audio
2019-06-07 18:55:52.187817+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fdfdf819200:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=35566c544679632b696c6831
2019-06-07 18:55:52.188110+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fdfdf8e9c00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=6b2b6470434d376f49547557
2019-06-07 18:55:52.188423+0200 eventapp[58085:503829] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fdfde1eae00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=4b596e534c357a555a45776a
2019-06-07 18:55:52.189428+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-07 18:55:52.189562+0200 eventapp[58085:503828] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-07 18:55:52.189878+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Shutting down DUM thread ...
2019-06-07 18:55:52.269033+0200 eventapp[58085:503497] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.418906+0200 eventapp[58085:503541] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.526460+0200 eventapp[58085:503493] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.527479+0200 eventapp[58085:503493] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.527571+0200 eventapp[58085:503493] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.527957+0200 eventapp[58085:503493] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:52.625598+0200 eventapp[58085:503493] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-07 18:55:53.185286+0200 eventapp[58085:503827] DEBUG:Twilio:[Core]:Shutting down SIP stack thread ...
2019-06-07 18:55:53.185494+0200 eventapp[58085:503830] INFO:Twilio:[Signaling]:RESIP::SIP: Shutting down stack thread
2019-06-07 18:55:53.186641+0200 eventapp[58085:503827] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 1006ms to dispatch. Posted from: onFailure@/Users/distiller/project/voice/src/call_impl.cpp:1330

Versions

All relevant version information for the issue.

Voice iOS SDK

3.1.1 via CocoaPods

Xcode

10.2

iOS Version

11.2

iOS Device

Both simulator (iPhone XR) and real device (iPhone XS)

jbohman commented 5 years ago

Hello again,

Any update to this? I've tried to set it up for Android as well and seem to get the same issue.

What I've not setup is the VoIP settings for iOS, are those required? From the documentation it seems like they are only required if you want to receive a call but not make an outgoing call.

The to parameter I'm calling is a string such as jlFrjrMIODn8TqR2wflu/wlXWTm5Mm23Wdz0XMM75 could that be an issue?

What is SIP? It seems like that is the part that is failing.

Any other ideas on things I can test?

Best regards, Joel

bobiechen-twilio commented 5 years ago

Hi Joel,

I am sorry for my lack of response. It seems like that despite of the Twilio NTS credentials being provided as TVOIceOptions, the SDK still had trouble establishing the signaling connection in your network environment. Could you check if there is a certain range of network ports, especially port 3478 which is used for the Twilio STUN/TURN service?

Thanks -bobie

jbohman commented 5 years ago

Hello bobie!

I've tried this link https://networktest.twilio.com/ in the browser (Chrome) on my computer and it works fine (WIFI network).

I've also tried the TURN servers using: https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/ and they seem to work(?).

I tried running the iOS app and the android app in release mode on devices and running both on LTE and WIFI and no difference. Still same error. I wonder if there is any issue that it is a react native module that could be blocking something? Next step for me is trying to get the simple get started project (https://www.twilio.com/docs/voice/voip-sdk/ios/get-started) running and see if that works.

And another question, what is SIP? Is that a fallback if TURN/STUN does not work?

Best regards,

Joel

bobiechen-twilio commented 5 years ago

Hi joel

Thanks for the update.

Were you able to make calls successfully with the SDK, but using the STUN/TURN credentials from https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/?

Could you please provide the SDK log when it failed to make calls using LTE connection?

SIP (Session Initiation Protocol) is the protocol used by the Twilio Voice SDK for establishing signaling connections. STUN/TURN service is used in case the client is behind restricted network environments such as firewall so that peer connection can be established between the (mobile) client and the Twilio service.

-bobie

jbohman commented 5 years ago

Were you able to make calls successfully with the SDK, but using the STUN/TURN credentials from https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/?

I never took any credentials from this site, I just entered the TURN servers I got from the API call (https://api.twilio.com/2010-04-01/Accounts/${twilioConfig.account_sid}/Tokens.json). Same credentials I use in the app.

And for example if I entered the UDP one (turn:global.turn.twilio.com:3478?transport=udp) with bad credentials it told me it was bad credentials, and then if I added the correct credentials it said it worked. I used that page to validate that the TURN servers are correct basically. Maybe there is a better test to actually connect to them from the browser?

Could you please provide the SDK log when it failed to make calls using LTE connection?

Here are the logs for LTE on iPhone Xs (iOS 12.3.1):

2019-06-18 22:48:11.065331+0200 eventapp[5097:1966652] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:101 -[TVORTCAudioSession initWithAudioSession:]): RTCAudioSession (0x287860770): init.
2019-06-18 22:48:11.067932+0200 eventapp[5097:1966652] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:187 -[TVORTCAudioSession addDelegate:]): Adding delegate: (0x28102f2a0)
2019-06-18 22:48:11.070319+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating peer connection signaling thread ...
2019-06-18 22:48:11.070486+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating peer connection worker thread ...
2019-06-18 22:48:11.070527+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating peer connection networking thread ...
2019-06-18 22:48:11.070566+0200 eventapp[5097:1966652] TRACE:Twilio:[Core]:Creating built-in AudioDecoderFactory ...
2019-06-18 22:48:11.070605+0200 eventapp[5097:1966652] TRACE:Twilio:[Core]:Creating built-in AudioEncoderFactory ...
2019-06-18 22:48:11.071197+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating media engine ...
2019-06-18 22:48:11.072132+0200 eventapp[5097:1966652] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
2019-06-18 22:48:11.073376+0200 eventapp[5097:1966652] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:211): WebRtcVoiceEngine::WebRtcVoiceEngine
2019-06-18 22:48:11.073404+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Done creating media engine.
2019-06-18 22:48:11.073421+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating peer connection factory ...
2019-06-18 22:48:11.074262+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:234): WebRtcVoiceEngine::Init
2019-06-18 22:48:11.074313+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:241): Supported send codecs i2019-06-18 22:48:11.074604+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-18 22:48:11.074625+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(2019-06-18 22:48:11.074642+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/32000/1 (104)
2019-06-18 22:48:11.074659+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvo2019-06-18 22:48:11.074676+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMU/8000/1 (0)
2019-06-18 22:48:11.074692+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMA/8000/1 (8)
2019-06-18 22:48:11.074710+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/32000/1 (106)
2019-06-18 22:48:11.074729+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/16000/1 (105)
2019-06-18 22:48:11.074756+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/8000/1 (13)
2019-06-18 22:48:11.074774+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/48000/1 (110)
2019-06-18 22:48:11.074794+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/32000/1 (112)
2019-06-18 22:48:11.074813+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephon2019-06-18 22:48:11.074830+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/8000/1 (126)
2019-06-18 22:48:11.074845+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:247): Supported recv codecs in order of preference:
2019-06-18 22:48:11.074908+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-18 22:48:11.074929+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/16000/1 (103)
2019-06-18 22:48:11.074947+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/32000/1 (104)
FO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): G722/8000/1 (9)
2019-06-18 22:48:11.074981+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMU/8000/1 (0)
2019-06-18 22:48:11.074997+0200 eventapp[5097:1966913] INFO:Twilio:[Web2019-06-18 22:48:11.075014+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/32000/1 (106)
2019-06-18 22:48:11.075030+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcv2019-06-18 22:48:11.075047+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/8000/1 (13)
2019-06-18 22:48:11.075063+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:2019-06-18 22:48:11.075080+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/32000/1 (112)
2019-06-18 22:48:11.075104+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/16000/1 (113)
2019-06-18 22:48:11.075121+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/8000/1 (126)
2019-06-18 22:48:11.075175+0200 eventapp[5097:1966913] INFO:Twilio:[Web2019-06-18 22:48:11.075232+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:64): AudioDeviceBuffer::ctor
2019-06-18 22:48:11.075271+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_dev2019-06-18 22:48:11.075290+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:112): CheckPlatform
2019-06-18 22:48:11.075305+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.c2019-06-18 22:48:11.075321+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:142): CreatePlatformSpecificObjects
2019-06-18 22:48:11.075340+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_devic2019-06-18 22:48:11.075391+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:115): AudioDeviceIOS::ctor<NSThread: 0x280a50080>{number = 12, name = (null)}
7:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:254): iPhone Audio APIs will be utilized.
2019-06-18 22:48:11.075461+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:282): AttachAudioBuffer
tapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:129): AudioDeviceIOS::AttachAudioBuffer
2019-06-18 22:48:11.075496+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:302): Init
7:1966913] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:136): AudioDeviceIOS::Init
2019-06-18 22:48:11.075529+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:643): AudioDeviceIOS::UpdateAudioDevicebuffer
 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:204): SetPlayoutSampleRate(48000)
2019-06-18 22:48:11.075566+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:228): SetPlayoutChannels(1)
2019-06-18 22:48:11.075581+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:197): SetRecordingSampleRate(48000)
2019-06-18 22:48:11.075598+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:221): SetRecordingChannels(1)
22:48:11.075617+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:643): SetPlayoutDevice(0)
2019-06-18 22:48:11.075636+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:84): SetPlayoutDevice: Not im2019-06-18 22:48:11.075654+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:335): InitSpeaker
2019-06-18 22:48:11.075670+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:547): StereoPlayoutIsAvailable2019-06-18 22:48:11.075686+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:554): output: 0
2019-06-18 22:48:11.075702+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:559): SetStereoPlayout(0)
48:11.075721+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:137): SetStereoPlayout: Not implemented
2019-06-18 22:48:11.075736+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:567): stereo playo2019-06-18 22:48:11.075752+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(adm_helpers.cc:56): Failed to set stereo playout mode.
2019-06-18 22:48:11.075768+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:705)2019-06-18 22:48:11.075784+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:186): SetRecordingDevice: Not implemented
2019-06-18 22:48:11.075800+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]2019-06-18 22:48:11.075816+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:504): StereoRecordingIsAvailable
2019-06-18 22:48:11.075835+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(au2019-06-18 22:48:11.075851+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:516): SetStereoRecording(0)
2019-06-18 22:48:11.075868+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_not2019-06-18 22:48:11.075893+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:523): failed to change stereo recording
 INFO:Twilio:[WebRTC]:(adm_helpers.cc:76): Failed to set stereo recording mode.
2019-06-18 22:48:11.075963+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
2019-06-18 22:48:11.076076+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 0
2019-06-18 22:48:11.076102+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain 2019-06-18 22:48:11.076167+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:818): RegisterAudioCallback
2019-06-18 22:48:11.076184+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:842019-06-18 22:48:11.076214+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {aec: true, agc: true, ns: true, hf: true, swap: false, audio_jitter_buffer_max_8:11.076233+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-18 22:48:11.076252+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disabl2019-06-18 22:48:11.076268+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-18 22:48:11.076287+0200 eventapp[5097:1966913] INFO:Twilio2019-06-18 22:48:11.076303+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-18 22:48:11.076318+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-18 22:48:11.076336+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-18 22:48:11.076373+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
3] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-18 22:48:11.076406+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-18 22:48:11.076458+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
p[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-18 22:48:11.076493+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-18 22:48:11.076518+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-18 22:48:11.076537+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:507): Stereo swapping enabled? 0
2019-06-18 22:48:11.076554+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-18 22:48:11.076573+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-18 22:48:11.076588+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-18 22:48:11.076604+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
1+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-18 22:48:11.076641+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-18 22:48:11.076660+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-18 22:48:11.076677+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-18 22:48:11.076695+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-18 22:48:11.076714+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-18 22:48:11.076781+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Done creating peer connection factory.
2019-06-18 22:48:11.076875+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:8242019-06-18 22:48:11.076898+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:95): RegisterRecordingSink
2019-06-18 22:48:11.076941+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Adding audio track ...
2019-06-18 22:48:11.153293+0200 eventapp[5097:1966523] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:847 -[TVORTCAudioSession observeValueForKeyPath:ofObject:change:context:]): OutputVolumeDidChange to 0.875000
2019-06-18 22:48:11.153523+0200 eventapp[5097:1966908] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-18 22:48:11.162239+0200 eventapp[5097:1966908] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-18 22:48:11.171611+0200 eventapp[5097:1966908] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x2812f10b0, 
2019-06-18 22:48:11.216449+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating dedicated notifier queue ...
2019-06-18 22:48:11.216499+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Initializing SIP stack ...
2019-06-18 22:48:11.217519+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Adding IPv4/IPv6 TLS transports ...
2019-06-18 22:48:11.217547+0200 eventapp[5097:1966652] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created 2019-06-18 22:48:11.217563+0200 eventapp[5097:1966652] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
59+0200 eventapp[5097:1966652] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-18 22:48:11.217674+0200 eventapp[5097:1966652] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-18 22:48:11.217722+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Initializing DUM ...
2019-06-18 22:48:11.217764+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Starting SIP stack thread ...
2019-06-18 22:48:11.217795+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Starting DUM thread ...
2019-06-18 22:48:11.217835+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:AppleReachability::AppleReachability()2019-06-18 22:48:11.217847+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Creating zeroAddrReachability
2019-06-18 22:48:11.218031+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Creating peer connection ...
7:1966913] INFO:Twilio:[WebRTC]:(alr_experiment.cc:65): Using ALR experiment settings: pacing factor: 1, max pacer queue length: 2875, ALR start bandwidth usage percent: 80, ALR end budget level percent: 40, ALR end budget level percent: -60, ALR experimen2019-06-18 22:48:11.218860+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(bitrate_prober.cc:62): Bandwidth probing enabled, set to inactive
2019-06-18 22:48:11.219421+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc2019-06-18 22:48:11.219438+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:105): Using Trendline filter for delay change estimation with window size 20
2+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-18 22:48:11.219470+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:313): BWE Setting start bitrate to: 3000002019-06-18 22:48:11.219492+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x2821546e0
2019-06-18 22:48:11.219536+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(cpu_info.cc:46): Available number of core2019-06-18 22:48:11.219641+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-18 22:48:11.219655+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(remote_bitrate_esti2019-06-18 22:48:11.220675+0200 eventapp[5097:1966652] INFO:Twilio:[Core]:Adding local stream to peer connection ...
O:Twilio:[WebRTC]:(opensslidentity.cc:44): Making key pair
2019-06-18 22:48:11.220803+0200 eventapp[5097:1966652] DEBUG:Twilio:[Core]:Create initial local offer
2019-06-18 22:48:11.220869+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(opensslidentity.2019-06-18 22:48:11.220882+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(opensslidentity.cc:99): Making certificate for WebRTC
2019-06-18 22:48:11.220953+0200 eventapp[5097:1966652] DEBUG:Twilio:[Platform]:-[TVOLocalAudioTr2019-06-18 22:48:11.220977+0200 eventapp[5097:1966652] DEBUG:Twilio:[Platform]:-[TVOAudioTrack dealloc]
2019-06-18 22:48:11.221058+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(opensslidentity.cc:146): Returning certificate
2:48:11.221059+0200 eventapp[5097:1966523] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: outgoing
2019-06-18 22:48:11.221248+0200 eventapp[5097:1966523] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending outgoing event
2019-06-18 22:48:11.221256+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:onCreateSessionLocalDescription
2019-06-18 22:48:11.222023+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:441): Set backup connection ping interval to 252019-06-18 22:48:11.222041+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:450): Set ICE receiving timeout to 30000 milliseconds
2019-06-18 22:48:11.222053+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptr2019-06-18 22:48:11.222069+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:464): Set stable_writable_connection_ping_interval to 2500
2019-06-18 22:48:11.222081+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:477): Set presume writable when fully relayed to 0
2019-06-18 22:48:11.222092+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:486): Set regather_on_failed_networks_2019-06-18 22:48:11.222103+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:505): Set receiving_switching_delay to1000
2019-06-18 22:48:11.222837+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:71): Setting RTCP Transport on audio transport 0x0
2019-06-18 22:48:11.222852+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:76): Setting RTP Transport on audio transport 0x160627ea0
2019-06-18 22:48:11.222875+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:378): Set ICE ufrag: QIFe pwd: QeZyJ1iZGry55Aq1Ff1L51+l on transport audio
2019-06-18 22:48:11.222920+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice ch2019-06-18 22:48:11.222937+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-18 22:48:11.222949+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-18 22:48:11.223152+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-18 22:48:11.223166+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always di2019-06-18 22:48:11.223178+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-18 22:48:11.223192+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_devic2019-06-18 22:48:11.223203+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-18 22:48:11.223218+0200 eventapp[5097:1966913] INFO:Twilio:[2019-06-18 22:48:11.223230+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-18 22:48:11.223242+0200 eventapp[5097:1966913] INFO:Twilio:[WebR2019-06-18 22:48:11.223254+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-18 22:48:11.223267+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-18 22:48:11.223279+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
O:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-18 22:48:11.223302+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-18 22:48:11.223325+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-18 22:48:11.223336+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-18 22:48:11.223393+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-18 22:48:11.223422+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-18 22:48:11.223435+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-18 22:48:11.223447+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
00 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-18 22:48:11.223473+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
6-18 22:48:11.223486+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-18 22:48:11.223498+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-18 22:48:11.223512+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-18 22:48:11.223538+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(channel.cc:111): Created channel for audio
2019-06-18 22:48:11.223610+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggrega2019-06-18 22:48:11.223624+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-18 22:48:11.223658+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(call.cc:1047): Update2019-06-18 22:48:11.223675+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-18 22:48:11.223704+0200 eventapp[5097:1966912] INFO:Twilio:[2019-06-18 22:48:11.223719+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:OnSignalingChange
] DEBUG:Twilio:[Core]:Signaling state: have-local-offer
2019-06-18 22:48:11.223777+0200 eventapp[5097:1966523] DEBUG:Twilio:[Platform]:Received signaling-state event: have-local-offer
2019-06-18 22:48:11.223795+0200 eventapp[5097:1966913] INFO:Twilio:[We2019-06-18 22:48:11.223838+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1338): WebRtcVoiceMediaChannel::SetRecvParameters: {codecs: [AudioCodec[111:opus:48000:0:2], AudioCodntapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1510): Setting receive voice codecs.
2019-06-18 22:48:11.223887+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1780): AddSendStream: {id:BB5Ba7a937126b85E02a3b5b6f21Cf22019-06-18 22:48:11.224111+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(neteq_impl.cc:110): NetEq config: sample_rate_hz=16000, enable_post_decode_va2019-06-18 22:48:11.224172+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_coding_module.cc:461): Created
22:48:11.224271+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:134): AudioSendStream: 43531627
2019-06-18 22:48:11.224374+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:199): AudioSendStream::ConfigureStream2019-06-18 22:48:11.224416+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
ventapp[5097:1966913] INFO:Twilio:[WebRTC]:(channel.cc:573): Add send stream ssrc: 43531627
2019-06-18 22:48:11.224503+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(channel.cc:735): Changing voice state, recv=0 send=0
eventapp[5097:1966912] INFO:Twilio:[WebRTC]:(peerconnection.cc:4735): Local and Remote descriptions must be applied to get the SSL Role of the SCTP transport.
2019-06-18 22:48:11.224599+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.c2019-06-18 22:48:11.224623+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitte2019-06-18 22:48:11.224638+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-18 22:48:11.224650+0200 eventapp[5097:1966913] INFO:Twilio2019-06-18 22:48:11.224661+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-18 22:48:11.224673+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-18 22:48:11.224687+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported o2019-06-18 22:48:11.224699+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-18 22:48:11.224713+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with2019-06-18 22:48:11.224724+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-18 22:48:11.224737+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
019-06-18 22:48:11.224755+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-18 22:48:11.224768+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.c2019-06-18 22:48:11.224781+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-18 22:48:11.224792+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-18 22:48:11.224803+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-18 22:48:11.224815+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_d2019-06-18 22:48:11.224826+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-18 22:48:11.224840+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capa2019-06-18 22:48:11.224851+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-18 22:48:11.224862+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection2019-06-18 22:48:11.224874+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-18 22:48:11.224885+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): De2019-06-18 22:48:11.224901+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-18 22:48:11.224915+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvo2019-06-18 22:48:11.224926+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-18 22:48:11.224970+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-18 22:48:11.224985+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
6914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:312): Start getting ports with prune_turn_ports disabled
2019-06-18 22:48:11.225091+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:onSetSessionLocalDescription
97:1966912] DEBUG:Twilio:[Core]:Local SDP - v=0
2019-06-18 22:48:11.225334+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:803): Network manager has started
2019-06-18 22:48:11.225355+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:72019-06-18 22:48:11.225458+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Udp
2019-06-18 22:48:11.225535+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort 2019-06-18 22:48:11.225555+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.225569+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0b200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-18 22:48:11.225597+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0b200:audio:1:02019-06-18 22:48:11.225733+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.c2019-06-18 22:48:11.225748+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0b200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.225780+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0b200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-18 22:48:11.225816+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0b200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.225843+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]: Allocation2019-06-18 22:48:11.225862+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0b800::1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.225875+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-18 22:48:11.225889+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding2019-06-18 22:48:11.225907+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Added port to allocator
8:11.225932+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Gathered candidate: Cand[:2313869578:1:udp:2122197247:[2a02:aa1:1015:x:x:x:x:x]:652019-06-18 22:48:11.225947+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Port ready.
019-06-18 22:48:11.225963+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.225979+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.226001+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-18 22:48:11.226245+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.226274+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]: Allocation Phase=Udp
2019-06-18 22:48:11.226290+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0ce00::1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.226297+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:New SipCall ...
2019-06-18 22:48:11.226305+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
:1966912] INFO:Twilio:[Core]:Looking up: chunderm.gll.twilio.com
2019-06-18 22:48:11.226317+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.226337+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-18 22:48:11.226363+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Gathered candidate: Cand[:814878045:1:udp:2122131711:[2a02:aa1:1680:x:x:x:x:x]:65343:local::0:QIFe:QeZyJ1iZGry55Aq1Ff1L51+l:8:900:0]
2019-06-18 22:48:11.226381+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port ready.
2019-06-18 22:48:11.226399+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(phys2019-06-18 22:48:11.226415+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.226435+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-18 22:48:11.226464+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.226495+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:100.71.103.x/32:Cellular]: Allocation Phase=Udp
2019-06-18 22:48:11.226511+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0d42019-06-18 22:48:11.226524+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-18 22:48:11.226537+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.226556+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Added port to allocator
2019-06-18 22:48:11.226579+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:1405018932:1:udp:2122063615:100.71.103.x:50491:local::0:QIFe:QeZyJ1iZGry55Aq1Ff1L51+l:6:900:0]
2019-06-18 22:48:11.226593+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[2019-06-18 22:48:11.226604+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.226658+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.226676+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-18 22:48:11.226706+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.226734+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Udp
2019-06-18 22:48:11.226750+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0e000::1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port created with network cost 10
200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-18 22:48:11.226776+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:822019-06-18 22:48:11.226789+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
22:48:11.226814+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Gathered candidate: Cand[:3664195025:1:udp:2122000639:[2a02:aa1:1680:x:x:x:x:x]:50492019-06-18 22:48:11.226831+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port ready.
 22:48:11.226844+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.226860+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0e000:aud2019-06-18 22:48:11.226878+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-18 22:48:11.226905+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.226940+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Udp
966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0e600::1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-18 22:48:11.226976+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329)2019-06-18 22:48:11.226988+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
p[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-18 22:48:11.227025+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicporta+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-18 22:48:11.227055+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicals2019-06-18 22:48:11.227069+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: SetOption(5, 0) fa2019-06-18 22:48:11.227085+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.stun.twilio.com:3478
8:11.227114+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.244644+0200 eventapp[5097:1967003] INFO:Twilio:[WebRTC]:(paced_sender.cc:97): PacedSender paused.
2019-06-18 22:48:11.279397+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Relay
:11.279430+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0ec00::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-18 22:48:11.279446+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.279464+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
22:48:11.279481+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
6914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca11000::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-18 22:48:11.279552+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocate2019-06-18 22:48:11.279568+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca11000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-18 22:48:11.279592+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca11000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.279623+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca11800::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-18 22:48:11.279638+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
8:11.279654+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca11800:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-18 22:48:11.279672+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca11800:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-18 22:48:11.279699+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]: Allocation Phase=Relay
2019-06-18 22:48:11.279718+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca12000::1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.279732+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.279749+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845):2019-06-18 22:48:11.279765+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca12000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.279794+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca12800::1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellul2019-06-18 22:48:11.279813+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.279830+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:2019-06-18 22:48:11.279850+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca12800:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.279881+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca13000::1:0:relay:Net[pdp_ip0:2a02:2019-06-18 22:48:11.279896+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.279913+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca13000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-18 22:48:11.279933+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca13000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-18 22:48:11.279962+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net2019-06-18 22:48:11.279980+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca13800::1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port created wi2019-06-18 22:48:11.279995+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.280011+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.c2019-06-18 22:48:11.280161+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca13800:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.280195+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca14000::1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.280211+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.280232+0200 eventapp[5097:1966914] INFO:Twilio:[W2019-06-18 22:48:11.280248+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca14000:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.280318+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0f400::1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.280334+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca0f400:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-18 22:48:11.280370+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca0f400:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-18 22:48:11.280396+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:100.71.103.x/32:Cellular]: Allocation Phase=Relay
2019-06-18 22:48:11.280414+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca0fc00::1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.280429+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.280445+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x2019-06-18 22:48:11.280461+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.280489+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca10400::1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.280505+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.281290+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Added port to allocator
2019-06-18 22:48:11.281308+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.281341+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca15200::1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port created with network cost 900
-06-18 22:48:11.281357+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.281378+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca15200:2019-06-18 22:48:11.281394+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-18 22:48:11.281420+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Relay
 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca15a00::1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-18 22:48:11.281452+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportal2019-06-18 22:48:11.281471+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca15a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-18 22:48:11.281487+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca15a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.281514+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca16200::1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-18 22:48:11.281529+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.281549+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca16200:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to 2019-06-18 22:48:11.281565+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca16200:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
:48:11.281592+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15ca16a00::1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-18 22:48:11.281606+0200 eventapp[5097:1966914] INFO:Twilio:[We2019-06-18 22:48:11.281622+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca16a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added2019-06-18 22:48:11.281638+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca16a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:443
06-18 22:48:11.281669+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Relay
2019-06-18 22:48:11.281718+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312019-06-18 22:48:11.281733+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
6-18 22:48:11.281750+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca17200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-18 22:48:11.281765+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca17200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.281793+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2019-06-18 22:48:11.281896+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audi2019-06-18 22:48:11.281915+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca17a00:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca17a00:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-18 22:48:11.281958+0200 eventapp[5097:1966914] INFO:Twilio:[W2019-06-18 22:48:11.281973+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port2019-06-18 22:48:11.281989+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15ca18200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
tapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x15ca18200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-18 22:48:11.323851+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: StunPort: stun host lookup received error 0
2019-06-18 22:48:11.323885+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.324071+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0e000:audio:1:0:local:2019-06-18 22:48:11.324101+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.324213+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.324247+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:42019-06-18 22:48:11.324276+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to joi2019-06-18 22:48:11.324327+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-18 22:48:11.324349+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(2019-06-18 22:48:11.325325+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:2019-06-18 22:48:11.325346+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.330382+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Tcp
2019-06-18 22:48:11.330416+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x2019-06-18 22:48:11.330501+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.330530+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15c0d4000:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-18 22:48:11.330574+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15c0d4000:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Gathered candidate: Cand[:4211360646:1:tcp:1518280447:169.254.78.x:55953:local::0:QIFe:QeZyJ1iZGry55Aq1Ff1L51+l:1:10:0]
:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15c0d4000:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port ready.
2019-06-18 22:48:11.330624+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not suppo2019-06-18 22:48:11.330645+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0d4000:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: SetOption(5, 0) failed: 0
4] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0d4000:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port completed gathering candidates.
2019-06-18 22:48:11.330712+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:122019-06-18 22:48:11.330733+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15c0e1000::1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-18 22:48:11.330794+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.330824+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportalloc2019-06-18 22:48:11.330862+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15c0e1000:audio:1:0:l2019-06-18 22:48:11.330912+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_2019-06-18 22:48:11.330931+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0e1000:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.330955+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0e1000:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: Port completed gathering candidates.
966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]: Allocation Phase=Tcp
2019-06-18 22:48:11.331007+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15c0e1800::1:0:local:Net[pd2019-06-18 22:48:11.331061+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
app[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15c0e1800:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-18 22:48:11.331121+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(ba2019-06-18 22:48:11.331143+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15c0e1800:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port ready.
2019-06-18 22:48:11.331181+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0e1800:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cel2019-06-18 22:48:11.331209+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0e1800:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port completed gathering candid2019-06-18 22:48:11.331244+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:100.71.103.x/32:Cellular]: Allocation Phase=Tcp
2019-06-18 22:48:11.331267+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.2019-06-18 22:48:11.331361+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
06-18 22:48:11.331388+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15c0e1e00:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Added port to allocator
O:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15c0e1e00:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:490545092:1:tcp:1518083839:100.71.103.x:55956:local::0:QIFe:QeZyJ1iZGry55Aq1Ff1L51+l:6:900:0]
2019-06-18 22:48:11.331446+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15c0e1e00:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port ready.
2019-06-18 22:48:11.331462+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(phy2019-06-18 22:48:11.331486+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0e1e00:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: SetOption(5, 0) f2019-06-18 22:48:11.331517+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0e1e00:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port completed gathering candidates.
0 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Tcp
2019-06-18 22:48:11.331563+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15c0e2400::1:0:l2019-06-18 22:48:11.331618+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-18 22:48:11.331649+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15c0e2400:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-18 22:48:11.331680+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basi331705+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15c0e2400:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-18 22:48:11.331721+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(phy2019-06-18 22:48:11.331741+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0e2400:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: SetOption(5,2019-06-18 22:48:11.331763+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0e2400:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
331787+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]: Allocation Phase=Tcp
2019-06-18 22:48:11.331808+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x15c0e22019-06-18 22:48:11.331856+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
880+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x15c0e2a00:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-18 22:48:11.331911+0200 eventapp[5097:1966914] INFO:Twilio:[Web 22:48:11.331943+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15c0e2a00:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-18 22:48:11.331959+0200 eventapp[5097:1966914] INFO:Twilio:[We2019-06-18 22:48:11.331978+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15c0e2a00:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Se2019-06-18 22:48:11.332000+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15c0e2a00:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
2019-06-18 22:48:11.380503+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: StunPort: stun host lookup received error 0
2019-06-18 22:48:11.380547+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0ce00:audio:1:0:local:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port completed gathering candidates.
2019-06-18 22:48:11.380624+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: StunPort: stun host lookup received error 0
2019-06-18 22:48:11.380659+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0b800:audio:1:0:local:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellul2019-06-18 22:48:11.380696+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.380744+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-18 22:48:11.380880+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.380932+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca12800:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1012019-06-18 22:48:11.380959+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca13000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
2019-06-18 22:48:11.381033+0200 eventapp[5097:1966914] INFO:Twilio:[We2019-06-18 22:48:11.381075+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca12800:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:12019-06-18 22:48:11.381118+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca13000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/62019-06-18 22:48:11.381158+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: StunPort: stun ho2019-06-18 22:48:11.381191+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0e000:audio:1:0:local:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
2019-06-18 22:48:11.381216+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.381942+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Po2019-06-18 22:48:11.381974+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls h2019-06-18 22:48:11.382056+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.382097+0200 eventapp[5097:1966914] INFO:Twilio:[W2019-06-18 22:48:11.382128+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread t2019-06-18 22:48:11.382174+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-18 22:48:11.382242+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:799): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Failed to send TURN message, error: 65
ventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: TURN allocate request sent, id=616a734152726c3344484b55
2019-06-18 22:48:11.382298+0200 eventapp[5097:1966914] INFO:Twilio:[WebR2019-06-18 22:48:11.382604+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca17200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x2019-06-18 22:48:11.382631+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
7:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca12000:audio:1:0:relay:Net[pdp_ip0:2a02:aa1:1015:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
2019-06-18 22:48:11.382700+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.382741+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca18200:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-18 22:48:11.382772+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca17a00:audio:1:0:relay:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port encounter2019-06-18 22:48:11.382833+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-18 22:48:11.382863+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread2019-06-18 22:48:11.382903+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca13800:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
2019-06-18 22:48:11.382928+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
6914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca16200:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-18 22:48:11.382997+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Wait2019-06-18 22:48:11.383034+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: StunPort: stun2019-06-18 22:48:11.383065+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0e600:audio:1:0:local:Net[ipsec3:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
-06-18 22:48:11.383089+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.383126+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779):2019-06-18 22:48:11.383151+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blockin2019-06-18 22:48:11.383191+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca11800:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:42019-06-18 22:48:11.383275+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicpacketsocketfactory.cc:187): TCP connect failed with error 65
2019-06-18 22:48:11.383330+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:340): Failed to cr2019-06-18 22:48:11.383355+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.383426+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicport2019-06-18 22:48:11.383459+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-18 22:48:11.383540+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.383587+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca11000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-18 22:48:11.383656+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicpacketsocketfactory.cc:187): TCP connect failed with error 65
2019-06-18 22:48:11.383737+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:340): Failed to create TURN client socket
2019-06-18 22:48:11.383765+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.383805+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca14000:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
2019-06-18 22:48:11.383832+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:22019-06-18 22:48:11.383869+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-18 22:48:11.383928+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate request sen2019-06-18 22:48:11.383957+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
O:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca15a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-18 22:48:11.384022+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.384058+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca13800:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port encountered error while gathering candidates.
2019-06-18 22:48:11.384091+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x15ca16a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
9-06-18 22:48:11.384118+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-18 22:48:11.384155+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocat2019-06-18 22:48:11.384188+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca0f400:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port encountered error while gathering candidates.
2019-06-18 22:48:11.384220+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca11800:audio:12019-06-18 22:48:11.384251+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca11000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port encountered error while gathering candidates.
2019-06-18 22:48:11.384291+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca14000:audio:1:0:relay:Net[pdp_ip1:2a02:aa1:1680:x:x:x:x:x/64:Cellular]]: Port encou2019-06-18 22:48:11.384324+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca15a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port encountered error while ga2019-06-18 22:48:11.384355+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x15ca16a00:audio:1:0:relay:Net[ipsec2:2a02:aa1:1680:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-18 22:48:11.386980+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:3539395968:1:udp:1685855999:94.191.138.x:3451:stun:12019-06-18 22:48:11.390632+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Address family: 2: 35.157.205.11
2019-06-18 22:48:11.390658+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Address family: 2: 35.157.205.11
2019-06-18 22:48:11.390689+0200 eventapp[5097:1966912] INFO:Twilio:[Core]:Setting outbound proxy to: sip:35.157.205.11:443;transport=tls
2019-06-18 22:48:11.391004+0200 eventapp[5097:1966912] INFO:Twilio:[WebRTC]:(messagequeue.cc:535)2019-06-18 22:48:11.391081+0200 eventapp[5097:1966523] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-18 22:48:11.391260+0200 eventapp[5097:1967001] DEBUG:Twilio:[Core]:Socket created in ../resiprocate-1.8/resip/stack/TcpBaseTransport.cxx at line 223, transport: 1, socket: 58
2019-06-18 22:48:11.391382+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS connection for domain  [ V4 35.157.205.11:443 TLS target domain=35.157.205.11 mFlowKey=0 ] on 58
2019-06-18 22:48:11.391563+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3045572470 1 udp 2122260223 169.252019-06-18 22:48:11.391608+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2313869578 1 udp 2122197247 2a02:aa1:1015:5a7c:24b0:50b1:6c31:74fa 65342019-06-18 22:48:11.391645+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:814878045 1 udp 2122131711 2a02:aa1:1680:5539:d915:7e54:c5a4:bc13 65343 typ host generation 0 ufrag QIFe network-id 8 network-cost 900
2019-06-18 22:48:11.391682+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1405018932 1 udp 2122063615 100.71.103.46 50491 typ host generation 0 ufrag QIFe network-id 6 network-cost 900
2019-06-18 22:48:11.391761+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3664195025 1 udp 2122000639 2a02:aa1:1680:5539:c89:4ff:2bdd:a6ec 50492 typ host generation 0 ufrag QIFe network-id 2 network-co2019-06-18 22:48:11.391850+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3664195025 1 udp 2121935103 2a02:aa1:1680:5539:c89:4ff:2bdd:a6ec 50493 typ host generation 0 ufrag QIFe network-id 3 network-cost 10
2019-06-18 22:48:11.391889+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:4211360646 1 tcp 1518280447 169.254.78.5 55953 typ host tcptype passive generation 0 ufrag QIFe network-id 1 network-cost 10
0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3345556986 1 tcp 1518217471 2a02:aa1:1015:5a7c:24b0:50b1:6c31:74fa 55954 typ host tcptype passive generation 0 ufrag QIFe network-id 7 network-cost 900
2019-06-18 22:48:11.391962+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2115105197 1 tcp 1518151935 2a02:aa1:1680:5539:d915:7e54:c5a4:bc13 55955 typ host tcptype passive generation 0 ufrag QIFe network-id 8 network-cost 900
8:11.392021+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:490545092 1 tcp 1518083839 100.71.103.46 55956 typ host tcptype passive generation 0 ufrag QIFe network-id 6 network-cost 900
ntapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2498023713 1 tcp 1518020863 2a02:aa1:1680:5539:c89:4ff:2bdd:a6ec 55957 typ host tcptype passive generation 0 ufrag QIFe network-id 2 network-cost 10
2019-06-18 22:48:11.392192+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2498023713 1 tcp 1517955327 2a02:aa1:1680:5539:c89:4ff:2bdd:a6ec 55958 typ host tcptype passive generation 0 ufrag QIFe network-id 3 network-cost 10
2019-06-18 22:48:11.392256+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3539395968 1 udp 1685855999 94.191.138.174 3451 typ srflx raddr 100.71.103.46 rport 50491 generation 0 ufrag QIFe network-id 6 network-cost 900
2019-06-18 22:48:11.439130+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake starting (client mode)
2019-06-18 22:48:11.439167+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-18 22:48:11.439254+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.249:3478 using tcp.
2019-06-18 22:48:11.439356+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate request sent, id=7445484d48412f6471304d6d
2019-06-18 22:48:11.443987+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0d400:audio:1:0:local:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port completed gathering candidates.
[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.249:443 using tcp.
2019-06-18 22:48:11.444108+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.12019-06-18 22:48:11.444170+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Received T2019-06-18 22:48:11.444273+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate request sent, id=754c64436a6c56666a667354
2019-06-18 22:48:11.501339+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Received TURN allocate error response, id=7445484d48412f6471304d6d, code=401, rtt=62
2019-06-18 22:48:11.501819+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate request sent, id=37634f57736f513379686745
2019-06-18 22:48:11.510231+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Received TURN allocate error response, id=4169487056355a477a497844, code=401, rtt=66
2019-06-18 22:48:11.510496+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate request sent, id=756a34345576306968424176
2019-06-18 22:48:11.570767+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-18 22:48:11.571117+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS sessions set up with TLSv1.2 TLSv1/SSLv3 ECDHE-RSA-AES128-GCM-SHA256
2019-06-18 22:48:11.571499+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <*.twilio.com>
2019-06-18 22:48:11.571629+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <twilio.com>
2019-06-18 22:48:11.572897+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake done for peer *.twilio.com, twilio.com
2019-06-18 22:48:11.578010+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-18 22:48:11.627212+0200 eventapp[5097:1967002] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 100 tid=85985093d4c3db40 cseq=1 INVITE / 1 from(wire)
2019-06-18 22:48:11.638385+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:799): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Failed to send TURN message, error: 65
2019-06-18 22:48:11.638430+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x15ca0ec00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: TURN allocate request sent, id=616a734152726c3344484b55
2019-06-18 22:48:11.638481+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-18 22:48:11.640136+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate requested successfully, id=37634f57736f513379686745, code=0, rtt=138
2019-06-18 22:48:11.640192+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:3197935031:1:udp:24911871:18.195.48.x:25782:relay:94.192019-06-18 22:48:11.640228+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port ready.
 22:48:11.640247+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.640267+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca10400:aud2019-06-18 22:48:11.640354+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]2019-06-18 22:48:11.640384+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3197935031 1 udp 24911871 18.195.48.249 25782 typ relay raddr 94.191.138.174 rport 3415 generation 0 ufrag 2019-06-18 22:48:11.640392+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Scheduled refresh in 540000ms.
2019-06-18 22:48:11.686278+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate requested successfully, id=754c64436a6c56666a667354, code=0, rtt=242
9-06-18 22:48:11.686360+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:4028588359:1:udp:41689343:18.195.48.x:59672:relay:94.192019-06-18 22:48:11.686396+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port ready.
 22:48:11.686423+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.686453+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: SetOption(5, 0) failed: 0
2019-06-18 22:48:11.686510+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]2019-06-18 22:48:11.686560+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Scheduled refresh in 540000ms.
8:11.686560+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:4028588359 1 udp 41689343 18.195.48.249 59672 typ relay raddr 94.191.138.174 rport 3451 generation 0 ufrag QIFe network-id 6 network-cost 900
2019-06-18 22:48:11.736040+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN allocate requested successfully, id=756a34345576306968424176, code=0, rtt=225
2019-06-18 22:48:11.736109+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Gathered candidate: Cand[:3197935031:1:udp:24911615:18.195.48.x:53733:relay:942019-06-18 22:48:11.736141+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port ready.
-18 22:48:11.736166+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-18 22:48:11.736194+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x15ca15200:2019-06-18 22:48:11.736232+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Port completed gathering candidates.
2019-06-18 22:48:11.736266+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3197935031 1 udp 24911615 18.195.48.249 53733 typ relay raddr 94.191.138.174 rport 3417 generation 0 ufr2019-06-18 22:48:11.736481+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: Scheduled refresh in 540000ms.
2019-06-18 22:48:11.831469+0200 eventapp[5097:1967001] WARN:Twilio:[Signaling]:RESIP::TRANSPORT: Can't find matching transport [ V4 100.71.103.46:0 TLS target domain=unspecified mFlowKey=0 ]
2019-06-18 22:48:11.831602+0200 eventapp[5097:1967002] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 503 tid=85985093d4c3db40 cseq=1 INVITE / 1 from(wire)
2019-06-18 22:48:11.831912+0200 eventapp[5097:1967002] INFO:Twilio:[Signaling]:RESIP::DUM: Failu2019-06-18 22:48:11.831979+0200 eventapp[5097:1967002] INFO:Twilio:[Signaling]:RESIP::DUM: Transition UAC_Start -> InviteSession::Terminated
2019-06-18 22:48:11.832010+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:virtual void twilio::voice::SipCall::onFailure(resip::ClientInviteSessionHandle, const resip::SipMessage &)
2019-06-18 22:48:11.832042+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:Received incoming SIP messTo: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=2f7a85a0a4e6a4f0274902cbd6623f6a-74e8
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=60768b4e
Server: Twilio Client SBC
2019-06-18 22:48:11.832148+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:onFailure
18 22:48:11.832183+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:onTerminated: reason 0
2019-06-18 22:48:11.832212+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=2f7a85a0a4e6a4f0274902cbd6623f6a-74e8
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=60768b4e
Server: Twilio Client SBC
2019-06-18 22:48:11.832252+0200 eventapp[5097:1966912] TRACE:Twilio:[Core]:stopDependents
2019-06-18 22:48:11.832316+0200 eventapp[5097:1966523] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, 2019-06-18 22:48:11.832410+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
2019-06-18 22:48:11.832531+0200 eventapp[5097:1967002] DEBUG:Twilio:[Core]:onTerminated
[5097:1967002] DEBUG:Twilio:[Core]:~SipCall(): 0x15c0d2c00
2019-06-18 22:48:11.832684+0200 eventapp[5097:1966523] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending error event
2019-06-18 22:48:11.833247+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:OnIceConnectionChange
97:1966912] DEBUG:Twilio:[Core]:Call State: Disconnected ICE connection state: closed
2019-06-18 22:48:11.833308+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-18 22:48:11.833333+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:2019-06-18 22:48:11.833627+0200 eventapp[5097:1966523] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-18 22:48:11.834441+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(webrtcvoi2019-06-18 22:48:11.834492+0200 eventapp[5097:1966523] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-18 22:48:11.834704+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
ventapp[5097:1966913] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:157): ~AudioSendStream: 43531627
2019-06-18 22:48:11.834896+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(channel.cc:125): Destroyed channel: audio
app[5097:1966523] DEBUG:Twilio:[Platform]:Received signaling-state event: closed
2019-06-18 22:48:11.836038+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x15ca0fc00:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN 2019-06-18 22:48:11.836189+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x15ca10400:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN refresh request sent, id=5952662019-06-18 22:48:11.836393+0200 eventapp[5097:1966914] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x15ca15200:audio:1:0:relay:Net[pdp_ip0:100.71.103.x/32:Cellular]]: TURN refresh request sent, id=525a7667515873446145664f
22:48:11.837020+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-18 22:48:11.837053+0200 eventapp[5097:1966913] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-18 22:48:11.837149+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Shutting down DUM thread ...
2019-06-18 22:48:12.004198+0200 eventapp[5097:1966647] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.184642+0200 eventapp[5097:1966647] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.326138+0200 eventapp[5097:1966616] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.381205+0200 eventapp[5097:1966624] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.381442+0200 eventapp[5097:1966624] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.382834+0200 eventapp[5097:1966624] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.501674+0200 eventapp[5097:1966624] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-18 22:48:12.838110+0200 eventapp[5097:1966912] DEBUG:Twilio:[Core]:Shutting down SIP stack thread ...
2019-06-18 22:48:12.838861+0200 eventapp[5097:1967001] INFO:Twilio:[Signaling]:RESIP::SIP: Shutting down stack thread
2019-06-18 22:48:12.843903+0200 eventapp[5097:1966912] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 1012ms to dispatch. Posted from: onFailure@/Users/distiller/project/voice/src/call_impl.cpp:1330

Best regards, Joel

bobiechen-twilio commented 5 years ago

Thanks for the additional info Joel.

If it's not too much trouble for you, could you help us try using a different device or the simulator? Based on what you described the Twilio Network Traversal Service does offer valid connectivity but somehow the network interface (both Wifi and LTE) on the device doesn't allow the connection.

-bobie

jbohman commented 5 years ago

I've tried it on an iPhone 7 as well. Same issue, it fails with 503 Service Unavailable.

See attached log below:

2019-06-19 18:58:46.758970+0200 eventapp[9598:2969263] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:101 -[TVORTCAudioSession initWithAudioSession:]): RTCAudioSession (0x1c04cc080): init.
2019-06-19 18:58:46.763745+0200 eventapp[9598:2969263] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:187 -[TVORTCAudioSession addDelegate:]): Adding delegate: (0x1c4c23aa0)
2019-06-19 18:58:46.767516+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating peer connection signaling thread ...
2019-06-19 18:58:46.768374+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating peer connection worker thread ...
2019-06-19 18:58:46.768584+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating peer connection networking thread ...
:46.768781+0200 eventapp[9598:2969263] TRACE:Twilio:[Core]:Creating built-in AudioDecoderFactory ...
2019-06-19 18:58:46.769020+0200 eventapp[9598:2969263] TRACE:Twilio:[Core]:Creating built-in AudioEncoderFactory ...
2019-06-19 18:58:46.770127+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating media engine ...
2019-06-19 18:58:46.772562+0200 eventapp[9598:2969263] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
2019-06-19 18:58:46.774947+0200 eventapp[9598:2969263] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:211): WebRtcVoiceEngine::WebRtcVoiceEngine
2019-06-19 18:58:46.775037+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Done creating media engine.
2019-06-19 18:58:46.775108+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating peer connection factory ...
2019-06-19 18:58:46.778065+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:234): WebRtcVoiceEngine::Init
2019-06-19 18:58:46.778337+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:241): Supported send codecs in order of preference:
2019-06-19 18:58:46.779782+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-19 18:58:46.779882+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/16000/1 (103)
2019-06-19 18:58:46.780058+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/32000/1 (104)
2019-06-19 18:58:46.780269+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): G722/8000/1 (9)
2019-06-19 18:58:46.780450+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMU/8000/1 (0)
2019-06-19 18:58:46.780537+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMA/8000/1 (8)
58:46.780618+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/32000/1 (106)
2019-06-19 18:58:46.780748+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/16000/1 (105)
+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/8000/1 (13)
2019-06-19 18:58:46.780963+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/48000/1 (110)
0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/32000/1 (112)
2019-06-19 18:58:46.781128+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/16000/1 (113)
:58:46.781366+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/8000/1 (126)
2019-06-19 18:58:46.781455+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:247): Supported recv codecs in order 2019-06-19 18:58:46.781741+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-19 18:58:46.781823+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/16000/1 (103)
2019-06-19 18:58:46.781955+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/32000/1 (104)
2019-06-19 18:58:46.782034+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengin2019-06-19 18:58:46.782115+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMU/8000/1 (0)
2019-06-19 18:58:46.782324+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCM2019-06-19 18:58:46.782588+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/32000/1 (106)
2019-06-19 18:58:46.782672+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/16000/1 (105)2019-06-19 18:58:46.782754+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/8000/1 (13)
2019-06-19 18:58:46.782983+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/48000/1 (110)
2019-06-19 18:58:46.783074+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/32000/1 (112)
2019-06-19 18:58:46.783205+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/16000/1 (113)
2019-06-19 18:58:46.783289+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/8000/1 (126)
2019-06-19 18:58:46.783731+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:74): Create
2019-06-19 18:58:46.784173+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:64): AudioDeviceBuffer::ctor
2019-06-19 18:58:46.784525+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:108): AudioDeviceModuleI2019-06-19 18:58:46.784613+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:112): CheckPlatform
2019-06-19 18:58:46.784691+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:126): current platform is IOS
2019-06-19 18:58:46.784768+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:142): CreatePlatformSpecificObjects
2019-06-19 18:58:46.784892+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:912): PlatformAudioLayer
2019-06-19 18:58:46.785532+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:115): AudioDeviceIOS::ctor<NSThread: 0x1c467e480>{number = 11, name = (null)}
2019-06-19 18:58:46.785720+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:254): iPhone Audio APIs will be utilized.
2019-06-19 18:58:46.785801+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:282): AttachAudioBuffer
2019-06-19 18:58:46.786063+0200 eventapp[9598:2969270] INFO:Twilio:[WebR2019-06-19 18:58:46.786145+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:302): Init
2019-06-19 18:58:46.786270+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:136): AudioDeviceIOS::Init
2019-06-19 18:58:46.786361+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:643): AudioDeviceIOS::UpdateAudioDevicebuffer
2019-06-19 18:58:46.786450+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:204): SetPlayoutSampleRate(48000)
2019-06-19 18:58:46.786528+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:228): SetPlayoutChannels(1)
2019-06-19 18:58:46.786607+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:197): SetRecordingSampleRate(48000)
2019-06-19 18:58:46.786803+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:221): SetRecordingChannels(1)
969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:643): SetPlayoutDevice(0)
2019-06-19 18:58:46.787186+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:84): SetPlayoutDevice: Not implemented
2019-06-19 18:58:46.787263+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:335): InitSpeaker
2019-06-19 18:58:46.787343+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:547): StereoPlayoutIsAvailable
2019-06-19 18:58:46.787534+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:554): output: 0
2019-06-19 18:58:46.787861+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:559): SetStereoPlayout(0)
2019-06-19 18:58:46.787943+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:137): SetStereoPlayout: Not implemented
2019-06-19 18:58:46.788020+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:567): stereo playout is not supported
8:46.788546+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(adm_helpers.cc:56): Failed to set stereo playout mode.
2019-06-19 18:58:46.788634+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:705): SetRecordingDevice(0)
18:58:46.788712+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:186): SetRecordingDevice: Not implemented
2019-06-19 18:58:46.788788+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:341): InitMic2019-06-19 18:58:46.788866+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:504): StereoRecordingIsAvailable
2019-06-19 18:58:46.789058+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:511): output: 0
2019-06-19 18:58:46.789140+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:516): SetStereoRecording(0)
2019-06-19 18:58:46.789218+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:122): SetStereoR2019-06-19 18:58:46.789476+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:523): failed to change stereo recording
2019-06-19 18:58:46.789553+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(adm_helpers.c2019-06-19 18:58:46.789881+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 0
2019-06-19 18:58:46.790574+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
9 18:58:46.790808+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:818): RegisterAudioCallback
2019-06-19 18:58:46.790887+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:84): RegisterAudioCallback
 18:58:46.791140+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {aec: true, agc: true, ns: true, hf: true, swap: false, audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fas70] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-19 18:58:46.791421+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-19 18:58:46.791498+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-19 18:58:46.791692+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840)2019-06-19 18:58:46.791771+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-19 18:58:46.791850+0200 eventapp[9598:2969270] INFO:Twilio:[We2019-06-19 18:58:46.792232+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-19 18:58:46.792355+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(a2019-06-19 18:58:46.792749+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-19 18:58:46.792871+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_devic2019-06-19 18:58:46.793499+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-19 18:58:46.793715+0200 eventapp[9598:2969270] INFO:Twilio:[2019-06-19 18:58:46.794151+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-19 18:58:46.794369+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]2019-06-19 18:58:46.794649+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
NFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-19 18:58:46.795237+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:507): Stereo swapping enabled? 0
2019-06-19 18:58:46.795457+0200 eventapp[9598:2969270] INFO:Twilio:[W2019-06-19 18:58:46.795663+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-19 18:58:46.795868+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]2019-06-19 18:58:46.796074+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-19 18:58:46.796465+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-19 18:58:46.796674+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-19 18:58:46.797084+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
46.797499+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-19 18:58:46.797709+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-19 18:58:46.798584+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Done creating peer connection factory.
2019-06-19 18:58:46.799163+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:824): RegisterRecordingSink
 18:58:46.799285+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:95): RegisterRecordingSink
2019-06-19 18:58:46.799912+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Adding audio track ...
2019-06-19 18:58:46.993167+0200 eventapp[9598:2968931] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:847 -[TVORTCAudioSession observeValueForKeyPath:ofObject:change:context:]): OutputVolumeDidChange to 1.000000
2019-06-19 18:58:47.008638+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-19 18:58:47.016543+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-19 18:58:47.020295+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x1c040dbe0, 
2019-06-19 18:58:47.026690+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating dedicated notifier queue ...
2019-06-19 18:58:47.042594+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Initializing SIP stack ...
2019-06-19 18:58:47.115004+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Adding IPv4/IPv6 TLS transports ...
2019-06-19 18:58:47.116826+0200 eventapp[9598:2969263] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-19 18:58:47.117248+0200 eventapp[9598:2969263] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-19 18:58:47.121058+0200 eventapp[9598:2969263] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-19 18:58:47.122792+0200 eventapp[9598:2969263] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-19 18:58:47.125662+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Initializing DUM ...
2019-06-19 18:58:47.126872+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Starting DUM thread ...
2019-06-19 18:58:47.130995+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:AppleReachability::AppleReachability()
2019-06-19 18:58:47.131246+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Creating zeroAddrReachability
2019-06-19 18:58:47.144735+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Creating peer connection ...
2019-06-19 18:58:47.146266+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(alr_experiment.cc:65): Using ALR experiment settings: pacing factor: 1, max pacer queue length: 2875, ALR start bandwidth usage percent: 80, ALR end budget level percent: 40, ALR end budget level percent: -60, ALR experiment group ID: 3
2019-06-19 18:58:47.147973+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(bitrate_prober.cc:62): Bandwidth probing enabled, set to inactive
2019-06-19 18:58:47.153566+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc2019-06-19 18:58:47.153799+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:105): Using Trendline filter for delay change estimation with window size 20
2019-06-19 18:58:47.154233+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-19 18:58:47.154315+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:313): BWE Setting start bitrate to: 300000
2019-06-19 18:58:47.154375+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x1c41389c0
2019-06-19 18:58:47.154602+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(cpu_info.cc:46): Available number of cores: 2
2019-06-19 18:58:47.155108+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-19 18:58:47.155166+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(remote_bitrate_esti2019-06-19 18:58:47.157258+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(opensslidentity.cc:44): Making key pair
2019-06-19 18:58:47.157273+0200 eventapp[9598:2969263] INFO:Twilio:[Core]:Adding local stream to peer connection ...
2019-06-19 18:58:47.157589+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(opensslidentity.cc:92): Returning key pair
2019-06-19 18:58:47.157615+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(opensslidentity.cc:99): Making certificate for WebRTC
2019-06-19 18:58:47.157963+0200 eventapp[9598:2969263] DEBUG:Twilio:[Core]:Create initial local offer
2019-06-19 18:58:47.158008+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(opensslidentity.cc:146): Returning certificate
2019-06-19 18:58:47.158878+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:onCreateSessionLocalDescription
2019-06-19 18:58:47.159228+0200 eventapp[9598:2969263] DEBUG:Twilio:[Platform]:-[TVOLocalAudioTrack dealloc]
9 18:58:47.159344+0200 eventapp[9598:2969263] DEBUG:Twilio:[Platform]:-[TVOAudioTrack dealloc]
2019-06-19 18:58:47.159540+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:441): Set backup connection ping interval to 25000 milliseconds.
2019-06-19 18:58:47.159578+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:450): Set ICE receiving timeout to 30000 milliseconds
2019-06-19 18:58:47.159600+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:457): Set ping most likely connection to 0
2019-06-19 18:58:47.159625+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:464): Set stable_writable_connection_ping_interval to 2500
2019-06-19 18:58:47.159699+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:477): Set presume writable when fully relayed to 0
2019-06-19 18:58:47.159721+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:486): Set regather_on_failed_networks_interval to 32019-06-19 18:58:47.159742+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:505): Set receiving_switching_delay to1000
2019-06-19 18:58:47.159787+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:71): Setting RTCP Transport on audio transport 0x0
2019-06-19 18:58:47.159809+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:76): Setting RTP Transport on audio transport 0x10c6b0110
2019-06-19 18:58:47.159852+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:378): Set ICE ufrag: mo84 pwd: XzZC4sj7ED8t4filVDt8zj97 on transport audio
2019-06-19 18:58:47.160079+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-19 18:58:47.160110+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio2019-06-19 18:58:47.160132+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-19 18:58:47.160269+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-19 18:58:47.160309+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-19 18:58:47.160347+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-19 18:58:47.160385+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-19 18:58:47.160454+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-19 18:58:47.160496+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_2019-06-19 18:58:47.160535+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-19 18:58:47.160572+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-19 18:58:47.160609+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-19 18:58:47.160647+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-19 18:58:47.160730+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-19 18:58:47.160767+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-19 18:58:47.160803+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-19 18:58:47.160906+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-19 18:58:47.160955+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-19 18:58:47.160992+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-19 18:58:47.161050+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-19 18:58:47.161099+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-19 18:58:47.161162+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-19 18:58:47.161200+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-19 18:58:47.161343+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-19 18:58:47.161445+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-19 18:58:47.161487+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-19 18:58:47.161530+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-19 18:58:47.161645+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(channel.cc:111): Created channel for audio
2019-06-19 18:58:47.161993+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down2019-06-19 18:58:47.162036+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-19 18:58:47.162168+0200 eventapp[9598:2969269] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 1602054220113931675 Old state: kStable New state: kHaveLocalOffer
2019-06-19 18:58:47.162188+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-19 18:58:47.162203+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Signaling state: have-local-offer
2019-06-19 18:58:47.162325+0200 eventapp[9598:2968931] DEBUG:Twilio:[Platform]:Received signaling-state event: have-local-offer
2019-06-19 18:58:47.164905+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(channel.cc:743): Setting local voice description
2019-06-19 18:58:47.165298+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1338): WebRtcVoiceMediaChannel::SetRecvParameters: {codecs: [AudioCodec[111:opus:48000:0:2], AudioCodec[103:ISAC:16000:0:1], AudioCodec[104:ISA2019-06-19 18:58:47.165858+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1510): Setting receive voice codecs.
2019-06-19 18:58:47.165955+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1780): AddSendStream: {id:4091D8Dd8EF20e7Be1Eb079eD86C7db9;ssrcs:[665879128];ssrc_groups:;cname:o1LxBN6YQLy6Q9fX;stream_ids:3AA7e55C50A7b2f0FF98BB5a7fdBCe5B;}
2019-06-19 18:58:47.166533+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(neteq_impl.cc:110): NetEq config: sample_rate_hz=16000, enable_post_decode_vad=true, max_packets_in_buffer=0, backgrou2019-06-19 18:58:47.166659+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_coding_module.cc:461): Created
2019-06-19 18:58:47.166788+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:134): AudioSendStream: 665879128
2019-06-19 18:58:47.166846+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:199): AudioSendStream::ConfigureStream: {rtp: {ssrc: 665879128, extensions: [], nack: {rtp_history_ms: 0}, c_name: o1LxBN6YQLy6Q9fX}, send_transport: (Transport), min_bitrate_bps: -1, max_bitrate_bps: -1, send_codec_spec: <unset>}
2019-06-19 18:58:47.166975+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-19 18:58:47.167056+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-19 18:58:47.167093+0200 eventapp[9598:2969270] INFO:Twilio:[WebR2019-06-19 18:58:47.167219+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(channel.cc:735): Changing voice state, recv=0 send=0
2019-06-19 18:58:47.167285+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-19 18:58:47.167319+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-19 18:58:47.167382+0200 eventapp[9598:2969269] INFO:Twilio:[WebRTC]:(peerconnection.cc:4735): Local and Remote descriptions must be applied to get the SSL Role of the SCTP transport.
2019-06-19 18:58:47.167434+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {}
2019-06-19 18:58:47.167490+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer2019-06-19 18:58:47.167523+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-19 18:58:47.167554+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-19 18:58:47.167585+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-19 18:58:47.167619+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-19 18:58:47.167652+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-19 18:58:47.167702+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-19 18:58:47.167735+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-19 18:58:47.167768+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-19 18:58:47.167799+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-19 18:58:47.167832+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-19 18:58:47.167881+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-19 18:58:47.167916+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-19 18:58:47.167947+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-19 18:58:47.167979+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-19 18:58:47.168022+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_device_im2019-06-19 18:58:47.168155+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-19 18:58:47.168215+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-19 18:58:47.168248+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-19 18:58:47.168301+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-19 18:58:47.168337+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-19 18:58:47.168369+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-19 18:58:47.168401+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-19 18:58:47.168433+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengin2019-06-19 18:58:47.168465+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-19 18:58:47.168519+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-19 18:58:47.168552+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-19 18:58:47.168589+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-19 18:58:47.168690+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:312): Start getting ports with prune_turn_ports disabled
2019-06-19 18:58:47.169211+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:803): Network manager has started
9248+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:718): Allocate ports on 6 networks
2019-06-19 18:58:47.169427+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.0.x/24:Wifi]: Allocation Phase=Udp
2019-06-19 18:58:47.169491+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10618ec00::1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.169547+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-19 18:58:47.169567+0200 eventapp[9598:2969271] INFO:Twilio:[WebR2019-06-19 18:58:47.169666+0200 eventapp[9598:2968931] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: outgoing
2019-06-19 18:58:47.170010+0200 eventapp[9598:2968931] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending outgoing event
2019-06-19 18:58:47.171243+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Added port to allocator
2019-06-19 18:58:47.171313+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Gathered candidate: Cand[:1511920713:1:udp:2122260223:192.168.0.x:50610:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:1:10:0]
2019-06-19 18:58:47.171496+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port ready.
2019-06-19 18:58:47.171519+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.172193+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.172238+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.172297+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.172355+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Udp
2019-06-19 18:58:47.172383+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x107164600::1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.174201+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-19 18:58:47.174261+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107164600:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-19 18:58:47.174323+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107164600:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Gathered candidate: Cand[:2092367390:1:udp:2122194687:169.254.91.x:54928:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:2:10:0]
2019-06-19 18:58:47.174401+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x107164600:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port ready.
2019-06-19 18:58:47.174422+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.174444+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x107164600:audio:1:0:local:Net2019-06-19 18:58:47.174480+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107164600:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.174535+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107164600:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.174580+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]: Allocation Phase=Udp
2019-06-19 18:58:47.174972+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x106187c00::1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.175142+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handl2019-06-19 18:58:47.175163+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.175187+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-19 18:58:47.175244+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Gathered candidate: Cand[:1738242814:1:udp:2122131711:[2001:2090:1703:x:x:x:x:x]:54929:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:8:900:0]
2019-06-19 18:58:47.175582+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port ready.
2019-06-19 18:58:47.175606+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593):2019-06-19 18:58:47.175628+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.175659+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.175711+0200 eventapp[9598:2969271] INFO:Twilio:[2019-06-19 18:58:47.169690+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:onSetSessionLocalDescription
2019-06-19 18:58:47.175865+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Local SDP - v=0
106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.176778+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:172.18.131.x/32:Cellular]: Allocation Phase=Udp
2019-06-19 18:58:47.176816+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x107168a00::1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.176841+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-19 18:58:47.177161+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.177187+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Added port to allocator
019-06-19 18:58:47.177304+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Gathered candidate: Cand[:1279972877:1:udp:2122063615:172.18.131.x:53737:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:7:900:0]
2019-06-19 18:58:47.177334+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port ready.
2019-06-19 18:58:47.177355+0200 eventapp[9598:2969271] INFO:Twilio:[W2019-06-19 18:58:47.177890+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:New SipCall ...
2019-06-19 18:58:47.178024+0200 eventapp[9598:2969269] INFO:Twilio:[Core]:Looking up: chunderm.gll.twilio.com
2019-06-19 18:58:47.178101+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: SetOption(5,2019-06-19 18:58:47.178161+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.178211+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.178251+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Udp
2019-06-19 18:58:47.178620+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x107165200::1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.178648+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-19 18:58:47.178667+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.178691+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.178741+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Gathered candidate: Cand[:584875434:1:udp:2122000639:[2001:2090:1703:x:x:x:x:x]:53738:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:3:10:0]
2019-06-19 18:58:47.179081+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-19 18:58:47.179106+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
79127+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.179165+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.179232+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.179540+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Udp
2019-06-19 18:58:47.179567+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x107165800::1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cos2019-06-19 18:58:47.179591+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-19 18:58:47.179700+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.179726+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.179771+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Gathered candidate: Cand[:584875434:1:udp:2121935103:[2001:2090:1703:x:x:x:x:x]:53739:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:4:10:0]
2019-06-19 18:58:47.180094+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:2019-06-19 18:58:47.180116+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.180138+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.180169+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-19 18:58:47.180577+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.184021+0200 eventapp[9598:2969345] INFO:Twilio:[WebRTC]:(paced_sender.cc:97): PacedSender paused.
Twilio:[WebRTC]:(stunport.cc:403): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: StunPort: stun host lookup received error 0
2019-06-19 18:58:47.195524+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.195599+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: StunPort: stun host lookup received error 0
2019-06-19 18:58:47.195624+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x107165800:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
2019-06-19 18:58:47.195654+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.195687+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:4032019-06-19 18:58:47.195983+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.196036+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: StunPort: stun host lookup received error 0
2019-06-19 18:58:47.196057+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.196184+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x107165200:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: StunPort: stun host lookup received error 0
2019-06-19 18:58:47.196209+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x1071652002019-06-19 18:58:47.197068+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.197277+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.197343+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-19 18:58:47.197364+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.197405+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-19 18:58:47.197425+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been d2019-06-19 18:58:47.198022+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.198112+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.198231+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.198272+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:403): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: StunPort: stun host lookup received error 0
2019-06-19 18:58:47.198297+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x106187c00:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port completed gathering candidates.
2019-06-19 18:58:47.222559+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Address family: 2: 35.157.179.227
2019-06-19 18:58:47.222595+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Address family: 2: 35.157.179.227
2019-06-19 18:58:47.222624+0200 eventapp[9598:2969269] INFO:Twilio:[Core]:Setting outbound proxy to: sip:35.157.179.227:443;transport=tls
2019-06-19 18:58:47.224315+0200 eventapp[9598:2969269] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 54ms to dispatch. Posted from: PostSetSessionDescriptionSuccess@../../../src/pc/peerconnection.cc:3550
2019-06-19 18:58:47.224409+0200 eventapp[9598:2968931] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-19 18:58:47.224441+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1511920713 1 udp 2122260223 192.168.0.2 50610 typ host generation 0 ufrag mo84 network-i2019-06-19 18:58:47.224477+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2092367390 1 udp 2122194687 169.254.91.146 54928 typ host generation 0 ufrag mo84 network-id 2 network-cost 10
2019-06-19 18:58:47.224594+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1738242814 1 udp 2122131711 2001:2090:1703:f36d:f865:9c90:41c3:532c 54929 typ host generation 0 ufrag mo84 network-id 8 network-cost 900
2019-06-19 18:58:47.225817+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1279972877 1 udp 2122063615 172.18.131.239 53737 typ host generation 0 ufrag mo84 network-id 7 network-cost 900
2019-06-19 18:58:47.225867+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:584875434 1 udp 2122000639 2001:2090:1703:f36d:853:f045:b039:672d 53738 typ host generation 0 ufrag mo84 network-id 3 network-cost 10
2019-06-19 18:58:47.225893+0200 eventapp[9598:2969269] DEBUG:Twilio:[2019-06-19 18:58:47.226605+0200 eventapp[9598:2969341] DEBUG:Twilio:[Core]:Socket created in ../resiprocate-1.8/resip/stack/TcpBaseTransport.cxx at line 223, transport: 1, socket: 48
2019-06-19 18:58:47.226735+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 35.157.179.227:443 TLS target domain=35.157.179.227 mFlowKey=48 ]
2019-06-19 18:58:47.226806+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS connection for domain  [ V4 35.157.179.227:443 TLS target domain=35.157.179.227 mFlowKey=0 ] on 48
2019-06-19 18:58:47.226965+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.0.x/24:Wifi]: Allocation Phase=Relay
2019-06-19 18:58:47.227003+0200 eventapp[9598:2969271] INFO:Twilio:[Web2019-06-19 18:58:47.227025+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.227051+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Added port to allocator
2019-06-19 18:58:47.227074+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.227198+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x106196800::1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.228046+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
app[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Added port to allocator
2019-06-19 18:58:47.228151+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.228206+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10619a000::1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.228228+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.228320+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Added port to allocator
2019-06-19 18:58:47.228413+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.228455+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Relay
2019-06-19 18:58:47.228480+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10619ca00::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.228499+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.228520+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-19 18:58:47.228541+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
8:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716b000::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.229170+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.229193+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716b000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-19 18:58:47.229215+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716b000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.229255+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10619d200::1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.229294+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
 18:58:47.229903+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10619d200:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Added port to allocator
2019-06-19 18:58:47.229936+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619d200:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.230026+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]: Allocation Phase=Relay
2019-06-19 18:58:47.230054+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10619da00::1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.230074+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.230442+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.c2019-06-19 18:58:47.230489+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619da00:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.230712+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716b800::1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.230748+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.230770+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716b800:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-19 18:58:47.230988+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716b800:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.231035+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716c000::1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.231055+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.231077+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716c000:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-19 18:58:47.231099+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716c000:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.231855+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocato2019-06-19 18:58:47.231906+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716c800::1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.231930+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.231956+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Added port to allocator
2019-06-19 18:58:47.231982+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.232025+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716d000::1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port created with network c2019-06-19 18:58:47.232546+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.232625+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Added port to allocator
2019-06-19 18:58:47.232654+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.232705+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716d800::1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.232810+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.233128+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x102019-06-19 18:58:47.233156+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716d800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.233202+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Relay
2019-06-19 18:58:47.233230+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716e000::1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.233253+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.233278+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716e000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port t2019-06-19 18:58:47.233992+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716e000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.234118+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716e800::1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.234143+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.234169+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716e800:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.234194+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716e800:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:34782019-06-19 18:58:47.234622+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10716f000::1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.234650+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.234675+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10716f000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.234700+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10716f000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.234753+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Relay
2019-06-19 18:58:47.234966+0200 eventapp[9598:2969271] INFO:Twilio:[2019-06-19 18:58:47.234993+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.235152+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10619e200:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.235179+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619e200:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.235228+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x107170a00::1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.235856+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding 2019-06-19 18:58:47.235891+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x107170a00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.235939+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x107170a00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-19 18:58:47.236052+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10619ea00::1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.236078+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.236103+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10619ea00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
9 18:58:47.236397+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x10619ea00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-19 18:58:47.236616+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Gathered candidate: Cand[:4081163164:1:udp:1686052607:83.249.57.x:50610:stun:192.168.0.2:50610:mo84:XzZC4sj7ED8t4filVDt8zj97:1:10:0]
2019-06-19 18:58:47.236752+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x10618ec00:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port completed gathering candidates.
2019-06-19 18:58:47.236907+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:4081163164 1 udp 1686052607 83.249.57.75 50610 typ srflx raddr 192.168.0.2 rport 50610 generation 0 ufrag mo84 network-id 1 network-cost 10
9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.241448+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=2b565031346f6a3741587664
2019-06-19 18:58:47.241479+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.245414+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.245623+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
 INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-19 18:58:47.245861+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.245996+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.246071+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:799): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Failed to send TURN message, error: 65
2019-06-19 18:58:47.246099+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: TURN allocate request sent, id=563272686468486747654971
ntapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.246710+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10716b000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.246842+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicpacketsocketfactory.cc:187): TCP connect failed with error 65
2019-06-19 18:58:47.246892+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:340): Failed to create TURN client socket
2019-06-19 18:58:47.246916+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.247129+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716b000:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port encountered error while gathering candidates.2019-06-19 18:58:47.247864+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10619da00:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
2019-06-19 18:58:47.247899+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.247946+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10619d200:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-19 18:58:47.248085+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicpacketsocketfactory.cc:187): TCP connect failed with error 65
8:58:47.248133+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:340): Failed to create TURN client socket
2019-06-19 18:58:47.248156+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.249612+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10716b800:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: TURN host lookup received error 0
18:58:47.249704+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.249809+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:982019-06-19 18:58:47.249842+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10619d200:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.249870+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10716c000:audio:1:0:relay:Net[pdp_ip1:2001:2090:2019-06-19 18:58:47.250019+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.250061+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.250289+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=31445a756b50373334396764
2019-06-19 18:58:47.250318+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.250359+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-19 18:58:47.250591+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.250643+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x10716d800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-19 18:58:47.250738+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.250820+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10619e200:audio:2019-06-19 18:58:47.250843+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.251062+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x107170a00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-19 18:58:47.251087+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.251126+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10716f000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-19 18:58:47.251147+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
:47.251264+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10716e800:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-19 18:58:47.251331+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.251437+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10716e000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-19 18:58:47.251480+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
entapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:779): Port[0x10619ea00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: TURN host lookup received error 0
2019-06-19 18:58:47.251581+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-19 18:58:47.251618+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716b800:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.251681+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716c000:audio:1:0:relay:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.251707+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10619e200:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountere2019-06-19 18:58:47.251750+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x107170a00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.251816+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716f000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.251844+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716e800:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.251994+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10716e000:audio:1:0:relay:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
98:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:983): Port[0x10619ea00:audio:1:0:relay:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port encountered error while gathering candidates.
2019-06-19 18:58:47.262098+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake starting (client mode)
2019-06-19 18:58:47.262142+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-19 18:58:47.275950+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Received TURN allocate error response, id=2b565031346f6a3741587664, code=401, rtt=35
2019-06-19 18:58:47.276210+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=4d74694f4246377a2b683948
2019-06-19 18:58:47.278978+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.0.x/24:Wifi]: Allocation Phase=Tcp
2019-06-19 18:58:47.279069+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x10618d200::1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.279277+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.279392+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x10618d200:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Added port to allocator
0 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x10618d200:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port ready.
2019-06-19 18:58:47.279591+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:5932019-06-19 18:58:47.279654+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x10618d200:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: SetOption(5, 0) failed: 0
738+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x10618d200:audio:1:0:local:Net[en0:192.168.0.x/24:Wifi]]: Port completed gathering candidates.
2019-06-19 18:58:47.279778+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en2:169.254.0.x/16:Wifi]: Allocation Phase=Tcp
2019-06-19 18:58:47.279841+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x106196200::1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port created with network cost 10
2019-06-19 18:58:47.279921+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.280200+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:8452019-06-19 18:58:47.280272+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x106196200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Gathered candidate: Cand[:842334958:1:tcp:1518214911:169.254.91.x:50932:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:2:10:0]
2019-06-19 18:58:47.280364+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x106196200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: Port ready.
2019-06-19 18:58:47.280400+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.280436+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x106196200:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.280481+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x106196200:au2019-06-19 18:58:47.280036+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:345893049 1 tcp 1518280447 192.168.0.2 50931 typ host tcptype passive generation 0 ufrag mo84 network-id 1 network-cost 10
2019-06-19 18:58:47.280877+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:842334958 1 tcp 1518214911 169.254.91.146 50932 typ host tcptype passive generation 0 ufrag mo84 network-id 2 network-cost 10
2019-06-19 18:58:47.281994+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]: Allocation Phase=Tcp
2019-06-19 18:58:47.282060+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x1061a0200::1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.282158+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicport2019-06-19 18:58:47.282277+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x1061a0200:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Added port to allocator
2019-06-19 18:58:47.282357+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x1061a0200:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Gathered candidate: Cand[:689473038:1:tcp:1518151935:[22019-06-19 18:58:47.282606+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x1061a0200:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port ready.
2019-06-19 18:58:47.282643+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.282680+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x1061a0200:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.282734+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x1061a0200:audio:1:0:local:Net[pdp_ip1:2001:2090:1703:x:x:x:x:x/64:Cellular]]: Port completed gathering candidates.
2019-06-19 18:58:47.282773+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[pdp_ip0:172.18.131.x/32:Cellular]: Allocation2019-06-19 18:58:47.282833+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x1061a0800::1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port created with network cost 900
2019-06-19 18:58:47.283108+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.283171+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x1061a0800:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Added port to allocator
2019-06-19 18:58:47.283296+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x1061a0800:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Gathered candidate: Cand[:46738173:1:tcp:1518083839:172.18.131.x:50934:local::0:mo84:XzZC4sj7ED8t4filVDt8zj97:7:900:0]
2019-06-19 18:58:47.283336+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x1061a0800:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: 2019-06-19 18:58:47.283365+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.283586+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x1061a0800:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.283759+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x1061a0800:audio:1:0:local:Net[pdp_ip0:1722019-06-19 18:58:47.282952+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:689473038 1 tcp 1518151935 2001:2090:1703:f36d:f865:9c90:41c3:532c 50933 typ host tcptype passive generation 0 ufrag mo84 network-id 8 network-cost 900
2019-06-19 18:58:47.284021+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:46738173 1 tcp 1518083839 172.18.131.239 50934 typ host tcptype passive generation 0 ufrag mo84 network-id 7 network-cost 900
2019-06-19 18:58:47.285006+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.247:3478 using tcp.
2019-06-19 18:58:47.285163+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=3251763267752b6d51303979
2019-06-19 18:58:47.285267+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:470): Tur2019-06-19 18:58:47.285358+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=37554274387365752019-06-19 18:58:47.285459+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Tcp
2019-06-19 18:58:47.285503+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x1061a0e00::1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.285675+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-19 18:58:47.285716+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x1061a0e00:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.285926+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x1061a0e00:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Gathered candidate: Cand[:1818198362:1:tcp:1518020863:[2001:2090:1703:x:x:x:x:x]:50935:local::0:mo84:XzZC4sj7E2019-06-19 18:58:47.286002+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x1061a0e00:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-19 18:58:47.286035+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.286117+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x1061a0e00:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: SetOption(5, 0) failed: 0
2019-06-19 18:58:47.286175+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x1061a0e00:audio:1:0:local:Net[ipsec3:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port compl2019-06-19 18:58:47.286408+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]: Allocation Phase=Tcp
2019-06-19 18:58:47.286448+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x1061a1400::1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port created with network cost 10
2019-06-19 18:58:47.286708+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding2019-06-19 18:58:47.286771+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x1061a1400:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Added port to allocator
2019-06-19 18:58:47.286843+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x1061a1400:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Gathered candidate: Cand[:1818198362:1:tcp:1517955327:[2001:2090:1703:x:x:x:x:x]:50936:local2019-06-19 18:58:47.287108+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x1061a1400:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port ready.
2019-06-19 18:58:47.287144+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.287217+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x1061a1400:audio:1:02019-06-19 18:58:47.287280+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x1061a1400:audio:1:0:local:Net[ipsec4:2001:2090:1703:x:x:x:x:x/64:VPN]]: Port completed gathering candidates.
2019-06-19 18:58:47.286284+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1818198362 1 tcp 1518020863 2001:2090:1703:f36d:853:f045:b039:672d 50935 typ host tcptype passive generation 0 ufrag mo84 network-id 3 network-cost 10
2019-06-19 18:58:47.287740+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1818198362 1 tcp 1517955327 2001:2090:1703:f36d:853:f045:b039:672d 50936 typ host tcptype passive generation 0 ufrag mo84 network-id 4 network-cost 10
2019-06-19 18:58:47.328781+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Received TURN allocate error response, id=3251763267752b6d51303979, code=401, rtt=44
2019-06-19 18:58:47.329088+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=6a724e47434849374c506b36
2019-06-19 18:58:47.329245+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Received TURN allocate error response, id=375542743873657533525457, code=401, rtt=44
2019-06-19 18:58:47.329417+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate request sent, id=716f6447632b5a2f77587174
2019-06-19 18:58:47.334682+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-19 18:58:47.334752+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS sessions set up with TLSv1.2 TLSv1/SSLv3 ECDHE-RSA-AES128-GCM-SHA256
2019-06-19 18:58:47.334816+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <*.twilio.com>
2019-06-19 18:58:47.334864+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <twilio.com>
2019-06-19 18:58:47.335016+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake done for peer *.twilio.com, twilio.com
2019-06-19 18:58:47.359827+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.247:3478 using tcp.
2019-06-19 18:58:47.359997+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=79516f37633231754c382f6c
2019-06-19 18:58:47.360051+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.247:443 using tcp.
2019-06-19 18:58:47.360126+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716d800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=4b4d485347585979386b3349
2019-06-19 18:58:47.360241+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Gathered candidate: Cand[:2160585118:1:udp:1685855999:217.214.150.x:53737:stun:172.18.131.239:537372019-06-19 18:58:47.360393+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Received TURN allocate error response, id=31445a756b50373334396764, code=401, rtt=110
2019-06-19 18:58:47.360492+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716c800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=774a7661736f3745414c4638
2019-06-19 18:58:47.360593+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidat2019-06-19 18:58:47.363652+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x107168a00:audio:1:0:local:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Port completed gathering candidates.
2019-06-19 18:58:47.373772+0200 eventapp[9598:2969342] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 100 tid=a621c0140e07f19d cseq=1 INVITE / 1 from(wire)
2019-06-19 18:58:47.416064+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Received TURN allocate error response, id=79516f37633231754c382f6c, code=401, rtt=56
2019-06-19 18:58:47.416318+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716d000:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=5655456e32374d396745614d
0 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x10716d800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: Received TURN allocate error response, id=4b4d485347585979386b3349, code=401, rtt=56
2019-06-19 18:58:47.416652+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10716d800:audio:1:0:relay:Net[pdp_ip0:172.18.131.x/32:Cellular]]: TURN allocate request sent, id=646d4c326c6b3269322b2f76
2019-06-19 18:58:47.450826+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-19 18:58:47.450965+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(stunport.cc:530): sendto : [0x00000041] No route to host
2019-06-19 18:58:47.491523+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate requested successfully, id=4d74694f4246377a2b683948, code=0, rtt=216
2019-06-19 18:58:47.491724+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Gathered candidate: Cand[:2686458394:1:udp:41885951:18.195.48.x:31244:relay:83.249.57.72019-06-19 18:58:47.491842+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port ready.
2019-06-19 18:58:47.491900+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.491966+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x107167e00:audio:1:0:relay:Net[2019-06-19 18:58:47.492061+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port completed gathering candidates.
2019-06-19 18:58:47.492497+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-19 18:58:47.492166+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2686458394 1 udp 41885951 18.195.48.247 31244 typ relay raddr 83.249.57.75 rport 50610 generation 0 ufrag mo84 network-id 1 network-cost 10
2019-06-19 18:58:47.496539+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:799): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: Failed to send TURN message, error: 65
2019-06-19 18:58:47.496745+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x10619ca00:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi]]: TURN allocate request sent, id=563272686468486747654971
2019-06-19 18:58:47.541398+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate requested successfully, id=6a724e47434849374c506b36, code=0, rtt=212
2019-06-19 18:58:47.541601+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Gathered candidate: Cand[:4003718890:1:udp:25108479:18.195.48.x:14837:relay:83.249.57.72019-06-19 18:58:47.541717+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port ready.
0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.541841+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x106196800:audio:1:0:relay:Net[2019-06-19 18:58:47.541933+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port completed gathering candidat2019-06-19 18:58:47.542375+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-19 18:58:47.542038+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:4003718890 1 udp 25108479 18.195.48.247 14837 typ relay raddr 83.249.57.75 rport 50925 generation 0 ufrag mo84 network-id 1 network-cost 10
2019-06-19 18:58:47.550033+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN allocate requested successfully, id=716f6447632b5a2f77587174, code=0, rtt=221
2019-06-19 18:58:47.550219+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Gathered candidate: Cand[:4003718890:1:udp:25108223:18.195.48.x:47601:relay:83.249.57.72019-06-19 18:58:47.550961+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port ready.
2019-06-19 18:58:47.551381+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-19 18:58:47.551510+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x1062019-06-19 18:58:47.551610+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Port c2019-06-19 18:58:47.551722+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: Scheduled refresh in 540000ms.
eventapp[9598:2969269] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:4003718890 1 udp 25108223 18.195.48.247 47601 typ relay raddr 83.249.57.75 rport 50926 generation 0 ufrag mo84 network-id 1 network-cost 10
2019-06-19 18:58:47.568072+0200 eventapp[9598:2969341] WARN:Twilio:[Signaling]:RESIP::TRANSPORT: Can't find matching transport [ V4 192.168.0.2:0 TLS target domain=unspecified mFlowKey=0 ]
2019-06-19 18:58:47.568555+0200 eventapp[9598:2969342] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 503 tid=a621c0140e07f19d cseq=1 INVITE / 1 from(wire)
2019-06-19 18:58:47.571385+0200 eventapp[9598:2969342] INFO:Twilio:[Signaling]:RESIP::DUM: Failure:  error response: SipResp: 503 tid=a621c0140e07f19d cseq=1 INVITE / 1 from(wire)
2019-06-19 18:58:47.571900+0200 eventapp[9598:2969342] INFO:Twilio:[Signaling]:RESIP::DUM: Transition UAC_Start -> InviteSession::Terminated
2019-06-19 18:58:47.571991+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:virtual void twilio::voice::SipCall::onFailure(resip::ClientInviteSessionHandle, const resip::SipMessage &)
2019-06-19 18:58:47.572140+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:Received incoming SIP message from infra:
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=ec2ec0e5b43bc8fe5ffbd549a9224cd9-5691
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=981c00d0
Server: Twilio Client SBC
2019-06-19 18:58:47.572252+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:onFailure
2019-06-19 18:58:47.572321+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:onTerminated: reason 0
2019-06-19 18:58:47.572619+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=ec2ec0e5b43bc8fe5ffbd549a9224cd9-5691
2019-06-19 18:58:47.572934+0200 eventapp[9598:2969269] TRACE:Twilio:[Core]:stopDependents
:VoiceSDK@chunderm.gll.twilio.com>;tag=981c00d0
Server: Twilio Client SBC
2019-06-19 18:58:47.573028+0200 eventapp[9598:2968931] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: error
2019-06-19 18:58:47.573146+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
2019-06-19 18:58:47.573197+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:onTerminated
2019-06-19 18:58:47.573365+0200 eventapp[9598:2969342] DEBUG:Twilio:[Core]:~SipCall(): 0x10618d800
2019-06-19 18:58:47.573651+0200 eventapp[9598:2968931] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending error event
2019-06-19 18:58:47.575711+0200 eventapp[9598:2969269] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 1602054220113931675 Old state: kHaveLocalOffer New state: kClosed
:2969269] DEBUG:Twilio:[Core]:OnIceConnectionChange
2019-06-19 18:58:47.575936+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Call State: Disconnected ICE connection state: closed
2019-06-19 18:58:47.576045+0200 eventapp[9598:2968931] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-19 18:58:47.578745+0200 eventapp[9598:2968931] DEBUG:Twilio:[Platform]:Received ICE event.
2019-06-19 18:58:47.581183+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-19 18:58:47.581289+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Signaling state: closed
2019-06-19 18:58:47.581388+0200 eventapp[9598:2968931] DEBUG:Twilio:[Platform]:Received signaling-state event: closed
2019-06-19 18:58:47.582849+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1817): RemoveSendStream: 665879128
2019-06-19 18:58:47.582895+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggre2019-06-19 18:58:47.582919+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-19 18:58:47.582943+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:157): ~AudioSendStream: 665879128
2019-06-19 18:58:47.583137+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(channel.cc:125): Destroyed channel: audio
2019-06-19 18:58:47.583692+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x107167e00:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN refresh request sent, id=6763744d756a444638534d46
2019-06-19 18:58:47.583868+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x106196800:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi]]: TURN refresh request sent, id=4b304a6341444e554535474f
2019-06-19 18:58:47.584083+0200 eventapp[9598:2969271] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x10619a000:audio:1:0:relay:Net[en0:192.168.0.x/24:Wifi2019-06-19 18:58:47.586153+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-19 18:58:47.586213+0200 eventapp[9598:2969270] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-19 18:58:47.586510+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Shutting down DUM thread ...
2019-06-19 18:58:47.736014+0200 eventapp[9598:2969081] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:47.916556+0200 eventapp[9598:2969221] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.121491+0200 eventapp[9598:2969221] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.126496+0200 eventapp[9598:2969221] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.126707+0200 eventapp[9598:2969221] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.126875+0200 eventapp[9598:2969221] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.250371+0200 eventapp[9598:2969265] 5.20.0 - [Firebase/Performance][I-PRF100009] Recording network trace: https://eventgw.twilio.com/v4/EndpointEvents
2019-06-19 18:58:48.578855+0200 eventapp[9598:2969269] DEBUG:Twilio:[Core]:Shutting down SIP stack thread ...
2019-06-19 18:58:48.579484+0200 eventapp[9598:2969341] INFO:Twilio:[Signaling]:RESIP::SIP: Shutting down stack thread
2019-06-19 18:58:48.583699+0200 eventapp[9598:2969269] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 1011ms to dispatch. Posted from: onFailure@/Users/distiller/project/voice/src/call_impl.cpp:1330
2019-06-19 18:58:59.166648+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-19 18:58:59.167789+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-19 18:58:59.170918+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x1c421cbe0, 
2019-06-19 18:58:59.175189+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-19 18:58:59.175541+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-19 18:58:59.178683+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x1c4015b80, 
2019-06-19 18:58:59.181435+0200 eventapp[9598:2968931] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:847 -[TVORTCAudioSession observeValueForKeyPath:ofObject:change:context:]): OutputVolumeDidChange to 0.687500
2019-06-19 18:58:59.184167+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-19 18:58:59.186956+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-19 18:58:59.188995+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x1c4015b80, 
2019-06-19 18:59:00.212184+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:505 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed:
2019-06-19 18:59:00.212868+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:518 -[TVORTCAudioSession handleRouteChangeNotification:]): Audio route changed: CategoryChange to :AVAudioSessionCategoryPlayAndRecord
2019-06-19 18:59:00.214619+0200 eventapp[9598:2969266] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:537 -[TVORTCAudioSession handleRouteChangeNotification:]): Previous route: <AVAudioSessionRouteDescription: 0x1c040ead0, 

Best regards, Joel

bobiechen-twilio commented 5 years ago

Thanks for providing additional logs. I went back to the original description of the issue and realized that the key you used for extracting stun/turn credential is password, while the key the Twilio NTS uses is credential. Could you please check if the app can make the call with the username and credential?

Thanks -bobie

jbohman commented 5 years ago

Before I call the connect function in my original post I actually rename the credential field to password so that should not be an issue.

      const to = "jlFrjrMIODn8TqR2wflu/wlXWTm5Mm23Wdz0XMM75";
      const iceServers = res.data.iceServers.ice_servers.map(x => ({
        url: x.url,
        username: x.username || "",
        password: x.credential || "",
      }));

      RNCustomLibTwilioVoice.connect(res.data.accessToken, to, iceServers);

And the server-side code that returns the iceServers and access token looks like this (maybe there is something wrong or missing there):

  // Access Token
  const voiceGrant = new twilio.jwt.AccessToken.VoiceGrant({
    outgoingApplicationSid: twilioConfig.twiml_app_sid,
    outgoingApplicationParams: {
      eventId: data.eventId,
      silentRoomId: data.silentRoomId,
      isModerator: isModerator,
    },
    incomingAllow: false,
  });

  const token = new twilio.jwt.AccessToken(
    twilioConfig.account_sid,
    twilioConfig.api_key,
    twilioConfig.api_secret,
    { ttl: 600, identity: context.auth.uid },
  );
  token.addGrant(voiceGrant);

  // STUN and TURN servers
  const iceServersResponse = await axios({
    url: `https://api.twilio.com/2010-04-01/Accounts/${twilioConfig.account_sid}/Tokens.json`,
    method: 'POST',
    auth: {
      username: twilioConfig.account_sid,
      password: twilioConfig.auth_token
    },
  });

  return { accessToken: token.toJwt(), iceServers: iceServersResponse.data };

And I've confirmed that the TwiML voice app endpoint is never called so it doesn't get that far at all.

But I'm going back to the 503 Service Unavailable. In HTTP that error would actually mean that there was a connection made to a server but that server responded with 503, right?

Is there some layer in React Native that blocks making connections (because that is what is common between both my attempts on iOS and Android). Do you know of any customers that has successfully gotten this to work in React Native as a native module?

My next attempt will be to setup the plain iOS project from the get started tutorial and see if that runs, hopefully today else after this weekend.

Best regards, Joel

bobiechen-twilio commented 5 years ago

Thanks for the clarification Joel! The SIP 503 error, similar to its friend in the HTTP world, typically means that the client is having trouble reaching to the service, which echoes what we observed in the SDK log. It's odd that the RN plug-in would block the application/SDK from making connections since we have definitely seen people using RN plug-in able to create their Voice SDK bindings and connection calls.

I'll reach out to our backend experts o see if they can figure something out of the log. In the meantime, while you are trying with different approaches, could you please also enable the .trace level logging for the TVOLogModuleWebRTC, TVOLogModuleSignaling and TVOLogModuleCore modules?

Thanks! -bobie

jbohman commented 5 years ago

Thanks for the explanation of the 503. I've not had the time yet to get the getting started project running yet. Any luck with the backend experts?

I think I've already provided the trace level logs for those module, this is the settings for all previous logs in this issue:

TwilioVoice.setLogLevel(TVOLogLevel.trace, module: TVOLogModule.core)
TwilioVoice.setLogLevel(TVOLogLevel.trace, module: TVOLogModule.platform)
TwilioVoice.setLogLevel(TVOLogLevel.trace, module: TVOLogModule.signaling)
TwilioVoice.setLogLevel(TVOLogLevel.trace, module: TVOLogModule.webRTC)
jbohman commented 5 years ago

Hello again @bchen-twilio !

Got the get started project (without CallKit) to run but still same issue 503 Service Unavailable. I've attached the log from the last run at the end of this post. The run is from the simulator (iPhone Xr) with firewall turned off on my Macbook Pro and using Wi-Fi. All permissions in the app was accepted before this run (notification/microphone).

I also tried to setup a VOIP Certificate through developer.apple.com and add it in Twilio Portal (https://www.twilio.com/console/voice/sdks/credentials) but no luck and in the access token.

Not sure what else I can do now, it just seems like it doesn't work for me :/

2019-06-24 21:36:00.679848+0200 SwiftVoiceQuickstart[87824:5785157] [AXMediaCommon] Unable to look up screen scale
2019-06-24 21:36:00.679994+0200 SwiftVoiceQuickstart[87824:5785157] [AXMediaCommon] Unexpected physical screen orientation
2019-06-24 21:36:00.734455+0200 SwiftVoiceQuickstart[87824:5785157] [AXMediaCommon] Unable to look up screen scale
2019-06-24 21:36:00.739752+0200 SwiftVoiceQuickstart[87824:5785157] [AXMediaCommon] Unable to look up screen scale
2019-06-24 21:36:00.739861+0200 SwiftVoiceQuickstart[87824:5785157] [AXMediaCommon] Unexpected physical screen orientation
2019-06-24 21:36:00.836333+0200 SwiftVoiceQuickstart[87824:5785157] Twilio Voice Version: 3.1.1
User notificaiton already authorized.
2019-06-24 21:36:23.388269+0200 SwiftVoiceQuickstart[87824:5785157] [MC] System group container for systemgroup.com.apple.configurationprofiles path is /Users/jbohman/Library/Developer/CoreSimulator/Devices/52CAF33C-EDEE-4192-B206-E583F4359799/data/Containers/Shared/SystemGroup/systemgroup.com.apple.configurationprofiles
2019-06-24 21:36:23.389796+0200 SwiftVoiceQuickstart[87824:5785157] [MC] Reading from private effective user settings.
statusCode: 200
data: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2U4MWViOTU0NGRjYjZhOTgxMGZkYWZkZjFiYTFiMzY2LTE1NjE0MDQ5ODciLCJncmFudHMiOnsiaWRlbnRpdHkiOiJhbGljZSIsInZvaWNlIjp7Im91dGdvaW5nIjp7ImFwcGxpY2F0aW9uX3NpZCI6IkFQZTkwNDQzMGUyNjA3NGRmZjljYWRiNzQ4YWI2YTY5YjQiLCJwYXJhbXMiOnsidGVzdCI6dHJ1ZX19LCJwdXNoX2NyZWRlbnRpYWxfc2lkIjoiQ1JmM2JkZjQ5ZjA5YjBmODVmYTM1ZGQyOTNjMmJjYjcxMCJ9fSwiaWF0IjoxNTYxNDA0OTg3LCJleHAiOjE1NjE0MDg1ODcsImlzcyI6IlNLZTgxZWI5NTQ0ZGNiNmE5ODEwZmRhZmRmMWJhMWIzNjYiLCJzdWIiOiJBQzVlZjEzYTRkNTBkMWY5MDg2MDllODZlY2U0MzM1YjE3In0.signature
2019-06-24 21:36:27.074777+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:101 -[TVORTCAudioSession initWithAudioSession:]): RTCAudioSession (0x6000008daf40): init.
2019-06-24 21:36:27.075189+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[WebRTC]:(RTCLogging.mm:31): (RTCAudioSession.mm:187 -[TVORTCAudioSession addDelegate:]): Adding delegate: (0x600002352ec0)
2019-06-24 21:36:27.075541+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating peer connection signaling thread ...
2019-06-24 21:36:27.075784+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating peer connection worker thread ...
2019-06-24 21:36:27.075925+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating peer connection networking thread ...
2019-06-24 21:36:27.076083+0200 SwiftVoiceQuickstart[87824:5785695] TRACE:Twilio:[Core]:Creating built-in AudioDecoderFactory ...
2019-06-24 21:36:27.076205+0200 SwiftVoiceQuickstart[87824:5785695] TRACE:Twilio:[Core]:Creating built-in AudioEncoderFactory ...
2019-06-24 21:36:27.083302+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating media engine ...
2019-06-24 21:36:27.084048+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
Render pre processor activated: 0
2019-06-24 21:36:27.085602+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:211): WebRtcVoiceEngine::WebRtcVoiceEngine
2019-06-24 21:36:27.086061+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Done creating media engine.
2019-06-24 21:36:27.086394+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating peer connection factory ...
2019-06-24 21:36:27.088036+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:234): WebRtcVoiceEngine::Init
2019-06-24 21:36:27.088339+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:241): Supported send codecs in order of preference:
2019-06-24 21:36:27.088741+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-24 21:36:27.096555+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/16000/1 (103)
2019-06-24 21:36:27.096801+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): ISAC/32000/1 (104)
2019-06-24 21:36:27.097068+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): G722/8000/1 (9)
2019-06-24 21:36:27.097266+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMU/8000/1 (0)
2019-06-24 21:36:27.097597+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): PCMA/8000/1 (8)
2019-06-24 21:36:27.097844+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/32000/1 (106)
2019-06-24 21:36:27.098281+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/16000/1 (105)
2019-06-24 21:36:27.098736+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): CN/8000/1 (13)
2019-06-24 21:36:27.099576+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/48000/1 (110)
2019-06-24 21:36:27.100082+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/32000/1 (112)
2019-06-24 21:36:27.101662+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/16000/1 (113)
2019-06-24 21:36:27.102177+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:244): telephone-event/8000/1 (126)
2019-06-24 21:36:27.103439+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:247): Supported recv codecs in order of preference:
2019-06-24 21:36:27.104785+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): opus/48000/2 { minptime=10 useinbandfec=1 } (111)
2019-06-24 21:36:27.105407+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/16000/1 (103)
2019-06-24 21:36:27.106027+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): ISAC/32000/1 (104)
2019-06-24 21:36:27.106499+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): G722/8000/1 (9)
2019-06-24 21:36:27.108449+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMU/8000/1 (0)
2019-06-24 21:36:27.108759+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): PCMA/8000/1 (8)
2019-06-24 21:36:27.108885+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/32000/1 (106)
2019-06-24 21:36:27.109098+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/16000/1 (105)
2019-06-24 21:36:27.109300+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): CN/8000/1 (13)
2019-06-24 21:36:27.109594+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/48000/1 (110)
2019-06-24 21:36:27.109872+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/32000/1 (112)
2019-06-24 21:36:27.110011+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/16000/1 (113)
2019-06-24 21:36:27.110198+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:250): telephone-event/8000/1 (126)
2019-06-24 21:36:27.110363+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:74): Create
2019-06-24 21:36:27.110549+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:64): AudioDeviceBuffer::ctor
2019-06-24 21:36:27.110673+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:108): AudioDeviceModuleImpl
2019-06-24 21:36:27.110787+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:112): CheckPlatform
2019-06-24 21:36:27.110906+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:126): current platform is IOS
2019-06-24 21:36:27.111005+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:142): CreatePlatformSpecificObjects
2019-06-24 21:36:27.111118+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:912): PlatformAudioLayer
2019-06-24 21:36:27.111387+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:115): AudioDeviceIOS::ctor<NSThread: 0x6000039dd1c0>{number = 10, name = (null)}
2019-06-24 21:36:27.113006+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:254): iPhone Audio APIs will be utilized.
2019-06-24 21:36:27.113298+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:282): AttachAudioBuffer
2019-06-24 21:36:27.113647+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:129): AudioDeviceIOS::AttachAudioBuffer
2019-06-24 21:36:27.114261+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:302): Init
2019-06-24 21:36:27.114420+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:136): AudioDeviceIOS::Init
2019-06-24 21:36:27.115381+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:643): AudioDeviceIOS::UpdateAudioDevicebuffer
2019-06-24 21:36:27.116122+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:204): SetPlayoutSampleRate(44100)
2019-06-24 21:36:27.116683+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:228): SetPlayoutChannels(1)
2019-06-24 21:36:27.117515+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:197): SetRecordingSampleRate(44100)
2019-06-24 21:36:27.118503+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:221): SetRecordingChannels(1)
2019-06-24 21:36:27.119264+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:643): SetPlayoutDevice(0)
2019-06-24 21:36:27.120009+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:84): SetPlayoutDevice: Not implemented
2019-06-24 21:36:27.121049+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:335): InitSpeaker
2019-06-24 21:36:27.121779+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:547): StereoPlayoutIsAvailable
2019-06-24 21:36:27.122356+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:554): output: 0
2019-06-24 21:36:27.122474+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:559): SetStereoPlayout(0)
2019-06-24 21:36:27.122603+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:137): SetStereoPlayout: Not implemented
2019-06-24 21:36:27.122709+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:567): stereo playout is not supported
2019-06-24 21:36:27.122817+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(adm_helpers.cc:56): Failed to set stereo playout mode.
2019-06-24 21:36:27.122933+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:705): SetRecordingDevice(0)
2019-06-24 21:36:27.123049+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:186): SetRecordingDevice: Not implemented
2019-06-24 21:36:27.123458+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:341): InitMicrophone
2019-06-24 21:36:27.123934+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:504): StereoRecordingIsAvailable
2019-06-24 21:36:27.124089+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:511): output: 0
2019-06-24 21:36:27.124217+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:516): SetStereoRecording(0)
2019-06-24 21:36:27.124336+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_not_implemented_ios.mm:122): SetStereoRecording: Not implemented
2019-06-24 21:36:27.124453+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:523): failed to change stereo recording
2019-06-24 21:36:27.124566+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(adm_helpers.cc:76): Failed to set stereo recording mode.
2019-06-24 21:36:27.124726+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:441): Capture post processor activated: 0
Render pre processor activated: 0
2019-06-24 21:36:27.125834+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 0
2019-06-24 21:36:27.126057+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-24 21:36:27.126295+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:818): RegisterAudioCallback
2019-06-24 21:36:27.126480+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:84): RegisterAudioCallback
2019-06-24 21:36:27.126921+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {aec: true, agc: true, ns: true, hf: true, swap: false, audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, typing: true, experimental_agc: false, extended_filter_aec: false, delay_agnostic_aec: false, experimental_ns: false, intelligibility_enhancer: false, residual_echo_detector: true, }
2019-06-24 21:36:27.127053+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-24 21:36:27.127203+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-24 21:36:27.127325+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-24 21:36:27.127431+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-24 21:36:27.127554+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-24 21:36:27.127673+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-24 21:36:27.127784+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-24 21:36:27.131428+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-24 21:36:27.131590+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-24 21:36:27.131939+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-24 21:36:27.132182+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-24 21:36:27.132595+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-24 21:36:27.132735+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-24 21:36:27.132844+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-24 21:36:27.133053+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-24 21:36:27.133331+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-24 21:36:27.133539+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:507): Stereo swapping enabled? 0
2019-06-24 21:36:27.133773+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-24 21:36:27.133957+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-24 21:36:27.134088+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-24 21:36:27.134392+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-24 21:36:27.134522+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-24 21:36:27.134685+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-24 21:36:27.134931+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-24 21:36:27.135222+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-24 21:36:27.135370+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-24 21:36:27.135708+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-24 21:36:27.136301+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Done creating peer connection factory.
2019-06-24 21:36:27.136295+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 50ms to dispatch. Posted from: CreateModularPeerConnectionFactory@../../../src/pc/peerconnectionfactory.cc:81
2019-06-24 21:36:27.136810+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:824): RegisterRecordingSink
2019-06-24 21:36:27.137009+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:95): RegisterRecordingSink
2019-06-24 21:36:27.138093+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Adding audio track ...
2019-06-24 21:36:27.156503+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating dedicated notifier queue ...
2019-06-24 21:36:27.156711+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Initializing SIP stack ...
2019-06-24 21:36:27.158907+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Adding IPv4/IPv6 TLS transports ...
2019-06-24 21:36:27.159108+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-24 21:36:27.159211+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-24 21:36:27.159423+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 0.0.0.0:0 UNKNOWN_TRANSPORT target domain=unspecified mFlowKey=0 ]
2019-06-24 21:36:27.159532+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS transport for domain  interface= port=0
2019-06-24 21:36:27.159707+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Initializing DUM ...
2019-06-24 21:36:27.159883+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Starting SIP stack thread ...
2019-06-24 21:36:27.160012+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Starting DUM thread ...
2019-06-24 21:36:27.160173+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:AppleReachability::AppleReachability()
2019-06-24 21:36:27.160299+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Creating zeroAddrReachability
2019-06-24 21:36:27.161259+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Creating peer connection ...
2019-06-24 21:36:27.161782+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(alr_experiment.cc:65): Using ALR experiment settings: pacing factor: 1, max pacer queue length: 2875, ALR start bandwidth usage percent: 80, ALR end budget level percent: 40, ALR end budget level percent: -60, ALR experiment group ID: 3
2019-06-24 21:36:27.161918+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(bitrate_prober.cc:62): Bandwidth probing enabled, set to inactive
2019-06-24 21:36:27.163353+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-24 21:36:27.163567+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:105): Using Trendline filter for delay change estimation with window size 20
2019-06-24 21:36:27.163758+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-24 21:36:27.164008+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(delay_based_bwe.cc:313): BWE Setting start bitrate to: 300000
2019-06-24 21:36:27.164223+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x6000012f1540
2019-06-24 21:36:27.164717+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(cpu_info.cc:46): Available number of cores: 4
2019-06-24 21:36:27.165017+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(aimd_rate_control.cc:75): Using aimd rate control with back off factor 0.85
2019-06-24 21:36:27.165329+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(remote_bitrate_estimator_single_stream.cc:56): RemoteBitrateEstimatorSingleStream: Instantiating.
2019-06-24 21:36:27.166303+0200 SwiftVoiceQuickstart[87824:5785695] INFO:Twilio:[Core]:Adding local stream to peer connection ...
2019-06-24 21:36:27.166320+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(opensslidentity.cc:44): Making key pair
2019-06-24 21:36:27.166710+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Core]:Create initial local offer
2019-06-24 21:36:27.167004+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(opensslidentity.cc:92): Returning key pair
2019-06-24 21:36:27.167339+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Platform]:-[TVOLocalAudioTrack dealloc]
2019-06-24 21:36:27.167436+0200 SwiftVoiceQuickstart[87824:5785157] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: outgoing
2019-06-24 21:36:27.167484+0200 SwiftVoiceQuickstart[87824:5785695] DEBUG:Twilio:[Platform]:-[TVOAudioTrack dealloc]
2019-06-24 21:36:27.167275+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(opensslidentity.cc:99): Making certificate for WebRTC
2019-06-24 21:36:27.169146+0200 SwiftVoiceQuickstart[87824:5785157] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending outgoing event
2019-06-24 21:36:27.169911+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(opensslidentity.cc:146): Returning certificate
2019-06-24 21:36:27.172582+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:onCreateSessionLocalDescription
2019-06-24 21:36:27.175489+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:441): Set backup connection ping interval to 25000 milliseconds.
2019-06-24 21:36:27.175748+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:450): Set ICE receiving timeout to 30000 milliseconds
2019-06-24 21:36:27.176150+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:457): Set ping most likely connection to 0
2019-06-24 21:36:27.176504+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:464): Set stable_writable_connection_ping_interval to 2500
2019-06-24 21:36:27.177181+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:477): Set presume writable when fully relayed to 0
2019-06-24 21:36:27.177450+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:486): Set regather_on_failed_networks_interval to 300000
2019-06-24 21:36:27.237022+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:505): Set receiving_switching_delay to1000
2019-06-24 21:36:27.237653+0200 SwiftVoiceQuickstart[87824:5785832] INFO:Twilio:[WebRTC]:(paced_sender.cc:97): PacedSender paused.
2019-06-24 21:36:27.238690+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:71): Setting RTCP Transport on audio transport 0x0
2019-06-24 21:36:27.239144+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(dtlssrtptransport.cc:76): Setting RTP Transport on audio transport 0x7fc10fd2f690
2019-06-24 21:36:27.239348+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:378): Set ICE ufrag: gPKL pwd: CaivGmLoaE/ILeOsSzjhpJTY on transport audio
2019-06-24 21:36:27.239707+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-24 21:36:27.240287+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-24 21:36:27.240416+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-24 21:36:27.240530+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-24 21:36:27.240634+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-24 21:36:27.240753+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-24 21:36:27.240870+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-24 21:36:27.243720+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-24 21:36:27.243898+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-24 21:36:27.244056+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-24 21:36:27.244169+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-24 21:36:27.244598+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-24 21:36:27.244874+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-24 21:36:27.245003+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-24 21:36:27.245125+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-24 21:36:27.245291+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-24 21:36:27.245413+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-24 21:36:27.245523+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-24 21:36:27.245629+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-24 21:36:27.245759+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-24 21:36:27.245933+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-24 21:36:27.246229+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-24 21:36:27.246478+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-24 21:36:27.247792+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-24 21:36:27.247926+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-24 21:36:27.248117+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-24 21:36:27.248228+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-24 21:36:27.248416+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-24 21:36:27.248590+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-24 21:36:27.248727+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(channel.cc:111): Created channel for audio
2019-06-24 21:36:27.249378+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-24 21:36:27.249527+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-24 21:36:27.249656+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-24 21:36:27.249885+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-24 21:36:27.250371+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 7588452866926055770 Old state: kStable New state: kHaveLocalOffer
2019-06-24 21:36:27.250648+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-24 21:36:27.251180+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Signaling state: have-local-offer
2019-06-24 21:36:27.252340+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:Received signaling-state event: have-local-offer
2019-06-24 21:36:27.253724+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(channel.cc:743): Setting local voice description
2019-06-24 21:36:27.256954+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1338): WebRtcVoiceMediaChannel::SetRecvParameters: {codecs: [AudioCodec[111:opus:48000:0:2], AudioCodec[103:ISAC:16000:0:1], AudioCodec[104:ISAC:32000:0:1], AudioCodec[9:G722:8000:0:1], AudioCodec[0:PCMU:8000:0:1], AudioCodec[8:PCMA:8000:0:1], AudioCodec[106:CN:32000:0:1], AudioCodec[105:CN:16000:0:1], AudioCodec[13:CN:8000:0:1], AudioCodec[110:telephone-event:48000:0:1], AudioCodec[112:telephone-event:32000:0:1], AudioCodec[113:telephone-event:16000:0:1], AudioCodec[126:telephone-event:8000:0:1]], extensions: [{uri: urn:ietf:params:rtp-hdrext:ssrc-audio-level, id: 1}]}
2019-06-24 21:36:27.259142+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1510): Setting receive voice codecs.
2019-06-24 21:36:27.260202+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1780): AddSendStream: {id:D744eCCdEe58DA54D8809Cd55df6d3D4;ssrcs:[629060513];ssrc_groups:;cname:y+y5+MBVY795XRN3;stream_ids:bAc12Fda34c6FB6aB9A2FF9443C1eDe4;}
2019-06-24 21:36:27.261188+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(neteq_impl.cc:110): NetEq config: sample_rate_hz=16000, enable_post_decode_vad=true, max_packets_in_buffer=0, background_noise_mode=2, playout_mode=0, enable_fast_accelerate=false, enable_muted_state= true
2019-06-24 21:36:27.261970+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_coding_module.cc:461): Created
2019-06-24 21:36:27.263110+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:134): AudioSendStream: 629060513
2019-06-24 21:36:27.263415+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:199): AudioSendStream::ConfigureStream: {rtp: {ssrc: 629060513, extensions: [], nack: {rtp_history_ms: 0}, c_name: y+y5+MBVY795XRN3}, send_transport: (Transport), min_bitrate_bps: -1, max_bitrate_bps: -1, send_codec_spec: <unset>}
2019-06-24 21:36:27.263734+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-24 21:36:27.264110+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-24 21:36:27.264752+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(channel.cc:573): Add send stream ssrc: 629060513
2019-06-24 21:36:27.265953+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(channel.cc:735): Changing voice state, recv=0 send=0
2019-06-24 21:36:27.268109+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(peerconnection.cc:4735): Local and Remote descriptions must be applied to get the SSL Role of the SCTP transport.
2019-06-24 21:36:27.268343+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1482): Setting voice channel options: AudioOptions {}
2019-06-24 21:36:27.268483+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:324): WebRtcVoiceEngine::ApplyOptions: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-24 21:36:27.268603+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:350): Always disable AEC on iOS. Use built-in instead.
2019-06-24 21:36:27.268782+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:377): Always disable NS on iOS. Use built-in instead.
2019-06-24 21:36:27.268964+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:388): Always disable AGC on iOS. Use built-in instead.
2019-06-24 21:36:27.269083+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:840): BuiltInAECIsAvailable
2019-06-24 21:36:27.269342+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:17): BuiltInAECIsAvailable: Not supported on this platform
2019-06-24 21:36:27.269497+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:843): output: 0
2019-06-24 21:36:27.269623+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:118): Echo control set to 0 with mode 0
2019-06-24 21:36:27.269732+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:128): EC metrics set to 0
2019-06-24 21:36:27.269870+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:856): BuiltInAGCIsAvailable
2019-06-24 21:36:27.269975+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:27): BuiltInAGCIsAvailable: Not supported on this platform
2019-06-24 21:36:27.274652+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:859): output: 0
2019-06-24 21:36:27.274823+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:82): AGC set to 0 with mode 2
2019-06-24 21:36:27.274967+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:872): BuiltInNSIsAvailable
2019-06-24 21:36:27.275062+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_generic.cc:37): BuiltInNSIsAvailable: Not supported on this platform
2019-06-24 21:36:27.275246+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:875): output: 0
2019-06-24 21:36:27.275361+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:153): NS set to 0
2019-06-24 21:36:27.275487+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:512): NetEq capacity is 50
2019-06-24 21:36:27.275603+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:518): NetEq fast mode? 0
2019-06-24 21:36:27.295770+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:525): Typing detection is enabled? 0
2019-06-24 21:36:27.295963+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(apm_helpers.cc:167): VAD set to 0 for typing detection.
2019-06-24 21:36:27.296160+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:536): Delay agnostic aec is enabled? 0
2019-06-24 21:36:27.296398+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:546): Extended filter aec is enabled? 0
2019-06-24 21:36:27.296495+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:556): Experimental ns is enabled? 0
2019-06-24 21:36:27.296651+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:562): Intelligibility Enhancer is enabled? 0
2019-06-24 21:36:27.296857+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:704): Highpass filter activated: 1
2019-06-24 21:36:27.297688+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_processing_impl.cc:717): Gain Controller 2 activated: 0
2019-06-24 21:36:27.297810+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1500): Set voice channel options. Current options: AudioOptions {audio_jitter_buffer_max_packets: 50, audio_jitter_buffer_fast_accelerate: false, }
2019-06-24 21:36:27.303379+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:312): Start getting ports with prune_turn_ports disabled
2019-06-24 21:36:27.304149+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 131ms to dispatch. Posted from: PostCreateSessionDescriptionSucceeded@../../../src/pc/webrtcsessiondescriptionfactory.cc:447
2019-06-24 21:36:27.304667+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:onSetSessionLocalDescription
2019-06-24 21:36:27.305381+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:803): Network manager has started
2019-06-24 21:36:27.306065+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:718): Allocate ports on 1 networks
2019-06-24 21:36:27.306008+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Local SDP - v=0
o=- 7588452866926055770 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio
a=msid-semantic: WMS bAc12Fda34c6FB6aB9A2FF9443C1eDe4
m=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126
c=IN IP4 0.0.0.0
a=rtcp:9 IN IP4 0.0.0.0
a=ice-ufrag:gPKL
a=ice-pwd:CaivGmLoaE/ILeOsSzjhpJTY
a=ice-options:trickle
a=fingerprint:sha-256 BA:5E:48:8D:BB:48:F9:4C:B1:15:40:7B:48:E0:69:0D:AF:18:9A:5C:0E:14:F6:E6:06:DF:C9:69:30:AE:12:33
a=setup:actpass
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=rtpmap:111 opus/48000/2
a=rtcp-fb:111 transport-cc
a=fmtp:111 minptime=10;useinbandfec=1
a=rtpmap:103 ISAC/16000
a=rtpmap:104 ISAC/32000
a=rtpmap:9 G722/8000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:110 telephone-event/48000
a=rtpmap:112 telephone-event/32000
a=rtpmap:113 telephone-event/16000
a=rtpmap:126 telephone-event/8000
a=ssrc:629060513 cname:y+y5+MBVY795XRN3
a=ssrc:629060513 msid:bAc12Fda34c6FB6aB9A2FF9443C1eDe4 D744eCCdEe58DA54D8809Cd55df6d3D4
a=ssrc:629060513 mslabel:bAc12Fda34c6FB6aB9A2FF9443C1eDe4
a=ssrc:629060513 label:D744eCCdEe58DA54D8809Cd55df6d3D4
2019-06-24 21:36:27.306840+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Udp
2019-06-24 21:36:27.307019+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fc111018800::1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-24 21:36:27.307272+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1329): AllocationSequence: UDPPort will be handling the STUN candidate generation.
2019-06-24 21:36:27.308169+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:New SipCall ...
2019-06-24 21:36:27.308178+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-24 21:36:27.308394+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[Core]:Looking up: chunderm.gll.twilio.com
2019-06-24 21:36:27.308609+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-24 21:36:27.309333+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:2437072876:1:udp:2122260223:192.168.1.x:51135:local::0:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.309665+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-24 21:36:27.311445+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-24 21:36:27.311881+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-24 21:36:27.312774+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Address family: 2: 35.157.179.227
2019-06-24 21:36:27.313279+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Starting STUN host lookup for global.stun.twilio.com:3478
2019-06-24 21:36:27.313796+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Address family: 2: 35.157.179.227
2019-06-24 21:36:27.314940+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(stunport.cc:390): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Starting STUN host lookup for global.turn.twilio.com:3478
2019-06-24 21:36:27.316808+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[Core]:Setting outbound proxy to: sip:35.157.179.227:443;transport=tls
2019-06-24 21:36:27.323352+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-24 21:36:27.341536+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:Received ICE event.
    Group: ice-gathering-state
    Name: gathering
2019-06-24 21:36:27.341875+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:2437072876 1 udp 2122260223 192.168.1.2 51135 typ host generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.342078+0200 SwiftVoiceQuickstart[87824:5785830] DEBUG:Twilio:[Core]:Socket created in ../resiprocate-1.8/resip/stack/TcpBaseTransport.cxx at line 223, transport: 1, socket: 34
2019-06-24 21:36:27.347241+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-24 21:36:27.348490+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Connection::Connection: new connection created to who: [ V4 35.157.179.227:443 TLS target domain=35.157.179.227 mFlowKey=34 ]
2019-06-24 21:36:27.350475+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: Creating TLS connection for domain  [ V4 35.157.179.227:443 TLS target domain=35.157.179.227 mFlowKey=0 ] on 34
2019-06-24 21:36:27.356733+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:941443129:1:udp:1686052607:155.4.52.x:51135:stun:192.168.1.2:51135:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.362155+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:941443129 1 udp 1686052607 155.4.52.133 51135 typ srflx raddr 192.168.1.2 rport 51135 generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.369659+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Relay
2019-06-24 21:36:27.371676+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fc1108b0000::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-24 21:36:27.371966+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake starting (client mode)
2019-06-24 21:36:27.373881+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-24 21:36:27.375962+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-24 21:36:27.378500+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-24 21:36:27.382735+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fc11005fe00::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-24 21:36:27.385097+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-24 21:36:27.386069+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-24 21:36:27.386501+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-24 21:36:27.387073+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:3478
2019-06-24 21:36:27.387472+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fc111894600::1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-24 21:36:27.388013+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-24 21:36:27.388497+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-24 21:36:27.388724+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:751): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Starting TURN host lookup for global.turn.twilio.com:443
2019-06-24 21:36:27.389549+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via udp @ global.turn.twilio.com:3478
2019-06-24 21:36:27.389814+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=75477958342f566f45686d62
2019-06-24 21:36:27.389956+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-24 21:36:27.390086+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:3478
2019-06-24 21:36:27.390495+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-24 21:36:27.390743+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fc111018800:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-24 21:36:27.391191+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:335): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Trying to connect to TURN server via tcp @ global.turn.twilio.com:443
2019-06-24 21:36:27.392013+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(thread.cc:267): Waiting for the thread to join, but blocking calls have been disallowed
2019-06-24 21:36:27.412947+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=75477958342f566f45686d62, code=401, rtt=23
2019-06-24 21:36:27.413450+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=483457696b4b43784f347274
2019-06-24 21:36:27.413693+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.254:3478 using tcp.
2019-06-24 21:36:27.413869+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=7371523373616f7559757735
2019-06-24 21:36:27.414985+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:470): TurnPort connected to 18.195.48.254:443 using tcp.
2019-06-24 21:36:27.415449+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=4c7477707355744f2b776e68
2019-06-24 21:36:27.437451+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=7371523373616f7559757735, code=401, rtt=24
2019-06-24 21:36:27.438466+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=387550504c5a5a4875716a76
2019-06-24 21:36:27.438766+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS connected
2019-06-24 21:36:27.438806+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1331): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Received TURN allocate error response, id=4c7477707355744f2b776e68, code=401, rtt=23
2019-06-24 21:36:27.439000+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS sessions set up with TLSv1.2 TLSv1/SSLv3 ECDHE-RSA-AES128-GCM-SHA256
2019-06-24 21:36:27.439151+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <*.twilio.com>
2019-06-24 21:36:27.439258+0200 SwiftVoiceQuickstart[87822019-06-24 21:36:27.439263+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::SIP: subjectAltName of TLS session cert contains DNS <twilio.com>
4:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1278): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate request sent, id=6544526273694f507938656b
2019-06-24 21:36:27.443735+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1258): Net[en0:192.168.1.x/24:Wifi]: Allocation Phase=Tcp
2019-06-24 21:36:27.443928+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::TRANSPORT: TLS handshake done for peer *.twilio.com, twilio.com
2019-06-24 21:36:27.443917+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(port.cc:312): Port[0x7fc111898400::1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port created with network cost 10
2019-06-24 21:36:27.444407+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:825): Adding allocated port for audio
2019-06-24 21:36:27.444573+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:845): Port[0x7fc111898400:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Added port to allocator
2019-06-24 21:36:27.445020+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc111898400:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:3753982748:1:tcp:1518280447:192.168.1.x:56606:local::0:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.445162+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fc111898400:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-24 21:36:27.445292+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-24 21:36:27.445425+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fc111898400:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-24 21:36:27.446651+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fc111898400:audio:1:0:local:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-24 21:36:27.446686+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:3753982748 1 tcp 1518280447 192.168.1.2 56606 typ host tcptype passive generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.470169+0200 SwiftVoiceQuickstart[87824:5785831] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 100 tid=85b0a6ee00465cf9 cseq=1 INVITE / 1 from(wire)
2019-06-24 21:36:27.612934+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=483457696b4b43784f347274, code=0, rtt=199
2019-06-24 21:36:27.613259+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:1566703641:1:udp:41885951:18.195.48.x:28322:relay:155.4.52.133:51135:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.613470+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-24 21:36:27.613614+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-24 21:36:27.613949+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-24 21:36:27.614269+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-24 21:36:27.614397+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:1566703641 1 udp 41885951 18.195.48.254 28322 typ relay raddr 155.4.52.133 rport 51135 generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.614579+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-24 21:36:27.638314+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=6544526273694f507938656b, code=0, rtt=199
2019-06-24 21:36:27.639301+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:333577449:1:udp:25108223:18.195.48.x:11443:relay:155.4.52.133:56605:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.640353+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-24 21:36:27.641009+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-24 21:36:27.641453+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-24 21:36:27.641925+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-24 21:36:27.641958+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:333577449 1 udp 25108223 18.195.48.254 11443 typ relay raddr 155.4.52.133 rport 56605 generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.642256+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-24 21:36:27.642925+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1285): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN allocate requested successfully, id=387550504c5a5a4875716a76, code=0, rtt=205
2019-06-24 21:36:27.643302+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:863): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Gathered candidate: Cand[:333577449:1:udp:25108479:18.195.48.x:59941:relay:155.4.52.133:56604:gPKL:CaivGmLoaE/ILeOsSzjhpJTY:1:10:0]
2019-06-24 21:36:27.645384+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:891): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port ready.
2019-06-24 21:36:27.645553+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(physicalsocketserver.cc:593): Socket::OPT_DSCP not supported.
2019-06-24 21:36:27.645813+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:714): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: SetOption(5, 0) failed: 0
2019-06-24 21:36:27.646166+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:965): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Port completed gathering candidates.
2019-06-24 21:36:27.646233+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Gathered ICE candidate: candidate:333577449 1 udp 25108479 18.195.48.254 59941 typ relay raddr 155.4.52.133 rport 56604 generation 0 ufrag gPKL network-id 1 network-cost 10
2019-06-24 21:36:27.646305+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(basicportallocator.cc:1061): All candidates gathered for audio:1:0
2019-06-24 21:36:27.647576+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(p2ptransportchannel.cc:768): P2PTransportChannel: audio, component 1 gathering complete
2019-06-24 21:36:27.648316+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:Received ICE event.
    Group: ice-gathering-state
    Name: complete
2019-06-24 21:36:27.647823+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1046): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: Scheduled refresh in 540000ms.
2019-06-24 21:36:27.669411+0200 SwiftVoiceQuickstart[87824:5785830] WARN:Twilio:[Signaling]:RESIP::TRANSPORT: Can't find matching transport [ V4 192.168.1.2:0 TLS target domain=unspecified mFlowKey=0 ]
2019-06-24 21:36:27.670253+0200 SwiftVoiceQuickstart[87824:5785831] INFO:Twilio:[Signaling]:RESIP::DUM: Got: SipResp: 503 tid=85b0a6ee00465cf9 cseq=1 INVITE / 1 from(wire)
2019-06-24 21:36:27.670804+0200 SwiftVoiceQuickstart[87824:5785831] INFO:Twilio:[Signaling]:RESIP::DUM: Failure:  error response: SipResp: 503 tid=85b0a6ee00465cf9 cseq=1 INVITE / 1 from(wire)
2019-06-24 21:36:27.671396+0200 SwiftVoiceQuickstart[87824:5785831] INFO:Twilio:[Signaling]:RESIP::DUM: Transition UAC_Start -> InviteSession::Terminated
2019-06-24 21:36:27.671748+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:virtual void twilio::voice::SipCall::onFailure(resip::ClientInviteSessionHandle, const resip::SipMessage &)
2019-06-24 21:36:27.672050+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:Received incoming SIP message from infra:
SIP/2.0 503 Service Unavailable
Via: SIP/2.0/TLS 192.168.1.2;received=155.4.52.133;branch=z9hG4bK-524287-1---85b0a6ee00465cf9;rport=56598
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=ec2ec0e5b43bc8fe5ffbd549a9224cd9-0b40
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=142dda6e
Call-ID: H_i_ZnigmT5N-UR8U4_vew..
CSeq: 1 INVITE
Server: Twilio Client SBC
Content-Length: 0
2019-06-24 21:36:27.672456+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:onFailure
2019-06-24 21:36:27.673927+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:onTerminated: reason 0
2019-06-24 21:36:27.673981+0200 SwiftVoiceQuickstart[87824:5785826] TRACE:Twilio:[Core]:stopDependents
2019-06-24 21:36:27.674100+0200 SwiftVoiceQuickstart[87824:5785157] INFO:Twilio:[Platform]:Inside publishConnectionEvent:, event type: error
2019-06-24 21:36:27.674637+0200 SwiftVoiceQuickstart[87824:5785157] TRACE:Twilio:[Platform]:Inside publisherConnectionEvent:, sending error event
2019-06-24 21:36:27.674781+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
Via: SIP/2.0/TLS 192.168.1.2;received=155.4.52.133;branch=z9hG4bK-524287-1---85b0a6ee00465cf9;rport=56598
To: <sip:chunderm.gll.twilio.com:443;transport=tls>;tag=ec2ec0e5b43bc8fe5ffbd549a9224cd9-0b40
From: <sip:VoiceSDK@chunderm.gll.twilio.com>;tag=142dda6e
Call-ID: H_i_ZnigmT5N-UR8U4_vew..
CSeq: 1 INVITE
Server: Twilio Client SBC
Content-Length: 0
2019-06-24 21:36:27.675824+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(peerconnection.cc:3495): Session: 7588452866926055770 Old state: kHaveLocalOffer New state: kClosed
2019-06-24 21:36:27.677674+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:OnIceConnectionChange
2019-06-24 21:36:27.678108+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Call State: Disconnected ICE connection state: closed
2019-06-24 21:36:27.678910+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:SIP/2.0 503 Service Unavailable
2019-06-24 21:36:27.679108+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:Received ICE event.
    Group: ice-connection-state
    Name: closed
2019-06-24 21:36:27.679072+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:OnSignalingChange
2019-06-24 21:36:27.680347+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:onTerminated
2019-06-24 21:36:27.681913+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Signaling state: closed
2019-06-24 21:36:27.681913+0200 SwiftVoiceQuickstart[87824:5785831] DEBUG:Twilio:[Core]:~SipCall(): 0x7fc111890800
2019-06-24 21:36:27.682308+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:Received signaling-state event: closed
2019-06-24 21:36:27.690944+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:1817): RemoveSendStream: 629060513
2019-06-24 21:36:27.691107+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(call.cc:1047): UpdateAggregateNetworkState: aggregate_state=down
2019-06-24 21:36:27.691239+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(send_side_congestion_controller.cc:275): SignalNetworkState Down
2019-06-24 21:36:27.691389+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_send_stream.cc:157): ~AudioSendStream: 629060513
2019-06-24 21:36:27.691692+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(channel.cc:125): Destroyed channel: audio
2019-06-24 21:36:27.692392+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fc1108b0000:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=2f785263354742634f4f3745
2019-06-24 21:36:27.692657+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fc11005fe00:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=504768367331674847302f47
2019-06-24 21:36:27.693039+0200 SwiftVoiceQuickstart[87824:5785828] INFO:Twilio:[WebRTC]:(turnport.cc:1466): Port[0x7fc111894600:audio:1:0:relay:Net[en0:192.168.1.x/24:Wifi]]: TURN refresh request sent, id=3634632b6e50486c37506e67
2019-06-24 21:36:27.693818+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-24 21:36:27.693946+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(paced_sender.cc:354): ProcessThreadAttached 0x0x0
2019-06-24 21:36:27.694183+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Shutting down DUM thread ...
2019-06-24 21:36:28.686735+0200 SwiftVoiceQuickstart[87824:5785826] DEBUG:Twilio:[Core]:Shutting down SIP stack thread ...
2019-06-24 21:36:28.687538+0200 SwiftVoiceQuickstart[87824:5785830] INFO:Twilio:[Signaling]:RESIP::SIP: Shutting down stack thread
2019-06-24 21:36:28.690350+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(messagequeue.cc:535): Message took 1017ms to dispatch. Posted from: onFailure@/Users/distiller/project/voice/src/call_impl.cpp:1330
2019-06-24 21:36:28.690701+0200 SwiftVoiceQuickstart[87824:5785157] Call failed to connect: Service Unavailable
2019-06-24 21:36:28.705182+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:dealloc.
2019-06-24 21:36:28.705662+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Core]:~CallImpl
2019-06-24 21:36:28.707009+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(peerconnection.cc:849): Session: 7588452866926055770 is destroyed.
2019-06-24 21:36:28.707469+0200 SwiftVoiceQuickstart[87824:5785826] INFO:Twilio:[WebRTC]:(dtmfsender.cc:235): The Dtmf provider is deleted. Clear the sending queue.
2019-06-24 21:36:28.707656+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Core]:AppleReachability::~AppleReachability()
2019-06-24 21:36:28.708057+0200 SwiftVoiceQuickstart[87824:5785157] DEBUG:Twilio:[Platform]:-[TVOMediaFactory dealloc]
2019-06-24 21:36:28.708164+0200 SwiftVoiceQuickstart[87824:5785157] INFO:Twilio:[Core]:~AudioMediaFactoryImpl
2019-06-24 21:36:28.708768+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(webrtcvoiceengine.cc:220): WebRtcVoiceEngine::~WebRtcVoiceEngine
2019-06-24 21:36:28.708896+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:769): StopPlayout
2019-06-24 21:36:28.709047+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:242): AudioDeviceIOS::StopPlayout
2019-06-24 21:36:28.709370+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:773): output: 0
2019-06-24 21:36:28.709638+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:800): StopRecording
2019-06-24 21:36:28.711022+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:289): AudioDeviceIOS::StopRecording
2019-06-24 21:36:28.711742+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:804): output: 0
2019-06-24 21:36:28.712175+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:818): RegisterAudioCallback
2019-06-24 21:36:28.712634+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:84): RegisterAudioCallback
2019-06-24 21:36:28.712962+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:319): Terminate
2019-06-24 21:36:28.713274+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:161): AudioDeviceIOS::Terminate
2019-06-24 21:36:28.713514+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:242): AudioDeviceIOS::StopPlayout
2019-06-24 21:36:28.713709+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:289): AudioDeviceIOS::StopRecording
2019-06-24 21:36:28.714074+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_impl.cc:288): ~AudioDeviceModuleImpl
2019-06-24 21:36:28.714407+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:122): AudioDeviceIOS::~dtor<NSThread: 0x6000039dd1c0>{number = 10, name = (null)}
2019-06-24 21:36:28.714660+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_ios.mm:161): AudioDeviceIOS::Terminate
2019-06-24 21:36:28.716747+0200 SwiftVoiceQuickstart[87824:5785827] INFO:Twilio:[WebRTC]:(audio_device_buffer.cc:78): AudioDeviceBuffer::~dtor
bobiechen-twilio commented 5 years ago

Hi Joel,

Sorry this took this so long. I finally got the help from our backend expert and it might actually failed due to the callee's identity. Our backend expert pulled out some additional logs based on the call info from your logs and found that the call parameter list seemed to be broken (X-Twilio-Params: to=).

I did try a alice-to-bob call and registered bob as jlFrjrMIODn8TqR2wflu/wlXWTm5Mm23Wdz0XMM75 and was able to receive the incoming call on bob's side. From the call log I was seeing X-Twilio-Params: to=jlFrjrMIODn8TqR2wflu%2FwlXWTm5Mm23Wdz0XMM75, where the identity string is properly escaped to meet the requirement of the service.

Could you help us check the value of the dictionary that you pass into the TVOConnectOptions builder params and the TwiML response from your app server?

By the way we've also noticed that there are couple of errors (Twilio 13237 error) under your account indicating that the Conference Name being invalid when you tried to connect to a conference room.

Thanks -bobie

jbohman commented 5 years ago

Hello!

So to answer the first question, what I set as TVOConnectOptions.params is this (now I'm back at my real application not the get started example):

["to": "jlFrjrMIODn8TqR2wflu/wlXWTm5Mm23Wdz0XMM75"]

I've also tried to url encode it before so the slash is turned into %2F but no luck still 503. And if I read the documentation for TVOConnectOptions.params it says:

The Voice SDK URI encodes the parameters before passing them to your TwiML Application.

The Twilio 13237 error is expected as I've tried to click the call button in the Twilio Console on the TwiML app. And then it does not set a to parameter and my backend code does not handle it. My guess is that your backend expert looked at the call logs for when I clicked the call button in the UI.

Because when I use the iOS (or Android) SDK it has never been able to connect to the TwiML app at all. I've never seen an incoming request on my server, all logs that I can see at (https://www.twilio.com/console/voice/calls/logs) are either from me clicking on call button in the Twilio Console or using the Web SDK (that works).

To add more information, below is an access token generated (replaced secret values). Is there any relationship between the identity in the access token and the to parameter? As it is now I set the identity to the user id in my platform and the to parameter is the id I want the conference call to have.

{
  "alg": "HS256",
  "typ": "JWT",
  "cty": "twilio-fpa;v=1"
}
{
  "jti": "API_KEY-1561446231",
  "grants": {
    "identity": "dMsfds0yGbZr3SWKCam4nPmBNMY2",
    "voice": {
      "outgoing": {
        "application_sid": "APPLICATION_SID",
        "params": {
          "eventId": "jlFrjrMIODn8TqR2wflu",
          "silentRoomId": "wlXWTm5Mm23Wdz0XMM75",
          "isModerator": true
        }
      }
    }
  },
  "iat": 1561446231,
  "exp": 1561446831,
  "iss": "API_KEY",
  "sub": "ACCOUNT_ID"
}

Best regards, Joel

jbohman commented 5 years ago

Ahh I found the issue(s)!

First of all, it should not be to but instead To. But that was a minor issue as it seems like to was still passed but call logs show for example To being empty but to containing a value.

The bigger issue and what is causing the 503 is that the outgoingApplicationParams contains a non-string value. It seems like only strings are supported. When I changed isModerator value to "true" it worked. Maybe a better error message could be introduced or that this could be mentioned somewhere in the documentation (might already be and I missed it completely).

Thanks for all the help @bchen-twilio, very much appreciated!

bobiechen-twilio commented 5 years ago

Glad to see that the issue has been identified and resolved!

The To key of the parameter list is one of the default keys used by Twilio. It's up to the user's business logic to decide which parameter(s), default or custom, to be used for further actions.

We will definitely work on improving the documentation to provide better experience in the future.

It was great pleasure working with you. I am closing this ticket for now but please feel free to reach to us if you run into any issue.

Cheers, -bobie