├── .gitignore ├── .ssh └── github_rsa.enc ├── .travis.yml ├── Examples ├── README.md ├── restcomm-helloworld │ ├── .gitignore │ ├── Podfile │ ├── restcomm-helloworld.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── restcomm-helloworld.xcworkspace │ │ └── contents.xcworkspacedata │ ├── restcomm-helloworld │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── restcomm-helloworldTests │ │ ├── Info.plist │ │ └── restcomm_helloworldTests.m ├── restcomm-olympus-nopod │ ├── .gitignore │ ├── README.md │ ├── restcomm-olympus.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── restcomm-olympus.xcscmblueprint │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── restcomm-olympus.xcscheme │ ├── restcomm-olympus │ │ ├── ARDVideoCallView.h │ │ ├── ARDVideoCallView.m │ │ ├── AboutTableViewController.h │ │ ├── AboutTableViewController.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Base.lproj │ │ │ ├── Main_Universal.storyboard │ │ │ └── Main_iPad.storyboard │ │ ├── BugReportViewController.h │ │ ├── BugReportViewController.m │ │ ├── CallViewController.h │ │ ├── CallViewController.m │ │ ├── ContactDetailsTableViewController.h │ │ ├── ContactDetailsTableViewController.m │ │ ├── ContactUpdateTableViewController.h │ │ ├── ContactUpdateTableViewController.m │ │ ├── ICEDiscoveryTypeTableViewController.h │ │ ├── ICEDiscoveryTypeTableViewController.m │ │ ├── ICESettingsNavigationController.h │ │ ├── ICESettingsNavigationController.m │ │ ├── ICESettingsTableViewController.h │ │ ├── ICESettingsTableViewController.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-120x120-1.png │ │ │ │ ├── icon-120x120.png │ │ │ │ ├── icon-152X152.png │ │ │ │ ├── icon-167X167.png │ │ │ │ ├── icon-180x180.png │ │ │ │ ├── icon-20x20.png │ │ │ │ ├── icon-29x29.png │ │ │ │ ├── icon-40x40-1.png │ │ │ │ ├── icon-40x40-2.png │ │ │ │ ├── icon-40x40.png │ │ │ │ ├── icon-58x58-1.png │ │ │ │ ├── icon-58x58.png │ │ │ │ ├── icon-60x60.png │ │ │ │ ├── icon-76x76.png │ │ │ │ ├── icon-80x80-1.png │ │ │ │ ├── icon-80x80.png │ │ │ │ └── icon-87X87.png │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── ipad-splash.png │ │ │ │ ├── ipad-splash@2x.png │ │ │ │ ├── iphone-splash@2x.png │ │ │ │ └── iphone5-splash@2x.png │ │ ├── InputAccessoryFragment.xib │ │ ├── InputAccessoryProxyView.h │ │ ├── InputAccessoryProxyView.m │ │ ├── KeypadViewController.h │ │ ├── KeypadViewController.m │ │ ├── LocalContact.h │ │ ├── LocalContact.m │ │ ├── LocalMessage.h │ │ ├── LocalMessage.m │ │ ├── LocalMessageTableViewCell.h │ │ ├── LocalMessageTableViewCell.m │ │ ├── MainNavigationController.h │ │ ├── MainNavigationController.m │ │ ├── MainTableViewController.h │ │ ├── MainTableViewController.m │ │ ├── MessageTableViewController.h │ │ ├── MessageTableViewController.m │ │ ├── PushSettingsViewController.h │ │ ├── PushSettingsViewController.m │ │ ├── RemoteMessageTableViewCell.h │ │ ├── RemoteMessageTableViewCell.m │ │ ├── SIPSettingsNavigationController.h │ │ ├── SIPSettingsNavigationController.m │ │ ├── SettingsTableViewController.h │ │ ├── SettingsTableViewController.m │ │ ├── SigninTableViewController.h │ │ ├── SigninTableViewController.m │ │ ├── SipSettingsTableViewController.h │ │ ├── SipSettingsTableViewController.m │ │ ├── TestFairy │ │ │ ├── TestFairy.h │ │ │ ├── libTestFairy.a │ │ │ └── upload-dsym.sh │ │ ├── ToastController.h │ │ ├── ToastController.m │ │ ├── Utils.h │ │ ├── Utils.m │ │ ├── cert │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ ├── certificate_key_push.pem │ │ │ └── rsa_private_key_push.pem │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── img │ │ │ ├── answer-audio-50x50.png │ │ │ ├── answer-audio-50x50@2x.png │ │ │ ├── answer-audio-50x50@3x.png │ │ │ ├── answer-video-50x50.png │ │ │ ├── answer-video-50x50@2x.png │ │ │ ├── answer-video-50x50@3x.png │ │ │ ├── audio-active-50x50.png │ │ │ ├── audio-active-50x50@2x.png │ │ │ ├── audio-active-50x50@3x.png │ │ │ ├── audio-call-30x30.png │ │ │ ├── audio-call-30x30@2x.png │ │ │ ├── audio-muted-50x50.png │ │ │ ├── audio-muted-50x50@2x.png │ │ │ ├── audio-muted-50x50@3x.png │ │ │ ├── back-74x74.png │ │ │ ├── back-74x74@2x.png │ │ │ ├── bug-grey-icon-25x25@2x.png │ │ │ ├── bug-grey-icon-25x25@3x.png │ │ │ ├── camera-icon-28x28.png │ │ │ ├── camera-icon-28x28@2x.png │ │ │ ├── camera-icon-28x28@3x.png │ │ │ ├── camera-icon-44x44@3x.png │ │ │ ├── contact-icon-coral-36x36.png │ │ │ ├── contact-icon-coral-36x36@2x.png │ │ │ ├── contact-icon-coral-36x36@3x.png │ │ │ ├── contact-icon-grey-36x36.png │ │ │ ├── contact-icon-grey-36x36@2x.png │ │ │ ├── contact-icon-grey-36x36@3x.png │ │ │ ├── dtmf-done-15x15.png │ │ │ ├── dtmf-done-15x15@2x.png │ │ │ ├── dtmf-done-15x15@3x.png │ │ │ ├── dtmf-done-30x30.png │ │ │ ├── dtmf-done-30x30@2x.png │ │ │ ├── dtmf-done-30x30@3x.png │ │ │ ├── eight-digit-74x74.png │ │ │ ├── eight-digit-74x74@2x.png │ │ │ ├── eight-digit-74x74@3x.png │ │ │ ├── five-digit-74x74.png │ │ │ ├── five-digit-74x74@2x.png │ │ │ ├── five-digit-74x74@3x.png │ │ │ ├── four-digit-74x74.png │ │ │ ├── four-digit-74x74@2x.png │ │ │ ├── four-digit-74x74@3x.png │ │ │ ├── hangup-74x74.png │ │ │ ├── hangup-74x74@2x.png │ │ │ ├── hangup-74x74@3x.png │ │ │ ├── hash-digit-74x74.png │ │ │ ├── hash-digit-74x74@2x.png │ │ │ ├── hash-digit-74x74@3x.png │ │ │ ├── icon │ │ │ │ ├── icon-29x29.png │ │ │ │ ├── icon-29x29@2x.png │ │ │ │ ├── icon-40x40.png │ │ │ │ ├── icon-40x40@2x.png │ │ │ │ ├── icon-60x60@2x.png │ │ │ │ ├── icon-60x60@3x.png │ │ │ │ ├── icon-76x76.png │ │ │ │ └── icon-76x76@2x.png │ │ │ ├── inapp-grey-icon-28x28.png │ │ │ ├── inapp-grey-icon-28x28@2x.png │ │ │ ├── inapp-grey-icon-28x28@3x.png │ │ │ ├── inapp-icon-28x28.png │ │ │ ├── inapp-icon-28x28@2x.png │ │ │ ├── inapp-icon-28x28@3x.png │ │ │ ├── inapp-icon-40x40.png │ │ │ ├── inapp-icon-40x40@2x.png │ │ │ ├── keypad-50x50.png │ │ │ ├── keypad-50x50@2x.png │ │ │ ├── keypad-50x50@3x.png │ │ │ ├── message-2-30x30.png │ │ │ ├── message-2-30x30@2x.png │ │ │ ├── message-30x30.png │ │ │ ├── message-30x30@2x.png │ │ │ ├── message-local-square-43x43.png │ │ │ ├── message-local-square-43x43@2x.png │ │ │ ├── message-remote-square-43x43.png │ │ │ ├── message-remote-square-43x43@2x.png │ │ │ ├── nine-digit-74x74.png │ │ │ ├── nine-digit-74x74@2x.png │ │ │ ├── nine-digit-74x74@3x.png │ │ │ ├── one-digit-74x74.png │ │ │ ├── one-digit-74x74@2x.png │ │ │ ├── one-digit-74x74@3x.png │ │ │ ├── phone-icon-28x28.png │ │ │ ├── phone-icon-28x28@2x.png │ │ │ ├── phone-icon-28x28@3x.png │ │ │ ├── plus-sign-30x30.png │ │ │ ├── plus-sign-30x30@2x.png │ │ │ ├── restcomm-logo-call-139x58.png │ │ │ ├── restcomm-logo-call-139x58@2x.png │ │ │ ├── send-message-icon-25x25.png │ │ │ ├── send-message-icon-25x25@2x.png │ │ │ ├── send-message-icon-25x25@3x.png │ │ │ ├── settings-22x22.png │ │ │ ├── settings-22x22@2x.png │ │ │ ├── settings-30x30.png │ │ │ ├── settings-30x30@2x.png │ │ │ ├── seven-digit-74x74.png │ │ │ ├── seven-digit-74x74@2x.png │ │ │ ├── seven-digit-74x74@3x.png │ │ │ ├── six-digit-74x74.png │ │ │ ├── six-digit-74x74@2x.png │ │ │ ├── six-digit-74x74@3x.png │ │ │ ├── speaker-on-50x50.png │ │ │ ├── speaker-on-50x50@2x.png │ │ │ ├── speaker-on-50x50@3x.png │ │ │ ├── splash │ │ │ │ ├── splash-320x480@2x.png │ │ │ │ ├── splash-320x568@2x.png │ │ │ │ ├── splash-768x1024.png │ │ │ │ └── splash-768x1024@2x.png │ │ │ ├── star-digit-74x74.png │ │ │ ├── star-digit-74x74@2x.png │ │ │ ├── star-digit-74x74@3x.png │ │ │ ├── three-digit-74x74.png │ │ │ ├── three-digit-74x74@2x.png │ │ │ ├── three-digit-74x74@3x.png │ │ │ ├── two-digit-74x74.png │ │ │ ├── two-digit-74x74@2x.png │ │ │ ├── two-digit-74x74@3x.png │ │ │ ├── video-active-50x50.png │ │ │ ├── video-active-50x50@2x.png │ │ │ ├── video-active-50x50@3x.png │ │ │ ├── video-call-30x30.png │ │ │ ├── video-call-30x30@2x.png │ │ │ ├── video-muted-50x50.png │ │ │ ├── video-muted-50x50@2x.png │ │ │ ├── video-muted-50x50@3x.png │ │ │ ├── zero-digit-74x74.png │ │ │ ├── zero-digit-74x74@2x.png │ │ │ └── zero-digit-74x74@3x.png │ │ ├── main.m │ │ ├── restcomm-olympus-Info.plist │ │ ├── restcomm-olympus-Prefix.pch │ │ ├── restcomm-olympus.entitlements │ │ └── sounds │ │ │ ├── busy_tone_sample.mp3 │ │ │ ├── calling.mp3 │ │ │ ├── dtmf0.wav │ │ │ ├── dtmf1.wav │ │ │ ├── dtmf2.wav │ │ │ ├── dtmf3.wav │ │ │ ├── dtmf4.wav │ │ │ ├── dtmf5.wav │ │ │ ├── dtmf6.wav │ │ │ ├── dtmf7.wav │ │ │ ├── dtmf8.wav │ │ │ ├── dtmf9.wav │ │ │ ├── message.mp3 │ │ │ ├── pound.wav │ │ │ ├── ringing.mp3 │ │ │ └── star.wav │ └── restcomm-olympusTests │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ ├── restcomm-olympusTests-Info.plist │ │ └── restcomm-olympusTests.m └── restcomm-olympus │ ├── .gitignore │ ├── Podfile │ ├── README.md │ ├── restcomm-olympus │ ├── restcomm-olympus.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── restcomm-olympus.xcscmblueprint │ └── xcshareddata │ │ └── xcschemes │ │ └── restcomm-olympus.xcscheme │ ├── restcomm-olympus.xcworkspace │ └── contents.xcworkspacedata │ └── restcomm-olympusTests │ ├── en.lproj │ └── InfoPlist.strings │ ├── restcomm-olympusTests-Info.plist │ └── restcomm-olympusTests.m ├── LICENSE ├── Lab ├── README.md └── sofsip-cli-0.16 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── TODO │ ├── aclocal.m4 │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ ├── Makefile.am │ ├── Makefile.in │ └── sofsip_cli.1 │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ ├── packages │ ├── Makefile.am │ ├── Makefile.in │ ├── sofsip-cli.spec │ └── sofsip-cli.spec.in │ └── src │ ├── Makefile.am │ ├── Makefile.fixed │ ├── Makefile.in │ ├── farsight-netsocket-stun.c │ ├── farsight-netsocket-stun.h │ ├── farsight-netsocket-utils.c │ ├── farsight-netsocket-utils.h │ ├── farsight-netsocket.c │ ├── farsight-netsocket.h │ ├── nice_local.c │ ├── nice_local.h │ ├── nice_tester.c │ ├── replace_g_debug.h │ ├── replace_goption.c │ ├── replace_goption.h │ ├── sdp_utils.c │ ├── sdp_utils.h │ ├── sofsip_cli.c │ ├── ssc_input.c │ ├── ssc_input.h │ ├── ssc_media.c │ ├── ssc_media.h │ ├── ssc_media_gst.c │ ├── ssc_media_gst.h │ ├── ssc_media_gst_utils.c │ ├── ssc_media_gst_utils.h │ ├── ssc_media_nice.c │ ├── ssc_media_nice.h │ ├── ssc_oper.c │ ├── ssc_oper.h │ ├── ssc_sip.c │ ├── ssc_sip.h │ └── test_media.c ├── README.md ├── RestCommClient ├── Assets │ └── .gitkeep ├── Classes │ ├── CliInterface │ │ ├── cli_common.h │ │ ├── sdp_utils.cpp │ │ ├── sdp_utils.h │ │ ├── sofsip_cli.h │ │ ├── sofsip_cli.mm │ │ ├── ssc_input.cpp │ │ ├── ssc_input.h │ │ ├── ssc_media_simple.cpp │ │ ├── ssc_media_simple.h │ │ ├── ssc_oper.h │ │ ├── ssc_oper.mm │ │ ├── ssc_sip.h │ │ └── ssc_sip.mm │ ├── Media │ │ ├── ARDAppClient+Internal.h │ │ ├── ARDCEODTURNClient.h │ │ ├── ARDCEODTURNClient.m │ │ ├── ARDTURNClient.h │ │ ├── ARDUtilities.h │ │ ├── ARDUtilities.m │ │ ├── MediaWebRTC.h │ │ ├── MediaWebRTC.m │ │ ├── RTCICEServer+JSON.h │ │ ├── RTCICEServer+JSON.m │ │ ├── XirsysTURNClient.h │ │ └── XirsysTURNClient.m │ ├── Push │ │ ├── Model │ │ │ ├── RCApplication.h │ │ │ ├── RCApplication.m │ │ │ ├── RCBinding.h │ │ │ ├── RCBinding.m │ │ │ ├── RCCredentials.h │ │ │ └── RCCredentials.m │ │ ├── PushApiManager.h │ │ ├── PushApiManager.m │ │ ├── PushHandler.h │ │ └── PushHandler.m │ ├── RCCallKitProvider.h │ ├── RCCallKitProvider.m │ ├── RCClient.h │ ├── RCClient.m │ ├── RCConnection.h │ ├── RCConnection.m │ ├── RCConnectionDelegate.h │ ├── RCConnectionDelegate.m │ ├── RCDevice.h │ ├── RCDevice.m │ ├── RCDeviceDelegate.h │ ├── RCDeviceDelegate.m │ ├── RCPresenceEvent.h │ ├── RCPresenceEvent.m │ ├── RCRegisterPushDelegate.h │ ├── RCRegisterPushDelegate.m │ ├── RCUtilities.h │ ├── RCUtilities.m │ ├── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m │ ├── RestCommClient-Prefix.pch │ ├── RestCommClient.h │ ├── RestCommClient.m │ ├── SettingsNavigationController.h │ ├── SipManager │ │ ├── SipManager.h │ │ └── SipManager.mm │ ├── common.h │ └── common.m ├── README.md └── doc │ ├── Doxyfile │ └── index.markdown ├── RestCommClientLib ├── README.md ├── RestCommClientLib └── RestCommClientLib.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ └── contents.xcworkspacedata ├── Test-App ├── .gitignore ├── Podfile ├── Sample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Sample.xcscheme │ │ └── Sample_Tests.xcscheme ├── Sample.xcworkspace │ └── contents.xcworkspacedata ├── Sample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Sample_Tests │ ├── Info.plist │ ├── RCDeviceSpec.m │ └── Sample_Tests.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── dependencies ├── binaries │ ├── RestCommClientLib │ │ └── lib │ │ │ ├── .gitignore │ │ │ └── .keep │ ├── boringssl │ │ └── lib │ │ │ ├── .gitignore │ │ │ └── .keep │ ├── frameworks │ │ ├── .gitignore │ │ └── .keep │ ├── openssl-1.0.1i │ │ └── lib │ │ │ ├── .gitignore │ │ │ └── .keep │ └── sofia-sip-1.12.11 │ │ └── lib │ │ ├── .gitignore │ │ └── .keep ├── cocoapods │ ├── sofia-sip-library │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Example │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── Tests │ │ │ │ ├── Tests-Info.plist │ │ │ │ ├── Tests-Prefix.pch │ │ │ │ ├── Tests.m │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── sofia-sip-library.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── sofia-sip-library-Example.xcscheme │ │ │ └── sofia-sip-library.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _Pods.xcodeproj │ │ ├── sofia-sip-library.podspec │ │ └── sofia-sip-library │ │ │ ├── Assets │ │ │ └── .gitkeep │ │ │ └── Classes │ │ │ ├── .gitkeep │ │ │ └── ReplaceMe.m │ └── webrtc-framework │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Example │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Tests │ │ │ ├── Tests-Info.plist │ │ │ ├── Tests-Prefix.pch │ │ │ ├── Tests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── webrtc-framework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── webrtc-framework-Example.xcscheme │ │ └── webrtc-framework.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _Pods.xcodeproj │ │ ├── webrtc-framework.podspec │ │ └── webrtc-framework │ │ ├── Assets │ │ └── .gitkeep │ │ └── Classes │ │ ├── .gitkeep │ │ └── ReplaceMe.m ├── include │ ├── boringssl │ │ └── openssl │ │ │ ├── aead.h │ │ │ ├── aes.h │ │ │ ├── arm_arch.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── base.h │ │ │ ├── base64.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buf.h │ │ │ ├── buffer.h │ │ │ ├── bytestring.h │ │ │ ├── cast.h │ │ │ ├── chacha.h │ │ │ ├── cipher.h │ │ │ ├── cmac.h │ │ │ ├── conf.h │ │ │ ├── cpu.h │ │ │ ├── crypto.h │ │ │ ├── curve25519.h │ │ │ ├── des.h │ │ │ ├── dh.h │ │ │ ├── digest.h │ │ │ ├── dsa.h │ │ │ ├── dtls1.h │ │ │ ├── ec.h │ │ │ ├── ec_key.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── ex_data.h │ │ │ ├── hkdf.h │ │ │ ├── hmac.h │ │ │ ├── is_boringssl.h │ │ │ ├── lhash.h │ │ │ ├── lhash_macros.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── nid.h │ │ │ ├── obj.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pkcs8.h │ │ │ ├── poly1305.h │ │ │ ├── pool.h │ │ │ ├── rand.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── span.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── thread.h │ │ │ ├── tls1.h │ │ │ ├── type_check.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── openssl-1.0.1i │ │ ├── LICENSE │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── sofia-sip-1.12.11 │ │ ├── sofia-resolv │ │ ├── sres.h │ │ ├── sres_async.h │ │ ├── sres_cache.h │ │ ├── sres_config.h │ │ └── sres_record.h │ │ └── sofia-sip │ │ ├── auth_client.h │ │ ├── auth_client_plugin.h │ │ ├── auth_common.h │ │ ├── auth_digest.h │ │ ├── auth_module.h │ │ ├── auth_plugin.h │ │ ├── base64.h │ │ ├── bnf.h │ │ ├── heap.h │ │ ├── hostdomain.h │ │ ├── htable.h │ │ ├── htable2.h │ │ ├── http.h │ │ ├── http_hclasses.h │ │ ├── http_header.h │ │ ├── http_parser.h │ │ ├── http_protos.h │ │ ├── http_status.h │ │ ├── http_tag.h │ │ ├── http_tag_class.h │ │ ├── msg.h │ │ ├── msg_addr.h │ │ ├── msg_buffer.h │ │ ├── msg_date.h │ │ ├── msg_header.h │ │ ├── msg_mclass.h │ │ ├── msg_mclass_hash.h │ │ ├── msg_mime.h │ │ ├── msg_mime_protos.h │ │ ├── msg_parser.h │ │ ├── msg_protos.h │ │ ├── msg_tag_class.h │ │ ├── msg_types.h │ │ ├── nea.h │ │ ├── nea_tag.h │ │ ├── nta.h │ │ ├── nta_stateless.h │ │ ├── nta_tag.h │ │ ├── nta_tport.h │ │ ├── nth.h │ │ ├── nth_tag.h │ │ ├── nua.h │ │ ├── nua_tag.h │ │ ├── rbtree.h │ │ ├── sdp.h │ │ ├── sdp_tag.h │ │ ├── sip.h │ │ ├── sip_extra.h │ │ ├── sip_extra.h.in │ │ ├── sip_hclasses.h │ │ ├── sip_hclasses.h.in │ │ ├── sip_header.h │ │ ├── sip_parser.h │ │ ├── sip_protos.h │ │ ├── sip_protos.h.in │ │ ├── sip_status.h │ │ ├── sip_tag.h │ │ ├── sip_tag.h.in │ │ ├── sip_tag_class.h │ │ ├── sip_util.h │ │ ├── sl_utils.h │ │ ├── soa.h │ │ ├── soa_add.h │ │ ├── soa_session.h │ │ ├── soa_tag.h │ │ ├── sofia_features.h │ │ ├── sres_sip.h │ │ ├── sresolv.h │ │ ├── string0.h │ │ ├── stun.h │ │ ├── stun_common.h │ │ ├── stun_tag.h │ │ ├── su.h │ │ ├── su_addrinfo.h │ │ ├── su_alloc.h │ │ ├── su_alloc_stat.h │ │ ├── su_bm.h │ │ ├── su_config.h │ │ ├── su_configure.h │ │ ├── su_debug.h │ │ ├── su_errno.h │ │ ├── su_glib.h │ │ ├── su_localinfo.h │ │ ├── su_log.h │ │ ├── su_md5.h │ │ ├── su_os_nw.h │ │ ├── su_port.h │ │ ├── su_random.h │ │ ├── su_source.h │ │ ├── su_string.h │ │ ├── su_strlst.h │ │ ├── su_tag.h │ │ ├── su_tag_class.h │ │ ├── su_tag_inline.h │ │ ├── su_tag_io.h │ │ ├── su_tagarg.h │ │ ├── su_time.h │ │ ├── su_types.h │ │ ├── su_uniqueid.h │ │ ├── su_vector.h │ │ ├── su_wait.h │ │ ├── token64.h │ │ ├── tport.h │ │ ├── tport_plugins.h │ │ ├── tport_tag.h │ │ ├── tstdef.h │ │ ├── uniqueid.h │ │ ├── url.h │ │ ├── url_tag.h │ │ └── url_tag_class.h ├── other │ └── sofia-sip-wrapper-framework │ │ ├── .gitignore │ │ ├── README.md │ │ ├── sofia-sip │ │ ├── Info.plist │ │ ├── include │ │ │ └── sofia-sip-1.12 │ │ │ │ ├── sofia-resolv │ │ │ │ ├── sres.h │ │ │ │ ├── sres_async.h │ │ │ │ ├── sres_cache.h │ │ │ │ ├── sres_config.h │ │ │ │ └── sres_record.h │ │ │ │ └── sofia-sip │ │ │ │ ├── auth_client.h │ │ │ │ ├── auth_client_plugin.h │ │ │ │ ├── auth_common.h │ │ │ │ ├── auth_digest.h │ │ │ │ ├── auth_module.h │ │ │ │ ├── auth_plugin.h │ │ │ │ ├── base64.h │ │ │ │ ├── bnf.h │ │ │ │ ├── heap.h │ │ │ │ ├── hostdomain.h │ │ │ │ ├── htable.h │ │ │ │ ├── htable2.h │ │ │ │ ├── http.h │ │ │ │ ├── http_hclasses.h │ │ │ │ ├── http_header.h │ │ │ │ ├── http_parser.h │ │ │ │ ├── http_protos.h │ │ │ │ ├── http_status.h │ │ │ │ ├── http_tag.h │ │ │ │ ├── http_tag_class.h │ │ │ │ ├── msg.h │ │ │ │ ├── msg_addr.h │ │ │ │ ├── msg_buffer.h │ │ │ │ ├── msg_date.h │ │ │ │ ├── msg_header.h │ │ │ │ ├── msg_mclass.h │ │ │ │ ├── msg_mclass_hash.h │ │ │ │ ├── msg_mime.h │ │ │ │ ├── msg_mime_protos.h │ │ │ │ ├── msg_parser.h │ │ │ │ ├── msg_protos.h │ │ │ │ ├── msg_tag_class.h │ │ │ │ ├── msg_types.h │ │ │ │ ├── nea.h │ │ │ │ ├── nea_tag.h │ │ │ │ ├── nta.h │ │ │ │ ├── nta_stateless.h │ │ │ │ ├── nta_tag.h │ │ │ │ ├── nta_tport.h │ │ │ │ ├── nth.h │ │ │ │ ├── nth_tag.h │ │ │ │ ├── nua.h │ │ │ │ ├── nua_tag.h │ │ │ │ ├── rbtree.h │ │ │ │ ├── sdp.h │ │ │ │ ├── sdp_tag.h │ │ │ │ ├── sip.h │ │ │ │ ├── sip_extra.h │ │ │ │ ├── sip_extra.h.in │ │ │ │ ├── sip_hclasses.h │ │ │ │ ├── sip_hclasses.h.in │ │ │ │ ├── sip_header.h │ │ │ │ ├── sip_parser.h │ │ │ │ ├── sip_protos.h │ │ │ │ ├── sip_protos.h.in │ │ │ │ ├── sip_status.h │ │ │ │ ├── sip_tag.h │ │ │ │ ├── sip_tag.h.in │ │ │ │ ├── sip_tag_class.h │ │ │ │ ├── sip_util.h │ │ │ │ ├── sl_utils.h │ │ │ │ ├── soa.h │ │ │ │ ├── soa_add.h │ │ │ │ ├── soa_session.h │ │ │ │ ├── soa_tag.h │ │ │ │ ├── sofia_features.h │ │ │ │ ├── sres_sip.h │ │ │ │ ├── sresolv.h │ │ │ │ ├── string0.h │ │ │ │ ├── stun.h │ │ │ │ ├── stun_common.h │ │ │ │ ├── stun_tag.h │ │ │ │ ├── su.h │ │ │ │ ├── su_addrinfo.h │ │ │ │ ├── su_alloc.h │ │ │ │ ├── su_alloc_stat.h │ │ │ │ ├── su_bm.h │ │ │ │ ├── su_config.h │ │ │ │ ├── su_configure.h │ │ │ │ ├── su_debug.h │ │ │ │ ├── su_errno.h │ │ │ │ ├── su_glib.h │ │ │ │ ├── su_localinfo.h │ │ │ │ ├── su_log.h │ │ │ │ ├── su_md5.h │ │ │ │ ├── su_os_nw.h │ │ │ │ ├── su_port.h │ │ │ │ ├── su_random.h │ │ │ │ ├── su_source.h │ │ │ │ ├── su_string.h │ │ │ │ ├── su_strlst.h │ │ │ │ ├── su_tag.h │ │ │ │ ├── su_tag_class.h │ │ │ │ ├── su_tag_inline.h │ │ │ │ ├── su_tag_io.h │ │ │ │ ├── su_tagarg.h │ │ │ │ ├── su_time.h │ │ │ │ ├── su_types.h │ │ │ │ ├── su_uniqueid.h │ │ │ │ ├── su_vector.h │ │ │ │ ├── su_wait.h │ │ │ │ ├── token64.h │ │ │ │ ├── tport.h │ │ │ │ ├── tport_plugins.h │ │ │ │ ├── tport_tag.h │ │ │ │ ├── tstdef.h │ │ │ │ ├── uniqueid.h │ │ │ │ ├── url.h │ │ │ │ ├── url_tag.h │ │ │ │ └── url_tag_class.h │ │ └── sofia-sip.h │ │ └── sofiasip.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── sofiasip.xcscmblueprint ├── pkgconfig │ └── boringssl.pc └── sources │ ├── README.md │ └── sofia-sip │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── COPYRIGHTS │ ├── ChangeLog │ ├── ChangeLog.ext-trees │ ├── Makefile.am │ ├── README │ ├── README.developers │ ├── RELEASE │ ├── RELEASE.template │ ├── TODO │ ├── autoconf-all.cmd │ ├── autogen.sh │ ├── configure.ac │ ├── docs │ ├── build_system.txt │ ├── devel_platform_notes.txt │ └── release_management.txt │ ├── libsofia-sip-ua-glib │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile.am │ ├── docs │ │ ├── .gitignore │ │ ├── Doxyfile.aliases │ │ ├── Doxyfile.conf │ │ └── Doxyfile.version │ └── su-glib │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── sofia-sip │ │ ├── su_glib.h │ │ └── su_source.h │ │ ├── su_glib.docs │ │ ├── su_source.c │ │ ├── su_source_test.c │ │ └── torture_su_glib_timer.c │ ├── libsofia-sip-ua │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile.am │ ├── bnf │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── bnf.c │ │ ├── bnf.docs │ │ ├── sofia-sip │ │ │ ├── bnf.h │ │ │ └── hostdomain.h │ │ └── torture_bnf.c │ ├── docs │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── Doxyfile.aliases │ │ ├── Doxyfile.conf │ │ ├── Doxyfile.in │ │ ├── Doxyfile.version.in │ │ ├── Makefile.am │ │ ├── conformance.docs │ │ ├── docguide.docs │ │ ├── mainpage.docs │ │ ├── pictures │ │ │ ├── SIP_basic_incoming_operation.eps │ │ │ ├── SIP_basic_incoming_operation.gif │ │ │ ├── SIP_basic_incoming_operation.vsd │ │ │ ├── SIP_basic_outgoing_operation.eps │ │ │ ├── SIP_basic_outgoing_operation.gif │ │ │ ├── SIP_basic_outgoing_operation.vsd │ │ │ ├── SIP_incoming_call.eps │ │ │ ├── SIP_incoming_call.gif │ │ │ ├── SIP_incoming_call.vsd │ │ │ ├── SIP_outgoing_call.eps │ │ │ ├── SIP_outgoing_call.gif │ │ │ ├── SIP_outgoing_call.vsd │ │ │ ├── SIP_outgoing_operation_with_auth.eps │ │ │ ├── SIP_outgoing_operation_with_auth.gif │ │ │ ├── SIP_outgoing_operation_with_auth.vsd │ │ │ ├── autotools.eps │ │ │ ├── autotools.gif │ │ │ ├── autotools.vsd │ │ │ ├── nta-receiving-message.eps │ │ │ └── nta-receiving-message.gif │ │ └── sofia-footer.html.in │ ├── features │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── features.c │ │ ├── features.docs │ │ └── sofia-sip │ │ │ └── sofia_features.h.in │ ├── http │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── http.docs │ │ ├── http_basic.c │ │ ├── http_extra.c │ │ ├── http_header.c │ │ ├── http_inlined.c │ │ ├── http_parser.c │ │ ├── http_parser_table.c.in │ │ ├── http_status.c │ │ ├── http_tag.c.in │ │ ├── http_tag_class.c │ │ ├── sofia-sip │ │ │ ├── http.h │ │ │ ├── http_hclasses.h │ │ │ ├── http_header.h │ │ │ ├── http_parser.h │ │ │ ├── http_protos.h.in │ │ │ ├── http_status.h │ │ │ ├── http_tag.h.in │ │ │ └── http_tag_class.h │ │ └── test_http.c │ ├── ipt │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── base64.c │ │ ├── ipt.docs │ │ ├── rc4.c │ │ ├── sofia-sip │ │ │ ├── base64.h │ │ │ ├── rc4.h │ │ │ ├── token64.h │ │ │ ├── uniqueid.h │ │ │ └── utf8.h │ │ ├── token64.c │ │ ├── torture_base64.c │ │ ├── ucs2.c │ │ ├── ucs4.c │ │ ├── utf8.c │ │ ├── utf8internal.h │ │ └── utf8test.c │ ├── iptsec │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── auth_client.c │ │ ├── auth_client_ntlm.c │ │ ├── auth_common.c │ │ ├── auth_digest.c │ │ ├── auth_module.c │ │ ├── auth_module_http.c │ │ ├── auth_module_sip.c │ │ ├── auth_ntlm.c │ │ ├── auth_plugin.c │ │ ├── auth_plugin_delayed.c │ │ ├── auth_plugin_ntlm.c │ │ ├── auth_tag.c │ │ ├── iptsec.docs │ │ ├── iptsec_debug.c │ │ ├── iptsec_debug.h │ │ ├── sofia-sip │ │ │ ├── auth_client.h │ │ │ ├── auth_client_plugin.h │ │ │ ├── auth_common.h │ │ │ ├── auth_digest.h │ │ │ ├── auth_module.h │ │ │ ├── auth_ntlm.h │ │ │ └── auth_plugin.h │ │ ├── test_auth_digest.c │ │ └── testpasswd │ ├── msg │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── msg.c │ │ ├── msg.docs │ │ ├── msg_auth.c │ │ ├── msg_basic.c │ │ ├── msg_date.c │ │ ├── msg_generic.c │ │ ├── msg_header_copy.c │ │ ├── msg_header_make.c │ │ ├── msg_inlined.c │ │ ├── msg_internal.h │ │ ├── msg_mclass.c │ │ ├── msg_mime.c │ │ ├── msg_mime_table.c.in │ │ ├── msg_name_hash.c │ │ ├── msg_parser.awk │ │ ├── msg_parser.c │ │ ├── msg_parser_util.c │ │ ├── msg_tag.c │ │ ├── sofia-sip │ │ │ ├── msg.h │ │ │ ├── msg_addr.h │ │ │ ├── msg_buffer.h │ │ │ ├── msg_date.h │ │ │ ├── msg_header.h │ │ │ ├── msg_mclass.h │ │ │ ├── msg_mclass_hash.h │ │ │ ├── msg_mime.h │ │ │ ├── msg_mime_protos.h.in │ │ │ ├── msg_parser.h │ │ │ ├── msg_protos.h.in │ │ │ ├── msg_tag_class.h │ │ │ └── msg_types.h │ │ ├── test_class.c │ │ ├── test_class.h │ │ ├── test_inlined.c │ │ ├── test_msg.c │ │ ├── test_protos.h.in │ │ └── test_table.c.in │ ├── nea │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── nea.c │ │ ├── nea.docs │ │ ├── nea_debug.c │ │ ├── nea_debug.h │ │ ├── nea_event.c │ │ ├── nea_server.c │ │ ├── nea_tag.c │ │ └── sofia-sip │ │ │ ├── nea.h │ │ │ └── nea_tag.h │ ├── nta │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── agent.pem │ │ ├── cafile.pem │ │ ├── check_nta.c │ │ ├── check_nta.h │ │ ├── check_nta_api.c │ │ ├── check_nta_client.c │ │ ├── check_nta_server.c │ │ ├── invite.msc │ │ ├── nta.c │ │ ├── nta.docs │ │ ├── nta_check.c │ │ ├── nta_internal.h │ │ ├── nta_tag.c │ │ ├── portbind.c │ │ ├── run_check_nta │ │ ├── run_test_nta │ │ ├── run_test_nta_api │ │ ├── sl_read_payload.c │ │ ├── sl_utils.docs │ │ ├── sl_utils_log.c │ │ ├── sl_utils_print.c │ │ ├── sofia-sip │ │ │ ├── nta.h │ │ │ ├── nta_stateless.h │ │ │ ├── nta_tag.h │ │ │ ├── nta_tport.h │ │ │ └── sl_utils.h │ │ ├── test_nta.c │ │ └── test_nta_api.c │ ├── nth │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── agent.pem │ │ ├── cafile.pem │ │ ├── http-client.c │ │ ├── http-server.c │ │ ├── nth.docs │ │ ├── nth_client.c │ │ ├── nth_server.c │ │ ├── nth_tag.c │ │ ├── sofia-sip │ │ │ ├── nth.h │ │ │ └── nth_tag.h │ │ └── test_nth.c │ ├── nua │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── check_etsi.c │ │ ├── check_nua.c │ │ ├── check_nua.h │ │ ├── check_register.c │ │ ├── check_session.c │ │ ├── check_simple.c │ │ ├── nua.c │ │ ├── nua.docs │ │ ├── nua_client.c │ │ ├── nua_client.h │ │ ├── nua_common.c │ │ ├── nua_dialog.c │ │ ├── nua_dialog.h │ │ ├── nua_event_server.c │ │ ├── nua_extension.c │ │ ├── nua_message.c │ │ ├── nua_notifier.c │ │ ├── nua_options.c │ │ ├── nua_params.c │ │ ├── nua_params.h │ │ ├── nua_publish.c │ │ ├── nua_register.c │ │ ├── nua_registrar.c │ │ ├── nua_server.c │ │ ├── nua_server.h │ │ ├── nua_session.c │ │ ├── nua_stack.c │ │ ├── nua_stack.h │ │ ├── nua_subnotref.c │ │ ├── nua_tag.c │ │ ├── nua_types.h │ │ ├── outbound.c │ │ ├── outbound.h │ │ └── sofia-sip │ │ │ ├── nua.h │ │ │ └── nua_tag.h │ ├── sdp │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── README │ │ ├── errata │ │ ├── rfc2327.txt │ │ ├── run_test_sdp │ │ ├── sdp.bnf │ │ ├── sdp.c │ │ ├── sdp.docs │ │ ├── sdp_parse.c │ │ ├── sdp_print.c │ │ ├── sdp_tag.c │ │ ├── sofia-sip │ │ │ ├── sdp.h │ │ │ └── sdp_tag.h │ │ ├── test_sdp.c │ │ ├── tests │ │ │ ├── message-1.sdp │ │ │ ├── message-10.sdp │ │ │ ├── message-11.sdp │ │ │ ├── message-2.sdp │ │ │ ├── message-3.sdp │ │ │ ├── message-4.sdp │ │ │ ├── message-5.sdp │ │ │ ├── message-6.sdp │ │ │ ├── message-7.sdp │ │ │ ├── message-8.sdp │ │ │ └── message-9.sdp │ │ └── torture_sdp.c │ ├── sip │ │ ├── ADD-A-HEADER │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── GRAMMAR │ │ ├── Makefile.am │ │ ├── images │ │ │ ├── sip-parser.eps │ │ │ ├── sip-parser.gif │ │ │ ├── sip-parser2.eps │ │ │ ├── sip-parser2.gif │ │ │ ├── sip-parser3.eps │ │ │ ├── sip-parser3.gif │ │ │ ├── sip-parser4.eps │ │ │ └── sip-parser4.gif │ │ ├── rfc2543.txt │ │ ├── run-tests │ │ ├── run_test_date │ │ ├── run_test_sip_msg │ │ ├── sip.docs │ │ ├── sip.doxyaliases │ │ ├── sip_bad_mask │ │ ├── sip_basic.c │ │ ├── sip_caller_prefs.c │ │ ├── sip_event.c │ │ ├── sip_extra.c │ │ ├── sip_extra_headers.txt │ │ ├── sip_feature.c │ │ ├── sip_header.c │ │ ├── sip_inlined.c │ │ ├── sip_mime.c │ │ ├── sip_parser.c │ │ ├── sip_parser.docs │ │ ├── sip_parser_table.c.in │ │ ├── sip_prack.c │ │ ├── sip_pref_util.c │ │ ├── sip_reason.c │ │ ├── sip_refer.c │ │ ├── sip_security.c │ │ ├── sip_session.c │ │ ├── sip_status.c │ │ ├── sip_tag.c.in │ │ ├── sip_tag_class.c │ │ ├── sip_time.c │ │ ├── sip_util.c │ │ ├── sofia-sip │ │ │ ├── sip.h │ │ │ ├── sip_extra.h.in │ │ │ ├── sip_hclasses.h.in │ │ │ ├── sip_header.h │ │ │ ├── sip_parser.h │ │ │ ├── sip_protos.h.in │ │ │ ├── sip_status.h │ │ │ ├── sip_tag.h.in │ │ │ ├── sip_tag_class.h │ │ │ └── sip_util.h │ │ ├── test_date.c │ │ ├── test_sip_msg.c │ │ ├── tests │ │ │ ├── own0.txt │ │ │ ├── own1.txt │ │ │ ├── own2.txt │ │ │ ├── own3.txt │ │ │ ├── own4.txt │ │ │ ├── own5.txt │ │ │ ├── own6.txt │ │ │ ├── own8.txt │ │ │ ├── test-ack-1.txt │ │ │ ├── test1.txt │ │ │ ├── test10.txt │ │ │ ├── test10b.txt │ │ │ ├── test10c.txt │ │ │ ├── test11.txt │ │ │ ├── test12.txt │ │ │ ├── test13.txt │ │ │ ├── test14-req.txt │ │ │ ├── test14.txt │ │ │ ├── test15.txt │ │ │ ├── test16.txt │ │ │ ├── test17.txt │ │ │ ├── test18.txt │ │ │ ├── test19.txt │ │ │ ├── test1a.txt │ │ │ ├── test2.txt │ │ │ ├── test20.txt │ │ │ ├── test21.txt │ │ │ ├── test22.txt │ │ │ ├── test23.txt │ │ │ ├── test24.txt │ │ │ ├── test25.txt │ │ │ ├── test26.txt │ │ │ ├── test27.txt │ │ │ ├── test28.txt │ │ │ ├── test29.txt │ │ │ ├── test3.txt │ │ │ ├── test30.txt │ │ │ ├── test31.txt │ │ │ ├── test32.txt │ │ │ ├── test33.txt │ │ │ ├── test34.txt │ │ │ ├── test35.txt │ │ │ ├── test36.txt │ │ │ ├── test37.txt │ │ │ ├── test38.txt │ │ │ ├── test39.txt │ │ │ ├── test4.txt │ │ │ ├── test40.txt │ │ │ ├── test41.txt │ │ │ ├── test42.txt │ │ │ ├── test5.txt │ │ │ ├── test6.txt │ │ │ ├── test7.txt │ │ │ ├── test8.txt │ │ │ └── test9.txt │ │ ├── torture_sip.c │ │ └── validator.c │ ├── soa │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── soa.c │ │ ├── soa.docs │ │ ├── soa_static.c │ │ ├── soa_tag.c │ │ ├── sofia-sip │ │ │ ├── soa.h │ │ │ ├── soa_add.h │ │ │ ├── soa_session.h │ │ │ └── soa_tag.h │ │ └── test_soa.c │ ├── sresolv │ │ ├── 127.zone │ │ ├── 194.2.188 │ │ ├── 3.f.f.e.1.2.0.0.3.0.1.2.c.0.0.0 │ │ ├── 3.f.f.e.1.2.0.0.3.0.1.2.c.0.0.0.arpa │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── check_sres_sip.c │ │ ├── example.com │ │ ├── named.conf │ │ ├── resolv_timeout.conf │ │ ├── resolve_sip.c │ │ ├── rfc1034.txt │ │ ├── rfc1035.txt │ │ ├── rfc2671.txt │ │ ├── rndc.conf │ │ ├── root.zone │ │ ├── run_test_sresolv │ │ ├── sofia-resolv │ │ │ ├── sres.h │ │ │ ├── sres_async.h │ │ │ ├── sres_cache.h │ │ │ ├── sres_config.h │ │ │ └── sres_record.h │ │ ├── sofia-sip │ │ │ ├── sres_sip.h │ │ │ └── sresolv.h │ │ ├── sres.c │ │ ├── sres_blocking.c │ │ ├── sres_cache.c │ │ ├── sres_sip.c │ │ ├── sresolv.c │ │ ├── sresolv.docs │ │ ├── test_sresolv.c │ │ └── torture_sresolv.c │ ├── stun │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── cert.pem │ │ ├── key.pem │ │ ├── lookup_stun_server.c │ │ ├── rfc3489.txt │ │ ├── sofia-sip │ │ │ ├── stun.h │ │ │ ├── stun_common.h │ │ │ └── stun_tag.h │ │ ├── stun.c │ │ ├── stun.docs │ │ ├── stun_common.c │ │ ├── stun_dns.c │ │ ├── stun_internal.h │ │ ├── stun_mini.c │ │ ├── stun_tag.c │ │ └── stunc.c │ ├── su │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── addrinfo.c │ │ ├── foo.c │ │ ├── getopt.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── localinfo.c │ │ ├── memccpy.c │ │ ├── memcspn.c │ │ ├── memmem.c │ │ ├── memspn.c │ │ ├── poll.c │ │ ├── run_addrinfo │ │ ├── run_localinfo │ │ ├── run_test_su │ │ ├── run_test_su_osx │ │ ├── smoothsort.c │ │ ├── sofia-sip │ │ │ ├── heap.h │ │ │ ├── htable.h │ │ │ ├── htable2.h │ │ │ ├── rbtree.h │ │ │ ├── string0.h │ │ │ ├── su.h │ │ │ ├── su_addrinfo.h │ │ │ ├── su_alloc.h │ │ │ ├── su_alloc_stat.h │ │ │ ├── su_bm.h │ │ │ ├── su_config.h │ │ │ ├── su_configure.h.in │ │ │ ├── su_debug.h │ │ │ ├── su_errno.h │ │ │ ├── su_localinfo.h │ │ │ ├── su_log.h │ │ │ ├── su_md5.h │ │ │ ├── su_os_nw.h │ │ │ ├── su_osx_runloop.h │ │ │ ├── su_random.h │ │ │ ├── su_string.h │ │ │ ├── su_strlst.h │ │ │ ├── su_tag.h │ │ │ ├── su_tag_class.h │ │ │ ├── su_tag_inline.h │ │ │ ├── su_tag_io.h │ │ │ ├── su_tagarg.h │ │ │ ├── su_time.h │ │ │ ├── su_types.h │ │ │ ├── su_uniqueid.h │ │ │ ├── su_vector.h │ │ │ ├── su_wait.h │ │ │ └── tstdef.h │ │ ├── string0.c │ │ ├── strtoull.c │ │ ├── su.c │ │ ├── su.docs │ │ ├── su_addrinfo.c │ │ ├── su_alloc.c │ │ ├── su_alloc_lock.c │ │ ├── su_base_port.c │ │ ├── su_bm.c │ │ ├── su_default_log.c │ │ ├── su_devpoll_port.c │ │ ├── su_epoll_port.c │ │ ├── su_errno.c │ │ ├── su_global_log.c │ │ ├── su_kqueue_port.c │ │ ├── su_localinfo.c │ │ ├── su_log.c │ │ ├── su_md5.c │ │ ├── su_module_debug.h │ │ ├── su_open_c_localinfo.cpp │ │ ├── su_os_nw.c │ │ ├── su_os_nw.c.bak │ │ ├── su_osx_runloop.c │ │ ├── su_perf.c │ │ ├── su_poll_port.c │ │ ├── su_port.c │ │ ├── su_port.h │ │ ├── su_proxy.c │ │ ├── su_pthread_port.c │ │ ├── su_root.c │ │ ├── su_select_port.c │ │ ├── su_socket_port.c │ │ ├── su_sprintf.c │ │ ├── su_strdup.c │ │ ├── su_string.c │ │ ├── su_strlst.c │ │ ├── su_tag.c │ │ ├── su_tag_io.c │ │ ├── su_taglist.c │ │ ├── su_time.c │ │ ├── su_time0.c │ │ ├── su_timer.c │ │ ├── su_uniqueid.c │ │ ├── su_vector.c │ │ ├── su_wait.c │ │ ├── su_win32_port.c │ │ ├── tag_dll.awk │ │ ├── test_htable.c │ │ ├── test_htable2.c │ │ ├── test_memmem.c │ │ ├── test_poll.c │ │ ├── test_su.c │ │ ├── test_su_osx.c │ │ ├── torture_heap.c │ │ ├── torture_rbtree.c │ │ ├── torture_su.c │ │ ├── torture_su_alloc.c │ │ ├── torture_su_bm.c │ │ ├── torture_su_port.c │ │ ├── torture_su_root.c │ │ ├── torture_su_root_osx.c │ │ ├── torture_su_tag.c │ │ ├── torture_su_time.c │ │ └── torture_su_timer.c │ ├── tport │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── agent.pem │ │ ├── cafile.pem │ │ ├── certificates-update │ │ ├── certificates.html │ │ ├── sofia-sip │ │ │ ├── tport.h │ │ │ ├── tport_plugins.h │ │ │ └── tport_tag.h │ │ ├── test_tport.c │ │ ├── tls_test_client.c │ │ ├── tls_test_server.c │ │ ├── tport.c │ │ ├── tport.docs │ │ ├── tport_internal.h │ │ ├── tport_logging.c │ │ ├── tport_rand.c │ │ ├── tport_sigcomp.c │ │ ├── tport_stub_sigcomp.c │ │ ├── tport_stub_stun.c │ │ ├── tport_tag.c │ │ ├── tport_threadpool.c │ │ ├── tport_tls.c │ │ ├── tport_tls.h │ │ ├── tport_type_connect.c │ │ ├── tport_type_sctp.c │ │ ├── tport_type_stun.c │ │ ├── tport_type_tcp.c │ │ ├── tport_type_tls.c │ │ └── tport_type_udp.c │ └── url │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── sofia-sip │ │ ├── url.h │ │ ├── url_tag.h │ │ └── url_tag_class.h │ │ ├── torture_url.c │ │ ├── url.c │ │ ├── url.docs │ │ ├── url_tag.c │ │ ├── urlmap.c │ │ └── urlmap.h │ ├── m4 │ ├── .gitignore │ ├── sac-coverage.m4 │ ├── sac-general.m4 │ ├── sac-openssl.m4 │ ├── sac-pkg-config.m4 │ ├── sac-su2.m4 │ └── sac-tport.m4 │ ├── open_c │ ├── Makefile.am │ ├── autogen.cmd │ ├── build_sources.cmd │ ├── config.h.in │ ├── group │ │ ├── bld.inf │ │ ├── libsofia-sip-ua-glib.mmp │ │ ├── libsofia-sip-ua.mmp │ │ ├── su_source_test.mmp │ │ ├── su_source_test_reg.rss │ │ ├── test_http.mmp │ │ ├── test_http_reg.rss │ │ ├── test_msg.mmp │ │ ├── test_msg_reg.rss │ │ ├── test_nua.mmp │ │ ├── test_nua_reg.rss │ │ ├── test_tport.mmp │ │ ├── test_tport_reg.rss │ │ ├── torture_sip.mmp │ │ ├── torture_sip_reg.rss │ │ ├── torture_su_alloc.mmp │ │ ├── torture_su_alloc_reg.rss │ │ ├── torture_su_port.mmp │ │ ├── torture_su_port_reg.rss │ │ ├── torture_su_root.mmp │ │ ├── torture_su_root_reg.rss │ │ ├── torture_su_tag.mmp │ │ ├── torture_su_tag_reg.rss │ │ ├── torture_url.mmp │ │ └── torture_url_reg.rss │ ├── sis │ │ ├── libsofia-sip-ua-glib.pkg │ │ ├── libsofia-sip-ua.pkg │ │ ├── su_source_test.pkg │ │ ├── test_nua.pkg │ │ └── test_tport.pkg │ ├── sofia-sip │ │ └── su_configure.h │ ├── version.awk │ └── version_files.cmd │ ├── packages │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile.am │ ├── sofia-sip-ua-glib.pc.in │ ├── sofia-sip-ua.pc.in │ └── sofia-sip.spec.in │ ├── rules │ ├── lcov.am │ ├── recursive.am │ ├── silent.am │ ├── sofia.am │ └── valcheck.am │ ├── s2check │ ├── Makefile.am │ ├── exit77.c │ ├── s2_localinfo.c │ ├── s2_localinfo.h │ ├── s2base.c │ ├── s2base.h │ ├── s2check.h │ ├── s2dns.c │ ├── s2dns.h │ ├── s2sip.c │ ├── s2sip.h │ ├── s2tcase.c │ ├── s2time.c │ └── s2util.h │ ├── scripts │ ├── coverage │ ├── fix-include-sofia-sip │ ├── hide_emails.sh │ ├── lcov-report │ ├── rpmbuild-snaphot │ └── uncovered │ ├── tests │ ├── .gitignore │ ├── Makefile.am │ ├── check_dlopen_sofia.c │ ├── check_sofia.c │ ├── check_sofia.h │ ├── suite_for_nua.c │ ├── test_100rel.c │ ├── test_basic_call.c │ ├── test_call_hold.c │ ├── test_call_reject.c │ ├── test_cancel_bye.c │ ├── test_extension.c │ ├── test_init.c │ ├── test_nat.c │ ├── test_nat.h │ ├── test_nat_tags.c │ ├── test_nua.c │ ├── test_nua.h │ ├── test_nua_api.c │ ├── test_nua_params.c │ ├── test_offer_answer.c │ ├── test_ops.c │ ├── test_proxy.c │ ├── test_proxy.h │ ├── test_refer.c │ ├── test_register.c │ ├── test_session_timer.c │ ├── test_simple.c │ └── test_sip_events.c │ ├── utils │ ├── .gitignore │ ├── ChangeLog │ ├── Doxyfile.in │ ├── Makefile.am │ ├── apps_utils.h │ ├── sip-date.c │ ├── sip-dig.c │ ├── sip-options.c │ └── utils.docs │ └── win32 │ ├── .gitignore │ ├── ChangeLog │ ├── Makefile.am │ ├── README.txt │ ├── SofiaSIP.dsw │ ├── SofiaSIP.sln │ ├── SofiaSIP2010.sln │ ├── autogen.cmd │ ├── build_sources.cmd │ ├── check.cmd │ ├── config.h.in │ ├── install.cmd │ ├── libsofia-sip-ua-static │ ├── libsofia_sip_ua_static.dsp │ ├── libsofia_sip_ua_static.vcproj │ └── libsofia_sip_ua_static.vcxproj │ ├── libsofia-sip-ua │ ├── libsofia_sip_ua.dsp │ ├── libsofia_sip_ua.vcproj │ ├── libsofia_sip_ua.vcxproj │ └── sofia-sip-ua.def │ ├── pthread │ ├── ChangeLog │ ├── md5.sum.txt │ ├── pthread.h │ ├── sched.h │ └── semaphore.h │ ├── sofia-sip │ └── su_configure.h │ ├── tests │ ├── test_htable │ │ ├── test_htable.dsp │ │ ├── test_htable.vcproj │ │ └── test_htable.vcxproj │ ├── test_memmem │ │ ├── test_memmem.dsp │ │ ├── test_memmem.vcproj │ │ └── test_memmem.vcxproj │ ├── test_nta │ │ ├── test_nta.dsp │ │ ├── test_nta.vcproj │ │ └── test_nta.vcxproj │ ├── test_nua │ │ ├── test_nat_tags.cpp │ │ ├── test_nua.dsp │ │ ├── test_nua.vcproj │ │ └── test_nua.vcxproj │ ├── test_su │ │ ├── test_su.dsp │ │ ├── test_su.vcproj │ │ └── test_su.vcxproj │ ├── test_tport │ │ ├── test_class.cpp │ │ ├── test_table.cpp │ │ ├── test_tport.dsp │ │ ├── test_tport.vcproj │ │ └── test_tport.vcxproj │ ├── torture_rbtree │ │ ├── torture_rbtree.dsp │ │ ├── torture_rbtree.vcproj │ │ └── torture_rbtree.vcxproj │ ├── torture_su │ │ ├── torture_su.dsp │ │ ├── torture_su.vcproj │ │ └── torture_su.vcxproj │ ├── torture_su_alloc │ │ ├── torture_su_alloc.dsp │ │ ├── torture_su_alloc.vcproj │ │ └── torture_su_alloc.vcxproj │ ├── torture_su_bm │ │ ├── torture_su_bm.dsp │ │ ├── torture_su_bm.vcproj │ │ └── torture_su_bm.vcxproj │ ├── torture_su_port │ │ ├── torture_su_port.dsp │ │ └── torture_su_port.vcproj │ ├── torture_su_root │ │ ├── torture_su_root.dsp │ │ ├── torture_su_root.vcproj │ │ └── torture_su_root.vcxproj │ ├── torture_su_tag │ │ ├── torture_su_tag.dsp │ │ ├── torture_su_tag.vcproj │ │ └── torture_su_tag.vcxproj │ ├── torture_su_time │ │ ├── torture_su_time.dsp │ │ ├── torture_su_time.vcproj │ │ └── torture_su_time.vcxproj │ └── torture_su_timer │ │ ├── torture_su_timer.dsp │ │ ├── torture_su_timer.vcproj │ │ └── torture_su_timer.vcxproj │ ├── unistd.h │ ├── utils │ ├── localinfo │ │ ├── localinfo.dsp │ │ ├── localinfo.vcproj │ │ └── localinfo.vcxproj │ ├── sip_dig │ │ ├── sip_dig.dsp │ │ ├── sip_dig.vcproj │ │ └── sip_dig.vcxproj │ ├── sip_options │ │ ├── sip_options.dsp │ │ ├── sip_options.vcproj │ │ └── sip_options.vcxproj │ ├── sip_options_static │ │ ├── sip_options_static.dsp │ │ ├── sip_options_static.vcproj │ │ └── sip_options_static.vcxproj │ └── stunc │ │ ├── stunc.dsp │ │ ├── stunc.vcproj │ │ └── stunc.vcxproj │ ├── version.awk │ └── version_files.cmd ├── doc └── .gitignore ├── restcomm-ios-sdk.podspec └── scripts ├── build-olympus.bash ├── build-sofia-sip.bash ├── certs ├── AppleWWDRCA.cer ├── development-cert.cer.enc ├── development-key.p12.enc ├── enterprise-distribution-cert.cer.enc └── enterprise-distribution-key.p12.enc ├── exportOptions-Enterprise.plist ├── local-wrapper.bash ├── main.bash ├── pod-repo-update.sh ├── provisioning-profile ├── profile-development-olympus.mobileprovision.enc └── profile-distribution-olympus.mobileprovision.enc ├── testfairy-uploader.sh ├── update-doc.bash ├── upload-dsym-testfairy.sh └── xcodebuild-rvm.bash /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.ssh/github_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/.ssh/github_rsa.enc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/README.md -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-helloworld/Podfile -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/restcomm-helloworld/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-helloworld/restcomm-helloworld/AppDelegate.h -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/restcomm-helloworld/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-helloworld/restcomm-helloworld/AppDelegate.m -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/restcomm-helloworld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-helloworld/restcomm-helloworld/Info.plist -------------------------------------------------------------------------------- /Examples/restcomm-helloworld/restcomm-helloworld/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-helloworld/restcomm-helloworld/main.m -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/README.md -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/AppDelegate.h -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/AppDelegate.mm -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/LocalContact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/LocalContact.h -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/LocalContact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/LocalContact.m -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/LocalMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/LocalMessage.h -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/LocalMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/LocalMessage.m -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/Utils.h -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/Utils.m -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/cert/agent.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/cert/agent.pem -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympus/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus-nopod/restcomm-olympus/main.m -------------------------------------------------------------------------------- /Examples/restcomm-olympus-nopod/restcomm-olympusTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/restcomm-olympus/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /Examples/restcomm-olympus/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus/Podfile -------------------------------------------------------------------------------- /Examples/restcomm-olympus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Examples/restcomm-olympus/README.md -------------------------------------------------------------------------------- /Examples/restcomm-olympus/restcomm-olympus: -------------------------------------------------------------------------------- 1 | ../restcomm-olympus-nopod/restcomm-olympus -------------------------------------------------------------------------------- /Examples/restcomm-olympus/restcomm-olympusTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/README.md -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/AUTHORS -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/COPYING -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/Makefile.am -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/Makefile.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/NEWS -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/README -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/TODO -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/aclocal.m4 -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/config.guess -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/config.h.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/config.sub -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/configure -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/configure.ac -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/depcomp -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/doc/Makefile.am -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/doc/Makefile.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/doc/sofsip_cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/doc/sofsip_cli.1 -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/install-sh -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/ltmain.sh -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/missing -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/mkinstalldirs -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/packages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/packages/Makefile.am -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/packages/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/packages/Makefile.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/packages/sofsip-cli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/packages/sofsip-cli.spec -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/packages/sofsip-cli.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/packages/sofsip-cli.spec.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/Makefile.am -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/Makefile.fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/Makefile.fixed -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/Makefile.in -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket-stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket-stun.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket-stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket-stun.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket-utils.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket-utils.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/farsight-netsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/farsight-netsocket.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/nice_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/nice_local.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/nice_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/nice_local.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/nice_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/nice_tester.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/replace_g_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/replace_g_debug.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/replace_goption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/replace_goption.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/replace_goption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/replace_goption.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/sdp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/sdp_utils.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/sdp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/sdp_utils.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/sofsip_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/sofsip_cli.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_input.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_input.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_gst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_gst.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_gst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_gst.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_gst_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_gst_utils.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_gst_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_gst_utils.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_nice.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_media_nice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_media_nice.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_oper.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_oper.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_sip.c -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/ssc_sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/ssc_sip.h -------------------------------------------------------------------------------- /Lab/sofsip-cli-0.16/src/test_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Lab/sofsip-cli-0.16/src/test_media.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/README.md -------------------------------------------------------------------------------- /RestCommClient/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/cli_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/cli_common.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/sdp_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/sdp_utils.cpp -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/sdp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/sdp_utils.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/sofsip_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/sofsip_cli.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/sofsip_cli.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/sofsip_cli.mm -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_input.cpp -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_input.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_media_simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_media_simple.cpp -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_media_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_media_simple.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_oper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_oper.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_oper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_oper.mm -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_sip.h -------------------------------------------------------------------------------- /RestCommClient/Classes/CliInterface/ssc_sip.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/CliInterface/ssc_sip.mm -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDAppClient+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDAppClient+Internal.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDCEODTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDCEODTURNClient.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDCEODTURNClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDCEODTURNClient.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDTURNClient.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDUtilities.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/ARDUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/ARDUtilities.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/MediaWebRTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/MediaWebRTC.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/MediaWebRTC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/MediaWebRTC.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/RTCICEServer+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/RTCICEServer+JSON.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/RTCICEServer+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/RTCICEServer+JSON.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/XirsysTURNClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/XirsysTURNClient.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Media/XirsysTURNClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Media/XirsysTURNClient.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCApplication.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCApplication.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCBinding.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCBinding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCBinding.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCCredentials.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/Model/RCCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/Model/RCCredentials.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/PushApiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/PushApiManager.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/PushApiManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/PushApiManager.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/PushHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/PushHandler.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Push/PushHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Push/PushHandler.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCCallKitProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCCallKitProvider.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCCallKitProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCCallKitProvider.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCClient.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCClient.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCConnection.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCConnection.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCConnectionDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCConnectionDelegate.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCConnectionDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCConnectionDelegate.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCDevice.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCDevice.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCDeviceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCDeviceDelegate.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCDeviceDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCDeviceDelegate.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCPresenceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCPresenceEvent.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCPresenceEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCPresenceEvent.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCRegisterPushDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCRegisterPushDelegate.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCRegisterPushDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCRegisterPushDelegate.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCUtilities.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RCUtilities.m -------------------------------------------------------------------------------- /RestCommClient/Classes/Reachability/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Reachability/Reachability.h -------------------------------------------------------------------------------- /RestCommClient/Classes/Reachability/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/Reachability/Reachability.m -------------------------------------------------------------------------------- /RestCommClient/Classes/RestCommClient-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RestCommClient-Prefix.pch -------------------------------------------------------------------------------- /RestCommClient/Classes/RestCommClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RestCommClient.h -------------------------------------------------------------------------------- /RestCommClient/Classes/RestCommClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/RestCommClient.m -------------------------------------------------------------------------------- /RestCommClient/Classes/SettingsNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/SettingsNavigationController.h -------------------------------------------------------------------------------- /RestCommClient/Classes/SipManager/SipManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/SipManager/SipManager.h -------------------------------------------------------------------------------- /RestCommClient/Classes/SipManager/SipManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/SipManager/SipManager.mm -------------------------------------------------------------------------------- /RestCommClient/Classes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/common.h -------------------------------------------------------------------------------- /RestCommClient/Classes/common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/Classes/common.m -------------------------------------------------------------------------------- /RestCommClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/README.md -------------------------------------------------------------------------------- /RestCommClient/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/doc/Doxyfile -------------------------------------------------------------------------------- /RestCommClient/doc/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClient/doc/index.markdown -------------------------------------------------------------------------------- /RestCommClientLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClientLib/README.md -------------------------------------------------------------------------------- /RestCommClientLib/RestCommClientLib: -------------------------------------------------------------------------------- 1 | ../RestCommClient/Classes -------------------------------------------------------------------------------- /RestCommClientLib/RestCommClientLib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/RestCommClientLib/RestCommClientLib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test-App/.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /Test-App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Podfile -------------------------------------------------------------------------------- /Test-App/Sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test-App/Sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Test-App/Sample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/AppDelegate.h -------------------------------------------------------------------------------- /Test-App/Sample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/AppDelegate.m -------------------------------------------------------------------------------- /Test-App/Sample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Test-App/Sample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Test-App/Sample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/Info.plist -------------------------------------------------------------------------------- /Test-App/Sample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/ViewController.h -------------------------------------------------------------------------------- /Test-App/Sample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/ViewController.m -------------------------------------------------------------------------------- /Test-App/Sample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample/main.m -------------------------------------------------------------------------------- /Test-App/Sample_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample_Tests/Info.plist -------------------------------------------------------------------------------- /Test-App/Sample_Tests/RCDeviceSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample_Tests/RCDeviceSpec.m -------------------------------------------------------------------------------- /Test-App/Sample_Tests/Sample_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Sample_Tests/Sample_Tests.m -------------------------------------------------------------------------------- /Test-App/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Test-App/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Test-App/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/Test-App/Tests/Tests.m -------------------------------------------------------------------------------- /Test-App/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dependencies/binaries/RestCommClientLib/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | -------------------------------------------------------------------------------- /dependencies/binaries/RestCommClientLib/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/binaries/boringssl/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | -------------------------------------------------------------------------------- /dependencies/binaries/boringssl/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/binaries/frameworks/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework 2 | -------------------------------------------------------------------------------- /dependencies/binaries/frameworks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/binaries/openssl-1.0.1i/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | -------------------------------------------------------------------------------- /dependencies/binaries/openssl-1.0.1i/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/binaries/sofia-sip-1.12.11/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | -------------------------------------------------------------------------------- /dependencies/binaries/sofia-sip-1.12.11/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/.gitignore -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/.travis.yml -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/Example/Podfile -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/Example/Podfile.lock -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/Example/Tests/Tests.m -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/LICENSE -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/sofia-sip-library/README.md -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/sofia-sip-library/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/sofia-sip-library/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/sofia-sip-library/sofia-sip-library/Classes/ReplaceMe.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/.gitignore -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/.travis.yml -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/Example/Podfile -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/Example/Podfile.lock -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/Example/Tests/Tests.m -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/LICENSE -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/cocoapods/webrtc-framework/README.md -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/webrtc-framework/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/webrtc-framework/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/cocoapods/webrtc-framework/webrtc-framework/Classes/ReplaceMe.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/aead.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/aes.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/arm_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/arm_arch.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/asn1.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/asn1_mac.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/asn1t.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/base.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/base64.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/bio.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/blowfish.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/bn.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/buf.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/buffer.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/bytestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/bytestring.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/cast.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/chacha.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/cipher.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/cmac.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/conf.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/cpu.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/crypto.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/curve25519.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/des.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/dh.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/digest.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/dsa.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/dtls1.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ec.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ec_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ec_key.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ecdh.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ecdsa.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/engine.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/err.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/evp.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ex_data.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/hkdf.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/hmac.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/is_boringssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/is_boringssl.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/lhash.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/lhash_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/lhash_macros.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/md4.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/md5.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/mem.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/nid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/nid.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/obj.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/obj_mac.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/objects.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/opensslconf.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/opensslv.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ossl_typ.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/pem.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/pkcs12.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/pkcs7.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/pkcs8.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/poly1305.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/pool.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/rand.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/rc4.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ripemd.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/rsa.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/safestack.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/sha.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/span.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/srtp.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ssl.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/ssl3.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/stack.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/thread.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/tls1.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/type_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/type_check.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/x509.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/x509_vfy.h -------------------------------------------------------------------------------- /dependencies/include/boringssl/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/boringssl/openssl/x509v3.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/LICENSE -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/aes.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/asn1.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/asn1_mac.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/asn1t.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/bio.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/blowfish.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/bn.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/buffer.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/camellia.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/cast.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/cmac.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/cms.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/comp.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/conf.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/conf_api.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/crypto.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/des.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/des_old.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/dh.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/dsa.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/dso.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/dtls1.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/e_os2.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ebcdic.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ec.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ecdh.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ecdsa.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/engine.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/err.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/evp.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/hmac.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/idea.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/krb5_asn.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/kssl.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/lhash.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/md4.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/md5.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/mdc2.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/modes.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/obj_mac.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/objects.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ocsp.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/opensslconf.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/opensslv.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ossl_typ.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/pem.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/pem2.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/pkcs12.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/pkcs7.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/pqueue.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/rand.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/rc2.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/rc4.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ripemd.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/rsa.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/safestack.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/seed.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/sha.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/srp.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/srtp.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ssl.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ssl2.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ssl23.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ssl3.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/stack.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/symhacks.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/tls1.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ts.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/txt_db.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ui.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/ui_compat.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/whrlpool.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/x509.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/x509_vfy.h -------------------------------------------------------------------------------- /dependencies/include/openssl-1.0.1i/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/openssl-1.0.1i/openssl/x509v3.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-resolv/sres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-resolv/sres.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_client.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_common.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_digest.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_module.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/auth_plugin.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/base64.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/bnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/bnf.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/heap.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/hostdomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/hostdomain.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/htable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/htable.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/htable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/htable2.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http_header.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http_parser.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http_protos.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http_status.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/http_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/http_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_addr.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_buffer.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_date.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_header.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_mclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_mclass.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_mime.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_parser.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_protos.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/msg_types.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nea.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nea_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nea_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nta.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nta_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nta_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nta_tport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nta_tport.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nth.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nth_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nth_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nua.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/nua_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/nua_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/rbtree.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sdp.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sdp_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sdp_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_extra.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_extra.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_extra.h.in -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_hclasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_hclasses.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_header.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_parser.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_protos.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_status.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_tag.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_tag.h.in -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sip_util.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sl_utils.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/soa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/soa.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_add.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_session.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/soa_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sres_sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sres_sip.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/sresolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/sresolv.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/string0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/string0.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/stun.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/stun_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/stun_common.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/stun_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/stun_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_addrinfo.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_alloc.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_bm.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_config.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_configure.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_debug.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_errno.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_glib.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_localinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_localinfo.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_log.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_md5.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_os_nw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_os_nw.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_port.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_random.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_source.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_string.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_strlst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_strlst.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag_class.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tag_io.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tagarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_tagarg.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_time.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_types.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_uniqueid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_uniqueid.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_vector.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/su_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/su_wait.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/token64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/token64.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/tport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/tport.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/tport_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/tport_tag.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/tstdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/tstdef.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/uniqueid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/uniqueid.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/url.h -------------------------------------------------------------------------------- /dependencies/include/sofia-sip-1.12.11/sofia-sip/url_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/include/sofia-sip-1.12.11/sofia-sip/url_tag.h -------------------------------------------------------------------------------- /dependencies/other/sofia-sip-wrapper-framework/.gitignore: -------------------------------------------------------------------------------- 1 | libBoringSSL.a 2 | libsofia-sip-ua.a 3 | -------------------------------------------------------------------------------- /dependencies/other/sofia-sip-wrapper-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/other/sofia-sip-wrapper-framework/README.md -------------------------------------------------------------------------------- /dependencies/pkgconfig/boringssl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/pkgconfig/boringssl.pc -------------------------------------------------------------------------------- /dependencies/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/README.md -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/AUTHORS -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/COPYING -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/COPYRIGHTS -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/ChangeLog.ext-trees: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/ChangeLog.ext-trees -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/README -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/README.developers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/README.developers -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/RELEASE -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/RELEASE.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/RELEASE.template -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/TODO -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/autoconf-all.cmd: -------------------------------------------------------------------------------- 1 | @setlocal 2 | 3 | @cd open_c 4 | @call autogen.cmd 5 | 6 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/autogen.sh -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/configure.ac -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/docs/build_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/docs/build_system.txt -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/docs/devel_platform_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/docs/devel_platform_notes.txt -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/docs/release_management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/docs/release_management.txt -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua-glib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua-glib/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua-glib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua-glib/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua-glib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua-glib/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua-glib/docs/.gitignore: -------------------------------------------------------------------------------- 1 | /html/ 2 | *.doxytags 3 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/Doxyfile.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/bnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/bnf.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/bnf.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/bnf/bnf.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/docs/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/docs/Doxyfile.version.in: -------------------------------------------------------------------------------- 1 | PROJECT_NUMBER = @VERSION@ 2 | 3 | IMAGE_PATH = @top_srcdir@/libsofia-sip-ua/docs/pictures 4 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/http/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/http/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/http/http.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/http/http.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/base64.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ipt.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ipt.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/rc4.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/token64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/token64.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ucs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ucs2.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ucs4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/ucs4.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/utf8.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/utf8test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/ipt/utf8test.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_auth.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_date.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_mime.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/msg_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/msg/test_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/msg/test_msg.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nea/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nea/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nea/nea_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/agent.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/agent.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/cafile.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/cafile.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/invite.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/invite.msc -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/nta_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/portbind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/portbind.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/run_check_nta: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $VALGRIND exec ./check_nta "$@" -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nta/test_nta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nta/test_nta.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/agent.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/agent.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/cafile.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/cafile.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/nth.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/nth.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/nth_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/nth_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nth/test_nth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nth/test_nth.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/nua_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/outbound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/outbound.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/nua/outbound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/nua/outbound.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/README -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/errata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/errata -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.bnf -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/sdp_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/test_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/test_sdp.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sdp/tests/message-1.sdp: -------------------------------------------------------------------------------- 1 | v=1 2 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/GRAMMAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/GRAMMAR -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/run-tests -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/run_test_date: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test_date "Sun, 18 Mar 2001 23:01:00 GMT" 3 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_mime.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_time.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sip/sip_util.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sip/tests/own8.txt: -------------------------------------------------------------------------------- 1 | JUNK * SIP/1.0 2 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/soa/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/soa/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/soa/soa_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/soa/test_soa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/soa/test_soa.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/sresolv/sres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/sresolv/sres.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/cert.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/key.pem -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stun.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stun.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stun.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/stun/stunc.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/Doxyfile.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/addrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/addrinfo.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/foo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/foo.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/getopt.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/inet_ntop.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/inet_pton.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/localinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/localinfo.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/memccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/memccpy.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/memcspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/memcspn.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/memmem.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/memspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/memspn.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/poll.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/run_test_su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/run_test_su -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/string0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/string0.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/strtoull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/strtoull.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_alloc.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_bm.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_errno.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_log.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_md5.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_os_nw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_os_nw.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_perf.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_port.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_port.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_proxy.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_root.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_strdup.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_string.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_strlst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_strlst.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_tag_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_tag_io.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_time.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_time0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_time0.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_timer.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_vector.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/su_wait.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/tag_dll.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/tag_dll.awk -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/test_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/test_poll.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/su/test_su.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/su/test_su.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/tport/tport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/tport/tport.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/url.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/url.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/url.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/url_tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/url_tag.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/urlmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/urlmap.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/libsofia-sip-ua/url/urlmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/libsofia-sip-ua/url/urlmap.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-coverage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-coverage.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-general.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-general.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-openssl.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-pkg-config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-pkg-config.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-su2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-su2.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/m4/sac-tport.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/m4/sac-tport.m4 -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/autogen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/autogen.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/build_sources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/build_sources.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/config.h.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/bld.inf -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_http.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_http.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_http_reg.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_http_reg.rss -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_msg.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_msg.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_msg_reg.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_msg_reg.rss -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_nua.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_nua.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_nua_reg.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_nua_reg.rss -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/test_tport.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/test_tport.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/torture_sip.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/torture_sip.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/group/torture_url.mmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/group/torture_url.mmp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/sis/libsofia-sip-ua.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/sis/libsofia-sip-ua.pkg -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/sis/su_source_test.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/sis/su_source_test.pkg -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/sis/test_nua.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/sis/test_nua.pkg -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/sis/test_tport.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/sis/test_tport.pkg -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/version.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/version.awk -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/open_c/version_files.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/open_c/version_files.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/packages/.gitignore: -------------------------------------------------------------------------------- 1 | *.pc 2 | *.spec 3 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/packages/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/packages/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/packages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/packages/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/packages/sofia-sip-ua.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/packages/sofia-sip-ua.pc.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/packages/sofia-sip.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/packages/sofia-sip.spec.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/rules/lcov.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/rules/lcov.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/rules/recursive.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/rules/recursive.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/rules/silent.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/rules/silent.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/rules/sofia.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/rules/sofia.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/rules/valcheck.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/rules/valcheck.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/exit77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/exit77.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2_localinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2_localinfo.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2_localinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2_localinfo.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2base.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2base.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2check.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2dns.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2dns.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2sip.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2sip.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2tcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2tcase.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2time.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/s2check/s2util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/s2check/s2util.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/coverage -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/fix-include-sofia-sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/fix-include-sofia-sip -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/hide_emails.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/hide_emails.sh -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/lcov-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/lcov-report -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/rpmbuild-snaphot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/rpmbuild-snaphot -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/scripts/uncovered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/scripts/uncovered -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/check_dlopen_sofia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/check_dlopen_sofia.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/check_sofia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/check_sofia.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/check_sofia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/check_sofia.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/suite_for_nua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/suite_for_nua.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_100rel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_100rel.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_basic_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_basic_call.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_call_hold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_call_hold.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_call_reject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_call_reject.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_cancel_bye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_cancel_bye.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_extension.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_init.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nat.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nat.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nat_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nat_tags.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nua.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nua.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nua_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nua_api.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_nua_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_nua_params.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_offer_answer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_offer_answer.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_ops.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_proxy.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_proxy.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_refer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_refer.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_register.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_session_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_session_timer.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_simple.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/tests/test_sip_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/tests/test_sip_events.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/Doxyfile.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/apps_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/apps_utils.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/sip-date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/sip-date.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/sip-dig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/sip-dig.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/sip-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/sip-options.c -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/utils/utils.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/utils/utils.docs -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/.gitignore -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/Makefile.am -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/README.txt -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/SofiaSIP.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/SofiaSIP.dsw -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/SofiaSIP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/SofiaSIP.sln -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/SofiaSIP2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/SofiaSIP2010.sln -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/autogen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/autogen.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/build_sources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/build_sources.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/check.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/check.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/config.h.in -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/install.cmd -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/pthread/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/pthread/ChangeLog -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/pthread/md5.sum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/pthread/md5.sum.txt -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/pthread/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/pthread/pthread.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/pthread/sched.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/pthread/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/pthread/semaphore.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/sofia-sip/su_configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/sofia-sip/su_configure.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/tests/test_nua/test_nat_tags.cpp: -------------------------------------------------------------------------------- 1 | #include "test_nat_tags.c" 2 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/tests/test_tport/test_class.cpp: -------------------------------------------------------------------------------- 1 | #include "test_class.c" 2 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/tests/test_tport/test_table.cpp: -------------------------------------------------------------------------------- 1 | #include "test_table.c" 2 | -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/unistd.h -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/utils/stunc/stunc.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/utils/stunc/stunc.dsp -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/utils/stunc/stunc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/utils/stunc/stunc.vcproj -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/version.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/version.awk -------------------------------------------------------------------------------- /dependencies/sources/sofia-sip/win32/version_files.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/dependencies/sources/sofia-sip/win32/version_files.cmd -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | rtf 2 | -------------------------------------------------------------------------------- /restcomm-ios-sdk.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/restcomm-ios-sdk.podspec -------------------------------------------------------------------------------- /scripts/build-olympus.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/build-olympus.bash -------------------------------------------------------------------------------- /scripts/build-sofia-sip.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/build-sofia-sip.bash -------------------------------------------------------------------------------- /scripts/certs/AppleWWDRCA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/certs/AppleWWDRCA.cer -------------------------------------------------------------------------------- /scripts/certs/development-cert.cer.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/certs/development-cert.cer.enc -------------------------------------------------------------------------------- /scripts/certs/development-key.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/certs/development-key.p12.enc -------------------------------------------------------------------------------- /scripts/certs/enterprise-distribution-cert.cer.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/certs/enterprise-distribution-cert.cer.enc -------------------------------------------------------------------------------- /scripts/certs/enterprise-distribution-key.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/certs/enterprise-distribution-key.p12.enc -------------------------------------------------------------------------------- /scripts/exportOptions-Enterprise.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/exportOptions-Enterprise.plist -------------------------------------------------------------------------------- /scripts/local-wrapper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/local-wrapper.bash -------------------------------------------------------------------------------- /scripts/main.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/main.bash -------------------------------------------------------------------------------- /scripts/pod-repo-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/pod-repo-update.sh -------------------------------------------------------------------------------- /scripts/testfairy-uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/testfairy-uploader.sh -------------------------------------------------------------------------------- /scripts/update-doc.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/update-doc.bash -------------------------------------------------------------------------------- /scripts/upload-dsym-testfairy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/upload-dsym-testfairy.sh -------------------------------------------------------------------------------- /scripts/xcodebuild-rvm.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RestComm/restcomm-ios-sdk/HEAD/scripts/xcodebuild-rvm.bash --------------------------------------------------------------------------------