├── .envrc ├── .github └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── .gitlab-ci-files ├── .choose_upload_dir.yml ├── .docker-images.yml ├── .set_parallel_level.yml ├── android │ ├── builds.yml │ ├── tests.yml │ └── uploads.yml ├── check-orphan-commits.yml ├── docker-image-update │ ├── update-archlinux.yml │ ├── update-debian11.yml │ ├── update-debian12.yml │ ├── update-debian13.yml │ ├── update-rocky8.yml │ └── update-ubuntu-rolling.yml ├── iOS │ ├── builds.yml │ ├── tests.yml │ └── uploads.yml ├── java-linux │ ├── commons.yml │ ├── rocky9.yml │ └── ubuntu24_04.yml ├── linux-desktop │ ├── linux-desktop-archlinux-latest.yml │ ├── linux-desktop-debian11.yml │ ├── linux-desktop-debian12.yml │ ├── linux-desktop-debian13.yml │ ├── linux-desktop-gentoo.yml │ ├── linux-desktop-rocky8.yml │ ├── linux-desktop-ubuntu-rolling.yml │ ├── linux-desktop-ubuntu2004.yml │ ├── linux-desktop.yml │ └── uploads.yml ├── linux-prepare.yml ├── macos │ ├── builds.yml │ ├── tests.yml │ └── uploads.yml ├── raspberrypi.yml ├── raspbian.yml ├── rules.yml ├── send-email.yml ├── test-report-uploads.yml ├── variables.yml ├── windows │ ├── builds.yml │ ├── packages.yml │ ├── tests.yml │ └── uploads.yml ├── xamarin │ ├── packages.yml │ └── uploads.yml ├── yocto-qemuarm64.yml ├── yocto-qemux86-64.yml └── yocto-raspberrypi3.yml ├── .gitlab-ci-tunnel.yml ├── .gitlab-ci.yml ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE.txt ├── README.md ├── bctoolbox ├── .clang-format ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── bctoolbox-tester.pc.in ├── bctoolbox.pc.in ├── build │ ├── CMakeLists.txt │ ├── android │ │ ├── Android-mbedtls.mk │ │ └── Android-tester.mk │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ └── bctoolbox.spec.cmake ├── cmake │ ├── BCGitVersion.cmake │ ├── BCToolboxCMakeUtils.cmake │ ├── BCToolboxConfig.cmake.in │ ├── ConfigureSpecfile.cmake │ ├── FindBCUnit.cmake │ ├── FindDecaf.cmake │ ├── FindMbedTLS.cmake │ ├── MakeArchive.cmake │ └── gitversion.h.in ├── config.h.cmake ├── include │ ├── CMakeLists.txt │ └── bctoolbox │ │ ├── charconv.h │ │ ├── compiler.h │ │ ├── crypto.h │ │ ├── crypto.hh │ │ ├── defs.h │ │ ├── exception.hh │ │ ├── ios_utils.hh │ │ ├── list.h │ │ ├── logging.h │ │ ├── map.h │ │ ├── ownership.hh │ │ ├── param_string.h │ │ ├── parser.h │ │ ├── port.h │ │ ├── regex.h │ │ ├── tester.h │ │ ├── utils.hh │ │ ├── vconnect.h │ │ ├── vfs.h │ │ ├── vfs_encrypted.hh │ │ └── vfs_standard.h ├── src │ ├── CMakeLists.txt │ ├── containers │ │ ├── list.c │ │ └── map.cc │ ├── conversion │ │ ├── charconv.cc │ │ ├── charconv_android.cc │ │ ├── charconv_encoding.cc │ │ └── charconv_windows.cc │ ├── crypto │ │ ├── crypto.c │ │ ├── crypto.cc │ │ ├── ecc.cc │ │ ├── mbedtls.c │ │ ├── mbedtls.cc │ │ ├── openssl.c │ │ └── openssl.cc │ ├── logging │ │ ├── log-tags.cc │ │ └── logging.c │ ├── param_string.c │ ├── parser.c │ ├── tester.c │ ├── utils.h │ ├── utils │ │ ├── exception.cc │ │ ├── ios_utils.mm │ │ ├── ios_utils_app.hh │ │ ├── ios_utils_app.mm │ │ ├── ios_utils_stub.hh │ │ ├── port.c │ │ ├── regex.cc │ │ ├── utils.cc │ │ └── win_utils.cc │ ├── vconnect.c │ └── vfs │ │ ├── vfs.c │ │ ├── vfs_encrypted.cc │ │ ├── vfs_encryption_module.hh │ │ ├── vfs_encryption_module_aes256gcm_sha256.cc │ │ ├── vfs_encryption_module_aes256gcm_sha256.hh │ │ ├── vfs_encryption_module_dummy.cc │ │ ├── vfs_encryption_module_dummy.hh │ │ └── vfs_standard.c └── tester │ ├── CMakeLists.txt │ ├── bctoolbox_tester.c │ ├── bctoolbox_tester.h │ ├── containers.cc │ ├── crypto.cc │ ├── encrypted_vfs.cc │ ├── ios_utils.cc │ ├── logger.cc │ ├── param_string.c │ ├── parser.c │ ├── port.c │ └── vfs.c ├── bcunit ├── .gitignore ├── AUTHORS ├── BCUnit.dsw ├── BCUnit.spec.in ├── BCUnit │ ├── BCUnit.dsp │ ├── CMakeLists.txt │ ├── Headers │ │ ├── Automated.h │ │ ├── BCUnit.h.in │ │ ├── BCUnit_intl.h │ │ ├── Basic.h │ │ ├── CMakeLists.txt │ │ ├── CUCurses.h │ │ ├── CUError.h │ │ ├── Console.h │ │ ├── Jamfile │ │ ├── Makefile.am │ │ ├── MyMem.h │ │ ├── TestDB.h │ │ ├── TestRun.h │ │ ├── Util.h │ │ └── wxWidget.h │ ├── Jamfile │ ├── Makefile.am │ └── Sources │ │ ├── Automated │ │ ├── Automated.c │ │ └── Makefile.am │ │ ├── Basic │ │ ├── Basic.c │ │ └── Makefile.am │ │ ├── CMakeLists.txt │ │ ├── Console │ │ ├── Console.c │ │ └── Makefile.am │ │ ├── Curses │ │ ├── Curses.c │ │ └── Makefile.am │ │ ├── Framework │ │ ├── CUError.c │ │ ├── Makefile.am │ │ ├── MyMem.c │ │ ├── TestDB.c │ │ ├── TestRun.c │ │ └── Util.c │ │ ├── Makefile.am │ │ ├── Test │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── Makefile.am │ │ ├── test_bcunit.c │ │ └── test_bcunit.h │ │ ├── Win │ │ ├── Win.c │ │ ├── Win.h │ │ └── resource.h │ │ ├── bcunit.def.in │ │ └── wxWidget │ │ ├── Makefile.am │ │ ├── icon_suite_active.xpm │ │ ├── icon_suite_active_open.xpm │ │ ├── icon_suite_inactive.xpm │ │ ├── icon_suite_inactive_open.xpm │ │ ├── icon_test_active.xpm │ │ ├── icon_test_active_suite_inactive.xpm │ │ ├── icon_test_inactive.xpm │ │ ├── icon_test_inactive_suite_inactive.xpm │ │ └── wxWidget.cpp ├── BCUnitConfig.cmake.in ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Doxyfile ├── Examples │ ├── AutomatedTest │ │ ├── AutomatedTest.c │ │ ├── AutomatedTest.dsp │ │ ├── AutomatedTest_v1.c │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── Makefile.am │ │ └── README │ ├── BasicTest │ │ ├── BasicTest.c │ │ ├── BasicTest.dsp │ │ ├── CMakeLists.txt │ │ ├── Jamfile │ │ ├── Makefile.am │ │ └── README │ ├── CMakeLists.txt │ ├── ConsoleTest │ │ ├── CMakeLists.txt │ │ ├── ConsoleTest.c │ │ ├── ConsoleTest.dsp │ │ ├── ConsoleTest_v1.c │ │ ├── Jamfile │ │ ├── Makefile.am │ │ └── README │ ├── CursesTest │ │ ├── CMakeLists.txt │ │ ├── CursesTest.c │ │ ├── CursesTest_v1.c │ │ ├── Jamfile │ │ ├── Makefile.am │ │ └── README │ ├── Demo_fprintf │ │ └── BCUnitExample.c │ ├── ExampleTests.c │ ├── ExampleTests.h │ ├── Jamfile │ ├── Makefile.am │ ├── WinTest │ │ ├── Jamfile │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WinTest.cpp │ │ ├── WinTest.dsp │ │ └── WinTest_v1.cpp │ └── wxWidgetsTest │ │ ├── Makefile.am │ │ ├── README │ │ ├── wxWidgetsTest.c │ │ └── wxWidgetsTest.rc ├── Jambase ├── Jamfile ├── Jamrules.in ├── Makefile.am ├── Man │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ └── man3 │ │ ├── BCUnit.3 │ │ ├── Jamfile │ │ └── Makefile.am ├── NEWS ├── PACKAGE ├── README.md ├── Share │ ├── BCUnit-List.dtd │ ├── BCUnit-List.xsl │ ├── BCUnit-Run.dtd │ ├── BCUnit-Run.xsl │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ ├── Memory-Dump.dtd │ ├── Memory-Dump.xsl │ └── md2xml.pl ├── TODO ├── VC7 │ ├── AutomatedTest │ │ └── AutomatedTest.vcproj │ ├── AutomatedTest_v1 │ │ └── AutomatedTest_v1.vcproj │ ├── BCUnit.sln │ ├── BCUnit.suo │ ├── BasicTest │ │ └── BasicTest.vcproj │ ├── ConsoleTest │ │ └── ConsoleTest.vcproj │ ├── ConsoleTest_v1 │ │ └── ConsoleTest_v1.vcproj │ ├── Readme.txt │ ├── libcunit │ │ └── libcunit.vcproj │ └── test_bcunit │ │ └── test_bcunit.vcproj ├── VC8 │ ├── AutomatedTest.vcproj │ ├── AutomatedTest_v1.vcproj │ ├── BCUnit.sln │ ├── BCUnit.suo │ ├── BasicTest.vcproj │ ├── ConsoleTest.vcproj │ ├── ConsoleTest_v1.vcproj │ ├── Readme.txt │ ├── libcunit.vcproj │ ├── test_bcunit.vcproj │ └── wxWidgetsTest.vcproj ├── VC9 │ ├── AutomatedTest.vcproj │ ├── BCUnit.sln │ ├── BCUnit.sln.cache │ ├── BCUnit.suo │ ├── BasicTest.vcproj │ ├── ConsoleTest.vcproj │ ├── Readme.txt │ ├── libcunit.vcproj │ └── test_bcunit.vcproj ├── VERSION ├── autogen.sh ├── bcunit.pc.in ├── bootstrap ├── build │ ├── CMakeLists.txt │ └── wp8 │ │ └── bcunit │ │ ├── bcunit.sln │ │ └── bcunit.vcxproj ├── config.h.cmake ├── config.h.in ├── configure.in ├── doc │ ├── BCUnit_doc.css │ ├── CMakeLists.txt │ ├── Jamfile │ ├── Makefile.am │ ├── error_handling.html │ ├── fdl.html │ ├── headers │ │ ├── Jamfile │ │ └── Makefile.am │ ├── index.html │ ├── introduction.html │ ├── managing_tests.html │ ├── running_tests.html │ ├── test_registry.html │ └── writing_tests.html ├── libcunit_dll.def └── stamp-h.in ├── belcard ├── .clang-format ├── .gitattributes ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── BelCardConfig.cmake.in ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile.am ├── README.md ├── autogen.sh ├── belcard.pc.in ├── build │ ├── CMakeLists.txt │ ├── android │ │ └── Android.mk │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ └── belcard.spec.cmake ├── config.h.cmake ├── configure.ac ├── include │ ├── CMakeLists.txt │ ├── Makefile.am │ └── belcard │ │ ├── Makefile.am │ │ ├── belcard.hpp │ │ ├── belcard_addressing.hpp │ │ ├── belcard_calendar.hpp │ │ ├── belcard_communication.hpp │ │ ├── belcard_explanatory.hpp │ │ ├── belcard_general.hpp │ │ ├── belcard_generic.hpp │ │ ├── belcard_geographical.hpp │ │ ├── belcard_identification.hpp │ │ ├── belcard_organizational.hpp │ │ ├── belcard_params.hpp │ │ ├── belcard_parser.hpp │ │ ├── belcard_property.hpp │ │ ├── belcard_rfc6474.hpp │ │ ├── belcard_security.hpp │ │ ├── belcard_utils.hpp │ │ └── vcard_grammar.hpp ├── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── belcard.cpp │ ├── belcard_addressing.cpp │ ├── belcard_calendar.cpp │ ├── belcard_communication.cpp │ ├── belcard_explanatory.cpp │ ├── belcard_general.cpp │ ├── belcard_geographical.cpp │ ├── belcard_identification.cpp │ ├── belcard_organizational.cpp │ ├── belcard_params.cpp │ ├── belcard_parser.cpp │ ├── belcard_property.cpp │ ├── belcard_rfc6474.cpp │ ├── belcard_security.cpp │ ├── belcard_utils.cpp │ ├── vcard3_grammar.belr │ ├── vcard3_rules │ ├── vcard_grammar.belr │ ├── vcard_grammar.cpp │ └── vcard_rules ├── tester │ ├── .bc_tester_utils.tmp │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── belcard-addressing-tester.cpp │ ├── belcard-calendar-tester.cpp │ ├── belcard-communication-tester.cpp │ ├── belcard-explanatory-tester.cpp │ ├── belcard-general-tester.cpp │ ├── belcard-geographical-tester.cpp │ ├── belcard-identification-tester.cpp │ ├── belcard-organizational-tester.cpp │ ├── belcard-rfc6474-tester.cpp │ ├── belcard-security-tester.cpp │ ├── belcard-tester.cpp │ ├── belcard-tester.hpp │ ├── belcard-vcard-tester.cpp │ ├── vcards │ │ ├── foldtest.vcf │ │ ├── unfoldtest.vcf │ │ ├── vcard.vcf │ │ └── vcards.vcf │ └── vcards3 │ │ ├── franck.vcard │ │ ├── list.vcard │ │ └── tim.vcard └── tools │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── belcard-folder.cpp │ ├── belcard-parser.cpp │ ├── belcard-unfolder.cpp │ └── random_vcard_generator.py ├── belle-sip ├── .clang-format ├── .cproject ├── .gitattributes ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── .project ├── AUTHORS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile.am ├── README.md ├── autogen.sh ├── belle-sip.pc.in ├── belle-sip.spec.in ├── build │ ├── CMakeLists.txt │ ├── android │ │ ├── Android.mk │ │ └── config.h │ ├── osx │ │ └── Info.plist.in │ ├── rpm │ │ └── belle-sip.spec.cmake │ └── wp8 │ │ ├── belle-sip-tester-wp8 │ │ ├── belle-sip-tester-native │ │ │ ├── belle-sip-tester-native.cpp │ │ │ ├── belle-sip-tester-native.h │ │ │ └── belle-sip-tester-native.vcxproj │ │ ├── belle-sip-tester-wp8.sln │ │ └── belle-sip-tester-wp8 │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ ├── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ │ └── rootca.pem │ │ │ ├── LocalizedStrings.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ │ ├── TestCasePage.xaml │ │ │ ├── TestCasePage.xaml.cs │ │ │ ├── TestResultPage.xaml │ │ │ ├── TestResultPage.xaml.cs │ │ │ └── belle-sip-tester-wp8.csproj │ │ └── belle-sip │ │ ├── belle-sip.props │ │ ├── belle-sip.sln │ │ ├── belle-sip.vcxproj │ │ ├── belle-sip_no_tunnel.vcxproj │ │ └── version.bat ├── cmake │ ├── BelleSIPConfig.cmake.in │ └── FindDNSSD.cmake ├── config.h.cmake ├── configure.ac ├── include │ ├── CMakeLists.txt │ ├── MSVC │ │ ├── inttypes.h │ │ └── stdint.h │ ├── Makefile.am │ └── belle-sip │ │ ├── Makefile.am │ │ ├── auth-helper.h │ │ ├── bearer-token.h │ │ ├── belle-sdp.h │ │ ├── belle-sip.h │ │ ├── bodyhandler.h │ │ ├── defs.h │ │ ├── dialog.h │ │ ├── generic-uri.h │ │ ├── headers.h │ │ ├── http-listener.h │ │ ├── http-message.h │ │ ├── http-provider.h │ │ ├── list.h │ │ ├── listener.h │ │ ├── listeningpoint.h │ │ ├── mainloop.h │ │ ├── mdns_register.h │ │ ├── message.h │ │ ├── object++.hh │ │ ├── object.h │ │ ├── parameters.h │ │ ├── provider.h │ │ ├── refresher.h │ │ ├── resolver.h │ │ ├── sip-uri.h │ │ ├── sipstack.h │ │ ├── transaction.h │ │ ├── types.h │ │ ├── utils.h │ │ └── wakelock.h ├── src │ ├── .DS_Store │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── auth_event.c │ ├── auth_helper.c │ ├── backgroundtask.mm │ ├── bearer_token.cc │ ├── belle_sdp_impl.cc │ ├── belle_sip_headers_impl.cc │ ├── belle_sip_internal.h │ ├── belle_sip_loop.c │ ├── belle_sip_mdns_register.c │ ├── belle_sip_object.c │ ├── belle_sip_parameters.c │ ├── belle_sip_resolver.c │ ├── belle_sip_uri_impl.cc │ ├── belle_sip_utils.c │ ├── bodyhandler.c │ ├── channel.c │ ├── channel.h │ ├── channel_bank.cc │ ├── channel_bank.hh │ ├── cpp_utils.cc │ ├── dialog.c │ ├── dns │ │ ├── dns.c │ │ └── dns.h │ ├── generic-uri.cc │ ├── http-listener.c │ ├── http-message.cc │ ├── http-provider.c │ ├── ict.c │ ├── ios_check_version.m │ ├── ist.c │ ├── listeningpoint.c │ ├── listeningpoint_internal.h │ ├── md5.c │ ├── md5.h │ ├── message.cc │ ├── nict.c │ ├── nist.c │ ├── object++.cc │ ├── parserutils.h │ ├── port.c │ ├── port.h │ ├── provider.c │ ├── refresher.c │ ├── sdp │ │ ├── parser.cc │ │ ├── parser.hh │ │ ├── sdp.txt │ │ └── sdp_grammar.belr │ ├── sip │ │ ├── sip.txt │ │ ├── sip_grammar.belr │ │ ├── sip_parser.cc │ │ └── sip_parser.hh │ ├── siplistener.c │ ├── sipstack.c │ ├── transaction.c │ ├── transports │ │ ├── stream_channel.c │ │ ├── stream_channel.h │ │ ├── stream_listeningpoint.c │ │ ├── tls_channel.c │ │ ├── tls_listeningpoint.c │ │ ├── tunnel_channel.c │ │ ├── tunnel_listeningpoint.c │ │ ├── tunnel_wrapper.cc │ │ ├── udp_channel.c │ │ └── udp_listeningpoint.c │ ├── wakelock.c │ └── wakelock_internal.h ├── tester │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── afl.md │ ├── afl │ │ ├── generate_dictfiles.rb │ │ ├── sip │ │ │ ├── 401Unauthorized.txt │ │ │ ├── REGISTER.txt │ │ │ └── SIP200RegSuccess.txt │ │ ├── sip_dict.txt │ │ └── sip_dict │ │ │ ├── Accept-Encoding_ │ │ │ ├── Accept-Language_ │ │ │ ├── Accept_ │ │ │ ├── Alert-Info_ │ │ │ ├── Allow_ │ │ │ ├── Apr │ │ │ ├── Aug │ │ │ ├── Authentication-Info_ │ │ │ ├── Authorization_ │ │ │ ├── CSeq_ │ │ │ ├── Call-ID_ │ │ │ ├── Call-Info_ │ │ │ ├── Contact_ │ │ │ ├── Content-Disposition_ │ │ │ ├── Content-Encoding_ │ │ │ ├── Content-Language_ │ │ │ ├── Content-Length_ │ │ │ ├── Content-Type_ │ │ │ ├── Date_ │ │ │ ├── Dec │ │ │ ├── Digest_ │ │ │ ├── Error-Info_ │ │ │ ├── Expires_ │ │ │ ├── Feb │ │ │ ├── Fri │ │ │ ├── From_ │ │ │ ├── GMT │ │ │ ├── In-Reply-To_ │ │ │ ├── Jan │ │ │ ├── Jul │ │ │ ├── Jun │ │ │ ├── MIME-Version_ │ │ │ ├── Mar │ │ │ ├── Max-Forwards_ │ │ │ ├── May │ │ │ ├── Min-Expires_ │ │ │ ├── Mon │ │ │ ├── Nov │ │ │ ├── Oct │ │ │ ├── Organization_ │ │ │ ├── Priority_ │ │ │ ├── Proxy-Authenticate_ │ │ │ ├── Proxy-Authorization_ │ │ │ ├── Proxy-Require_ │ │ │ ├── Record-Route_ │ │ │ ├── Reply-To_ │ │ │ ├── Require_ │ │ │ ├── Retry-After_ │ │ │ ├── Route_ │ │ │ ├── SCTP │ │ │ ├── SIP │ │ │ ├── Sat │ │ │ ├── Sep │ │ │ ├── Server_ │ │ │ ├── Subject_ │ │ │ ├── Sun │ │ │ ├── Supported_ │ │ │ ├── TCP │ │ │ ├── TLS │ │ │ ├── Thu │ │ │ ├── Timestamp_ │ │ │ ├── To │ │ │ ├── Tue │ │ │ ├── UDP │ │ │ ├── Unsupported_ │ │ │ ├── User-Agent_ │ │ │ ├── Via_ │ │ │ ├── WWW-Authenticate_ │ │ │ ├── Warning_ │ │ │ ├── Wed │ │ │ ├── alert │ │ │ ├── algorithm_ │ │ │ ├── application │ │ │ ├── audio │ │ │ ├── auth │ │ │ ├── auth-int │ │ │ ├── branch │ │ │ ├── branch_ │ │ │ ├── c_ │ │ │ ├── card │ │ │ ├── cnonce_ │ │ │ ├── domain_ │ │ │ ├── duration_ │ │ │ ├── e_ │ │ │ ├── emergency │ │ │ ├── f_ │ │ │ ├── false │ │ │ ├── handling_ │ │ │ ├── i_ │ │ │ ├── icon │ │ │ ├── image │ │ │ ├── info │ │ │ ├── ip │ │ │ ├── k_ │ │ │ ├── l_ │ │ │ ├── lr │ │ │ ├── m_ │ │ │ ├── maddr_ │ │ │ ├── message │ │ │ ├── multipart │ │ │ ├── nc_ │ │ │ ├── nextnonce_ │ │ │ ├── non-urgent │ │ │ ├── nonce_ │ │ │ ├── normal │ │ │ ├── opaque_ │ │ │ ├── optional │ │ │ ├── phone │ │ │ ├── purpose_ │ │ │ ├── q_ │ │ │ ├── qop_ │ │ │ ├── realm_ │ │ │ ├── received_ │ │ │ ├── render │ │ │ ├── required │ │ │ ├── response_ │ │ │ ├── rspauth_ │ │ │ ├── s_ │ │ │ ├── session │ │ │ ├── stale_ │ │ │ ├── t_ │ │ │ ├── tag_ │ │ │ ├── text │ │ │ ├── true │ │ │ ├── ttl_ │ │ │ ├── urgent │ │ │ ├── uri_ │ │ │ ├── username_ │ │ │ ├── v_ │ │ │ ├── video │ │ │ └── x- │ ├── auth_helper_tester.c │ ├── belle_generic_uri_tester.c │ ├── belle_http_tester.c │ ├── belle_sdp_tester.c │ ├── belle_sip_base_uri_tester.c │ ├── belle_sip_core_tester.c │ ├── belle_sip_dialog_tester.c │ ├── belle_sip_fast_uri_tester.c │ ├── belle_sip_headers_tester.c │ ├── belle_sip_message_tester.c │ ├── belle_sip_refresher_tester.c │ ├── belle_sip_register_tester.c │ ├── belle_sip_resolver_tester.c │ ├── belle_sip_tester.c │ ├── belle_sip_tester.h │ ├── belle_sip_tester_ios.m │ ├── belle_sip_tester_runtime.c │ ├── belle_sip_tester_utils.cc │ ├── belle_sip_tester_utils.h │ ├── belle_sip_tester_windows.cpp │ ├── belle_sip_tester_windows.h │ ├── belle_sip_uri_tester.c │ ├── bench.cc │ ├── cast_test.c │ ├── certificates │ │ └── openssl-client-cert.cnf │ ├── criterion.hpp │ ├── describe.c │ ├── foo.cpp │ ├── get.c │ ├── local_tester_hosts │ ├── object_tester.cc │ ├── parse.c │ ├── register_tester.h │ ├── resolve.c │ └── tester_hosts └── tools │ ├── carddav_http_query.c │ └── digest-response.py ├── belr ├── .clang-format ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── BelrConfig.cmake.in ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── belr.pc.in ├── build │ ├── CMakeLists.txt │ ├── android │ │ └── Android.mk │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ └── belr.spec.cmake ├── config.h.cmake ├── include │ ├── CMakeLists.txt │ ├── Makefile.am │ └── belr │ │ ├── Makefile.am │ │ ├── abnf.h │ │ ├── belr.h │ │ ├── grammarbuilder.h │ │ └── parser.h ├── src │ ├── CMakeLists.txt │ ├── abnf.cpp │ ├── belr.cpp │ ├── binarystream.cpp │ ├── binarystream.h │ ├── common.h │ ├── grammarbuilder.cpp │ └── parser.cpp ├── tester │ ├── CMakeLists.txt │ ├── belr-tester.cpp │ ├── belr-tester.h │ ├── grammar-tester.cpp │ ├── parser.cpp │ └── res │ │ ├── basicgrammar.txt │ │ ├── belr-grammar-example.blr │ │ ├── register.txt │ │ ├── response.txt │ │ ├── sipgrammar.txt │ │ └── vcardgrammar.txt └── tools │ ├── CMakeLists.txt │ ├── belr-compiler.cc │ ├── belr-demo.cc │ ├── belr-parse.cc │ ├── identitygrammar.txt │ ├── sipgrammar.txt │ ├── vcardgrammar.txt │ └── vcardsample.txt ├── bzrtp ├── .gitignore ├── Android.mk ├── CHANGELOG.md ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE.txt ├── Makefile.am ├── README.md ├── autogen.sh ├── build │ ├── CMakeLists.txt │ └── rpm │ │ └── bzrtp.spec.cmake ├── cmake │ ├── BZRTPConfig.cmake.in │ └── FindPostQuantumCryptoEngine.cmake ├── config.h.cmake ├── configure.ac ├── include │ ├── CMakeLists.txt │ ├── MSVC │ │ └── stdint.h │ ├── Makefile.am │ ├── bzrtp │ │ ├── Makefile.am │ │ └── bzrtp.h │ ├── cryptoUtils.h │ ├── packetParser.h │ ├── stateMachine.h │ ├── typedef.h │ └── zidCache.h ├── libbzrtp.pc.in ├── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bzrtp.c │ ├── cryptoUtils.cc │ ├── packetParser.c │ ├── pgpwords.c │ ├── stateMachine.c │ └── zidCache.c └── test │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bzrtpConfigsTest.c │ ├── bzrtpCryptoTest.cc │ ├── bzrtpParserTest.c │ ├── bzrtpTest.c │ ├── bzrtpTest.h │ ├── bzrtpZidCacheTest.c │ ├── patternZIDAlice.sqlite │ ├── testUtils.c │ └── testUtils.h ├── cmake ├── Android │ ├── CopyLibs.cmake │ ├── GenerateSDK.cmake │ ├── GradleClean.cmake │ ├── cpufeatures │ │ └── CMakeLists.txt │ ├── gdbserver │ │ ├── CMakeLists.txt │ │ └── gdb.setup.in │ ├── gradle │ │ ├── LinphoneSdkManifest.xml.cmake │ │ ├── LinphoneSdkManifestNoVideo.xml.cmake │ │ ├── build.gradle.cmake │ │ ├── gradle.properties.cmake │ │ ├── upload.gradle.cmake │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── strip.sh.cmake │ ├── support │ │ └── CMakeLists.txt │ ├── wrap.sh.cmake │ └── wrap.sh.in ├── Autotools │ ├── Autotools.cmake.in │ ├── CMakeLists.txt │ ├── build.sh.cmake │ ├── configure.sh.cmake │ └── install.sh.cmake ├── BCProjects.cmake ├── CheckBuildToolsAndroid.cmake ├── CheckBuildToolsBundledAndroid.cmake ├── CheckBuildToolsCommon.cmake ├── CheckBuildToolsDesktop.cmake ├── CheckBuildToolsIOS.cmake ├── CheckBuildToolsJava.cmake ├── CheckBuildToolsMacos.cmake ├── CheckBuildToolsRaspberry.cmake ├── CheckBuildToolsUWP.cmake ├── CheckBuildToolsYocto.cmake ├── ExternalDependencies.cmake ├── HWSanitizer.cmake ├── IOS │ ├── CleanSDK.cmake │ ├── GenerateFrameworks.cmake │ ├── GenerateSDK.cmake │ ├── Podfile.cmake │ ├── Tools │ │ └── deploy.sh │ └── linphone-sdk.podspec.cmake ├── Java │ ├── CopyLibs.cmake │ ├── GenerateSDK.cmake │ ├── GradleClean.cmake │ ├── gradle │ │ ├── build.gradle.cmake │ │ ├── gradle.properties.cmake │ │ ├── upload.gradle.cmake │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ └── gradlew.bat ├── LinphoneSdkPackager.cmake ├── LinphoneSdkUtils.cmake ├── Meson │ ├── build.sh.cmake │ ├── configure.sh.cmake │ ├── crossfile-apple.meson.cmake │ └── install.sh.cmake ├── Modules │ ├── FindBCToolbox.cmake │ ├── FindBZRTP.cmake │ ├── FindBelCard.cmake │ ├── FindBelleSIP.cmake │ ├── FindBelr.cmake │ ├── FindCpuFeatures.cmake │ ├── FindLibLinphone.cmake │ ├── FindLibLinphoneCxx.cmake │ ├── FindLime.cmake │ ├── FindMediastreamer2.cmake │ ├── FindOrtp.cmake │ ├── FindSupport.cmake │ └── FindTunnel.cmake ├── NuGet │ ├── CMakeLists.txt │ ├── Dotnet │ │ ├── CMakeLists.txt │ │ ├── LinphoneSDK.csproj.in │ │ └── LinphoneSDK.targets.in │ ├── README.md │ ├── Windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LinphoneSDK.Windows.nuspec.in │ │ ├── LinphoneSDK.Windows.targets.in │ │ ├── _._ │ │ └── nuget.exe │ ├── icon.png │ ├── nuget-description.txt │ └── shared-nuspec-metadata.in.xml ├── Options.cmake ├── PackageConfig │ └── OpenSSLConfig.cmake.in ├── PlatformAndroid.cmake ├── PlatformBundledAndroid.cmake ├── PlatformCommon.cmake ├── PlatformDesktop.cmake ├── PlatformIOS.cmake ├── PlatformJava.cmake ├── PlatformMacos.cmake ├── PlatformRaspberry.cmake ├── PlatformUWP.cmake ├── PlatformYocto.cmake ├── Sanitizer.cmake ├── SwiftPackageManager │ ├── GenerateSwiftPackage.cmake │ ├── LinphoneSdkInfos.swift.in │ ├── LinphoneSwiftPackage.swift.in │ ├── README.md.in │ └── Tools │ │ ├── merge_plists.py │ │ └── merge_xcframeworks.sh ├── TasksAndroid.cmake ├── TasksBundledAndroid.cmake ├── TasksIOS.cmake ├── TasksJava.cmake ├── TasksMacos.cmake ├── TasksUWP.cmake ├── TasksWindows.cmake ├── TunnelClone.cmake ├── Windows │ ├── GenerateSDK.cmake │ ├── vpx_build.sh.cmake │ ├── vpx_configure.sh.cmake │ ├── vpx_install.sh.cmake │ ├── windows_env.bat │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── CsUwpWrapper.csproj │ │ ├── CsWrapper.csproj │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── CsWrapper.rd.xml ├── dummy_libraries │ ├── Info.plist.in │ └── dummy.c.in ├── hook │ └── pre-commit ├── macos │ ├── CleanSDK.cmake │ ├── GenerateFrameworks.cmake │ ├── GenerateSDK.cmake │ └── linphone-sdk.podspec.cmake ├── python │ ├── GenerateWheel.cmake │ ├── __init__.py │ └── setup.cmake ├── scripts │ └── gas-preprocessor.pl └── toolchains │ ├── toolchain-android-arm64.cmake │ ├── toolchain-android-armv7.cmake │ ├── toolchain-android-common.cmake │ ├── toolchain-android-x86.cmake │ ├── toolchain-android-x86_64.cmake │ ├── toolchain-bundled-android-arm64.cmake │ ├── toolchain-bundled-android-armv7.cmake │ ├── toolchain-bundled-android-common.cmake │ ├── toolchain-bundled-android-x86.cmake │ ├── toolchain-bundled-android-x86_64.cmake │ ├── toolchain-ios-arm64-simulator.cmake │ ├── toolchain-ios-arm64.cmake │ ├── toolchain-ios-common.cmake │ ├── toolchain-ios-x86_64-simulator.cmake │ ├── toolchain-mac-arm64.cmake │ ├── toolchain-mac-common.cmake │ ├── toolchain-mac-x86_64.cmake │ ├── toolchain-raspberrypi-0-1.cmake │ ├── toolchain-raspberrypi-2-3.cmake │ ├── toolchain-raspberrypi-3+.cmake │ ├── toolchain-raspberrypi-common.cmake │ ├── toolchain-uwp-common.cmake │ ├── toolchain-uwp-x64.cmake │ ├── toolchain-uwp-x86.cmake │ ├── toolchain-windows-store-common.cmake │ ├── toolchain-windows-store-x64.cmake │ └── toolchain-windows-store-x86.cmake ├── docker-files ├── Makefile ├── bc-dev-android-r27 ├── bc-dev-android-test-r27 ├── bc-dev-archlinux ├── bc-dev-archlinux-test-liblinphone ├── bc-dev-archlinux-test-mediastreamer ├── bc-dev-centos8 ├── bc-dev-centos8-test-liblinphone ├── bc-dev-centos8-test-mediastreamer ├── bc-dev-debian10 ├── bc-dev-debian10-test-liblinphone ├── bc-dev-debian10-test-mediastreamer ├── bc-dev-debian11 ├── bc-dev-debian11-php ├── bc-dev-debian11-test-liblinphone ├── bc-dev-debian11-test-mediastreamer ├── bc-dev-debian12 ├── bc-dev-debian12-java ├── bc-dev-debian12-test-liblinphone ├── bc-dev-debian12-test-mediastreamer ├── bc-dev-debian13 ├── bc-dev-debian13-java ├── bc-dev-debian13-test-liblinphone ├── bc-dev-gentoo ├── bc-dev-raspios ├── bc-dev-rocky8 ├── bc-dev-rocky8-python-wrapper ├── bc-dev-rocky8-test-liblinphone ├── bc-dev-ubuntu-18-04-lts ├── bc-dev-ubuntu-18-04-lts-test-liblinphone ├── bc-dev-ubuntu-20-04-lts ├── bc-dev-ubuntu-20-04-lts-test-liblinphone ├── bc-dev-ubuntu-rolling ├── bc-dev-ubuntu-rolling-test-liblinphone ├── bc-dev-ubuntu-rolling-test-mediastreamer ├── build-and-push-ci-image.sh ├── gentoo │ ├── binrepos.conf │ ├── ebuilds │ │ ├── dev-cpp │ │ │ └── jsoncpp │ │ │ │ ├── Manifest │ │ │ │ └── jsoncpp-1.9.5.ebuild │ │ ├── dev-db │ │ │ └── soci │ │ │ │ ├── Manifest │ │ │ │ ├── soci-4.0.3.ebuild │ │ │ │ └── soci-9999.ebuild │ │ ├── dev-libs │ │ │ ├── decaf │ │ │ │ └── decaf-1.0.2.ebuild │ │ │ ├── liboqs │ │ │ │ ├── Manifest │ │ │ │ └── liboqs-0.9.2.ebuild │ │ │ └── linphone-sdk │ │ │ │ └── linphone-sdk-9999.ebuild │ │ ├── media-libs │ │ │ ├── bv16-floatingpoint │ │ │ │ ├── Manifest │ │ │ │ └── bv16-floatingpoint-2.1.ebuild │ │ │ └── libyuv │ │ │ │ ├── files │ │ │ │ └── libyuv-config.cmake │ │ │ │ └── libyuv-0.0.1872.ebuild │ │ └── net-libs │ │ │ └── mbedtls │ │ │ └── mbedtls-9999.ebuild │ ├── env.debugsyms │ ├── env.installsources │ ├── lighttpd.conf │ ├── package.env │ ├── package.license-bc-tests │ ├── package.unmask │ ├── package.use-bc │ ├── package.use-bc-tests │ ├── sets │ │ └── linphone-sdk-latest │ ├── xerces-c.sh │ └── xterm.sh ├── link-audio-group-docker.sh ├── qt-linux-installer-noninteractive.qs ├── raspios-create-rootfs.sh └── rpmmacros ├── ekt-server ├── .clang-format ├── CMakeLists.txt ├── README.md ├── config.h.cmake └── src │ ├── CMakeLists.txt │ ├── ekt-server-main.cpp │ ├── ekt-server-main.h │ ├── ektserver.cpp │ ├── server-ekt-manager.cpp │ └── server-ekt-manager.h ├── flake.lock ├── flake.nix ├── liblinphone ├── .clang-format ├── .cproject ├── .gitattributes ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── .gitlab-ci.yml ├── .project ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── NEWS ├── README.md ├── autogen.sh ├── build │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── macos │ │ ├── Info-linphone.plist.in │ │ ├── Makefile.am │ │ ├── environment.sh │ │ ├── libiconv-macos.patch │ │ ├── linphone.bundle │ │ ├── pkg-distribution.xml.in │ │ ├── pkg-scripts │ │ │ └── postinstall │ │ └── quartz-theme-gtkrc.patch │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ ├── liblinphone.spec.cmake │ │ ├── lp-autoanswer.conf │ │ └── lp-autoanswer.service ├── cmake │ ├── FindJsonCPP.cmake │ ├── FindMsAaudio.cmake │ ├── FindMsAndroidCamera2.cmake │ ├── FindMsWebRtc.cmake │ ├── FindOpenLDAP.cmake │ ├── FindSoci.cmake │ ├── FindTurboJpeg.cmake │ ├── FindZXing.cmake │ ├── LibLinphoneConfig.cmake.in │ └── Tools.cmake ├── config.h.cmake ├── config.rpath ├── console │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── TODO │ ├── commands.c │ ├── example │ │ └── linphonec │ ├── linphonec.c │ ├── linphonec.h │ ├── shell.c │ ├── sipomatic.c │ ├── sipomatic.h │ └── wav2raw.c ├── coreapi │ ├── .gitignore │ ├── CMakeLists.txt │ ├── TunnelManager.cc │ ├── TunnelManager.hh │ ├── authentication.c │ ├── bellesip_sal │ │ ├── sal_address_impl.c │ │ ├── sal_impl.c │ │ ├── sal_impl.h │ │ ├── sal_op_impl.c │ │ └── sal_sdp.c │ ├── callbacks.c │ ├── chat.c │ ├── contact_providers_priv.h │ ├── contactprovider.c │ ├── core_private.h │ ├── ec-calibrator.c │ ├── echo-tester.c │ ├── enum.c │ ├── enum.h │ ├── error_info.c │ ├── help │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── doc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── doxygen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Doxyfile.in │ │ │ │ ├── Makefile.am │ │ │ │ ├── doxygen.dox.in │ │ │ │ └── provisioning_configuration_key.dox.in │ │ │ ├── generate_javadoc.sh.in │ │ │ └── sphinx │ │ │ │ └── guides │ │ │ │ └── chatroom.rst │ │ └── examples │ │ │ ├── C │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── buddy_status.c │ │ │ ├── chatroom.c │ │ │ ├── filetransfer.c │ │ │ ├── helloworld.c │ │ │ ├── notify.c │ │ │ ├── realtimetext_receiver.c │ │ │ ├── realtimetext_sender.c │ │ │ └── registration.c │ │ │ └── Makefile.am │ ├── im_encryption_engine.c │ ├── im_notif_policy.c │ ├── info.c │ ├── linphone_tunnel.cc │ ├── linphone_tunnel_config.c │ ├── linphone_tunnel_stubs.c │ ├── linphonecall.c │ ├── linphonecore.c │ ├── linphonecore_ios.cc │ ├── logging-private.h │ ├── logging.c │ ├── lpc2xml.c │ ├── lpc2xml.h │ ├── lpconfig.c │ ├── lsd.c │ ├── misc.c │ ├── private.h │ ├── private_functions.h │ ├── private_structs.h │ ├── private_types.h │ ├── proxy.c │ ├── quality_reporting.c │ ├── quality_reporting.h │ ├── remote_provisioning.c │ ├── ringtoneplayer.c │ ├── ringtoneplayer_ios.h │ ├── ringtoneplayer_ios.m │ ├── sqlite3_bctbx_vfs.c │ ├── sqlite3_bctbx_vfs.h │ ├── tester_utils.cpp │ ├── tester_utils.h │ ├── update_check.c │ ├── video_definition.c │ ├── vtables.c │ ├── xml2lpc.c │ ├── xml2lpc.h │ └── xmlrpc.c ├── daemon │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── commands │ │ ├── adaptive-jitter-compensation.cc │ │ ├── adaptive-jitter-compensation.h │ │ ├── answer.cc │ │ ├── answer.h │ │ ├── audio-codec-get.cc │ │ ├── audio-codec-get.h │ │ ├── audio-codec-move.cc │ │ ├── audio-codec-move.h │ │ ├── audio-codec-set.cc │ │ ├── audio-codec-set.h │ │ ├── audio-codec-toggle.cc │ │ ├── audio-codec-toggle.h │ │ ├── audio-stream-start.cc │ │ ├── audio-stream-start.h │ │ ├── audio-stream-stats.cc │ │ ├── audio-stream-stats.h │ │ ├── audio-stream-stop.cc │ │ ├── audio-stream-stop.h │ │ ├── auth-infos-clear.cc │ │ ├── auth-infos-clear.h │ │ ├── call-mute.cc │ │ ├── call-mute.h │ │ ├── call-pause.cc │ │ ├── call-pause.h │ │ ├── call-resume.cc │ │ ├── call-resume.h │ │ ├── call-stats.cc │ │ ├── call-stats.h │ │ ├── call-status.cc │ │ ├── call-status.h │ │ ├── call-transfer.cc │ │ ├── call-transfer.h │ │ ├── call.cc │ │ ├── call.h │ │ ├── cn.cc │ │ ├── cn.h │ │ ├── conference.cc │ │ ├── conference.h │ │ ├── config.cc │ │ ├── configcommand.h │ │ ├── contact.cc │ │ ├── contact.h │ │ ├── dtmf.cc │ │ ├── dtmf.h │ │ ├── echo.cc │ │ ├── echo.h │ │ ├── firewall-policy.cc │ │ ├── firewall-policy.h │ │ ├── help.cc │ │ ├── help.h │ │ ├── ipv6.cc │ │ ├── ipv6.h │ │ ├── jitterbuffer.cc │ │ ├── jitterbuffer.h │ │ ├── media-encryption.cc │ │ ├── media-encryption.h │ │ ├── message.cc │ │ ├── message.h │ │ ├── msfilter-add-fmtp.cc │ │ ├── msfilter-add-fmtp.h │ │ ├── netsim.cc │ │ ├── netsim.h │ │ ├── play-wav.cc │ │ ├── play-wav.h │ │ ├── play.cc │ │ ├── play.h │ │ ├── pop-event.cc │ │ ├── pop-event.h │ │ ├── port.cc │ │ ├── port.h │ │ ├── ptime.cc │ │ ├── ptime.h │ │ ├── quit.cc │ │ ├── quit.h │ │ ├── register-info.cc │ │ ├── register-info.h │ │ ├── register-status.cc │ │ ├── register-status.h │ │ ├── register.cc │ │ ├── register.h │ │ ├── terminate.cc │ │ ├── terminate.h │ │ ├── unregister.cc │ │ ├── unregister.h │ │ ├── version.cc │ │ ├── version.h │ │ ├── video.cc │ │ └── video.h │ ├── daemon-pipetest.c │ ├── daemon.cc │ └── daemon.h ├── include │ ├── CMakeLists.txt │ ├── MSVC │ │ ├── inttypes.h │ │ └── stdint.h │ ├── Makefile.am │ ├── Modules │ │ ├── module.modulemap │ │ └── swift-umbrella.h │ └── linphone │ │ ├── Makefile.am │ │ ├── account_creator.h │ │ ├── account_creator_service.h │ │ ├── api │ │ ├── c-account-cbs.h │ │ ├── c-account-device.h │ │ ├── c-account-manager-services-request-cbs.h │ │ ├── c-account-manager-services-request.h │ │ ├── c-account-manager-services.h │ │ ├── c-account-params.h │ │ ├── c-account.h │ │ ├── c-address.h │ │ ├── c-alert-cbs.h │ │ ├── c-alert.h │ │ ├── c-api.h │ │ ├── c-audio-device.h │ │ ├── c-auth-info.h │ │ ├── c-bearer-token.h │ │ ├── c-buffer.h │ │ ├── c-call-cbs.h │ │ ├── c-call-log.h │ │ ├── c-call-stats.h │ │ ├── c-call.h │ │ ├── c-callbacks.h │ │ ├── c-carddav-params.h │ │ ├── c-chat-message-cbs.h │ │ ├── c-chat-message-reaction.h │ │ ├── c-chat-message.h │ │ ├── c-chat-params.h │ │ ├── c-chat-room-cbs.h │ │ ├── c-chat-room-params.h │ │ ├── c-chat-room.h │ │ ├── c-composing-participant.h │ │ ├── c-conference-cbs.h │ │ ├── c-conference-info.h │ │ ├── c-conference-params.h │ │ ├── c-conference-scheduler.h │ │ ├── c-conference.h │ │ ├── c-content.h │ │ ├── c-dial-plan.h │ │ ├── c-dictionary.h │ │ ├── c-digest-authentication-policy.h │ │ ├── c-ekt-info.h │ │ ├── c-event-cbs.h │ │ ├── c-event-log.h │ │ ├── c-event.h │ │ ├── c-factory.h │ │ ├── c-friend-device.h │ │ ├── c-friend-list.h │ │ ├── c-friend-phone-number.h │ │ ├── c-friend.h │ │ ├── c-ldap-params.h │ │ ├── c-ldap.h │ │ ├── c-magic-search-cbs.h │ │ ├── c-magic-search.h │ │ ├── c-message-waiting-indication.h │ │ ├── c-nat-policy.h │ │ ├── c-participant-device-cbs.h │ │ ├── c-participant-device-identity.h │ │ ├── c-participant-device.h │ │ ├── c-participant-imdn-state.h │ │ ├── c-participant-info.h │ │ ├── c-participant.h │ │ ├── c-payload-type.h │ │ ├── c-player.h │ │ ├── c-presence.h │ │ ├── c-push-notification-config.h │ │ ├── c-push-notification-message.h │ │ ├── c-recorder-params.h │ │ ├── c-recorder.h │ │ ├── c-remote-contact-directory.h │ │ ├── c-search-result.h │ │ ├── c-signal-information.h │ │ ├── c-types.h │ │ ├── c-vcard.h │ │ └── c-video-source-descriptor.h │ │ ├── call.h │ │ ├── call_params.h │ │ ├── call_stats.h │ │ ├── callbacks.h │ │ ├── chat.h │ │ ├── contactprovider.h │ │ ├── core.h │ │ ├── core_utils.h │ │ ├── defs.h │ │ ├── enums │ │ ├── c-enums.h │ │ ├── call-enums.h │ │ ├── chat-message-enums.h │ │ ├── chat-room-enums.h │ │ ├── conference-enums.h │ │ ├── encryption-engine-enums.h │ │ ├── event-log-enums.h │ │ ├── participant-device-enums.h │ │ ├── participant-enums.h │ │ └── security-event-enums.h │ │ ├── error_info.h │ │ ├── factory.h │ │ ├── flexi-api-client.h │ │ ├── friend.h │ │ ├── friendlist.h │ │ ├── headers.h │ │ ├── im_encryption_engine.h │ │ ├── im_notif_policy.h │ │ ├── info_message.h │ │ ├── linphone_proxy_config.h │ │ ├── linphone_tunnel.h │ │ ├── linphonecore.h │ │ ├── linphonecore_utils.h │ │ ├── linphonepresence.h │ │ ├── logging.h │ │ ├── lpconfig.h │ │ ├── misc.h │ │ ├── player.h │ │ ├── presence.h │ │ ├── proxy_config.h │ │ ├── ringtoneplayer.h │ │ ├── tunnel.h │ │ ├── types.h │ │ ├── utils │ │ ├── algorithm.h │ │ ├── enum-generator.h │ │ ├── enum-mask.h │ │ ├── fs.h │ │ ├── general.h │ │ ├── magic-macros.h │ │ ├── static-string.h │ │ ├── traits.h │ │ └── utils.h │ │ ├── vcard.h │ │ ├── video_definition.h │ │ ├── wrapper_utils.h │ │ └── xmlrpc.h ├── libxsd │ ├── CMakeLists.txt │ ├── FLOSSE │ ├── GPLv2 │ ├── LICENSE │ ├── README │ └── xsd │ │ └── cxx │ │ ├── auto-array.hxx │ │ ├── compilers │ │ └── vc-8 │ │ │ ├── post.hxx │ │ │ └── pre.hxx │ │ ├── config.hxx │ │ ├── exceptions.hxx │ │ ├── parser │ │ ├── document.hxx │ │ ├── document.txx │ │ ├── elements.hxx │ │ ├── elements.txx │ │ ├── error-handler.hxx │ │ ├── error-handler.txx │ │ ├── exceptions.hxx │ │ ├── exceptions.ixx │ │ ├── exceptions.txx │ │ ├── expat │ │ │ ├── elements.hxx │ │ │ └── elements.txx │ │ ├── map.hxx │ │ ├── map.ixx │ │ ├── map.txx │ │ ├── non-validating │ │ │ ├── parser.hxx │ │ │ ├── parser.txx │ │ │ ├── xml-schema-pimpl.hxx │ │ │ ├── xml-schema-pimpl.ixx │ │ │ ├── xml-schema-pimpl.txx │ │ │ ├── xml-schema-pskel.hxx │ │ │ ├── xml-schema-pskel.ixx │ │ │ └── xml-schema-pskel.txx │ │ ├── schema-exceptions.hxx │ │ ├── schema-exceptions.ixx │ │ ├── schema-exceptions.txx │ │ ├── substitution-map.hxx │ │ ├── substitution-map.txx │ │ ├── validating │ │ │ ├── exceptions.hxx │ │ │ ├── exceptions.ixx │ │ │ ├── exceptions.txx │ │ │ ├── inheritance-map.hxx │ │ │ ├── inheritance-map.txx │ │ │ ├── parser.hxx │ │ │ ├── parser.txx │ │ │ ├── xml-schema-pimpl.hxx │ │ │ ├── xml-schema-pimpl.ixx │ │ │ ├── xml-schema-pimpl.txx │ │ │ ├── xml-schema-pskel.hxx │ │ │ ├── xml-schema-pskel.ixx │ │ │ └── xml-schema-pskel.txx │ │ ├── xerces │ │ │ ├── elements.hxx │ │ │ └── elements.txx │ │ ├── xml-schema.hxx │ │ ├── xml-schema.ixx │ │ └── xml-schema.txx │ │ ├── post.hxx │ │ ├── pre.hxx │ │ ├── ro-string.hxx │ │ ├── ro-string.txx │ │ ├── tree │ │ ├── ace-cdr-stream-common.hxx │ │ ├── ace-cdr-stream-extraction.hxx │ │ ├── ace-cdr-stream-insertion.hxx │ │ ├── bits │ │ │ ├── literals.hxx │ │ │ └── literals.ixx │ │ ├── buffer.hxx │ │ ├── buffer.txx │ │ ├── comparison-map.hxx │ │ ├── comparison-map.txx │ │ ├── containers-wildcard.hxx │ │ ├── containers.hxx │ │ ├── containers.txx │ │ ├── date-time-extraction.txx │ │ ├── date-time-insertion.txx │ │ ├── date-time-ostream.txx │ │ ├── date-time.hxx │ │ ├── date-time.ixx │ │ ├── date-time.txx │ │ ├── element-map.hxx │ │ ├── element-map.txx │ │ ├── elements.hxx │ │ ├── elements.ixx │ │ ├── elements.txx │ │ ├── error-handler.hxx │ │ ├── error-handler.txx │ │ ├── exceptions.hxx │ │ ├── exceptions.txx │ │ ├── facet.hxx │ │ ├── istream-fwd.hxx │ │ ├── istream.hxx │ │ ├── iterator-adapter.hxx │ │ ├── list.hxx │ │ ├── ostream.hxx │ │ ├── parsing.hxx │ │ ├── parsing.txx │ │ ├── parsing │ │ │ ├── boolean.hxx │ │ │ ├── byte.hxx │ │ │ ├── date-time.txx │ │ │ ├── decimal.hxx │ │ │ ├── double.hxx │ │ │ ├── element-map.txx │ │ │ ├── float.hxx │ │ │ ├── int.hxx │ │ │ ├── long.hxx │ │ │ ├── short.hxx │ │ │ ├── unsigned-byte.hxx │ │ │ ├── unsigned-int.hxx │ │ │ ├── unsigned-long.hxx │ │ │ └── unsigned-short.hxx │ │ ├── serialization.hxx │ │ ├── serialization.txx │ │ ├── serialization │ │ │ ├── boolean.hxx │ │ │ ├── byte.hxx │ │ │ ├── date-time.txx │ │ │ ├── decimal.hxx │ │ │ ├── double.hxx │ │ │ ├── element-map.txx │ │ │ ├── float.hxx │ │ │ ├── int.hxx │ │ │ ├── long.hxx │ │ │ ├── short.hxx │ │ │ ├── unsigned-byte.hxx │ │ │ ├── unsigned-int.hxx │ │ │ ├── unsigned-long.hxx │ │ │ └── unsigned-short.hxx │ │ ├── std-ostream-map.hxx │ │ ├── std-ostream-map.txx │ │ ├── std-ostream-operators.hxx │ │ ├── stream-extraction-map.hxx │ │ ├── stream-extraction-map.txx │ │ ├── stream-extraction.hxx │ │ ├── stream-insertion-map.hxx │ │ ├── stream-insertion-map.txx │ │ ├── stream-insertion.hxx │ │ ├── text.hxx │ │ ├── text.txx │ │ ├── type-factory-map.hxx │ │ ├── type-factory-map.txx │ │ ├── type-serializer-map.hxx │ │ ├── type-serializer-map.txx │ │ ├── types.hxx │ │ ├── types.txx │ │ ├── xdr-stream-common.hxx │ │ ├── xdr-stream-extraction.hxx │ │ └── xdr-stream-insertion.hxx │ │ ├── version.hxx │ │ ├── xml │ │ ├── bits │ │ │ ├── literals.hxx │ │ │ └── literals.ixx │ │ ├── char-iso8859-1.hxx │ │ ├── char-iso8859-1.txx │ │ ├── char-lcp.hxx │ │ ├── char-lcp.txx │ │ ├── char-utf8.hxx │ │ ├── char-utf8.txx │ │ ├── dom │ │ │ ├── auto-ptr.hxx │ │ │ ├── bits │ │ │ │ ├── error-handler-proxy.hxx │ │ │ │ └── error-handler-proxy.txx │ │ │ ├── elements.hxx │ │ │ ├── elements.txx │ │ │ ├── parsing-header.hxx │ │ │ ├── parsing-source.hxx │ │ │ ├── parsing-source.txx │ │ │ ├── serialization-header.hxx │ │ │ ├── serialization-header.txx │ │ │ ├── serialization-source.hxx │ │ │ ├── serialization-source.txx │ │ │ ├── wildcard-source.hxx │ │ │ └── wildcard-source.txx │ │ ├── elements.hxx │ │ ├── elements.txx │ │ ├── error-handler.hxx │ │ ├── exceptions.hxx │ │ ├── qualified-name.hxx │ │ ├── sax │ │ │ ├── bits │ │ │ │ ├── error-handler-proxy.hxx │ │ │ │ └── error-handler-proxy.txx │ │ │ └── std-input-source.hxx │ │ ├── std-memory-manager.hxx │ │ ├── string.hxx │ │ ├── string.ixx │ │ └── string.txx │ │ ├── zc-istream.hxx │ │ └── zc-istream.txx ├── linphone.iss.in ├── m4 │ ├── .gitignore │ ├── Makefile.am │ ├── codeset.m4 │ ├── exosip.m4 │ ├── gettext.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── iconv.m4 │ ├── ilbc.m4 │ ├── intdiv0.m4 │ ├── intl.m4 │ ├── intldir.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes.m4 │ ├── inttypes_h.m4 │ ├── isc-posix.m4 │ ├── lcmessage.m4 │ ├── ld-output-def.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── lock.m4 │ ├── longdouble.m4 │ ├── longlong.m4 │ ├── nls.m4 │ ├── obsolete.m4 │ ├── ortp.m4 │ ├── osip.m4 │ ├── po.m4 │ ├── printf-posix.m4 │ ├── progtest.m4 │ ├── readline.m4 │ ├── signed.m4 │ ├── size_max.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── ulonglong.m4 │ ├── video.m4 │ ├── visibility.m4 │ ├── wchar_t.m4 │ ├── wint_t.m4 │ └── xsize.m4 ├── plugins │ └── example │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── config.h.cmake │ │ └── exampleplugin.cpp ├── scripts │ ├── Makefile.am │ ├── Portfile-devel.tmpl │ ├── Portfile.tmpl │ ├── builder-mingw.mk │ └── mk-ca-bundle.pl ├── share │ ├── .gitignore │ ├── C │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── linphone.1 │ │ ├── linphonec.1 │ │ ├── linphonecsh.1 │ │ ├── manual.lyx │ │ ├── manual.sgml │ │ └── sipomatic.1 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── Makefile.inc │ ├── audio-assistant.desktop.in │ ├── cpim_grammar.belr │ ├── cs │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── linphone.1 │ │ ├── linphonec.1 │ │ └── sipomatic.1 │ ├── dont_wait_too_long.mkv │ ├── fr │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── manual.lyx │ │ └── manual.sgml │ ├── hello16000.wav │ ├── hello8000.wav │ ├── ics_grammar.belr │ ├── identity_grammar.belr │ ├── incoming_chat.wav │ ├── it │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── manual.lyx │ │ └── manual.sgml │ ├── ja │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── manual.lyx │ │ └── manual.sgml │ ├── linphone.appdata.xml │ ├── linphone.desktop.in │ ├── linphone.pc.in │ ├── mwi_grammar.belr │ ├── ringback.wav │ ├── rings │ │ ├── CMakeLists.txt │ │ ├── four_hands_together.mkv │ │ ├── house_keeping.mkv │ │ ├── its_a_game.mkv │ │ ├── leaving_dreams.mkv │ │ ├── notes_of_the_optimistic.mkv │ │ ├── oldphone-mono.wav │ │ └── soft_as_snow.mkv │ ├── rootca.pem │ ├── silence.mkv │ ├── toy-mono.wav │ └── xml │ │ ├── Makefile.am │ │ ├── imdn.xsd │ │ ├── lpconfig.xsd │ │ └── pidfonline.xsd ├── src │ ├── CMakeLists.txt │ ├── account-manager-services │ │ ├── account-manager-services-request.cpp │ │ ├── account-manager-services-request.h │ │ ├── account-manager-services.cpp │ │ └── account-manager-services.h │ ├── account │ │ ├── account-device.cpp │ │ ├── account-device.h │ │ ├── account-params.cpp │ │ ├── account-params.h │ │ ├── account.cpp │ │ ├── account.h │ │ └── mwi │ │ │ ├── message-waiting-indication-summary.cpp │ │ │ ├── message-waiting-indication-summary.h │ │ │ ├── message-waiting-indication.cpp │ │ │ ├── message-waiting-indication.h │ │ │ └── parser │ │ │ ├── mwi-parser.cpp │ │ │ ├── mwi-parser.h │ │ │ └── mwi-rules │ ├── account_creator │ │ ├── connector_flexiapi.cpp │ │ ├── connector_xmlrpc.cpp │ │ ├── flexi-api-client.cpp │ │ ├── main.cpp │ │ ├── private.h │ │ ├── service.cpp │ │ └── utils.cpp │ ├── address │ │ ├── address-parser.cpp │ │ ├── address-parser.h │ │ ├── address.cpp │ │ └── address.h │ ├── alert │ │ ├── alert.cpp │ │ └── alert.h │ ├── auth-info │ │ ├── auth-info.cpp │ │ ├── auth-info.h │ │ ├── auth-stack.cpp │ │ ├── auth-stack.h │ │ ├── bearer-token.cpp │ │ └── bearer-token.h │ ├── buffer │ │ ├── buffer.cpp │ │ └── buffer.h │ ├── c-wrapper │ │ ├── api │ │ │ ├── c-account-cbs.cpp │ │ │ ├── c-account-device.cpp │ │ │ ├── c-account-manager-services-request-cbs.cpp │ │ │ ├── c-account-manager-services-request.cpp │ │ │ ├── c-account-manager-services.cpp │ │ │ ├── c-account-params.cpp │ │ │ ├── c-account.cpp │ │ │ ├── c-address.cpp │ │ │ ├── c-alert-cbs.cpp │ │ │ ├── c-alert.cpp │ │ │ ├── c-audio-device.cpp │ │ │ ├── c-auth-info.cpp │ │ │ ├── c-bearer-token.cpp │ │ │ ├── c-buffer.cpp │ │ │ ├── c-call-cbs.cpp │ │ │ ├── c-call-log.cpp │ │ │ ├── c-call-params.cpp │ │ │ ├── c-call-stats.cpp │ │ │ ├── c-call.cpp │ │ │ ├── c-carddav-params.cpp │ │ │ ├── c-chat-message-cbs.cpp │ │ │ ├── c-chat-message-reaction.cpp │ │ │ ├── c-chat-message.cpp │ │ │ ├── c-chat-params.cpp │ │ │ ├── c-chat-room-cbs.cpp │ │ │ ├── c-chat-room-params.cpp │ │ │ ├── c-chat-room.cpp │ │ │ ├── c-composing-participant.cpp │ │ │ ├── c-conference-cbs.cpp │ │ │ ├── c-conference-info.cpp │ │ │ ├── c-conference-params.cpp │ │ │ ├── c-conference-scheduler.cpp │ │ │ ├── c-conference.cpp │ │ │ ├── c-content.cpp │ │ │ ├── c-core.cpp │ │ │ ├── c-dial-plan.cpp │ │ │ ├── c-dictionary.cpp │ │ │ ├── c-digest-authentication-policy.cpp │ │ │ ├── c-ekt-info.cpp │ │ │ ├── c-event-cbs.cpp │ │ │ ├── c-event-log.cpp │ │ │ ├── c-event.cpp │ │ │ ├── c-factory.cpp │ │ │ ├── c-friend-device.cpp │ │ │ ├── c-friend-list.cpp │ │ │ ├── c-friend-phone-number.cpp │ │ │ ├── c-friend.cpp │ │ │ ├── c-ldap-params.cpp │ │ │ ├── c-ldap.cpp │ │ │ ├── c-magic-search-cbs.cpp │ │ │ ├── c-magic-search.cpp │ │ │ ├── c-message-waiting-indication.cpp │ │ │ ├── c-nat-policy.cpp │ │ │ ├── c-participant-device-cbs.cpp │ │ │ ├── c-participant-device-identity.cpp │ │ │ ├── c-participant-device.cpp │ │ │ ├── c-participant-imdn-state.cpp │ │ │ ├── c-participant-info.cpp │ │ │ ├── c-participant.cpp │ │ │ ├── c-payload-type.cpp │ │ │ ├── c-player.cpp │ │ │ ├── c-presence.cpp │ │ │ ├── c-push-notification-config.cpp │ │ │ ├── c-push-notification-message.cpp │ │ │ ├── c-recorder-params.cpp │ │ │ ├── c-recorder.cpp │ │ │ ├── c-remote-contact-directory.cpp │ │ │ ├── c-search-result.cpp │ │ │ ├── c-signal-information.cpp │ │ │ ├── c-vcard.cpp │ │ │ └── c-video-source-descriptor.cpp │ │ ├── c-wrapper.cpp │ │ ├── c-wrapper.h │ │ ├── internal │ │ │ ├── c-sal.cpp │ │ │ ├── c-sal.h │ │ │ ├── c-tools.cpp │ │ │ └── c-tools.h │ │ └── list-holder.h │ ├── call │ │ ├── audio-device │ │ │ ├── audio-device.cpp │ │ │ └── audio-device.h │ │ ├── call-log.cpp │ │ ├── call-log.h │ │ ├── call-stats.cpp │ │ ├── call-stats.h │ │ ├── call.cpp │ │ ├── call.h │ │ ├── encryption-status.cpp │ │ ├── encryption-status.h │ │ └── video-source │ │ │ ├── video-source-descriptor.cpp │ │ │ └── video-source-descriptor.h │ ├── chat │ │ ├── chat-message │ │ │ ├── chat-message-listener.h │ │ │ ├── chat-message-p.h │ │ │ ├── chat-message-reaction.cpp │ │ │ ├── chat-message-reaction.h │ │ │ ├── chat-message.cpp │ │ │ ├── chat-message.h │ │ │ ├── imdn-message-p.h │ │ │ ├── imdn-message.cpp │ │ │ ├── imdn-message.h │ │ │ ├── is-composing-message.cpp │ │ │ ├── is-composing-message.h │ │ │ ├── notification-message-p.h │ │ │ ├── notification-message.cpp │ │ │ └── notification-message.h │ │ ├── chat-room │ │ │ ├── abstract-chat-room.cpp │ │ │ ├── abstract-chat-room.h │ │ │ ├── basic-chat-room.cpp │ │ │ ├── basic-chat-room.h │ │ │ ├── chat-params.cpp │ │ │ ├── chat-params.h │ │ │ ├── chat-room-cbs.h │ │ │ ├── chat-room.cpp │ │ │ ├── chat-room.h │ │ │ ├── client-chat-room.cpp │ │ │ ├── client-chat-room.h │ │ │ ├── composing-participant.cpp │ │ │ ├── composing-participant.h │ │ │ ├── server-chat-room.cpp │ │ │ └── server-chat-room.h │ │ ├── cpim │ │ │ ├── cpim.h │ │ │ ├── header │ │ │ │ ├── cpim-core-headers.cpp │ │ │ │ ├── cpim-core-headers.h │ │ │ │ ├── cpim-generic-header.cpp │ │ │ │ ├── cpim-generic-header.h │ │ │ │ ├── cpim-header-p.h │ │ │ │ ├── cpim-header.cpp │ │ │ │ └── cpim-header.h │ │ │ ├── message │ │ │ │ ├── cpim-message.cpp │ │ │ │ └── cpim-message.h │ │ │ └── parser │ │ │ │ ├── cpim-parser.cpp │ │ │ │ ├── cpim-parser.h │ │ │ │ └── cpim-rules │ │ ├── encryption │ │ │ ├── encryption-engine.cpp │ │ │ ├── encryption-engine.h │ │ │ ├── legacy-encryption-engine.cpp │ │ │ ├── legacy-encryption-engine.h │ │ │ ├── lime-x3dh-encryption-engine.cpp │ │ │ ├── lime-x3dh-encryption-engine.h │ │ │ ├── lime-x3dh-server-engine.cpp │ │ │ └── lime-x3dh-server-engine.h │ │ ├── ics │ │ │ ├── ics.cpp │ │ │ ├── ics.h │ │ │ └── parser │ │ │ │ ├── ics-parser.cpp │ │ │ │ ├── ics-parser.h │ │ │ │ └── ics-rules │ │ ├── modifier │ │ │ ├── chat-message-modifier.h │ │ │ ├── cpim-chat-message-modifier.cpp │ │ │ ├── cpim-chat-message-modifier.h │ │ │ ├── encryption-chat-message-modifier.cpp │ │ │ ├── encryption-chat-message-modifier.h │ │ │ ├── file-transfer-chat-message-modifier.cpp │ │ │ ├── file-transfer-chat-message-modifier.h │ │ │ ├── multipart-chat-message-modifier.cpp │ │ │ └── multipart-chat-message-modifier.h │ │ └── notification │ │ │ ├── imdn.cpp │ │ │ ├── imdn.h │ │ │ ├── is-composing-listener.h │ │ │ ├── is-composing.cpp │ │ │ └── is-composing.h │ ├── conference │ │ ├── ccmp-conference-scheduler.cpp │ │ ├── ccmp-conference-scheduler.h │ │ ├── client-conference.cpp │ │ ├── client-conference.h │ │ ├── conference-cbs.h │ │ ├── conference-context.cpp │ │ ├── conference-context.h │ │ ├── conference-enums.cpp │ │ ├── conference-enums.h │ │ ├── conference-id-params.cpp │ │ ├── conference-id-params.h │ │ ├── conference-id.cpp │ │ ├── conference-id.h │ │ ├── conference-info.cpp │ │ ├── conference-info.h │ │ ├── conference-interface.cpp │ │ ├── conference-interface.h │ │ ├── conference-listener.h │ │ ├── conference-params-interface.cpp │ │ ├── conference-params-interface.h │ │ ├── conference-params.cpp │ │ ├── conference-params.h │ │ ├── conference-scheduler.cpp │ │ ├── conference-scheduler.h │ │ ├── conference.cpp │ │ ├── conference.h │ │ ├── db-conference-scheduler.cpp │ │ ├── db-conference-scheduler.h │ │ ├── encryption │ │ │ ├── client-ekt-manager.cpp │ │ │ ├── client-ekt-manager.h │ │ │ ├── ekt-info.cpp │ │ │ └── ekt-info.h │ │ ├── handlers │ │ │ ├── client-conference-event-handler-base.cpp │ │ │ ├── client-conference-event-handler-base.h │ │ │ ├── client-conference-event-handler.cpp │ │ │ ├── client-conference-event-handler.h │ │ │ ├── client-conference-list-event-handler.cpp │ │ │ ├── client-conference-list-event-handler.h │ │ │ ├── server-conference-event-handler.cpp │ │ │ ├── server-conference-event-handler.h │ │ │ ├── server-conference-list-event-handler.cpp │ │ │ └── server-conference-list-event-handler.h │ │ ├── notify-conference-listener.cpp │ │ ├── notify-conference-listener.h │ │ ├── params │ │ │ ├── call-session-params-p.h │ │ │ ├── call-session-params.cpp │ │ │ ├── call-session-params.h │ │ │ ├── media-session-params-p.h │ │ │ ├── media-session-params.cpp │ │ │ └── media-session-params.h │ │ ├── participant-device-identity.cpp │ │ ├── participant-device-identity.h │ │ ├── participant-device.cpp │ │ ├── participant-device.h │ │ ├── participant-imdn-state-p.h │ │ ├── participant-imdn-state.cpp │ │ ├── participant-imdn-state.h │ │ ├── participant-info.cpp │ │ ├── participant-info.h │ │ ├── participant.cpp │ │ ├── participant.h │ │ ├── server-conference.cpp │ │ ├── server-conference.h │ │ ├── session │ │ │ ├── audio-mixer.cpp │ │ │ ├── audio-stream.cpp │ │ │ ├── call-session-listener.h │ │ │ ├── call-session-p.h │ │ │ ├── call-session.cpp │ │ │ ├── call-session.h │ │ │ ├── media-description-renderer.cpp │ │ │ ├── media-description-renderer.h │ │ │ ├── media-session-p.h │ │ │ ├── media-session.cpp │ │ │ ├── media-session.h │ │ │ ├── mixer-session.cpp │ │ │ ├── mixers.h │ │ │ ├── ms2-stream.cpp │ │ │ ├── ms2-streams.h │ │ │ ├── port-config.h │ │ │ ├── rtt-stream.cpp │ │ │ ├── stream.cpp │ │ │ ├── streams-group.cpp │ │ │ ├── streams.h │ │ │ ├── tone-manager.cpp │ │ │ ├── tone-manager.h │ │ │ ├── video-mixer.cpp │ │ │ └── video-stream.cpp │ │ ├── sip-conference-scheduler.cpp │ │ └── sip-conference-scheduler.h │ ├── containers │ │ └── lru-cache.h │ ├── content │ │ ├── content-disposition.cpp │ │ ├── content-disposition.h │ │ ├── content-manager.cpp │ │ ├── content-manager.h │ │ ├── content-type.cpp │ │ ├── content-type.h │ │ ├── content.cpp │ │ ├── content.h │ │ ├── file-content.cpp │ │ ├── file-content.h │ │ ├── file-transfer-content.cpp │ │ ├── file-transfer-content.h │ │ └── header │ │ │ ├── header-p.h │ │ │ ├── header-param.cpp │ │ │ ├── header-param.h │ │ │ ├── header.cpp │ │ │ └── header.h │ ├── core │ │ ├── app │ │ │ ├── ios-app-delegate.h │ │ │ └── ios-app-delegate.mm │ │ ├── core-accessor.cpp │ │ ├── core-accessor.h │ │ ├── core-call.cpp │ │ ├── core-chat-room.cpp │ │ ├── core-listener.h │ │ ├── core-p.h │ │ ├── core.cpp │ │ ├── core.h │ │ ├── paths │ │ │ ├── paths-android.cpp │ │ │ ├── paths-android.h │ │ │ ├── paths-apple.h │ │ │ ├── paths-apple.mm │ │ │ ├── paths-linux.cpp │ │ │ ├── paths-linux.h │ │ │ ├── paths-windows.cpp │ │ │ ├── paths-windows.h │ │ │ ├── paths.cpp │ │ │ └── paths.h │ │ ├── platform-helpers │ │ │ ├── android-platform-helpers.cpp │ │ │ ├── ios-platform-helpers.mm │ │ │ ├── java-platform-helpers.cpp │ │ │ ├── mac-platform-helpers.h │ │ │ ├── mac-platform-helpers.mm │ │ │ ├── platform-helpers.cpp │ │ │ └── platform-helpers.h │ │ └── shared-core-helpers │ │ │ ├── ios-shared-core-helpers.mm │ │ │ ├── shared-core-helpers.cpp │ │ │ └── shared-core-helpers.h │ ├── db │ │ ├── abstract │ │ │ ├── abstract-db-p.h │ │ │ ├── abstract-db.cpp │ │ │ └── abstract-db.h │ │ ├── internal │ │ │ ├── db-transaction.h │ │ │ ├── statements.cpp │ │ │ └── statements.h │ │ ├── main-db-event-key.cpp │ │ ├── main-db-event-key.h │ │ ├── main-db-key-p.h │ │ ├── main-db-key.cpp │ │ ├── main-db-key.h │ │ ├── main-db-p.h │ │ ├── main-db.cpp │ │ ├── main-db.h │ │ └── session │ │ │ ├── db-session.cpp │ │ │ └── db-session.h │ ├── dial-plan │ │ ├── dial-plan.cpp │ │ └── dial-plan.h │ ├── dictionary │ │ ├── dictionary.cpp │ │ └── dictionary.h │ ├── enums.h │ ├── event-log │ │ ├── conference │ │ │ ├── conference-available-media-event.cpp │ │ │ ├── conference-available-media-event.h │ │ │ ├── conference-call-event.cpp │ │ │ ├── conference-call-event.h │ │ │ ├── conference-chat-message-event.cpp │ │ │ ├── conference-chat-message-event.h │ │ │ ├── conference-ephemeral-message-event.cpp │ │ │ ├── conference-ephemeral-message-event.h │ │ │ ├── conference-event-p.h │ │ │ ├── conference-event.cpp │ │ │ ├── conference-event.h │ │ │ ├── conference-notified-event-p.h │ │ │ ├── conference-notified-event.cpp │ │ │ ├── conference-notified-event.h │ │ │ ├── conference-participant-device-event.cpp │ │ │ ├── conference-participant-device-event.h │ │ │ ├── conference-participant-event-p.h │ │ │ ├── conference-participant-event.cpp │ │ │ ├── conference-participant-event.h │ │ │ ├── conference-security-event.cpp │ │ │ ├── conference-security-event.h │ │ │ ├── conference-subject-event.cpp │ │ │ └── conference-subject-event.h │ │ ├── event-log-p.h │ │ ├── event-log.cpp │ │ ├── event-log.h │ │ └── events.h │ ├── event │ │ ├── event-publish.cpp │ │ ├── event-publish.h │ │ ├── event-subscribe.cpp │ │ ├── event-subscribe.h │ │ ├── event.cpp │ │ └── event.h │ ├── factory │ │ ├── factory.cpp │ │ └── factory.h │ ├── friend │ │ ├── friend-device.cpp │ │ ├── friend-device.h │ │ ├── friend-list.cpp │ │ ├── friend-list.h │ │ ├── friend-phone-number.cpp │ │ ├── friend-phone-number.h │ │ ├── friend.cpp │ │ └── friend.h │ ├── hacks │ │ ├── hacks.cpp │ │ └── hacks.h │ ├── http │ │ ├── http-client.cpp │ │ └── http-client.h │ ├── ldap │ │ ├── ldap-config-keys.cpp │ │ ├── ldap-config-keys.h │ │ ├── ldap-contact-fields.cpp │ │ ├── ldap-contact-fields.h │ │ ├── ldap-contact-provider.cpp │ │ ├── ldap-contact-provider.h │ │ ├── ldap-contact-search.cpp │ │ ├── ldap-contact-search.h │ │ ├── ldap-magic-search-plugin.cpp │ │ ├── ldap-magic-search-plugin.h │ │ ├── ldap-params.cpp │ │ ├── ldap-params.h │ │ ├── ldap.cpp │ │ └── ldap.h │ ├── logger │ │ ├── logger.cpp │ │ └── logger.h │ ├── nat │ │ ├── ice-service.cpp │ │ ├── ice-service.h │ │ ├── nat-policy.cpp │ │ ├── nat-policy.h │ │ ├── stun-client.cpp │ │ └── stun-client.h │ ├── object │ │ ├── base-object-p.h │ │ ├── base-object.cpp │ │ ├── base-object.h │ │ ├── clonable-object-p.h │ │ ├── clonable-object.cpp │ │ ├── clonable-object.h │ │ ├── clonable-shared-pointer.h │ │ ├── object-head-p.h │ │ ├── object-head.h │ │ ├── object-p.h │ │ ├── object.cpp │ │ ├── object.h │ │ ├── property-container.cpp │ │ ├── property-container.h │ │ └── singleton.h │ ├── payload-type │ │ ├── payload-type.cpp │ │ └── payload-type.h │ ├── player │ │ ├── call-player.cpp │ │ ├── call-player.h │ │ ├── local-player.cpp │ │ ├── local-player.h │ │ ├── player.cpp │ │ └── player.h │ ├── presence │ │ ├── presence-activity.cpp │ │ ├── presence-activity.h │ │ ├── presence-model.cpp │ │ ├── presence-model.h │ │ ├── presence-note.cpp │ │ ├── presence-note.h │ │ ├── presence-person.cpp │ │ ├── presence-person.h │ │ ├── presence-service.cpp │ │ └── presence-service.h │ ├── push-notification-message │ │ ├── push-notification-message.cpp │ │ └── push-notification-message.h │ ├── push-notification │ │ ├── push-notification-config.cpp │ │ └── push-notification-config.h │ ├── recorder │ │ ├── recorder-params.cpp │ │ ├── recorder-params.h │ │ ├── recorder.cpp │ │ └── recorder.h │ ├── sal │ │ ├── call-op.cpp │ │ ├── call-op.h │ │ ├── event-op.cpp │ │ ├── event-op.h │ │ ├── message-op-interface.h │ │ ├── message-op.cpp │ │ ├── message-op.h │ │ ├── offeranswer.cpp │ │ ├── offeranswer.h │ │ ├── op.cpp │ │ ├── op.h │ │ ├── params │ │ │ ├── sal_media_description_params.cpp │ │ │ └── sal_media_description_params.h │ │ ├── potential_config_graph.cpp │ │ ├── potential_config_graph.h │ │ ├── presence-op.cpp │ │ ├── presence-op.h │ │ ├── refer-op.cpp │ │ ├── refer-op.h │ │ ├── register-op.cpp │ │ ├── register-op.h │ │ ├── sal.cpp │ │ ├── sal.h │ │ ├── sal_media_description.cpp │ │ ├── sal_media_description.h │ │ ├── sal_stream_bundle.cpp │ │ ├── sal_stream_bundle.h │ │ ├── sal_stream_configuration.cpp │ │ ├── sal_stream_configuration.h │ │ ├── sal_stream_description.cpp │ │ └── sal_stream_description.h │ ├── search │ │ ├── magic-search-plugin.h │ │ ├── magic-search.cpp │ │ ├── magic-search.h │ │ ├── remote-contact-directory.cpp │ │ ├── remote-contact-directory.h │ │ ├── search-async-data.cpp │ │ ├── search-async-data.h │ │ ├── search-request.cpp │ │ ├── search-request.h │ │ ├── search-result.cpp │ │ └── search-result.h │ ├── signal-information │ │ ├── signal-information.cpp │ │ └── signal-information.h │ ├── sip-tools │ │ └── sip-headers.h │ ├── utils │ │ ├── background-task.cpp │ │ ├── background-task.h │ │ ├── custom-params.cpp │ │ ├── custom-params.h │ │ ├── enum.c │ │ ├── enum.h │ │ ├── fs.cpp │ │ ├── fsm-integrity-checker.h │ │ ├── general-internal.h │ │ ├── general.cpp │ │ ├── if-addrs.cpp │ │ ├── if-addrs.h │ │ ├── main-loop-integration-macos.m │ │ ├── payload-type-handler.cpp │ │ ├── payload-type-handler.h │ │ ├── time-utils.h │ │ ├── time-utils.mm │ │ ├── utils.cpp │ │ ├── version.cpp │ │ ├── xml-utils.cpp │ │ └── xml-utils.h │ ├── variant │ │ ├── variant-impl.h │ │ └── variant.h │ ├── vcard │ │ ├── carddav-context.cpp │ │ ├── carddav-context.h │ │ ├── carddav-magic-search-plugin.cpp │ │ ├── carddav-magic-search-plugin.h │ │ ├── carddav-params.cpp │ │ ├── carddav-params.h │ │ ├── carddav-query.cpp │ │ ├── carddav-query.h │ │ ├── carddav-response.h │ │ ├── vcard-context.cpp │ │ ├── vcard-context.h │ │ ├── vcard.cpp │ │ └── vcard.h │ └── xml │ │ ├── conference-info-linphone-extension.cpp │ │ ├── conference-info-linphone-extension.h │ │ ├── conference-info-linphone-extension.xsd │ │ ├── conference-info.cpp │ │ ├── conference-info.h │ │ ├── conference-info.xsd │ │ ├── ekt-linphone-extension.cpp │ │ ├── ekt-linphone-extension.h │ │ ├── ekt-linphone-extension.xsd │ │ ├── epilogue.txt │ │ ├── generate.py │ │ ├── imdn.cpp │ │ ├── imdn.h │ │ ├── imdn.xsd │ │ ├── is-composing.cpp │ │ ├── is-composing.h │ │ ├── is-composing.xsd │ │ ├── linphone-copyright.txt │ │ ├── linphone-imdn.cpp │ │ ├── linphone-imdn.h │ │ ├── linphone-imdn.xsd │ │ ├── patch-ops.cpp │ │ ├── patch-ops.h │ │ ├── patch-ops.xsd │ │ ├── prologue.txt │ │ ├── resource-lists.cpp │ │ ├── resource-lists.h │ │ ├── resource-lists.xsd │ │ ├── rlmi.cpp │ │ ├── rlmi.h │ │ ├── rlmi.xsd │ │ ├── xcon-ccmp.cpp │ │ ├── xcon-ccmp.h │ │ ├── xcon-ccmp.xsd │ │ ├── xcon-conference-info.cpp │ │ ├── xcon-conference-info.h │ │ ├── xcon-conference-info.xsd │ │ ├── xml-parsing-context.cpp │ │ ├── xml-parsing-context.h │ │ ├── xml.cpp │ │ ├── xml.h │ │ └── xml.xsd ├── stamp-h.in ├── tester │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── README │ ├── account_creator_flexiapi_tester.cpp │ ├── account_creator_local_tester.c │ ├── account_creator_xmlrpc_tester.c │ ├── account_manager_services_tester.c │ ├── account_tester.c │ ├── accountmanager.c │ ├── alerts_tester.cpp │ ├── audio-quality-tester.cpp │ ├── audio_bypass_tester.c │ ├── audio_bypass_wav_header.h │ ├── audio_quality_tester.h │ ├── audio_routes_tester.c │ ├── audio_video_conference_tester.c │ ├── bearer-auth.cpp │ ├── call-twisted-cases.cpp │ ├── call_flexfec_tester.cpp │ ├── call_ice_tester.cpp │ ├── call_multi_tester.c │ ├── call_multicast_tester.c │ ├── call_push_incoming_tester.c │ ├── call_race_conditions.c │ ├── call_recovery_tester.c │ ├── call_secure_tester.cpp │ ├── call_single_tester.c │ ├── call_video_tester.cpp │ ├── call_with_rtp_bundle_tester.c │ ├── capability_negotiation_tester.cpp │ ├── capability_negotiation_tester.h │ ├── certificates │ │ ├── altname │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ └── openssl-altname.cnf │ │ ├── client │ │ │ ├── cert.pem │ │ │ ├── cert2-signed-by-other-ca.pem │ │ │ ├── cert2.pem │ │ │ ├── cert3.pem │ │ │ ├── key.pem │ │ │ ├── key2-signed-by-other-ca.pem │ │ │ ├── key2.pem │ │ │ ├── key3.pem │ │ │ ├── openssl-altname.cnf │ │ │ ├── openssl-client.cnf │ │ │ ├── user1_cert.pem │ │ │ ├── user1_key.pem │ │ │ ├── user1_multiple_aliases_cert.pem │ │ │ ├── user1_multiple_aliases_key.pem │ │ │ ├── user2_CN_cert.pem │ │ │ ├── user2_CN_key.pem │ │ │ ├── user2_cert.pem │ │ │ ├── user2_key.pem │ │ │ ├── user2_revoked_cert.pem │ │ │ └── user2_revoked_key.pem │ │ └── cn │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ ├── openssl-altname.cnf │ │ │ └── openssl-cn.cnf │ ├── clonable-object-tester.cpp │ ├── complex_sip_case_tester.c │ ├── conference-event-tester.cpp │ ├── conference-info-tester.cpp │ ├── contents-tester.cpp │ ├── cpim-tester.cpp │ ├── db │ │ ├── call-history.db │ │ ├── chatroom_conference.db │ │ ├── chatroom_duplicates.db │ │ ├── chatrooms.db │ │ ├── friends.db │ │ ├── linphone.db │ │ ├── messages.db │ │ └── server_chatroom_duplicates.db │ ├── dtls_srtp_capability_negotiation_tester.cpp │ ├── dtmf_tester.c │ ├── eventapi_tester.c │ ├── external_domain_tester.c │ ├── flexiapiclient-tester.cpp │ ├── flexisip │ │ ├── README │ │ ├── flexisip-generic.conf │ │ ├── flexisip.conf │ │ ├── jwks │ │ │ └── key.jwk │ │ └── userdb.conf │ ├── flexisip_tester.c │ ├── friend_tester.c │ ├── group_chat_benchmark.c │ ├── group_chat_ephemeral_tester.c │ ├── group_chat_secure_multialgo_tester.cpp │ ├── group_chat_secure_tester.c │ ├── group_chat_tester.c │ ├── http-client-tester.cpp │ ├── http-server-utils.cpp │ ├── http-server-utils.h │ ├── ice_capability_negotiation_tester.cpp │ ├── ics-tester.cpp │ ├── images │ │ ├── bc.jpeg │ │ ├── linphone.svg │ │ ├── linphonesiteqr.jpg │ │ ├── linphonesiteqr_captured.jpg │ │ ├── nowebcamCIF.jpg │ │ ├── nowebcamVGA.jpg │ │ └── qrcodesite_captured.jpg │ ├── liblinphone_tester++.h │ ├── liblinphone_tester.c │ ├── liblinphone_tester.h │ ├── liblinphone_tester_ios.m │ ├── liblinphone_tester_windows.cpp │ ├── liblinphone_tester_windows.h │ ├── lime-db-tester.cpp │ ├── lime-user-authentication-tester.cpp │ ├── local-chat-imdn-tester.cpp │ ├── local-chat-tester-functions.cpp │ ├── local-chat-tester.cpp │ ├── local-conference-edition-tester.cpp │ ├── local-conference-tester-functions.cpp │ ├── local-conference-tester-functions.h │ ├── local-encrypted-conference-tester.cpp │ ├── local-ephemeral-chat-tester.cpp │ ├── local-ice-conference-tester.cpp │ ├── local-impromptu-conference-tester.cpp │ ├── local-scheduled-conference-tester.cpp │ ├── local-secure-chat-tester.cpp │ ├── local-transferred-conference-tester.cpp │ ├── local_tester_hosts │ ├── log_collection_tester.c │ ├── log_file_tester.c │ ├── main-db-tester.cpp │ ├── message_tester.c │ ├── multipart-tester.cpp │ ├── mwi-tester.cpp │ ├── offeranswer_tester.cpp │ ├── player_tester.c │ ├── potential_configuration_tester.cpp │ ├── presence_server_tester.c │ ├── presence_tester.c │ ├── property-container-tester.cpp │ ├── proxy_config_tester.c │ ├── quality_reporting_tester.c │ ├── rcfiles │ │ ├── account_creator_flexiapi_rc │ │ ├── account_creator_rc │ │ ├── account_manager_services_rc │ │ ├── arthur_rc │ │ ├── assistant_create.rc │ │ ├── berthe_rc │ │ ├── carddav_rc │ │ ├── chloe_dual_proxy_rc │ │ ├── chloe_rc │ │ ├── claire_rc │ │ ├── claire_sips_rc │ │ ├── conference_focus_rc │ │ ├── empty_rc │ │ ├── empty_with_some_db_rc │ │ ├── friends_rc │ │ ├── groupchat_rc │ │ ├── invalid_friends_rc │ │ ├── invalid_friends_xml │ │ ├── laure_call_logs_rc │ │ ├── laure_rc_udp │ │ ├── laure_tcp_rc │ │ ├── lise_rc │ │ ├── marie2_rc │ │ ├── marie_bodyless_rc │ │ ├── marie_carddav_rc │ │ ├── marie_dependent_proxy_rc │ │ ├── marie_digest_auth_xml │ │ ├── marie_dtls_srtp_immediate_rc │ │ ├── marie_dual_proxy_2_rc │ │ ├── marie_dual_proxy_rc │ │ ├── marie_dual_proxy_udp_rc │ │ ├── marie_early_rc │ │ ├── marie_h264_rc │ │ ├── marie_nat64_rc │ │ ├── marie_os_defined_rtp_ports_rc │ │ ├── marie_quality_reporting_rc │ │ ├── marie_rc │ │ ├── marie_rc_call_logs_migration │ │ ├── marie_rc_rtcp_xr │ │ ├── marie_rc_without_media │ │ ├── marie_remote_404_rc │ │ ├── marie_remote_default_values_rc │ │ ├── marie_remote_https_rc │ │ ├── marie_remote_invalid_rc │ │ ├── marie_remote_invalid_uri_rc │ │ ├── marie_remote_localfile2_rc │ │ ├── marie_remote_localfile_android_rc │ │ ├── marie_remote_localfile_rc │ │ ├── marie_remote_localfile_win10_rc │ │ ├── marie_remote_rc │ │ ├── marie_rtp_port_range_rc │ │ ├── marie_session_timers_rc │ │ ├── marie_sips_rc │ │ ├── marie_tls_rc │ │ ├── marie_transient_remote_rc │ │ ├── marie_v4proxy_rc │ │ ├── marie_well_known_port_rc │ │ ├── marie_xml │ │ ├── michelle_rc │ │ ├── michelle_rc_udp │ │ ├── multi_account2_rc │ │ ├── multi_account_rc │ │ ├── pauline_alt_rc │ │ ├── pauline_as_friend_rc │ │ ├── pauline_dtls_srtp_immediate_rc │ │ ├── pauline_external_rc │ │ ├── pauline_h264_rc │ │ ├── pauline_nat64_rc │ │ ├── pauline_os_defined_rtp_ports_rc │ │ ├── pauline_push_enabled_rc │ │ ├── pauline_rc │ │ ├── pauline_rc_rtcp_xr │ │ ├── pauline_rtp_port_range_rc │ │ ├── pauline_sips_rc │ │ ├── pauline_tcp_rc │ │ ├── pauline_tls_client_rc │ │ ├── pauline_tunnel_verify_server_certificate_rc │ │ ├── pauline_v4proxy_rc │ │ ├── pauline_well_known_port_rc │ │ ├── pauline_wild_rc │ │ ├── remote_contact_directory_migration.rc │ │ ├── remote_zero_length_params_rc │ │ ├── stun_rc │ │ └── zero_length_params_rc │ ├── recorder_tester.c │ ├── refer-tester.cpp │ ├── register_tester.c │ ├── remote-provisioning-tester.cpp │ ├── remote_provisioning │ │ └── marie_xml │ ├── session_timers_tester.c │ ├── setup_tester.c │ ├── shared_core_tester.c │ ├── shared_tester_functions.cpp │ ├── shared_tester_functions.h │ ├── sipp │ │ ├── call_invite_200ok_without_contact_header.xml │ │ ├── call_prack_retransmited_180.xml │ │ ├── call_prack_with_auth.xml │ │ ├── call_with_audio_mline_before_video_in_sdp.xml │ │ ├── call_with_multiple_audio_mline_in_sdp.xml │ │ ├── call_with_multiple_video_mline_in_sdp.xml │ │ ├── call_with_transfer_incoming_ringing_call.xml │ │ ├── call_with_video_mline_before_audio_in_sdp.xml │ │ ├── double_publish_with_error.xml │ │ ├── simple_publish.xml │ │ ├── sip_update_within_icoming_reinvite_with_no_sdp.xml │ │ └── subscribe_on_wrong_dialog.xml │ ├── sounds │ │ ├── ahbahouaismaisbon.wav │ │ ├── continuous_48000_stereo.wav │ │ ├── hello44100.wav │ │ ├── hello8000.mkv │ │ ├── hello8000.wav │ │ ├── hello8000_mkv_ref.wav │ │ ├── oldphone.wav │ │ ├── recording.mkv │ │ ├── recording.smff │ │ ├── ringback.wav │ │ ├── silence8000.wav │ │ ├── sintel_trailer_opus_h264.mkv │ │ ├── sintel_trailer_opus_vp8.mkv │ │ ├── sintel_trailer_pcmu_h264.mkv │ │ ├── special-&_characters.wav │ │ └── vrroom.wav │ ├── srtp_capability_negotiation_tester.cpp │ ├── stun_tester.c │ ├── tester.c │ ├── tester.cpp │ ├── tester_hosts │ ├── tools │ │ ├── private-access.h │ │ └── tester.h │ ├── tunnel_tester.c │ ├── turn-server-tester.cpp │ ├── utils-tester.cpp │ ├── vcard_tester.cpp │ ├── vcards │ │ ├── thousand_vcards.vcf │ │ └── vcards.vcf │ ├── vfs-encryption-tester.cpp │ ├── video_quality_tester.c │ ├── video_tester.c │ ├── wrapper_cpp_tester.cpp │ └── zrtp_capability_negotiation_tester.cpp ├── tools │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── abstractapi.py │ ├── auto_answer.c │ ├── genapixml.py │ ├── linphone-sample.py │ ├── lpc2xml_jni.cc │ ├── lpc2xml_test.c │ ├── lpconfig_items.py │ ├── lpsendmsg.c │ ├── metadoc.py │ ├── metaname.py │ ├── my_jni.h │ ├── python │ │ ├── .gitignore │ │ ├── apixml2python.py │ │ ├── apixml2python │ │ │ ├── __init__.py │ │ │ ├── handwritten_declarations.mustache │ │ │ ├── handwritten_definitions.mustache │ │ │ ├── linphone.py │ │ │ ├── linphone_module.mustache │ │ │ └── linphone_testing_module.mustache │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── generate_enums.py │ │ │ ├── make.bat │ │ │ └── source │ │ │ │ ├── _static │ │ │ │ └── pylinphone.js │ │ │ │ ├── api_reference.rst │ │ │ │ ├── conf.py │ │ │ │ ├── getting_started.rst │ │ │ │ ├── index.rst │ │ │ │ └── pyqt_linphone_example.py │ │ ├── linphone-daemon.py │ │ └── unittests │ │ │ ├── README.txt │ │ │ ├── linphonetester.py │ │ │ ├── test_call.py │ │ │ ├── test_message.py │ │ │ ├── test_presence.py │ │ │ ├── test_register.py │ │ │ └── test_setup.py │ ├── test_ecc.c │ ├── test_lsd.c │ ├── test_numbers.c │ ├── xml2lpc_jni.cc │ └── xml2lpc_test.c └── wrappers │ ├── cpp │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── LinphoneCxxConfig.cmake.in │ ├── class_header.mustache │ ├── class_impl.mustache │ ├── doxygen.dox.in │ ├── enums_header.mustache │ ├── genwrapper.py │ ├── main_header.mustache │ ├── object.cc │ ├── object.hh │ ├── tools.cc │ └── tools.hh │ ├── csharp │ ├── CMakeLists.txt │ ├── LinphoneWrapper.Tests │ │ ├── GlobalUsings.cs │ │ ├── LinphoneWrapper.Tests.csproj │ │ └── LinphoneWrapper_AddressTester.cs │ ├── docfx_project │ │ ├── api │ │ │ └── index.md │ │ ├── docfx.json │ │ ├── index.md │ │ └── toc.yml │ ├── genwrapper.py │ ├── version.txt.in │ └── wrapper_impl.mustache │ ├── java │ ├── CMakeLists.txt │ ├── WrapperTests │ │ ├── build.gradle │ │ ├── factory_rc_config │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ ├── AddressCreationTestCase.java │ │ │ ├── CoreCreationTestCase.java │ │ │ └── SingleCallTestCase.java │ ├── classes │ │ ├── com │ │ │ └── android │ │ │ │ └── server │ │ │ │ └── os │ │ │ │ └── LinphoneTombstoneProtos.java │ │ └── org │ │ │ └── linphone │ │ │ └── core │ │ │ ├── CoreException.java │ │ │ ├── Utils.java │ │ │ └── tools │ │ │ ├── AndroidPlatformHelper.java │ │ │ ├── Log.java │ │ │ ├── PushNotificationUtils.java │ │ │ ├── audio │ │ │ ├── AudioHelper.java │ │ │ └── BluetoothHelper.java │ │ │ ├── compatibility │ │ │ ├── DeviceUtils.java │ │ │ ├── DeviceUtils23.java │ │ │ ├── DeviceUtils24.java │ │ │ ├── DeviceUtils26.java │ │ │ ├── DeviceUtils28.java │ │ │ ├── DeviceUtils30.java │ │ │ ├── DeviceUtils31.java │ │ │ ├── DeviceUtils33.java │ │ │ └── DeviceUtils34.java │ │ │ ├── firebase │ │ │ ├── FirebaseMessaging.java │ │ │ └── FirebasePushHelper.java │ │ │ ├── java │ │ │ ├── JavaPlatformHelper.java │ │ │ └── LibraryLoader.java │ │ │ ├── network │ │ │ ├── NetworkManager.java │ │ │ ├── NetworkManagerAbove21.java │ │ │ ├── NetworkManagerAbove23.java │ │ │ ├── NetworkManagerAbove24.java │ │ │ ├── NetworkManagerAbove26.java │ │ │ ├── NetworkManagerInterface.java │ │ │ └── NetworkSignalMonitor.java │ │ │ ├── receiver │ │ │ ├── BluetoothReceiver.java │ │ │ ├── DozeReceiver.java │ │ │ ├── HdmiAudioReceiver.java │ │ │ ├── HeadsetReceiver.java │ │ │ ├── InteractivityReceiver.java │ │ │ └── ShutdownReceiver.java │ │ │ └── service │ │ │ ├── ActivityMonitor.java │ │ │ ├── AndroidDispatcher.java │ │ │ ├── CoreService.java │ │ │ ├── FileTransferService.java │ │ │ └── PushService.java │ ├── genwrapper.py │ ├── java_class.mustache │ ├── java_enum.mustache │ ├── java_enum_old.mustache │ ├── java_interface.mustache │ ├── java_interface_stub.mustache │ ├── jni.mustache │ ├── migration.sh │ ├── overview.mustache │ ├── proguard.mustache │ └── tombstone.proto │ ├── python │ ├── CMakeLists.txt │ ├── README.cmake │ ├── genwrapper.py │ ├── pylinphone.mustache │ ├── pylinphone_doc.mustache │ └── wrapper-tests │ │ ├── factory_rc_config │ │ └── test_pylinphone.py │ └── swift │ ├── CMakeLists.txt │ ├── Modules │ ├── module.modulemap │ └── swift-umbrella.h │ ├── genwrapper.py │ ├── make-framework.sh │ └── wrapper_impl.mustache ├── lime ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── Doxyfile.in ├── LICENSE.txt ├── README.md ├── build │ ├── CMakeLists.txt │ ├── android │ │ └── Android.mk │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ └── lime.spec.cmake ├── cmake │ ├── FindPostQuantumCryptoEngine.cmake │ ├── FindSoci.cmake │ └── LimeConfig.cmake.in ├── config.h.cmake ├── docker │ ├── Belledonne.repo │ └── lime-from-src ├── include │ ├── CMakeLists.txt │ └── lime │ │ └── lime.hpp ├── lime.pc.in ├── lime.pdf ├── lime.tex ├── src │ ├── CMakeLists.txt │ ├── lime.cpp │ ├── lime_crypto_primitives.cpp │ ├── lime_crypto_primitives.hpp │ ├── lime_defines.hpp │ ├── lime_double_ratchet.cpp │ ├── lime_double_ratchet.hpp │ ├── lime_double_ratchet_protocol.cpp │ ├── lime_double_ratchet_protocol.hpp │ ├── lime_impl.hpp │ ├── lime_keys.hpp │ ├── lime_lime.hpp │ ├── lime_localStorage.cpp │ ├── lime_localStorage.hpp │ ├── lime_log.cpp │ ├── lime_log.hpp │ ├── lime_manager.cpp │ ├── lime_settings.hpp │ ├── lime_x3dh.cpp │ ├── lime_x3dh.hpp │ ├── lime_x3dh_protocol.cpp │ └── lime_x3dh_protocol.hpp └── tester │ ├── CMakeLists.txt │ ├── KEM_patterns.cpp │ ├── data │ ├── cacert.pem │ ├── dr_basic_X25519.bob.pattern.sqlite3 │ ├── dr_basic_X448.bob.pattern.sqlite3 │ ├── pattern_getSelfIk.C25519.sqlite3 │ ├── pattern_getSelfIk.C448.sqlite3 │ ├── sip5.linphone.org.selfsigned-cert.pem │ └── x3dh-cert.pem │ ├── lime-tester-utils.cpp │ ├── lime-tester-utils.hpp │ ├── lime-tester.cpp │ ├── lime-tester.hpp │ ├── lime_crypto-tester.cpp │ ├── lime_double_ratchet-tester.cpp │ ├── lime_helloworld-tester.cpp │ ├── lime_lime-tester.cpp │ ├── lime_massive_group-tester.cpp │ ├── lime_multialgos-tester.cpp │ ├── lime_multidomains-tester.cpp │ ├── lime_server-tester.cpp │ └── server │ └── nodejs │ ├── .gitignore │ ├── README.md │ ├── curveIds.js │ ├── localServerStart.sh │ ├── multiserver.cfg │ ├── package.json │ ├── x3dh-cert.pem │ ├── x3dh-key.pem │ └── x3dh.js ├── mediastreamer2 ├── .clang-format ├── .cproject ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── .project ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile.am ├── README.md ├── acinclude.m4 ├── autogen.sh ├── build │ ├── .gitignore │ ├── CMakeLists.txt │ ├── android │ │ ├── Android.mk │ │ ├── basedescs.h │ │ └── libmediastreamer2_AndroidConfig.h │ ├── git-pre-commit-hook │ ├── iphone │ │ ├── basedescs.h │ │ └── voipdescs.h │ ├── osx │ │ ├── Info.plist.in │ │ └── msqogl.Info.plist.in │ ├── rpm │ │ └── mediastreamer2.spec.cmake │ └── wp8 │ │ ├── mediastreamer2-tester-native │ │ ├── mediastreamer2-tester-native.cpp │ │ ├── mediastreamer2-tester-native.h │ │ ├── mediastreamer2-tester-native.vcxproj │ │ ├── mediastreamer2-tester-video.cpp │ │ └── mediastreamer2-tester-video.h │ │ ├── mediastreamer2-tester-wp8 │ │ ├── Agents │ │ │ ├── Agents.csproj │ │ │ ├── Mediastreamer2CallInProgressAgent.cs │ │ │ ├── Mediastreamer2ForegroundLifeTimeAgent.cs │ │ │ ├── Mediastreamer2ScheduledAgent.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ ├── Sounds │ │ │ │ ├── arpeggio_8000_mono.wav │ │ │ │ ├── bird_44100_stereo.wav │ │ │ │ ├── chimes_48000_stereo.wav │ │ │ │ ├── laserrocket_16000_mono.wav │ │ │ │ ├── nylon_48000_mono.wav │ │ │ │ ├── owl_44100_mono.wav │ │ │ │ ├── piano_8000_stereo.wav │ │ │ │ └── punch_16000_stereo.wav │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── TestCasePage.xaml │ │ ├── TestCasePage.xaml.cs │ │ ├── TestResultPage.xaml │ │ ├── TestResultPage.xaml.cs │ │ ├── log.html │ │ ├── mediastreamer2-tester-wp8.csproj │ │ └── mediastreamer2-tester-wp8.sln │ │ └── mediastreamer2 │ │ ├── basedescs.h │ │ ├── mediastreamer2.sln │ │ ├── mediastreamer2.vcxproj │ │ ├── version.bat │ │ └── voipdescs.h ├── cmake │ ├── FindAom.cmake │ ├── FindArts.cmake │ ├── FindBCG729.cmake │ ├── FindBCMatroska2.cmake │ ├── FindBV16.cmake │ ├── FindCamApi.cmake │ ├── FindDav1d.cmake │ ├── FindFFMpeg.cmake │ ├── FindGSM.cmake │ ├── FindLibYUV.cmake │ ├── FindOpus.cmake │ ├── FindPCAP.cmake │ ├── FindPortAudio.cmake │ ├── FindPulseAudio.cmake │ ├── FindQSA.cmake │ ├── FindQnxAudioManager.cmake │ ├── FindQtAngle.cmake │ ├── FindRNNoise.cmake │ ├── FindSRTP.cmake │ ├── FindScreen.cmake │ ├── FindSpanDSP.cmake │ ├── FindSpeex.cmake │ ├── FindSpeexDSP.cmake │ ├── FindTheora.cmake │ ├── FindTurboJpeg.cmake │ ├── FindV4L.cmake │ ├── FindVPX.cmake │ ├── FindXfixes.cmake │ ├── FindXinerama.cmake │ ├── FindZXing.cmake │ └── Mediastreamer2Config.cmake.in ├── config.rpath ├── configure.ac ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libmediastreamer-dev.docs │ ├── libmediastreamer-dev.install │ ├── libmediastreamer2.install │ ├── mkdeb.sh │ ├── patches │ │ └── series │ ├── rules │ ├── source │ │ ├── format │ │ └── include-binaries │ └── watch ├── define-filters.awk ├── define-ms_base_filter_descs.awk ├── define-ms_voip_filter_descs.awk ├── extract-filters-names.awk ├── help │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── Makefile.am │ ├── doxygen.dox │ ├── filters.dox │ └── ht0-buildagraph.dox ├── include │ ├── .gitignore │ ├── CMakeLists.txt │ ├── MSVC │ │ ├── inttypes.h │ │ └── stdint.h │ ├── Makefile.am │ ├── OpenGL │ │ ├── EGL │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── GLES3 │ │ │ ├── gl3.h │ │ │ ├── gl31.h │ │ │ ├── gl32.h │ │ │ └── gl3platform.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── LICENSE │ │ ├── README.md │ │ └── angle_windowsstore.h │ └── mediastreamer2 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── allfilters.h │ │ ├── android_utils.h │ │ ├── baudot.h │ │ ├── bitratecontrol.h │ │ ├── bits_rw.h │ │ ├── box-plot.h │ │ ├── devices.h │ │ ├── dsptools.h │ │ ├── dtls_srtp.h │ │ ├── dtmfgen.h │ │ ├── flowcontrol.h │ │ ├── formats.h │ │ ├── ice.h │ │ ├── mediastream.h │ │ ├── ms_srtp.h │ │ ├── msanalysedisplay.h │ │ ├── msasync.h │ │ ├── msaudiomixer.h │ │ ├── mschanadapter.h │ │ ├── mscngdtx.h │ │ ├── mscodecutils.h │ │ ├── mscommon.h │ │ ├── msconference.h │ │ ├── msequalizer.h │ │ ├── mseventqueue.h │ │ ├── msextdisplay.h │ │ ├── msfactory.h │ │ ├── msfileplayer.h │ │ ├── msfilerec.h │ │ ├── msfilter.h │ │ ├── msgenericplc.h │ │ ├── msinterfaces.h │ │ ├── msitc.h │ │ ├── msjava.h │ │ ├── msjpegwriter.h │ │ ├── msmediaplayer.h │ │ ├── msmediarecorder.h │ │ ├── msmire.h │ │ ├── msnoisesuppressor.h │ │ ├── msogl.h │ │ ├── msogl_functions.h │ │ ├── mspacketrouter.h │ │ ├── mspcapfileplayer.h │ │ ├── msqrcodereader.h │ │ ├── msqueue.h │ │ ├── msrtp.h │ │ ├── msrtt4103.h │ │ ├── msscreensharing.h │ │ ├── mssndcard.h │ │ ├── mstee.h │ │ ├── msticker.h │ │ ├── mstonedetector.h │ │ ├── msudp.h │ │ ├── msutils.h │ │ ├── msv4l.h │ │ ├── msvaddtx.h │ │ ├── msvideo.h │ │ ├── msvideoout.h │ │ ├── msvideopresets.h │ │ ├── msvideoqualitycontroller.h │ │ ├── msvolume.h │ │ ├── mswebcam.h │ │ ├── qualityindicator.h │ │ ├── rfc3984.h │ │ ├── stun.h │ │ ├── upnp_igd.h │ │ ├── video-aggregator.h │ │ ├── x11_helper.h │ │ └── zrtp.h ├── java │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mediastreamerSdk.gradle │ ├── proguard.cfg │ └── src │ │ └── org │ │ └── linphone │ │ └── mediastream │ │ ├── AACFilter.java │ │ ├── Factory.java │ │ ├── Log.java │ │ ├── MediastreamException.java │ │ ├── MediastreamerAndroidContext.java │ │ ├── Version.java │ │ └── video │ │ ├── AndroidVideoWindowImpl.java │ │ ├── capture │ │ ├── AndroidVideoApi5JniWrapper.java │ │ ├── AndroidVideoApi8JniWrapper.java │ │ ├── AndroidVideoApi9JniWrapper.java │ │ ├── CaptureTextureView.java │ │ └── hwconf │ │ │ ├── AndroidCameraConfiguration.java │ │ │ ├── AndroidCameraConfigurationReader21.java │ │ │ ├── AndroidCameraConfigurationReader5.java │ │ │ ├── AndroidCameraConfigurationReader9.java │ │ │ └── Hacks.java │ │ └── display │ │ ├── GL2JNIView.java │ │ └── OpenGLESDisplay.java ├── m4 │ ├── Makefile.am │ ├── gettext.m4 │ ├── ld-output-def.m4 │ ├── obsolete.m4 │ └── po.m4 ├── mediastreamer-config.h.cmake ├── mediastreamer.pc.in ├── mediastreamer2.spec.in ├── pkg.list ├── po │ ├── .gitignore │ ├── ChangeLog │ ├── LINGUAS │ ├── POTFILES.in │ ├── POTFILES.skip │ ├── cs.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── nl.po │ ├── pl.po │ ├── pt_BR.po │ ├── ru.po │ ├── sv.po │ └── zh_CN.po ├── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── YCbCr_to_RGB.frag │ ├── YCbCr_to_RGB_es.frag │ ├── android │ │ ├── AudioRecord.cpp │ │ ├── AudioRecord.h │ │ ├── AudioSystem.cpp │ │ ├── AudioSystem.h │ │ ├── AudioTrack.cpp │ │ ├── AudioTrack.h │ │ ├── String8.cpp │ │ ├── String8.h │ │ ├── android-display-bad.cpp │ │ ├── android-display.c │ │ ├── android-opengl-display.c │ │ ├── android-texture-display.c │ │ ├── android_mediacodec.cpp │ │ ├── android_mediacodec.h │ │ ├── androidsound.cpp │ │ ├── androidsound_depr.cpp │ │ ├── androidsound_opensles.cpp │ │ ├── androidsound_utils.cpp │ │ ├── androidsound_utils_depr.cpp │ │ ├── androidvideo.cpp │ │ ├── audio.h │ │ ├── hardware_echo_canceller.cpp │ │ ├── loader.cpp │ │ ├── loader.h │ │ └── media │ │ │ ├── NdkMediaCodec.h │ │ │ ├── NdkMediaCrypto.h │ │ │ ├── NdkMediaDrm.h │ │ │ ├── NdkMediaError.h │ │ │ ├── NdkMediaExtractor.h │ │ │ ├── NdkMediaFormat.h │ │ │ ├── NdkMediaMuxer.h │ │ │ └── README.txt │ ├── audiofilters │ │ ├── aac-eld-android.cpp │ │ ├── aac-eld.c │ │ ├── alaw.c │ │ ├── alsa.c │ │ ├── aqsnd.m │ │ ├── arts.c │ │ ├── asyncrw.c │ │ ├── asyncrw.h │ │ ├── audiomixer.c │ │ ├── bv16.c │ │ ├── chanadapt.c │ │ ├── devices.c │ │ ├── dtmfgen.c │ │ ├── equalizer.c │ │ ├── flowcontrol.c │ │ ├── g711.c │ │ ├── g711.h │ │ ├── g726.c │ │ ├── g729.c │ │ ├── genericplc.c │ │ ├── genericplc.h │ │ ├── gsm.c │ │ ├── l16.c │ │ ├── macsnd.c │ │ ├── msfileplayer.c │ │ ├── msfilerec.c │ │ ├── msg722.c │ │ ├── msgenericplc.c │ │ ├── msiounit.mm │ │ ├── msnoisesuppressor.c │ │ ├── msopus.c │ │ ├── msresample.c │ │ ├── msspeex.c │ │ ├── msvaddtx.c │ │ ├── msvolume.c │ │ ├── oss.c │ │ ├── pasnd.c │ │ ├── pulseaudio.c │ │ ├── qsa.c │ │ ├── speexec.c │ │ ├── tonedetector.cpp │ │ ├── ulaw.c │ │ ├── waveheader.h │ │ ├── winsnd.c │ │ ├── winsnd2.c │ │ ├── winsnd3.c │ │ └── winsndds.cpp │ ├── base │ │ ├── eventqueue.c │ │ ├── msasync.c │ │ ├── mscommon.c │ │ ├── msfactory.c │ │ ├── msfilter.c │ │ ├── msqueue.c │ │ ├── mssndcard.c │ │ ├── msticker.c │ │ ├── msvideopresets.c │ │ ├── mswebcam.c │ │ └── mtu.c │ ├── baudot │ │ ├── baudot_context.h │ │ ├── baudot_decoding_context.cpp │ │ ├── baudot_decoding_context.h │ │ ├── baudot_detector_filter.cpp │ │ ├── baudot_encoding_context.cpp │ │ ├── baudot_encoding_context.h │ │ ├── baudot_filters.h │ │ └── baudot_generator_filter.cpp │ ├── crypto │ │ ├── dtls_srtp.cpp │ │ ├── ms_srtp.cpp │ │ └── zrtp.c │ ├── filter-template.c │ ├── generate_descs_header.cmake │ ├── generate_yuv2rgb_header.cmake │ ├── libsrtp.map │ ├── otherfilters │ │ ├── itc.c │ │ ├── join.c │ │ ├── mspcapfileplayer.c │ │ ├── msrtp.c │ │ ├── msudp.c │ │ ├── rfc4103_sink.c │ │ ├── rfc4103_source.c │ │ ├── tee.c │ │ └── void.c │ ├── screen_transform.vert │ ├── screen_transform_es.vert │ ├── upnp │ │ ├── upnp_igd.c │ │ ├── upnp_igd_cmd.c │ │ ├── upnp_igd_private.h │ │ ├── upnp_igd_utils.c │ │ └── upnp_igd_utils.h │ ├── utils │ │ ├── _kiss_fft_guts.h │ │ ├── apple_utils.h │ │ ├── apple_utils.m │ │ ├── audiodiff.c │ │ ├── bits_rw.c │ │ ├── box-plot.c │ │ ├── dsptools.c │ │ ├── fd_portab.h │ │ ├── ffmpeg-priv.c │ │ ├── ffmpeg-priv.h │ │ ├── filter-interface │ │ │ ├── decoder-filter.h │ │ │ ├── encoder-filter.h │ │ │ └── filter-base.h │ │ ├── filter-wrapper │ │ │ ├── decoding-filter-wrapper.cpp │ │ │ ├── decoding-filter-wrapper.h │ │ │ ├── encoding-filter-wrapper.cpp │ │ │ ├── encoding-filter-wrapper.h │ │ │ └── filter-wrapper-base.h │ │ ├── g722.h │ │ ├── g722_decode.c │ │ ├── g722_encode.c │ │ ├── goertzel_state.cpp │ │ ├── goertzel_state.h │ │ ├── jpgloader-ffmpeg.c │ │ ├── jpgloader-stub.c │ │ ├── jpgloader-turbojpeg.c │ │ ├── key-frame-indicator │ │ │ ├── header-extension-key-frame-indicator.cpp │ │ │ ├── header-extension-key-frame-indicator.h │ │ │ ├── key-frame-indicator.h │ │ │ ├── vp8-key-frame-indicator.cpp │ │ │ └── vp8-key-frame-indicator.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── kiss_fftr.c │ │ ├── kiss_fftr.h │ │ ├── mkv_reader.cpp │ │ ├── mkv_reader.h │ │ ├── msjava.c │ │ ├── opengl_debug.h │ │ ├── opengl_functions.c │ │ ├── opengl_functions.h │ │ ├── opengles_display.cpp │ │ ├── opengles_display.h │ │ ├── pcap_sender.c │ │ ├── pcap_sender.h │ │ ├── shader_util.c │ │ ├── shader_util.h │ │ ├── srtp_prefix.h │ │ ├── stream_regulator.c │ │ ├── stream_regulator.h │ │ ├── vfw-missing.h │ │ └── x11_helper.c │ ├── videofilters │ │ ├── av1 │ │ │ ├── decoder │ │ │ │ ├── av1-decoder-filter.cpp │ │ │ │ ├── av1-decoder-filter.h │ │ │ │ ├── av1-decoder.cpp │ │ │ │ └── av1-decoder.h │ │ │ ├── encoder │ │ │ │ ├── av1-encoder-filter.cpp │ │ │ │ ├── av1-encoder-filter.h │ │ │ │ ├── av1-encoder.cpp │ │ │ │ └── av1-encoder.h │ │ │ └── obu │ │ │ │ ├── obu-key-frame-indicator.cpp │ │ │ │ ├── obu-key-frame-indicator.h │ │ │ │ ├── obu-packer.cpp │ │ │ │ ├── obu-packer.h │ │ │ │ ├── obu-unpacker.cpp │ │ │ │ ├── obu-unpacker.h │ │ │ │ ├── obuparse.c │ │ │ │ └── obuparse.h │ │ ├── avfound-capture.m │ │ ├── bb10_capture.cpp │ │ ├── bb10_display.cpp │ │ ├── dummy_codec.c │ │ ├── extdisplay.c │ │ ├── ffmpegjpegwriter.c │ │ ├── generic_opengl_display.c │ │ ├── glxvideo.c │ │ ├── h264dec.cpp │ │ ├── h26x │ │ │ ├── CMakeLists.txt │ │ │ ├── h264-nal-packer.cpp │ │ │ ├── h264-nal-packer.h │ │ │ ├── h264-nal-unpacker.cpp │ │ │ ├── h264-nal-unpacker.h │ │ │ ├── h264-utils.cpp │ │ │ ├── h264-utils.h │ │ │ ├── h265-nal-packer.cpp │ │ │ ├── h265-nal-packer.h │ │ │ ├── h265-nal-unpacker.cpp │ │ │ ├── h265-nal-unpacker.h │ │ │ ├── h265-utils.cpp │ │ │ ├── h265-utils.h │ │ │ ├── h26x-decoder-filter.cpp │ │ │ ├── h26x-decoder-filter.h │ │ │ ├── h26x-decoder.h │ │ │ ├── h26x-encoder-filter.cpp │ │ │ ├── h26x-encoder-filter.h │ │ │ ├── h26x-encoder.h │ │ │ ├── h26x-utils.cpp │ │ │ ├── h26x-utils.h │ │ │ ├── media-codec-decoder.cpp │ │ │ ├── media-codec-decoder.h │ │ │ ├── media-codec-encoder.cpp │ │ │ ├── media-codec-encoder.h │ │ │ ├── media-codec-h264-decoder.cpp │ │ │ ├── media-codec-h264-decoder.h │ │ │ ├── media-codec-h264-encoder.cpp │ │ │ ├── media-codec-h265-decoder.cpp │ │ │ ├── media-codec-h265-decoder.h │ │ │ ├── media-codec-h265-encoder.cpp │ │ │ ├── nal-packer.cpp │ │ │ ├── nal-packer.h │ │ │ ├── nal-unpacker.cpp │ │ │ ├── nal-unpacker.h │ │ │ ├── rfc3984.cpp │ │ │ ├── videotoolbox-decoder.cpp │ │ │ ├── videotoolbox-decoder.h │ │ │ ├── videotoolbox-encoder.cpp │ │ │ ├── videotoolbox-encoder.h │ │ │ ├── videotoolbox-h264-utilities.cpp │ │ │ ├── videotoolbox-h264-utilities.h │ │ │ ├── videotoolbox-h265-utilities.cpp │ │ │ ├── videotoolbox-h265-utilities.h │ │ │ ├── videotoolbox-utils.cpp │ │ │ ├── videotoolbox-utils.h │ │ │ └── videotoolbox.cpp │ │ ├── ioscapture.m │ │ ├── iosdisplay.mm │ │ ├── mire.c │ │ ├── mkv.cpp │ │ ├── msanalysedisplay.c │ │ ├── msmfoundationcap.cpp │ │ ├── msmfoundationcap.h │ │ ├── msosxdisplay.m │ │ ├── msqogl.cpp │ │ ├── msqogl.h │ │ ├── msscreensharing.cpp │ │ ├── msscreensharing_mac.h │ │ ├── msscreensharing_mac.mm │ │ ├── msscreensharing_private.h │ │ ├── msscreensharing_win.cpp │ │ ├── msscreensharing_win.h │ │ ├── msscreensharing_x11.cpp │ │ ├── msscreensharing_x11.h │ │ ├── msturbojpeg.cpp │ │ ├── msv4l.c │ │ ├── msv4l2.c │ │ ├── multimedia-container-interface.h │ │ ├── nowebcam.c │ │ ├── packet-router.cpp │ │ ├── packet-router.h │ │ ├── pixconv.c │ │ ├── qtcapture.m │ │ ├── sizeconv.c │ │ ├── smff │ │ │ ├── player.cpp │ │ │ ├── recorder.cpp │ │ │ ├── smff.cpp │ │ │ └── smff.h │ │ ├── theora.c │ │ ├── turbojpegwriter.c │ │ ├── video-aggregator.c │ │ ├── videodec.c │ │ ├── videoenc.c │ │ ├── videoout.c │ │ ├── videorouter.c │ │ ├── vp8.c │ │ ├── x11video.c │ │ └── zxing_qrcode.cpp │ ├── voip │ │ ├── audioconference.c │ │ ├── audiostream.c │ │ ├── audiostreamvolumes.cpp │ │ ├── bandwidthcontroller.c │ │ ├── bitratecontrol.c │ │ ├── bitratedriver.c │ │ ├── ice.c │ │ ├── ioshardware.h │ │ ├── ioshardware.m │ │ ├── layouts.c │ │ ├── layouts.h │ │ ├── mediastream.c │ │ ├── msiframerequestslimiter.c │ │ ├── msmediaplayer.c │ │ ├── msmediarecorder.c │ │ ├── msvideo.c │ │ ├── msvideo_neon.c │ │ ├── msvideo_neon.h │ │ ├── msvideoqualitycontroller.c │ │ ├── msvoip.c │ │ ├── msvoip_jni.cc │ │ ├── nowebcam.h │ │ ├── nowebcamCIF.jpg │ │ ├── offeranswer.c │ │ ├── private.h │ │ ├── qosanalyzer.c │ │ ├── qosanalyzer.h │ │ ├── qrcodesite.jpg │ │ ├── qualityindicator.c │ │ ├── rfc2429.h │ │ ├── rfc4103_textstream.c │ │ ├── ringstream.c │ │ ├── scaler_arm.S │ │ ├── stun.c │ │ ├── turn_tcp.cpp │ │ ├── turn_tcp.h │ │ ├── video-conference.cpp │ │ ├── video-conference.h │ │ ├── video-decoder.h │ │ ├── video-encoder.h │ │ ├── video-endpoint.cpp │ │ ├── video_preset_high_fps.c │ │ ├── videostarter.c │ │ ├── videostream.c │ │ ├── vp8rtpfmt.c │ │ └── vp8rtpfmt.h │ ├── yuv2rgb.fs │ └── yuv2rgb.vs ├── tester │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── filters │ │ ├── framemarking_tester.c │ │ └── framemarking_tester.h │ ├── images │ │ ├── qrcodesite.jpg │ │ ├── qrcodesite_captured.jpg │ │ ├── qrcodesite_inclined.jpg │ │ └── qrcodesite_screen.jpg │ ├── mediastreamer2_adaptive_tester.c │ ├── mediastreamer2_aec3_tester.c │ ├── mediastreamer2_audio_stream_tester.c │ ├── mediastreamer2_basic_audio_tester.c │ ├── mediastreamer2_baudot_tester.cpp │ ├── mediastreamer2_codec_impl_testers.c │ ├── mediastreamer2_double_encryption_tester.cpp │ ├── mediastreamer2_framework_tester.c │ ├── mediastreamer2_h26x_tools_tester.cpp │ ├── mediastreamer2_jitterbuffer_tester.c │ ├── mediastreamer2_neon_tester.c │ ├── mediastreamer2_noise_suppression_tester.c │ ├── mediastreamer2_player_tester.c │ ├── mediastreamer2_qrcode_tester.c │ ├── mediastreamer2_recorder_tester.c │ ├── mediastreamer2_sound_card_tester.c │ ├── mediastreamer2_tester.c │ ├── mediastreamer2_tester.h │ ├── mediastreamer2_tester_cocoa.m │ ├── mediastreamer2_tester_ios.m │ ├── mediastreamer2_tester_private.c │ ├── mediastreamer2_tester_private.h │ ├── mediastreamer2_tester_utils.cpp │ ├── mediastreamer2_tester_utils.h │ ├── mediastreamer2_tester_windows.cpp │ ├── mediastreamer2_tester_windows.h │ ├── mediastreamer2_text_stream_tester.c │ ├── mediastreamer2_video_stream_tester.c │ ├── raw │ │ ├── h265-iframe │ │ └── h265-parameter-sets-frame │ ├── scenarios │ │ ├── congestion │ │ │ ├── audio-80-75-0c60.pcapng │ │ │ ├── audio-80-75-0f35c95f120.pcapng │ │ │ ├── video-160-0-0a5f30.pcapng │ │ │ ├── video-160-120-0f20c60.pcapng │ │ │ └── video-160-90-0a5c30.pcapng │ │ ├── firstvalid.pcapng │ │ ├── h264_missing_pps_in_second_i_frame.pcap │ │ ├── h264_one_nalu_per_frame.pcap │ │ ├── h264_one_nalu_per_frame_with_corrupted_idr.pcap │ │ ├── opus-edge-congestion20_60_40.pcapng │ │ ├── opus-poor-quality.pcapng │ │ ├── pcmu_8k_no_jitter.pcap │ │ ├── poor_jitter_quality_22.pcapng │ │ ├── poor_jitter_quality_22_filter.pcapng │ │ ├── rtp-120late-1000total.pcapng │ │ ├── rtp-240late-2000total.pcapng │ │ ├── rtp-534late-24loss-7000total.pcapng │ │ ├── rtp-60late-500total.pcapng │ │ └── secondvalid.pcapng │ ├── smff_tester.cpp │ └── sounds │ │ ├── README.md │ │ ├── arpeggio_8000_mono.wav │ │ ├── baudot_alphabet_silence.wav │ │ ├── baudot_mono_alphabet_letter_by_letter_us.wav │ │ ├── baudot_mono_alphabet_us.wav │ │ ├── baudot_mono_digits_us.wav │ │ ├── baudot_stereo_alphabet_us.wav │ │ ├── bird_44100_stereo.wav │ │ ├── chimes_48000_stereo.wav │ │ ├── echo_delay_change.wav │ │ ├── echo_double_talk_100ms.wav │ │ ├── echo_simple_talk_100ms.wav │ │ ├── echo_simple_talk_600ms.wav │ │ ├── farend_double_talk.wav │ │ ├── farend_simple_talk.wav │ │ ├── farend_simple_talk_48000.wav │ │ ├── farend_simple_talk_48000_2.wav │ │ ├── hello16000-1s.wav │ │ ├── hello16000.wav │ │ ├── hello8000-1s.wav │ │ ├── hello8000.wav │ │ ├── hello_opus.mka │ │ ├── hello_pcmu.mka │ │ ├── laserrocket_16000_mono.wav │ │ ├── nearend_double_talk.wav │ │ ├── nearend_echo_400ms_noise_12dB_simple_talk_48000.wav │ │ ├── nearend_simple_talk.wav │ │ ├── nearend_simple_talk_48000.wav │ │ ├── noisy_nearend_0dB_simple_talk_48000.wav │ │ ├── noisy_nearend_12dB_simple_talk_48000.wav │ │ ├── noisy_nearend_6dB_simple_talk_48000.wav │ │ ├── nylon_48000_mono.wav │ │ ├── owl_44100_mono.wav │ │ ├── piano_8000_stereo.wav │ │ ├── punch_16000_stereo.wav │ │ ├── sintel_trailer_opus_h264.mkv │ │ ├── sintel_trailer_opus_vp8.mkv │ │ ├── sintel_trailer_pcmu_h264.mkv │ │ ├── test_silence_voice_16000.wav │ │ ├── test_silence_voice_32000.wav │ │ ├── test_silence_voice_44100.wav │ │ ├── test_silence_voice_48000.wav │ │ ├── test_silence_voice_8000.wav │ │ └── white_noise.wav └── tools │ ├── .gitignore │ ├── Android.mk │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── audio │ └── aec │ │ ├── aec_files.py │ │ ├── aec_metrics.py │ │ ├── aec_tests.py │ │ ├── audio_analysis.py │ │ ├── audio_analysis_noise_suppression.py │ │ ├── audio_signal.py │ │ ├── main.py │ │ ├── mfcc_analysis.py │ │ ├── mfcc_comparison.py │ │ ├── noise_suppression_files.py │ │ ├── noise_suppression_tests.py │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ └── results.py │ ├── bench.c │ ├── common.c │ ├── common.h │ ├── echo.c │ ├── filters_graph.py │ ├── ios │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── MainWindow.xib │ │ └── mediastreamViewController.xib │ ├── mediastream-Info.plist │ ├── mediastream-Prefix.pch │ ├── mediastream-tester-Info.plist │ ├── mediastreamAppDelegate.h │ ├── mediastreamAppDelegate.m │ ├── mediastreamViewController.h │ └── mediastreamViewController.m │ ├── mediastream.c │ ├── mediastream_cocoa.m │ ├── mkvstream.c │ ├── msaudiocmp.c │ ├── mtudiscover.c │ ├── pcap_playback.c │ ├── pcap_player_cocoa.m │ ├── player.c │ ├── recorder.c │ ├── ring.c │ ├── ring_jni.c │ ├── test_x11window.c │ ├── tones.c │ ├── videodisplay.c │ └── xxd.py ├── msaaudio ├── CMakeLists.txt ├── LICENSE.txt ├── include │ └── msaaudio │ │ └── msaaudio.h ├── msaaudio.cpp ├── msaaudio_player.cpp └── msaaudio_recorder.cpp ├── msamr ├── .gitignore ├── AUTHORS ├── Android.mk ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── build │ ├── osx │ │ └── Info.plist.in │ └── wp8 │ │ └── msamr │ │ ├── install_opencoreamr_headers.bat │ │ ├── msamr.sln │ │ ├── msamr.vcxproj │ │ ├── opencore_amrnb.def │ │ ├── opencore_amrnb.vcxproj │ │ ├── opencore_amrwb.def │ │ ├── opencore_amrwb.vcxproj │ │ ├── vo-amrwbenc.def │ │ └── vo-amrwbenc.vcxproj ├── cmake │ ├── FindOpenCoreAMRNB.cmake │ ├── FindOpenCoreAMRWB.cmake │ └── FindVoAMRWBEnc.cmake ├── config.h.cmake ├── configure.ac ├── include │ └── MSVC │ │ └── stdint.h ├── msamr.iss.in ├── msamr.spec.in └── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── amrnb.c │ ├── amrwb.c │ └── msamr.c ├── msandroidcamera2 ├── CMakeLists.txt ├── LICENSE.txt └── android-camera2-capture.cpp ├── mscodec2 ├── .gitignore ├── AUTHORS ├── Android.mk ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── build │ └── osx │ │ └── Info.plist.in ├── cmake │ └── FindCodec2.cmake ├── configure.ac └── mscodec2.c ├── msoboe ├── CMakeLists.txt ├── LICENSE.txt ├── include │ └── msoboe │ │ └── msoboe.h ├── msoboe.cpp ├── msoboe_player.cpp └── msoboe_recorder.cpp ├── msopenh264 ├── .gitignore ├── AUTHORS ├── Android.mk ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── build │ ├── Makefile.am │ ├── osx │ │ └── Info.plist.in │ └── vs │ │ ├── Makefile.am │ │ ├── msopenh264.sln │ │ └── msopenh264.vcproj ├── cmake │ └── FindOpenH264.cmake ├── config.h.cmake ├── configure.ac ├── msopenh264.iss.in └── src │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── msopenh264.cpp │ ├── msopenh264.h │ ├── msopenh264dec.cpp │ ├── msopenh264dec.h │ ├── msopenh264enc.cpp │ └── msopenh264enc.h ├── mswasapi ├── .clang-format ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── NEWS ├── README ├── mswasapi.cpp ├── mswasapi.h ├── mswasapi │ ├── mswasapi.sln │ └── mswasapi.vcxproj ├── mswasapi_reader.cpp ├── mswasapi_reader.h ├── mswasapi_writer.cpp ├── mswasapi_writer.h ├── system_notifier.cpp ├── system_notifier.h └── utils.h ├── mswebrtc ├── .clang-format ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CMakeLists.txt ├── COPYING ├── README.md ├── aec3.cc ├── api │ ├── array_view.h │ ├── audio │ │ ├── BUILD.gn │ │ ├── OWNERS │ │ ├── audio_device.h │ │ ├── audio_device_defines.h │ │ ├── audio_frame.cc │ │ ├── audio_frame.h │ │ ├── audio_frame_processor.h │ │ ├── audio_mixer.h │ │ ├── audio_processing.cc │ │ ├── audio_processing.h │ │ ├── audio_processing_statistics.cc │ │ ├── audio_processing_statistics.h │ │ ├── audio_view.h │ │ ├── channel_layout.cc │ │ ├── channel_layout.h │ │ ├── echo_canceller3_config.cc │ │ ├── echo_canceller3_config.h │ │ ├── echo_canceller3_factory.cc │ │ ├── echo_canceller3_factory.h │ │ ├── echo_control.h │ │ ├── echo_detector_creator.cc │ │ └── echo_detector_creator.h │ ├── environment │ │ └── environment.h │ ├── location.h │ ├── ref_count.h │ ├── ref_counted_base.h │ ├── scoped_refptr.h │ ├── task_queue │ │ ├── task_queue_base.cc │ │ └── task_queue_base.h │ └── units │ │ ├── time_delta.cc │ │ ├── time_delta.h │ │ ├── timestamp.cc │ │ └── timestamp.h ├── build │ ├── CMakeLists.txt │ ├── osx │ │ └── Info.plist.in │ └── rpm │ │ └── mswebrtc.spec.cmake ├── common_audio │ ├── audio_util.cc │ ├── channel_buffer.cc │ ├── channel_buffer.h │ ├── include │ │ └── audio_util.h │ ├── resampler │ │ ├── push_sinc_resampler.cc │ │ ├── push_sinc_resampler.h │ │ ├── sinc_resampler.cc │ │ ├── sinc_resampler.h │ │ ├── sinc_resampler_avx2.cc │ │ ├── sinc_resampler_neon.cc │ │ └── sinc_resampler_sse.cc │ ├── signal_processing │ │ ├── division_operations.c │ │ ├── dot_product_with_scale.cc │ │ ├── dot_product_with_scale.h │ │ ├── energy.c │ │ ├── get_scaling_square.c │ │ ├── include │ │ │ ├── signal_processing_library.h │ │ │ ├── spl_inl.h │ │ │ ├── spl_inl_armv7.h │ │ │ └── spl_inl_mips.h │ │ ├── resample_48khz.c │ │ ├── resample_by_2_internal.c │ │ ├── resample_by_2_internal.h │ │ ├── resample_fractional.c │ │ ├── spl_inl.c │ │ └── splitting_filter.c │ ├── third_party │ │ ├── ooura │ │ │ ├── BUILD.gn │ │ │ ├── LICENSE │ │ │ ├── README.chromium │ │ │ ├── fft_size_128 │ │ │ │ ├── ooura_fft.cc │ │ │ │ ├── ooura_fft.h │ │ │ │ ├── ooura_fft_mips.cc │ │ │ │ ├── ooura_fft_neon.cc │ │ │ │ ├── ooura_fft_sse2.cc │ │ │ │ ├── ooura_fft_tables_common.h │ │ │ │ └── ooura_fft_tables_neon_sse2.h │ │ │ └── fft_size_256 │ │ │ │ ├── fft4g.cc │ │ │ │ └── fft4g.h │ │ └── spl_sqrt_floor │ │ │ ├── spl_sqrt_floor.c │ │ │ ├── spl_sqrt_floor.h │ │ │ ├── spl_sqrt_floor_arm.S │ │ │ └── spl_sqrt_floor_mips.c │ └── vad │ │ ├── include │ │ ├── vad.h │ │ └── webrtc_vad.h │ │ ├── vad.cc │ │ ├── vad_core.c │ │ ├── vad_core.h │ │ ├── vad_filterbank.c │ │ ├── vad_filterbank.h │ │ ├── vad_gmm.c │ │ ├── vad_gmm.h │ │ ├── vad_sp.c │ │ ├── vad_sp.h │ │ └── webrtc_vad.c ├── config.h.cmake ├── experiments │ └── registered_field_trials.h ├── modules │ ├── audio_processing │ │ ├── aec3 │ │ │ ├── BUILD.gn │ │ │ ├── adaptive_fir_filter.cc │ │ │ ├── adaptive_fir_filter.h │ │ │ ├── adaptive_fir_filter_avx2.cc │ │ │ ├── adaptive_fir_filter_erl.cc │ │ │ ├── adaptive_fir_filter_erl.h │ │ │ ├── adaptive_fir_filter_erl_avx2.cc │ │ │ ├── aec3_common.cc │ │ │ ├── aec3_common.h │ │ │ ├── aec3_fft.cc │ │ │ ├── aec3_fft.h │ │ │ ├── aec_state.cc │ │ │ ├── aec_state.h │ │ │ ├── alignment_mixer.cc │ │ │ ├── alignment_mixer.h │ │ │ ├── api_call_jitter_metrics.cc │ │ │ ├── api_call_jitter_metrics.h │ │ │ ├── block.h │ │ │ ├── block_buffer.cc │ │ │ ├── block_buffer.h │ │ │ ├── block_delay_buffer.cc │ │ │ ├── block_delay_buffer.h │ │ │ ├── block_framer.cc │ │ │ ├── block_framer.h │ │ │ ├── block_processor.cc │ │ │ ├── block_processor.h │ │ │ ├── block_processor_metrics.cc │ │ │ ├── block_processor_metrics.h │ │ │ ├── clockdrift_detector.cc │ │ │ ├── clockdrift_detector.h │ │ │ ├── coarse_filter_update_gain.cc │ │ │ ├── coarse_filter_update_gain.h │ │ │ ├── comfort_noise_generator.cc │ │ │ ├── comfort_noise_generator.h │ │ │ ├── config_selector.cc │ │ │ ├── config_selector.h │ │ │ ├── decimator.cc │ │ │ ├── decimator.h │ │ │ ├── delay_estimate.h │ │ │ ├── dominant_nearend_detector.cc │ │ │ ├── dominant_nearend_detector.h │ │ │ ├── downsampled_render_buffer.cc │ │ │ ├── downsampled_render_buffer.h │ │ │ ├── echo_audibility.cc │ │ │ ├── echo_audibility.h │ │ │ ├── echo_canceller3.cc │ │ │ ├── echo_canceller3.h │ │ │ ├── echo_path_delay_estimator.cc │ │ │ ├── echo_path_delay_estimator.h │ │ │ ├── echo_path_variability.cc │ │ │ ├── echo_path_variability.h │ │ │ ├── echo_remover.cc │ │ │ ├── echo_remover.h │ │ │ ├── echo_remover_metrics.cc │ │ │ ├── echo_remover_metrics.h │ │ │ ├── erl_estimator.cc │ │ │ ├── erl_estimator.h │ │ │ ├── erle_estimator.cc │ │ │ ├── erle_estimator.h │ │ │ ├── fft_buffer.cc │ │ │ ├── fft_buffer.h │ │ │ ├── fft_data.h │ │ │ ├── fft_data_avx2.cc │ │ │ ├── filter_analyzer.cc │ │ │ ├── filter_analyzer.h │ │ │ ├── frame_blocker.cc │ │ │ ├── frame_blocker.h │ │ │ ├── fullband_erle_estimator.cc │ │ │ ├── fullband_erle_estimator.h │ │ │ ├── matched_filter.cc │ │ │ ├── matched_filter.h │ │ │ ├── matched_filter_avx2.cc │ │ │ ├── matched_filter_lag_aggregator.cc │ │ │ ├── matched_filter_lag_aggregator.h │ │ │ ├── mock │ │ │ │ ├── mock_block_processor.cc │ │ │ │ ├── mock_block_processor.h │ │ │ │ ├── mock_echo_remover.cc │ │ │ │ ├── mock_echo_remover.h │ │ │ │ ├── mock_render_delay_buffer.cc │ │ │ │ ├── mock_render_delay_buffer.h │ │ │ │ ├── mock_render_delay_controller.cc │ │ │ │ └── mock_render_delay_controller.h │ │ │ ├── moving_average.cc │ │ │ ├── moving_average.h │ │ │ ├── multi_channel_content_detector.cc │ │ │ ├── multi_channel_content_detector.h │ │ │ ├── nearend_detector.h │ │ │ ├── refined_filter_update_gain.cc │ │ │ ├── refined_filter_update_gain.h │ │ │ ├── render_buffer.cc │ │ │ ├── render_buffer.h │ │ │ ├── render_delay_buffer.cc │ │ │ ├── render_delay_buffer.h │ │ │ ├── render_delay_controller.cc │ │ │ ├── render_delay_controller.h │ │ │ ├── render_delay_controller_metrics.cc │ │ │ ├── render_delay_controller_metrics.h │ │ │ ├── render_signal_analyzer.cc │ │ │ ├── render_signal_analyzer.h │ │ │ ├── residual_echo_estimator.cc │ │ │ ├── residual_echo_estimator.h │ │ │ ├── reverb_decay_estimator.cc │ │ │ ├── reverb_decay_estimator.h │ │ │ ├── reverb_frequency_response.cc │ │ │ ├── reverb_frequency_response.h │ │ │ ├── reverb_model.cc │ │ │ ├── reverb_model.h │ │ │ ├── reverb_model_estimator.cc │ │ │ ├── reverb_model_estimator.h │ │ │ ├── signal_dependent_erle_estimator.cc │ │ │ ├── signal_dependent_erle_estimator.h │ │ │ ├── spectrum_buffer.cc │ │ │ ├── spectrum_buffer.h │ │ │ ├── stationarity_estimator.cc │ │ │ ├── stationarity_estimator.h │ │ │ ├── subband_erle_estimator.cc │ │ │ ├── subband_erle_estimator.h │ │ │ ├── subband_nearend_detector.cc │ │ │ ├── subband_nearend_detector.h │ │ │ ├── subtractor.cc │ │ │ ├── subtractor.h │ │ │ ├── subtractor_output.cc │ │ │ ├── subtractor_output.h │ │ │ ├── subtractor_output_analyzer.cc │ │ │ ├── subtractor_output_analyzer.h │ │ │ ├── suppression_filter.cc │ │ │ ├── suppression_filter.h │ │ │ ├── suppression_gain.cc │ │ │ ├── suppression_gain.h │ │ │ ├── transparent_mode.cc │ │ │ ├── transparent_mode.h │ │ │ ├── vector_math.h │ │ │ └── vector_math_avx2.cc │ │ ├── audio_buffer.cc │ │ ├── audio_buffer.h │ │ ├── high_pass_filter.cc │ │ ├── high_pass_filter.h │ │ ├── logging │ │ │ ├── apm_data_dumper.cc │ │ │ └── apm_data_dumper.h │ │ ├── splitting_filter.cc │ │ ├── splitting_filter.h │ │ ├── three_band_filter_bank.cc │ │ ├── three_band_filter_bank.h │ │ └── utility │ │ │ ├── cascaded_biquad_filter.cc │ │ │ └── cascaded_biquad_filter.h │ └── utility │ │ ├── include │ │ └── helpers_android.h │ │ └── source │ │ └── helpers_android.cc ├── mswebrtc.c ├── mswebrtc_aec3.cc ├── mswebrtc_aec3.h ├── rtc_base │ ├── arraysize.h │ ├── checks.cc │ ├── checks.h │ ├── compile_assert_c.h │ ├── containers │ │ ├── flat_set.h │ │ ├── flat_tree.cc │ │ ├── flat_tree.h │ │ └── identity.h │ ├── experiments │ │ ├── field_trial_parser.cc │ │ └── field_trial_parser.h │ ├── gtest_prod_util.h │ ├── logging.cc │ ├── logging.h │ ├── memory │ │ ├── aligned_malloc.cc │ │ └── aligned_malloc.h │ ├── numerics │ │ ├── divide_round.h │ │ ├── safe_compare.h │ │ ├── safe_conversions.h │ │ ├── safe_conversions_impl.h │ │ └── safe_minmax.h │ ├── platform_thread.cc │ ├── platform_thread.h │ ├── platform_thread_types.cc │ ├── platform_thread_types.h │ ├── race_checker.cc │ ├── race_checker.h │ ├── ref_count.h │ ├── ref_counter.h │ ├── sanitizer.h │ ├── string_encode.cc │ ├── string_encode.h │ ├── string_to_number.cc │ ├── string_to_number.h │ ├── string_utils.cc │ ├── string_utils.h │ ├── strings │ │ ├── string_builder.cc │ │ └── string_builder.h │ ├── swap_queue.h │ ├── synchronization │ │ ├── mutex.h │ │ ├── mutex_abseil.h │ │ ├── mutex_benchmark.cc │ │ ├── mutex_critical_section.h │ │ └── mutex_pthread.h │ ├── system │ │ ├── arch.h │ │ ├── inline.h │ │ ├── no_unique_address.h │ │ └── rtc_export.h │ ├── thread_annotations.h │ ├── type_traits.h │ └── units │ │ └── unit_base.h ├── system_wrappers │ ├── include │ │ ├── clock.h │ │ ├── cpu_features_wrapper.h │ │ ├── cpu_info.h │ │ ├── denormal_disabler.h │ │ ├── field_trial.h │ │ ├── metrics.h │ │ ├── ntp_time.h │ │ ├── rtp_to_ntp_estimator.h │ │ └── sleep.h │ └── source │ │ ├── DEPS │ │ ├── clock.cc │ │ ├── cpu_features.cc │ │ ├── cpu_features_android.cc │ │ ├── cpu_features_linux.cc │ │ ├── cpu_info.cc │ │ ├── denormal_disabler.cc │ │ ├── field_trial.cc │ │ ├── metrics.cc │ │ ├── rtp_to_ntp_estimator.cc │ │ └── sleep.cc ├── third_party │ └── abseil-cpp │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── 00-bug_report.yml │ │ │ └── config.yml │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── ABSEIL_ISSUE_TEMPLATE.md │ │ ├── AUTHORS │ │ ├── BUILD.bazel │ │ ├── BUILD.gn │ │ ├── CMake │ │ ├── AbseilDll.cmake │ │ ├── AbseilHelpers.cmake │ │ ├── Googletest │ │ │ ├── CMakeLists.txt.in │ │ │ └── DownloadGTest.cmake │ │ ├── README.md │ │ ├── abslConfig.cmake.in │ │ └── install_test_project │ │ │ ├── CMakeLists.txt │ │ │ ├── simple.cc │ │ │ └── test.sh │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── DIR_METADATA │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── MODULE.bazel │ │ ├── OWNERS │ │ ├── PrivacyInfo.xcprivacy │ │ ├── README.chromium │ │ ├── README.md │ │ ├── UPGRADES.md │ │ ├── WORKSPACE │ │ ├── WORKSPACE.bzlmod │ │ ├── absl.gni │ │ ├── absl │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── abseil.podspec.gen.py │ │ ├── algorithm │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithm.h │ │ │ ├── algorithm_test.cc │ │ │ ├── container.h │ │ │ └── container_test.cc │ │ ├── base │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── attributes.h │ │ │ ├── bit_cast_test.cc │ │ │ ├── c_header_test.c │ │ │ ├── call_once.h │ │ │ ├── call_once_test.cc │ │ │ ├── casts.h │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── const_init.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── exception_safety_testing_test.cc │ │ │ ├── inline_variable_test.cc │ │ │ ├── inline_variable_test_a.cc │ │ │ ├── inline_variable_test_b.cc │ │ │ ├── internal │ │ │ │ ├── atomic_hook.h │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ ├── cycleclock.cc │ │ │ │ ├── cycleclock.h │ │ │ │ ├── cycleclock_config.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── endian.h │ │ │ │ ├── endian_test.cc │ │ │ │ ├── errno_saver.h │ │ │ │ ├── errno_saver_test.cc │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── fast_type_id.h │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.cc │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── nullability_impl.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── poison.cc │ │ │ │ ├── poison.h │ │ │ │ ├── poison_test.cc │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.cc │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.cc │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ ├── spinlock.cc │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ ├── spinlock_linux.inc │ │ │ │ ├── spinlock_posix.inc │ │ │ │ ├── spinlock_wait.cc │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── spinlock_win32.inc │ │ │ │ ├── strerror.cc │ │ │ │ ├── strerror.h │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ ├── strerror_test.cc │ │ │ │ ├── sysinfo.cc │ │ │ │ ├── sysinfo.h │ │ │ │ ├── sysinfo_test.cc │ │ │ │ ├── thread_identity.cc │ │ │ │ ├── thread_identity.h │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ ├── thread_identity_test.cc │ │ │ │ ├── throw_delegate.cc │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tracing.cc │ │ │ │ ├── tracing.h │ │ │ │ ├── tracing_strong_test.cc │ │ │ │ ├── tracing_weak_test.cc │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ ├── unscaledcycleclock.h │ │ │ │ └── unscaledcycleclock_config.h │ │ │ ├── invoke_test.cc │ │ │ ├── log_severity.cc │ │ │ ├── log_severity.h │ │ │ ├── log_severity_test.cc │ │ │ ├── macros.h │ │ │ ├── no_destructor.h │ │ │ ├── no_destructor_benchmark.cc │ │ │ ├── no_destructor_test.cc │ │ │ ├── nullability.h │ │ │ ├── nullability_test.cc │ │ │ ├── optimization.h │ │ │ ├── optimization_test.cc │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ ├── prefetch.h │ │ │ ├── prefetch_test.cc │ │ │ ├── raw_logging_test.cc │ │ │ ├── spinlock_test_common.cc │ │ │ ├── thread_annotations.h │ │ │ └── throw_delegate_test.cc │ │ ├── cleanup │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── cleanup.h │ │ │ ├── cleanup_test.cc │ │ │ └── internal │ │ │ │ └── cleanup.h │ │ ├── container │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── btree_benchmark.cc │ │ │ ├── btree_map.h │ │ │ ├── btree_set.h │ │ │ ├── btree_test.cc │ │ │ ├── btree_test.h │ │ │ ├── fixed_array.h │ │ │ ├── fixed_array_benchmark.cc │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ ├── fixed_array_test.cc │ │ │ ├── flat_hash_map.h │ │ │ ├── flat_hash_map_test.cc │ │ │ ├── flat_hash_set.h │ │ │ ├── flat_hash_set_test.cc │ │ │ ├── hash_container_defaults.h │ │ │ ├── inlined_vector.h │ │ │ ├── inlined_vector_benchmark.cc │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ ├── inlined_vector_test.cc │ │ │ ├── internal │ │ │ │ ├── btree.h │ │ │ │ ├── btree_container.h │ │ │ │ ├── common.h │ │ │ │ ├── common_policy_traits.h │ │ │ │ ├── common_policy_traits_test.cc │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ ├── container_memory.h │ │ │ │ ├── container_memory_test.cc │ │ │ │ ├── hash_function_defaults.h │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ ├── hash_generator_testing.h │ │ │ │ ├── hash_policy_testing.h │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ ├── hash_policy_traits.h │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ ├── hashtable_debug.h │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── layout_benchmark.cc │ │ │ │ ├── layout_test.cc │ │ │ │ ├── node_slot_policy.h │ │ │ │ ├── node_slot_policy_test.cc │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.cc │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ ├── raw_hash_set_benchmark.cc │ │ │ │ ├── raw_hash_set_probe_benchmark.cc │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ ├── test_allocator.h │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ ├── test_instance_tracker.h │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ ├── tracked.h │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ ├── unordered_map_test.cc │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ └── unordered_set_test.cc │ │ │ ├── node_hash_map.h │ │ │ ├── node_hash_map_test.cc │ │ │ ├── node_hash_set.h │ │ │ ├── node_hash_set_test.cc │ │ │ └── sample_element_size_test.cc │ │ ├── copts │ │ │ ├── AbseilConfigureCopts.cmake │ │ │ ├── GENERATED_AbseilCopts.cmake │ │ │ ├── GENERATED_copts.bzl │ │ │ ├── configure_copts.bzl │ │ │ ├── copts.py │ │ │ └── generate_copts.py │ │ ├── crc │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32c.cc │ │ │ ├── crc32c.h │ │ │ ├── crc32c_benchmark.cc │ │ │ ├── crc32c_test.cc │ │ │ └── internal │ │ │ │ ├── cpu_detect.cc │ │ │ │ ├── cpu_detect.h │ │ │ │ ├── crc.cc │ │ │ │ ├── crc.h │ │ │ │ ├── crc32_x86_arm_combined_simd.h │ │ │ │ ├── crc32c.h │ │ │ │ ├── crc32c_inline.h │ │ │ │ ├── crc_cord_state.cc │ │ │ │ ├── crc_cord_state.h │ │ │ │ ├── crc_cord_state_test.cc │ │ │ │ ├── crc_internal.h │ │ │ │ ├── crc_memcpy.h │ │ │ │ ├── crc_memcpy_fallback.cc │ │ │ │ ├── crc_memcpy_test.cc │ │ │ │ ├── crc_memcpy_x86_arm_combined.cc │ │ │ │ ├── crc_non_temporal_memcpy.cc │ │ │ │ ├── crc_x86_arm_combined.cc │ │ │ │ ├── non_temporal_arm_intrinsics.h │ │ │ │ ├── non_temporal_memcpy.h │ │ │ │ └── non_temporal_memcpy_test.cc │ │ ├── debugging │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── failure_signal_handler.cc │ │ │ ├── failure_signal_handler.h │ │ │ ├── failure_signal_handler_test.cc │ │ │ ├── internal │ │ │ │ ├── address_is_readable.cc │ │ │ │ ├── address_is_readable.h │ │ │ │ ├── bounded_utf8_length_sequence.h │ │ │ │ ├── bounded_utf8_length_sequence_test.cc │ │ │ │ ├── decode_rust_punycode.cc │ │ │ │ ├── decode_rust_punycode.h │ │ │ │ ├── decode_rust_punycode_test.cc │ │ │ │ ├── demangle.cc │ │ │ │ ├── demangle.h │ │ │ │ ├── demangle_rust.cc │ │ │ │ ├── demangle_rust.h │ │ │ │ ├── demangle_rust_test.cc │ │ │ │ ├── demangle_test.cc │ │ │ │ ├── elf_mem_image.cc │ │ │ │ ├── elf_mem_image.h │ │ │ │ ├── examine_stack.cc │ │ │ │ ├── examine_stack.h │ │ │ │ ├── stack_consumption.cc │ │ │ │ ├── stack_consumption.h │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ ├── stacktrace_config.h │ │ │ │ ├── stacktrace_emscripten-inl.inc │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ ├── stacktrace_riscv-inl.inc │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ ├── symbolize.h │ │ │ │ ├── utf8_for_code_point.cc │ │ │ │ ├── utf8_for_code_point.h │ │ │ │ ├── utf8_for_code_point_test.cc │ │ │ │ ├── vdso_support.cc │ │ │ │ └── vdso_support.h │ │ │ ├── leak_check.cc │ │ │ ├── leak_check.h │ │ │ ├── leak_check_fail_test.cc │ │ │ ├── leak_check_test.cc │ │ │ ├── stacktrace.cc │ │ │ ├── stacktrace.h │ │ │ ├── stacktrace_benchmark.cc │ │ │ ├── stacktrace_test.cc │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_darwin.inc │ │ │ ├── symbolize_elf.inc │ │ │ ├── symbolize_emscripten.inc │ │ │ ├── symbolize_test.cc │ │ │ ├── symbolize_unimplemented.inc │ │ │ └── symbolize_win32.inc │ │ ├── flags │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── commandlineflag.cc │ │ │ ├── commandlineflag.h │ │ │ ├── commandlineflag_test.cc │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── declare.h │ │ │ ├── flag.h │ │ │ ├── flag_benchmark.cc │ │ │ ├── flag_benchmark.lds │ │ │ ├── flag_test.cc │ │ │ ├── flag_test_defs.cc │ │ │ ├── internal │ │ │ │ ├── commandlineflag.cc │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── flag.cc │ │ │ │ ├── flag.h │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── path_util_test.cc │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ ├── private_handle_accessor.h │ │ │ │ ├── program_name.cc │ │ │ │ ├── program_name.h │ │ │ │ ├── program_name_test.cc │ │ │ │ ├── registry.h │ │ │ │ ├── sequence_lock.h │ │ │ │ ├── sequence_lock_test.cc │ │ │ │ ├── usage.cc │ │ │ │ ├── usage.h │ │ │ │ └── usage_test.cc │ │ │ ├── marshalling.cc │ │ │ ├── marshalling.h │ │ │ ├── marshalling_test.cc │ │ │ ├── parse.cc │ │ │ ├── parse.h │ │ │ ├── parse_test.cc │ │ │ ├── reflection.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_test.cc │ │ │ ├── usage.cc │ │ │ ├── usage.h │ │ │ ├── usage_config.cc │ │ │ ├── usage_config.h │ │ │ └── usage_config_test.cc │ │ ├── functional │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── any_invocable.h │ │ │ ├── any_invocable_test.cc │ │ │ ├── bind_front.h │ │ │ ├── bind_front_test.cc │ │ │ ├── function_ref.h │ │ │ ├── function_ref_test.cc │ │ │ ├── function_type_benchmark.cc │ │ │ ├── internal │ │ │ │ ├── any_invocable.h │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ │ ├── overload.h │ │ │ └── overload_test.cc │ │ ├── hash │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── hash.h │ │ │ ├── hash_benchmark.cc │ │ │ ├── hash_instantiated_test.cc │ │ │ ├── hash_test.cc │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.cc │ │ │ │ ├── city.h │ │ │ │ ├── city_test.cc │ │ │ │ ├── hash.cc │ │ │ │ ├── hash.h │ │ │ │ ├── hash_test.h │ │ │ │ ├── low_level_hash.cc │ │ │ │ ├── low_level_hash.h │ │ │ │ ├── low_level_hash_test.cc │ │ │ │ ├── print_hash_of.cc │ │ │ │ └── spy_hash_state.h │ │ ├── log │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── absl_check.h │ │ │ ├── absl_check_test.cc │ │ │ ├── absl_log.h │ │ │ ├── absl_log_basic_test.cc │ │ │ ├── absl_vlog_is_on.h │ │ │ ├── check.h │ │ │ ├── check_test.cc │ │ │ ├── check_test_impl.inc │ │ │ ├── die_if_null.cc │ │ │ ├── die_if_null.h │ │ │ ├── die_if_null_test.cc │ │ │ ├── flags.cc │ │ │ ├── flags.h │ │ │ ├── flags_test.cc │ │ │ ├── globals.cc │ │ │ ├── globals.h │ │ │ ├── globals_test.cc │ │ │ ├── initialize.cc │ │ │ ├── initialize.h │ │ │ ├── internal │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── BUILD.gn │ │ │ │ ├── append_truncated.h │ │ │ │ ├── check_impl.h │ │ │ │ ├── check_op.cc │ │ │ │ ├── check_op.h │ │ │ │ ├── conditions.cc │ │ │ │ ├── conditions.h │ │ │ │ ├── config.h │ │ │ │ ├── flags.h │ │ │ │ ├── fnmatch.cc │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fnmatch_benchmark.cc │ │ │ │ ├── fnmatch_test.cc │ │ │ │ ├── globals.cc │ │ │ │ ├── globals.h │ │ │ │ ├── log_format.cc │ │ │ │ ├── log_format.h │ │ │ │ ├── log_impl.h │ │ │ │ ├── log_message.cc │ │ │ │ ├── log_message.h │ │ │ │ ├── log_sink_set.cc │ │ │ │ ├── log_sink_set.h │ │ │ │ ├── nullguard.cc │ │ │ │ ├── nullguard.h │ │ │ │ ├── nullstream.h │ │ │ │ ├── proto.cc │ │ │ │ ├── proto.h │ │ │ │ ├── stderr_log_sink_test.cc │ │ │ │ ├── strip.h │ │ │ │ ├── structured.h │ │ │ │ ├── test_actions.cc │ │ │ │ ├── test_actions.h │ │ │ │ ├── test_helpers.cc │ │ │ │ ├── test_helpers.h │ │ │ │ ├── test_matchers.cc │ │ │ │ ├── test_matchers.h │ │ │ │ ├── vlog_config.cc │ │ │ │ ├── vlog_config.h │ │ │ │ ├── vlog_config_benchmark.cc │ │ │ │ └── voidify.h │ │ │ ├── log.h │ │ │ ├── log_basic_test.cc │ │ │ ├── log_basic_test_impl.inc │ │ │ ├── log_benchmark.cc │ │ │ ├── log_entry.cc │ │ │ ├── log_entry.h │ │ │ ├── log_entry_test.cc │ │ │ ├── log_format_test.cc │ │ │ ├── log_macro_hygiene_test.cc │ │ │ ├── log_modifier_methods_test.cc │ │ │ ├── log_sink.cc │ │ │ ├── log_sink.h │ │ │ ├── log_sink_registry.h │ │ │ ├── log_sink_test.cc │ │ │ ├── log_streamer.h │ │ │ ├── log_streamer_test.cc │ │ │ ├── scoped_mock_log.cc │ │ │ ├── scoped_mock_log.h │ │ │ ├── scoped_mock_log_test.cc │ │ │ ├── stripping_test.cc │ │ │ ├── structured.h │ │ │ ├── structured_test.cc │ │ │ ├── vlog_is_on.h │ │ │ └── vlog_is_on_test.cc │ │ ├── memory │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── memory.h │ │ │ └── memory_test.cc │ │ ├── meta │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── type_traits.h │ │ │ └── type_traits_test.cc │ │ ├── numeric │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── bits.h │ │ │ ├── bits_benchmark.cc │ │ │ ├── bits_test.cc │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_benchmark.cc │ │ │ ├── int128_have_intrinsic.inc │ │ │ ├── int128_no_intrinsic.inc │ │ │ ├── int128_stream_test.cc │ │ │ ├── int128_test.cc │ │ │ └── internal │ │ │ │ ├── bits.h │ │ │ │ └── representation.h │ │ ├── profiling │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ └── internal │ │ │ │ ├── exponential_biased.cc │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ ├── periodic_sampler.cc │ │ │ │ ├── periodic_sampler.h │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ ├── sample_recorder.h │ │ │ │ └── sample_recorder_test.cc │ │ ├── random │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmarks.cc │ │ │ ├── bernoulli_distribution.h │ │ │ ├── bernoulli_distribution_test.cc │ │ │ ├── beta_distribution.h │ │ │ ├── beta_distribution_test.cc │ │ │ ├── bit_gen_ref.h │ │ │ ├── bit_gen_ref_test.cc │ │ │ ├── discrete_distribution.cc │ │ │ ├── discrete_distribution.h │ │ │ ├── discrete_distribution_test.cc │ │ │ ├── distributions.h │ │ │ ├── distributions_test.cc │ │ │ ├── examples_test.cc │ │ │ ├── exponential_distribution.h │ │ │ ├── exponential_distribution_test.cc │ │ │ ├── gaussian_distribution.cc │ │ │ ├── gaussian_distribution.h │ │ │ ├── gaussian_distribution_test.cc │ │ │ ├── generators_test.cc │ │ │ ├── internal │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── BUILD.gn │ │ │ │ ├── chi_square.cc │ │ │ │ ├── chi_square.h │ │ │ │ ├── chi_square_test.cc │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.cc │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ ├── fastmath.h │ │ │ │ ├── fastmath_test.cc │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ ├── generate_real.h │ │ │ │ ├── generate_real_test.cc │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ ├── mock_helpers.h │ │ │ │ ├── mock_overload_set.h │ │ │ │ ├── mock_validators.h │ │ │ │ ├── nanobenchmark.cc │ │ │ │ ├── nanobenchmark.h │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ ├── nonsecure_base.h │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ ├── pcg_engine.h │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ ├── platform.h │ │ │ │ ├── pool_urbg.cc │ │ │ │ ├── pool_urbg.h │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ ├── randen.cc │ │ │ │ ├── randen.h │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ ├── randen_detect.cc │ │ │ │ ├── randen_detect.h │ │ │ │ ├── randen_engine.h │ │ │ │ ├── randen_engine_test.cc │ │ │ │ ├── randen_hwaes.cc │ │ │ │ ├── randen_hwaes.h │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ ├── randen_round_keys.cc │ │ │ │ ├── randen_slow.cc │ │ │ │ ├── randen_slow.h │ │ │ │ ├── randen_slow_test.cc │ │ │ │ ├── randen_test.cc │ │ │ │ ├── randen_traits.h │ │ │ │ ├── salted_seed_seq.h │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ ├── seed_material.cc │ │ │ │ ├── seed_material.h │ │ │ │ ├── seed_material_test.cc │ │ │ │ ├── sequence_urbg.h │ │ │ │ ├── traits.h │ │ │ │ ├── traits_test.cc │ │ │ │ ├── uniform_helper.h │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ ├── wide_multiply.h │ │ │ │ └── wide_multiply_test.cc │ │ │ ├── log_uniform_int_distribution.h │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ ├── mock_distributions.h │ │ │ ├── mock_distributions_test.cc │ │ │ ├── mocking_bit_gen.h │ │ │ ├── mocking_bit_gen_test.cc │ │ │ ├── poisson_distribution.h │ │ │ ├── poisson_distribution_test.cc │ │ │ ├── random.h │ │ │ ├── seed_gen_exception.cc │ │ │ ├── seed_gen_exception.h │ │ │ ├── seed_sequences.cc │ │ │ ├── seed_sequences.h │ │ │ ├── seed_sequences_test.cc │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_int_distribution_test.cc │ │ │ ├── uniform_real_distribution.h │ │ │ ├── uniform_real_distribution_test.cc │ │ │ ├── zipf_distribution.h │ │ │ └── zipf_distribution_test.cc │ │ ├── status │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── internal │ │ │ │ ├── status_internal.cc │ │ │ │ ├── status_internal.h │ │ │ │ ├── status_matchers.cc │ │ │ │ ├── status_matchers.h │ │ │ │ └── statusor_internal.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_matchers.h │ │ │ ├── status_matchers_test.cc │ │ │ ├── status_payload_printer.cc │ │ │ ├── status_payload_printer.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ └── statusor_test.cc │ │ ├── strings │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── ascii.cc │ │ │ ├── ascii.h │ │ │ ├── ascii_benchmark.cc │ │ │ ├── ascii_test.cc │ │ │ ├── atod_manual_test.cc │ │ │ ├── char_formatting_test.cc │ │ │ ├── charconv.cc │ │ │ ├── charconv.h │ │ │ ├── charconv_benchmark.cc │ │ │ ├── charconv_test.cc │ │ │ ├── charset.h │ │ │ ├── charset_benchmark.cc │ │ │ ├── charset_test.cc │ │ │ ├── cord.cc │ │ │ ├── cord.h │ │ │ ├── cord_analysis.cc │ │ │ ├── cord_analysis.h │ │ │ ├── cord_buffer.cc │ │ │ ├── cord_buffer.h │ │ │ ├── cord_buffer_test.cc │ │ │ ├── cord_test.cc │ │ │ ├── cord_test_helpers.h │ │ │ ├── cordz_test.cc │ │ │ ├── cordz_test_helpers.h │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── escaping_benchmark.cc │ │ │ ├── escaping_test.cc │ │ │ ├── has_absl_stringify.h │ │ │ ├── has_absl_stringify_test.cc │ │ │ ├── has_ostream_operator.h │ │ │ ├── has_ostream_operator_test.cc │ │ │ ├── internal │ │ │ │ ├── charconv_bigint.cc │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ ├── charconv_parse.cc │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ ├── cord_data_edge.h │ │ │ │ ├── cord_data_edge_test.cc │ │ │ │ ├── cord_internal.cc │ │ │ │ ├── cord_internal.h │ │ │ │ ├── cord_rep_btree.cc │ │ │ │ ├── cord_rep_btree.h │ │ │ │ ├── cord_rep_btree_navigator.cc │ │ │ │ ├── cord_rep_btree_navigator.h │ │ │ │ ├── cord_rep_btree_navigator_test.cc │ │ │ │ ├── cord_rep_btree_reader.cc │ │ │ │ ├── cord_rep_btree_reader.h │ │ │ │ ├── cord_rep_btree_reader_test.cc │ │ │ │ ├── cord_rep_btree_test.cc │ │ │ │ ├── cord_rep_consume.cc │ │ │ │ ├── cord_rep_consume.h │ │ │ │ ├── cord_rep_crc.cc │ │ │ │ ├── cord_rep_crc.h │ │ │ │ ├── cord_rep_crc_test.cc │ │ │ │ ├── cord_rep_flat.h │ │ │ │ ├── cord_rep_test_util.h │ │ │ │ ├── cordz_functions.cc │ │ │ │ ├── cordz_functions.h │ │ │ │ ├── cordz_functions_test.cc │ │ │ │ ├── cordz_handle.cc │ │ │ │ ├── cordz_handle.h │ │ │ │ ├── cordz_handle_test.cc │ │ │ │ ├── cordz_info.cc │ │ │ │ ├── cordz_info.h │ │ │ │ ├── cordz_info_statistics_test.cc │ │ │ │ ├── cordz_info_test.cc │ │ │ │ ├── cordz_sample_token.cc │ │ │ │ ├── cordz_sample_token.h │ │ │ │ ├── cordz_sample_token_test.cc │ │ │ │ ├── cordz_statistics.h │ │ │ │ ├── cordz_update_scope.h │ │ │ │ ├── cordz_update_scope_test.cc │ │ │ │ ├── cordz_update_tracker.h │ │ │ │ ├── cordz_update_tracker_test.cc │ │ │ │ ├── damerau_levenshtein_distance.cc │ │ │ │ ├── damerau_levenshtein_distance.h │ │ │ │ ├── damerau_levenshtein_distance_test.cc │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── memutil.cc │ │ │ │ ├── memutil.h │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ ├── memutil_test.cc │ │ │ │ ├── numbers_test_common.h │ │ │ │ ├── ostringstream.cc │ │ │ │ ├── ostringstream.h │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ ├── ostringstream_test.cc │ │ │ │ ├── pow10_helper.cc │ │ │ │ ├── pow10_helper.h │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ ├── resize_uninitialized.h │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ ├── stl_type_traits.h │ │ │ │ ├── str_format │ │ │ │ │ ├── arg.cc │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.h │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ ├── constexpr_parser.h │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.cc │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_test.cc │ │ │ │ │ ├── parser.cc │ │ │ │ │ ├── parser.h │ │ │ │ │ └── parser_test.cc │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ ├── string_constant.h │ │ │ │ ├── string_constant_test.cc │ │ │ │ ├── stringify_sink.cc │ │ │ │ ├── stringify_sink.h │ │ │ │ ├── utf8.cc │ │ │ │ ├── utf8.h │ │ │ │ └── utf8_test.cc │ │ │ ├── match.cc │ │ │ ├── match.h │ │ │ ├── match_test.cc │ │ │ ├── numbers.cc │ │ │ ├── numbers.h │ │ │ ├── numbers_benchmark.cc │ │ │ ├── numbers_test.cc │ │ │ ├── str_cat.cc │ │ │ ├── str_cat.h │ │ │ ├── str_cat_benchmark.cc │ │ │ ├── str_cat_test.cc │ │ │ ├── str_format.h │ │ │ ├── str_format_test.cc │ │ │ ├── str_join.h │ │ │ ├── str_join_benchmark.cc │ │ │ ├── str_join_test.cc │ │ │ ├── str_replace.cc │ │ │ ├── str_replace.h │ │ │ ├── str_replace_benchmark.cc │ │ │ ├── str_replace_test.cc │ │ │ ├── str_split.cc │ │ │ ├── str_split.h │ │ │ ├── str_split_benchmark.cc │ │ │ ├── str_split_test.cc │ │ │ ├── string_view.cc │ │ │ ├── string_view.h │ │ │ ├── string_view_benchmark.cc │ │ │ ├── string_view_test.cc │ │ │ ├── strip.h │ │ │ ├── strip_test.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ └── substitute_test.cc │ │ ├── synchronization │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── barrier.cc │ │ │ ├── barrier.h │ │ │ ├── barrier_test.cc │ │ │ ├── blocking_counter.cc │ │ │ ├── blocking_counter.h │ │ │ ├── blocking_counter_benchmark.cc │ │ │ ├── blocking_counter_test.cc │ │ │ ├── internal │ │ │ │ ├── create_thread_identity.cc │ │ │ │ ├── create_thread_identity.h │ │ │ │ ├── futex.h │ │ │ │ ├── futex_waiter.cc │ │ │ │ ├── futex_waiter.h │ │ │ │ ├── graphcycles.cc │ │ │ │ ├── graphcycles.h │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ ├── graphcycles_test.cc │ │ │ │ ├── kernel_timeout.cc │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── kernel_timeout_test.cc │ │ │ │ ├── per_thread_sem.cc │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ ├── pthread_waiter.cc │ │ │ │ ├── pthread_waiter.h │ │ │ │ ├── sem_waiter.cc │ │ │ │ ├── sem_waiter.h │ │ │ │ ├── stdcpp_waiter.cc │ │ │ │ ├── stdcpp_waiter.h │ │ │ │ ├── thread_pool.h │ │ │ │ ├── waiter.h │ │ │ │ ├── waiter_base.cc │ │ │ │ ├── waiter_base.h │ │ │ │ ├── waiter_test.cc │ │ │ │ ├── win32_waiter.cc │ │ │ │ └── win32_waiter.h │ │ │ ├── lifetime_test.cc │ │ │ ├── mutex.cc │ │ │ ├── mutex.h │ │ │ ├── mutex_benchmark.cc │ │ │ ├── mutex_method_pointer_test.cc │ │ │ ├── mutex_test.cc │ │ │ ├── notification.cc │ │ │ ├── notification.h │ │ │ └── notification_test.cc │ │ ├── time │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── civil_time.cc │ │ │ ├── civil_time.h │ │ │ ├── civil_time_benchmark.cc │ │ │ ├── civil_time_test.cc │ │ │ ├── clock.cc │ │ │ ├── clock.h │ │ │ ├── clock_benchmark.cc │ │ │ ├── clock_test.cc │ │ │ ├── duration.cc │ │ │ ├── duration_benchmark.cc │ │ │ ├── duration_test.cc │ │ │ ├── flag_test.cc │ │ │ ├── format.cc │ │ │ ├── format_benchmark.cc │ │ │ ├── format_test.cc │ │ │ ├── internal │ │ │ │ ├── cctz │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ ├── include │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ ├── src │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ ├── version │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ ├── America │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ ├── Ciudad_Juarez │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ ├── Nuuk │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ ├── Qostanay │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ ├── North │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ ├── South │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ ├── West │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ ├── East │ │ │ │ │ │ └── West │ │ │ │ │ │ ├── CET │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ ├── EET │ │ │ │ │ │ ├── EST │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ ├── Kyiv │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ ├── London │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── GB │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── HST │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ ├── MET │ │ │ │ │ │ ├── MST │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ └── General │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ ├── Kanton │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ └── Yap │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── US │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ ├── WET │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ ├── zone1970.tab │ │ │ │ │ │ └── zonenow.tab │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ ├── test_util.cc │ │ │ │ └── test_util.h │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ ├── time_benchmark.cc │ │ │ ├── time_test.cc │ │ │ └── time_zone_test.cc │ │ ├── types │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── any.h │ │ │ ├── any_exception_safety_test.cc │ │ │ ├── any_test.cc │ │ │ ├── bad_any_cast.cc │ │ │ ├── bad_any_cast.h │ │ │ ├── bad_optional_access.cc │ │ │ ├── bad_optional_access.h │ │ │ ├── bad_variant_access.cc │ │ │ ├── bad_variant_access.h │ │ │ ├── compare.h │ │ │ ├── compare_test.cc │ │ │ ├── internal │ │ │ │ ├── optional.h │ │ │ │ ├── span.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── optional_exception_safety_test.cc │ │ │ ├── optional_test.cc │ │ │ ├── span.h │ │ │ ├── span_test.cc │ │ │ ├── variant.h │ │ │ ├── variant_benchmark.cc │ │ │ ├── variant_exception_safety_test.cc │ │ │ └── variant_test.cc │ │ └── utility │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── CMakeLists.txt │ │ │ ├── internal │ │ │ ├── if_constexpr.h │ │ │ └── if_constexpr_test.cc │ │ │ ├── utility.h │ │ │ └── utility_test.cc │ │ ├── absl_hardening_test.cc │ │ ├── ci │ │ ├── absl_alternate_options.h │ │ ├── cmake_common.sh │ │ ├── cmake_install_test.sh │ │ ├── linux_arm_clang-latest_libcxx_bazel.sh │ │ ├── linux_clang-latest_libcxx_asan_bazel.sh │ │ ├── linux_clang-latest_libcxx_bazel.sh │ │ ├── linux_clang-latest_libcxx_tsan_bazel.sh │ │ ├── linux_clang-latest_libstdcxx_bazel.sh │ │ ├── linux_docker_containers.sh │ │ ├── linux_gcc-floor_libstdcxx_bazel.sh │ │ ├── linux_gcc-latest_libstdcxx_bazel.sh │ │ ├── linux_gcc-latest_libstdcxx_cmake.sh │ │ ├── linux_gcc_alpine_cmake.sh │ │ ├── macos_xcode_bazel.sh │ │ ├── macos_xcode_cmake.sh │ │ ├── windows_clangcl_bazel.bat │ │ ├── windows_msvc_bazel.bat │ │ └── windows_msvc_cmake.bat │ │ ├── conanfile.py │ │ ├── create_lts.py │ │ ├── generate_def_files.py │ │ ├── patches │ │ ├── 0001-Turn-on-hardened-mode.patch │ │ ├── 0002-delete-unprefixed-annotations.patch │ │ ├── 0003-delete-static-initializer-in-stacktrace.patch │ │ └── 0004-keep-transitive-include.patch │ │ ├── roll_abseil.py │ │ ├── symbols_arm64_dbg.def │ │ ├── symbols_arm64_rel.def │ │ ├── symbols_x64_dbg.def │ │ ├── symbols_x64_rel.def │ │ ├── symbols_x64_rel_asan.def │ │ ├── symbols_x86_dbg.def │ │ └── symbols_x86_rel.def └── vad.cc ├── ortp ├── .clang-format ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── Makefile.am ├── README.md ├── autogen.sh ├── build │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── android │ │ ├── Android.mk │ │ └── ortp_AndroidConfig.h │ ├── osx │ │ └── Info.plist.in │ ├── rpm │ │ └── ortp.spec.cmake │ └── wp8 │ │ └── oRTP │ │ ├── inttypes.h │ │ ├── oRTP.sln │ │ ├── oRTP.vcxproj │ │ └── stdint.h ├── cmake │ └── OrtpConfig.cmake.in ├── configure.ac ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── libortp-dev.docs │ ├── libortp-dev.install │ ├── libortp13.docs │ ├── libortp13.install │ ├── rules │ ├── source │ │ ├── format │ │ └── options │ └── watch ├── docs │ └── .gitignore ├── include │ ├── .gitignore │ ├── CMakeLists.txt │ ├── MSVC │ │ ├── inttypes.h │ │ └── stdint.h │ ├── Makefile.am │ └── ortp │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── event.h │ │ ├── logging.h │ │ ├── nack.h │ │ ├── ortp.h │ │ ├── payloadtype.h │ │ ├── port.h │ │ ├── rtcp.h │ │ ├── rtp.h │ │ ├── rtpprofile.h │ │ ├── rtpsession.h │ │ ├── rtpsignaltable.h │ │ ├── sessionset.h │ │ ├── str_utils.h │ │ ├── telephonyevents.h │ │ └── utils.h ├── m4 │ ├── Makefile.am │ ├── ld-output-def.m4 │ └── obsolete.m4 ├── oRTP.prj ├── oRTP.pws ├── ortp-config.h.cmake ├── ortp.doxygen.in ├── ortp.pc.in ├── ortp.spec.in ├── pkg.list ├── src │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── audiobandwidthestimator.c │ ├── audiobandwidthestimator.h │ ├── avprofile.c │ ├── bandwidth-measurer.cc │ ├── congestiondetector.c │ ├── congestiondetector.h │ ├── dblk.cc │ ├── dll_entry.c │ ├── event.c │ ├── extremum.c │ ├── fecstream │ │ ├── fec-encoder.cpp │ │ ├── fec-encoder.h │ │ ├── fec-packets-connection.cpp │ │ ├── fec-packets-connection.h │ │ ├── fec-params.cpp │ │ ├── fec-params.h │ │ ├── fec-stream-stats.cc │ │ ├── fec-stream-stats.h │ │ ├── fecstream.cc │ │ ├── fecstream.h │ │ ├── overhead.cpp │ │ ├── overhead.h │ │ ├── packet-api.cpp │ │ ├── packet-api.h │ │ ├── receive-cluster.cpp │ │ └── receive-cluster.h │ ├── jitterctl.c │ ├── jitterctl.h │ ├── kalmanrls.c │ ├── logging.c │ ├── master │ ├── nack.c │ ├── netsim.c │ ├── ortp.c │ ├── payloadtype.c │ ├── port.c │ ├── posixtimer.c │ ├── rtcp.c │ ├── rtcp_fb.c │ ├── rtcp_xr.c │ ├── rtcpparse.c │ ├── rtpaudiolevel.c │ ├── rtpbundle.cc │ ├── rtpbundle.h │ ├── rtpframemarking.c │ ├── rtpparse.c │ ├── rtpprofile.c │ ├── rtpsession.c │ ├── rtpsession_inet.c │ ├── rtpsession_priv.h │ ├── rtpsignaltable.c │ ├── rtptimer.c │ ├── rtptimer.h │ ├── scheduler.c │ ├── scheduler.h │ ├── sessionset.c │ ├── str_utils.c │ ├── telephonyevents.c │ ├── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── fmtpparse.c │ │ ├── mrtprecv.c │ │ ├── mrtpsend.c │ │ ├── rtpmemtest.c │ │ ├── rtprecv.c │ │ ├── rtpsend.c │ │ ├── rtpsend_stupid.c │ │ ├── test_timer.c │ │ ├── tevmrtprecv.c │ │ ├── tevrtprecv.c │ │ ├── tevrtpsend.c │ │ ├── win_receiver │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── RTPReceiver.cpp │ │ │ └── RTPReceiver.vcproj │ │ └── win_sender │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── RTPSender.cpp │ │ │ └── RTPSender.vcproj │ ├── utils.c │ ├── utils.h │ ├── videobandwidthestimator.cc │ ├── videobandwidthestimator.h │ ├── winrttimer.cpp │ └── winrttimer.h └── tester │ ├── CMakeLists.txt │ ├── bundle_tester.cc │ ├── extension_header_tester.c │ ├── fec_tester.cc │ ├── ortp_tester.c │ ├── ortp_tester.h │ ├── ortp_tester_utils.cc │ ├── ortp_tester_utils.h │ ├── raw │ └── h265-iframe │ └── rtp_tester.c ├── postquantumcryptoengine ├── CMakeLists.txt ├── LICENSE.txt ├── PostQuantumCryptoEngineConfig.cmake.in ├── README.md ├── config.h.cmake ├── doc │ ├── pqcrypto_integration.bib │ ├── pqcrypto_integration.pdf │ ├── pqcrypto_integration.tex │ └── te.bst ├── include │ ├── CMakeLists.txt │ └── postquantumcryptoengine │ │ ├── crypto.h │ │ └── crypto.hh ├── src │ ├── CMakeLists.txt │ ├── crypto.c │ └── crypto.cc └── tester │ ├── CMakeLists.txt │ ├── KEM_patterns.cc │ ├── crypto.cc │ ├── postquantumcryptoengine-tester.c │ └── postquantumcryptoengine-tester.h ├── sanitizer_ignore.txt ├── scripts └── gas-preprocessor.pl └── tester ├── Android ├── .gitignore ├── README ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── org │ │ │ └── linphone │ │ │ └── tester │ │ │ ├── AccountCreatorTests.java │ │ │ ├── AllTests.java │ │ │ ├── AudioBypassTests.java │ │ │ ├── CallRecoveryTests.java │ │ │ ├── CallWithIceTests.java │ │ │ ├── ClonableObjectTests.java │ │ │ ├── ConferenceEventTests.java │ │ │ ├── ContentsTests.java │ │ │ ├── CpimTests.java │ │ │ ├── DTMFTests.java │ │ │ ├── EventTests.java │ │ │ ├── FlexisipTests.java │ │ │ ├── GroupChatTests.java │ │ │ ├── LogCollectionTests.java │ │ │ ├── MainDbTests.java │ │ │ ├── MessageTests.java │ │ │ ├── MultiCallTests.java │ │ │ ├── MulticastCallTests.java │ │ │ ├── MultipartTests.java │ │ │ ├── OfferAnswerTests.java │ │ │ ├── PlayerTests.java │ │ │ ├── PresenceTests.java │ │ │ ├── PresenceUsingServerTests.java │ │ │ ├── PropertyContainerTests.java │ │ │ ├── ProxyConfigTests.java │ │ │ ├── QualityReportingTests.java │ │ │ ├── RegisterTests.java │ │ │ ├── RemoteProvisioningTests.java │ │ │ ├── SecureCallTests.java │ │ │ ├── SecureGroupChatTests.java │ │ │ ├── SetupTests.java │ │ │ ├── SingleCallTests.java │ │ │ ├── StunTests.java │ │ │ ├── TunnelTests.java │ │ │ ├── UtilsTests.java │ │ │ ├── VCardTests.java │ │ │ ├── VideoCallTests.java │ │ │ └── VideoTests.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── config_files │ │ │ ├── certificates │ │ │ ├── db │ │ │ ├── images │ │ │ ├── rcfiles │ │ │ ├── sounds │ │ │ ├── tester_hosts │ │ │ └── vcards │ │ ├── java │ │ └── org │ │ │ └── linphone │ │ │ └── tester │ │ │ ├── LinphoneTest.java │ │ │ ├── LinphoneTestSuite.java │ │ │ ├── LogsActivity.java │ │ │ ├── SuitesActivity.java │ │ │ ├── Tester.java │ │ │ ├── TesterLogListener.java │ │ │ └── TestsActivity.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_logs.xml │ │ ├── activity_suites.xml │ │ └── activity_tests.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── linphone-sdk-android │ ├── build.gradle │ └── linphone-sdk-android-debug.aar └── settings.gradle ├── IOS ├── LinphoneTester │ ├── LinphoneTester.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── danmei.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── LinphoneTester.xcscheme │ │ └── xcuserdata │ │ │ └── danmei.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── LinphoneTester │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Log.h │ │ ├── Log.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── LinphoneTesterTests │ │ ├── DTObjectBlockExecutor.h │ │ ├── DTObjectBlockExecutor.m │ │ ├── Info.plist │ │ ├── LinphoneTesterTests.m │ │ ├── NSObject+DTRuntime.h │ │ └── NSObject+DTRuntime.m │ └── README └── swift │ └── LinphoneTester │ ├── LinphoneTester.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── LinphoneTester.xcscheme │ ├── LinphoneTester │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── LinphoneTester.entitlements │ └── LinphoneTesterApp.swift │ ├── LinphoneTesterTests │ ├── Info.plist │ ├── LinphoneTesterTests-Bridging-Header.h │ ├── LinphoneTesterTests.swift │ ├── Log.swift │ └── ManualPushkitManagement.swift │ ├── README.md │ └── SwiftTests.xctestplan └── Windows ├── LinphoneTester_server ├── App.config ├── LinphoneTester_server.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── LinphoneTester_uwp ├── LinphoneTester_uwp.sln ├── LinphoneTester_uwp ├── App.xaml ├── App.xaml.cpp ├── App.xaml.h ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── LinphoneSDK │ └── LinphoneSDK.targets ├── LinphoneTester_uwp.aps ├── LinphoneTester_uwp.rc ├── LinphoneTester_uwp.vcxproj ├── LinphoneTester_uwp.vcxproj.filters ├── LinphoneTester_uwp_TemporaryKey.pfx ├── MainPage.xaml ├── MainPage.xaml.cpp ├── MainPage.xaml.h ├── Package.appxmanifest ├── packages.config ├── pch.cpp ├── pch.h └── resource.h └── UpdatePermissions.bat /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci-files/iOS/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci-files/iOS/tests.yml -------------------------------------------------------------------------------- /.gitlab-ci-files/raspbian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci-files/raspbian.yml -------------------------------------------------------------------------------- /.gitlab-ci-files/rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci-files/rules.yml -------------------------------------------------------------------------------- /.gitlab-ci-files/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci-files/variables.yml -------------------------------------------------------------------------------- /.gitlab-ci-tunnel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci-tunnel.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/README.md -------------------------------------------------------------------------------- /bctoolbox/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/.clang-format -------------------------------------------------------------------------------- /bctoolbox/.gitignore: -------------------------------------------------------------------------------- 1 | bctoolbox.spec 2 | .*.swp 3 | -------------------------------------------------------------------------------- /bctoolbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/CHANGELOG.md -------------------------------------------------------------------------------- /bctoolbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/CMakeLists.txt -------------------------------------------------------------------------------- /bctoolbox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/LICENSE.txt -------------------------------------------------------------------------------- /bctoolbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/README.md -------------------------------------------------------------------------------- /bctoolbox/bctoolbox.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/bctoolbox.pc.in -------------------------------------------------------------------------------- /bctoolbox/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/build/CMakeLists.txt -------------------------------------------------------------------------------- /bctoolbox/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/config.h.cmake -------------------------------------------------------------------------------- /bctoolbox/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/CMakeLists.txt -------------------------------------------------------------------------------- /bctoolbox/src/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/crypto/crypto.c -------------------------------------------------------------------------------- /bctoolbox/src/crypto/crypto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/crypto/crypto.cc -------------------------------------------------------------------------------- /bctoolbox/src/crypto/ecc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/crypto/ecc.cc -------------------------------------------------------------------------------- /bctoolbox/src/crypto/mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/crypto/mbedtls.c -------------------------------------------------------------------------------- /bctoolbox/src/crypto/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/crypto/openssl.c -------------------------------------------------------------------------------- /bctoolbox/src/param_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/param_string.c -------------------------------------------------------------------------------- /bctoolbox/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/parser.c -------------------------------------------------------------------------------- /bctoolbox/src/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/tester.c -------------------------------------------------------------------------------- /bctoolbox/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/utils.h -------------------------------------------------------------------------------- /bctoolbox/src/utils/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/utils/port.c -------------------------------------------------------------------------------- /bctoolbox/src/utils/regex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/utils/regex.cc -------------------------------------------------------------------------------- /bctoolbox/src/utils/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/utils/utils.cc -------------------------------------------------------------------------------- /bctoolbox/src/vconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/vconnect.c -------------------------------------------------------------------------------- /bctoolbox/src/vfs/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/src/vfs/vfs.c -------------------------------------------------------------------------------- /bctoolbox/tester/containers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/containers.cc -------------------------------------------------------------------------------- /bctoolbox/tester/crypto.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/crypto.cc -------------------------------------------------------------------------------- /bctoolbox/tester/ios_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/ios_utils.cc -------------------------------------------------------------------------------- /bctoolbox/tester/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/logger.cc -------------------------------------------------------------------------------- /bctoolbox/tester/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/parser.c -------------------------------------------------------------------------------- /bctoolbox/tester/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/port.c -------------------------------------------------------------------------------- /bctoolbox/tester/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bctoolbox/tester/vfs.c -------------------------------------------------------------------------------- /bcunit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/.gitignore -------------------------------------------------------------------------------- /bcunit/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/AUTHORS -------------------------------------------------------------------------------- /bcunit/BCUnit.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit.dsw -------------------------------------------------------------------------------- /bcunit/BCUnit.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit.spec.in -------------------------------------------------------------------------------- /bcunit/BCUnit/BCUnit.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/BCUnit.dsp -------------------------------------------------------------------------------- /bcunit/BCUnit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/BCUnit/Headers/Basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Headers/Basic.h -------------------------------------------------------------------------------- /bcunit/BCUnit/Headers/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Headers/Jamfile -------------------------------------------------------------------------------- /bcunit/BCUnit/Headers/MyMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Headers/MyMem.h -------------------------------------------------------------------------------- /bcunit/BCUnit/Headers/TestDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Headers/TestDB.h -------------------------------------------------------------------------------- /bcunit/BCUnit/Headers/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Headers/Util.h -------------------------------------------------------------------------------- /bcunit/BCUnit/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Jamfile -------------------------------------------------------------------------------- /bcunit/BCUnit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnit/Makefile.am -------------------------------------------------------------------------------- /bcunit/BCUnitConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/BCUnitConfig.cmake.in -------------------------------------------------------------------------------- /bcunit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/COPYING -------------------------------------------------------------------------------- /bcunit/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/ChangeLog -------------------------------------------------------------------------------- /bcunit/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Doxyfile -------------------------------------------------------------------------------- /bcunit/Examples/AutomatedTest/README: -------------------------------------------------------------------------------- 1 | Usage of Example : 2 | ./AutomatedTest -h 3 | -------------------------------------------------------------------------------- /bcunit/Examples/BasicTest/README: -------------------------------------------------------------------------------- 1 | Usage of Example : 2 | ./BasicTest 3 | -------------------------------------------------------------------------------- /bcunit/Examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Examples/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/Examples/ConsoleTest/README: -------------------------------------------------------------------------------- 1 | Usage of Example : 2 | ./ConsoleTest 3 | -------------------------------------------------------------------------------- /bcunit/Examples/CursesTest/README: -------------------------------------------------------------------------------- 1 | Usage of Example : 2 | ./CursesTest 3 | -------------------------------------------------------------------------------- /bcunit/Examples/ExampleTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Examples/ExampleTests.c -------------------------------------------------------------------------------- /bcunit/Examples/ExampleTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Examples/ExampleTests.h -------------------------------------------------------------------------------- /bcunit/Examples/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Examples/Jamfile -------------------------------------------------------------------------------- /bcunit/Examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Examples/Makefile.am -------------------------------------------------------------------------------- /bcunit/Examples/wxWidgetsTest/README: -------------------------------------------------------------------------------- 1 | Usage of Example : 2 | ./ConsoleTest 3 | -------------------------------------------------------------------------------- /bcunit/Examples/wxWidgetsTest/wxWidgetsTest.rc: -------------------------------------------------------------------------------- 1 | #define wxUSE_NO_MANIFEST 1 2 | #include "wx/msw/wx.rc" 3 | -------------------------------------------------------------------------------- /bcunit/Jambase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Jambase -------------------------------------------------------------------------------- /bcunit/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Jamfile -------------------------------------------------------------------------------- /bcunit/Jamrules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Jamrules.in -------------------------------------------------------------------------------- /bcunit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Makefile.am -------------------------------------------------------------------------------- /bcunit/Man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/Man/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/Jamfile -------------------------------------------------------------------------------- /bcunit/Man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/Makefile.am -------------------------------------------------------------------------------- /bcunit/Man/man3/BCUnit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/man3/BCUnit.3 -------------------------------------------------------------------------------- /bcunit/Man/man3/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/man3/Jamfile -------------------------------------------------------------------------------- /bcunit/Man/man3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Man/man3/Makefile.am -------------------------------------------------------------------------------- /bcunit/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/NEWS -------------------------------------------------------------------------------- /bcunit/PACKAGE: -------------------------------------------------------------------------------- 1 | BCUnit 2 | -------------------------------------------------------------------------------- /bcunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/README.md -------------------------------------------------------------------------------- /bcunit/Share/BCUnit-List.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/BCUnit-List.dtd -------------------------------------------------------------------------------- /bcunit/Share/BCUnit-List.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/BCUnit-List.xsl -------------------------------------------------------------------------------- /bcunit/Share/BCUnit-Run.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/BCUnit-Run.dtd -------------------------------------------------------------------------------- /bcunit/Share/BCUnit-Run.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/BCUnit-Run.xsl -------------------------------------------------------------------------------- /bcunit/Share/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/Share/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/Jamfile -------------------------------------------------------------------------------- /bcunit/Share/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/Makefile.am -------------------------------------------------------------------------------- /bcunit/Share/Memory-Dump.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/Memory-Dump.dtd -------------------------------------------------------------------------------- /bcunit/Share/Memory-Dump.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/Memory-Dump.xsl -------------------------------------------------------------------------------- /bcunit/Share/md2xml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/Share/md2xml.pl -------------------------------------------------------------------------------- /bcunit/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/TODO -------------------------------------------------------------------------------- /bcunit/VC7/BCUnit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC7/BCUnit.sln -------------------------------------------------------------------------------- /bcunit/VC7/BCUnit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC7/BCUnit.suo -------------------------------------------------------------------------------- /bcunit/VC7/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC7/Readme.txt -------------------------------------------------------------------------------- /bcunit/VC8/BCUnit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/BCUnit.sln -------------------------------------------------------------------------------- /bcunit/VC8/BCUnit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/BCUnit.suo -------------------------------------------------------------------------------- /bcunit/VC8/BasicTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/BasicTest.vcproj -------------------------------------------------------------------------------- /bcunit/VC8/ConsoleTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/ConsoleTest.vcproj -------------------------------------------------------------------------------- /bcunit/VC8/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/Readme.txt -------------------------------------------------------------------------------- /bcunit/VC8/libcunit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/libcunit.vcproj -------------------------------------------------------------------------------- /bcunit/VC8/test_bcunit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC8/test_bcunit.vcproj -------------------------------------------------------------------------------- /bcunit/VC9/BCUnit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/BCUnit.sln -------------------------------------------------------------------------------- /bcunit/VC9/BCUnit.sln.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/BCUnit.sln.cache -------------------------------------------------------------------------------- /bcunit/VC9/BCUnit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/BCUnit.suo -------------------------------------------------------------------------------- /bcunit/VC9/BasicTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/BasicTest.vcproj -------------------------------------------------------------------------------- /bcunit/VC9/ConsoleTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/ConsoleTest.vcproj -------------------------------------------------------------------------------- /bcunit/VC9/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/Readme.txt -------------------------------------------------------------------------------- /bcunit/VC9/libcunit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/libcunit.vcproj -------------------------------------------------------------------------------- /bcunit/VC9/test_bcunit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/VC9/test_bcunit.vcproj -------------------------------------------------------------------------------- /bcunit/VERSION: -------------------------------------------------------------------------------- 1 | 2.1-2 2 | -------------------------------------------------------------------------------- /bcunit/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/autogen.sh -------------------------------------------------------------------------------- /bcunit/bcunit.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/bcunit.pc.in -------------------------------------------------------------------------------- /bcunit/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/bootstrap -------------------------------------------------------------------------------- /bcunit/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/build/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/config.h.cmake -------------------------------------------------------------------------------- /bcunit/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/config.h.in -------------------------------------------------------------------------------- /bcunit/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/configure.in -------------------------------------------------------------------------------- /bcunit/doc/BCUnit_doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/BCUnit_doc.css -------------------------------------------------------------------------------- /bcunit/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/CMakeLists.txt -------------------------------------------------------------------------------- /bcunit/doc/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/Jamfile -------------------------------------------------------------------------------- /bcunit/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/Makefile.am -------------------------------------------------------------------------------- /bcunit/doc/error_handling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/error_handling.html -------------------------------------------------------------------------------- /bcunit/doc/fdl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/fdl.html -------------------------------------------------------------------------------- /bcunit/doc/headers/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/headers/Jamfile -------------------------------------------------------------------------------- /bcunit/doc/headers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/headers/Makefile.am -------------------------------------------------------------------------------- /bcunit/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/index.html -------------------------------------------------------------------------------- /bcunit/doc/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/introduction.html -------------------------------------------------------------------------------- /bcunit/doc/managing_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/managing_tests.html -------------------------------------------------------------------------------- /bcunit/doc/running_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/running_tests.html -------------------------------------------------------------------------------- /bcunit/doc/test_registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/test_registry.html -------------------------------------------------------------------------------- /bcunit/doc/writing_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/doc/writing_tests.html -------------------------------------------------------------------------------- /bcunit/libcunit_dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bcunit/libcunit_dll.def -------------------------------------------------------------------------------- /bcunit/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /belcard/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/.clang-format -------------------------------------------------------------------------------- /belcard/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/.gitattributes -------------------------------------------------------------------------------- /belcard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/.gitignore -------------------------------------------------------------------------------- /belcard/BelCardConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/BelCardConfig.cmake.in -------------------------------------------------------------------------------- /belcard/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/CHANGELOG.md -------------------------------------------------------------------------------- /belcard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/LICENSE.txt -------------------------------------------------------------------------------- /belcard/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/Makefile.am -------------------------------------------------------------------------------- /belcard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/README.md -------------------------------------------------------------------------------- /belcard/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/autogen.sh -------------------------------------------------------------------------------- /belcard/belcard.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/belcard.pc.in -------------------------------------------------------------------------------- /belcard/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/build/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/config.h.cmake -------------------------------------------------------------------------------- /belcard/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/configure.ac -------------------------------------------------------------------------------- /belcard/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/include/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=belcard 2 | -------------------------------------------------------------------------------- /belcard/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/Makefile.am -------------------------------------------------------------------------------- /belcard/src/belcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/belcard.cpp -------------------------------------------------------------------------------- /belcard/src/belcard_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/belcard_params.cpp -------------------------------------------------------------------------------- /belcard/src/belcard_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/belcard_parser.cpp -------------------------------------------------------------------------------- /belcard/src/belcard_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/belcard_utils.cpp -------------------------------------------------------------------------------- /belcard/src/vcard3_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/vcard3_rules -------------------------------------------------------------------------------- /belcard/src/vcard_grammar.belr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/vcard_grammar.belr -------------------------------------------------------------------------------- /belcard/src/vcard_grammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/vcard_grammar.cpp -------------------------------------------------------------------------------- /belcard/src/vcard_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/src/vcard_rules -------------------------------------------------------------------------------- /belcard/tester/.bc_tester_utils.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /belcard/tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/tester/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/tester/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/tester/Makefile.am -------------------------------------------------------------------------------- /belcard/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/tools/CMakeLists.txt -------------------------------------------------------------------------------- /belcard/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belcard/tools/Makefile.am -------------------------------------------------------------------------------- /belle-sip/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/.clang-format -------------------------------------------------------------------------------- /belle-sip/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/.cproject -------------------------------------------------------------------------------- /belle-sip/.gitattributes: -------------------------------------------------------------------------------- 1 | *.belr binary -------------------------------------------------------------------------------- /belle-sip/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/.gitignore -------------------------------------------------------------------------------- /belle-sip/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/.project -------------------------------------------------------------------------------- /belle-sip/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/AUTHORS.md -------------------------------------------------------------------------------- /belle-sip/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/CHANGELOG.md -------------------------------------------------------------------------------- /belle-sip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/CMakeLists.txt -------------------------------------------------------------------------------- /belle-sip/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/LICENSE.txt -------------------------------------------------------------------------------- /belle-sip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/Makefile.am -------------------------------------------------------------------------------- /belle-sip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/README.md -------------------------------------------------------------------------------- /belle-sip/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/autogen.sh -------------------------------------------------------------------------------- /belle-sip/belle-sip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/belle-sip.pc.in -------------------------------------------------------------------------------- /belle-sip/belle-sip.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/belle-sip.spec.in -------------------------------------------------------------------------------- /belle-sip/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/build/CMakeLists.txt -------------------------------------------------------------------------------- /belle-sip/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/config.h.cmake -------------------------------------------------------------------------------- /belle-sip/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/configure.ac -------------------------------------------------------------------------------- /belle-sip/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=belle-sip 2 | -------------------------------------------------------------------------------- /belle-sip/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/.DS_Store -------------------------------------------------------------------------------- /belle-sip/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/CMakeLists.txt -------------------------------------------------------------------------------- /belle-sip/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/Makefile.am -------------------------------------------------------------------------------- /belle-sip/src/auth_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/auth_event.c -------------------------------------------------------------------------------- /belle-sip/src/auth_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/auth_helper.c -------------------------------------------------------------------------------- /belle-sip/src/bearer_token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/bearer_token.cc -------------------------------------------------------------------------------- /belle-sip/src/belle_sip_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/belle_sip_loop.c -------------------------------------------------------------------------------- /belle-sip/src/bodyhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/bodyhandler.c -------------------------------------------------------------------------------- /belle-sip/src/channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/channel.c -------------------------------------------------------------------------------- /belle-sip/src/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/channel.h -------------------------------------------------------------------------------- /belle-sip/src/channel_bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/channel_bank.cc -------------------------------------------------------------------------------- /belle-sip/src/channel_bank.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/channel_bank.hh -------------------------------------------------------------------------------- /belle-sip/src/cpp_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/cpp_utils.cc -------------------------------------------------------------------------------- /belle-sip/src/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/dialog.c -------------------------------------------------------------------------------- /belle-sip/src/dns/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/dns/dns.c -------------------------------------------------------------------------------- /belle-sip/src/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/dns/dns.h -------------------------------------------------------------------------------- /belle-sip/src/generic-uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/generic-uri.cc -------------------------------------------------------------------------------- /belle-sip/src/http-listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/http-listener.c -------------------------------------------------------------------------------- /belle-sip/src/http-message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/http-message.cc -------------------------------------------------------------------------------- /belle-sip/src/http-provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/http-provider.c -------------------------------------------------------------------------------- /belle-sip/src/ict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/ict.c -------------------------------------------------------------------------------- /belle-sip/src/ist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/ist.c -------------------------------------------------------------------------------- /belle-sip/src/listeningpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/listeningpoint.c -------------------------------------------------------------------------------- /belle-sip/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/md5.c -------------------------------------------------------------------------------- /belle-sip/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/md5.h -------------------------------------------------------------------------------- /belle-sip/src/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/message.cc -------------------------------------------------------------------------------- /belle-sip/src/nict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/nict.c -------------------------------------------------------------------------------- /belle-sip/src/nist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/nist.c -------------------------------------------------------------------------------- /belle-sip/src/object++.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/object++.cc -------------------------------------------------------------------------------- /belle-sip/src/parserutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/parserutils.h -------------------------------------------------------------------------------- /belle-sip/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/port.c -------------------------------------------------------------------------------- /belle-sip/src/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/port.h -------------------------------------------------------------------------------- /belle-sip/src/provider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/provider.c -------------------------------------------------------------------------------- /belle-sip/src/refresher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/refresher.c -------------------------------------------------------------------------------- /belle-sip/src/sdp/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/sdp/parser.cc -------------------------------------------------------------------------------- /belle-sip/src/sdp/parser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/sdp/parser.hh -------------------------------------------------------------------------------- /belle-sip/src/sdp/sdp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/sdp/sdp.txt -------------------------------------------------------------------------------- /belle-sip/src/sip/sip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/sip/sip.txt -------------------------------------------------------------------------------- /belle-sip/src/siplistener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/siplistener.c -------------------------------------------------------------------------------- /belle-sip/src/sipstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/sipstack.c -------------------------------------------------------------------------------- /belle-sip/src/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/transaction.c -------------------------------------------------------------------------------- /belle-sip/src/wakelock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/src/wakelock.c -------------------------------------------------------------------------------- /belle-sip/tester/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/Makefile.am -------------------------------------------------------------------------------- /belle-sip/tester/afl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/afl.md -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Accept-Encoding_: -------------------------------------------------------------------------------- 1 | Accept-Encoding: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Accept-Language_: -------------------------------------------------------------------------------- 1 | Accept-Language: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Accept_: -------------------------------------------------------------------------------- 1 | Accept: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Alert-Info_: -------------------------------------------------------------------------------- 1 | Alert-Info: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Allow_: -------------------------------------------------------------------------------- 1 | Allow: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Apr: -------------------------------------------------------------------------------- 1 | Apr -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Aug: -------------------------------------------------------------------------------- 1 | Aug -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Authentication-Info_: -------------------------------------------------------------------------------- 1 | Authentication-Info: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Authorization_: -------------------------------------------------------------------------------- 1 | Authorization: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/CSeq_: -------------------------------------------------------------------------------- 1 | CSeq: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Call-ID_: -------------------------------------------------------------------------------- 1 | Call-ID: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Call-Info_: -------------------------------------------------------------------------------- 1 | Call-Info: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Contact_: -------------------------------------------------------------------------------- 1 | Contact: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Content-Disposition_: -------------------------------------------------------------------------------- 1 | Content-Disposition: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Content-Encoding_: -------------------------------------------------------------------------------- 1 | Content-Encoding: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Content-Language_: -------------------------------------------------------------------------------- 1 | Content-Language: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Content-Length_: -------------------------------------------------------------------------------- 1 | Content-Length: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Content-Type_: -------------------------------------------------------------------------------- 1 | Content-Type: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Date_: -------------------------------------------------------------------------------- 1 | Date: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Dec: -------------------------------------------------------------------------------- 1 | Dec -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Digest_: -------------------------------------------------------------------------------- 1 | Digest: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Error-Info_: -------------------------------------------------------------------------------- 1 | Error-Info: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Expires_: -------------------------------------------------------------------------------- 1 | expires= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Feb: -------------------------------------------------------------------------------- 1 | Feb -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Fri: -------------------------------------------------------------------------------- 1 | Fri -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/From_: -------------------------------------------------------------------------------- 1 | From: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/GMT: -------------------------------------------------------------------------------- 1 | GMT -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/In-Reply-To_: -------------------------------------------------------------------------------- 1 | In-Reply-To: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Jan: -------------------------------------------------------------------------------- 1 | Jan -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Jul: -------------------------------------------------------------------------------- 1 | Jul -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Jun: -------------------------------------------------------------------------------- 1 | Jun -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/MIME-Version_: -------------------------------------------------------------------------------- 1 | MIME-Version: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Mar: -------------------------------------------------------------------------------- 1 | Mar -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Max-Forwards_: -------------------------------------------------------------------------------- 1 | Max-Forwards: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/May: -------------------------------------------------------------------------------- 1 | May -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Min-Expires_: -------------------------------------------------------------------------------- 1 | Min-Expires: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Mon: -------------------------------------------------------------------------------- 1 | Mon -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Nov: -------------------------------------------------------------------------------- 1 | Nov -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Oct: -------------------------------------------------------------------------------- 1 | Oct -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Organization_: -------------------------------------------------------------------------------- 1 | Organization: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Priority_: -------------------------------------------------------------------------------- 1 | Priority: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Proxy-Authenticate_: -------------------------------------------------------------------------------- 1 | Proxy-Authenticate: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Proxy-Authorization_: -------------------------------------------------------------------------------- 1 | Proxy-Authorization: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Proxy-Require_: -------------------------------------------------------------------------------- 1 | Proxy-Require: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Record-Route_: -------------------------------------------------------------------------------- 1 | Record-Route: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Reply-To_: -------------------------------------------------------------------------------- 1 | Reply-To: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Require_: -------------------------------------------------------------------------------- 1 | Require: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Retry-After_: -------------------------------------------------------------------------------- 1 | Retry-After: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Route_: -------------------------------------------------------------------------------- 1 | Route: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/SCTP: -------------------------------------------------------------------------------- 1 | sctp -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/SIP: -------------------------------------------------------------------------------- 1 | SIP -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Sat: -------------------------------------------------------------------------------- 1 | Sat -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Sep: -------------------------------------------------------------------------------- 1 | Sep -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Server_: -------------------------------------------------------------------------------- 1 | Server: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Subject_: -------------------------------------------------------------------------------- 1 | Subject: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Sun: -------------------------------------------------------------------------------- 1 | Sun -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Supported_: -------------------------------------------------------------------------------- 1 | Supported: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/TCP: -------------------------------------------------------------------------------- 1 | tcp -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/TLS: -------------------------------------------------------------------------------- 1 | tls -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Thu: -------------------------------------------------------------------------------- 1 | Thu -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Timestamp_: -------------------------------------------------------------------------------- 1 | Timestamp: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/To: -------------------------------------------------------------------------------- 1 | To -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Tue: -------------------------------------------------------------------------------- 1 | Tue -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/UDP: -------------------------------------------------------------------------------- 1 | udp -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Unsupported_: -------------------------------------------------------------------------------- 1 | Unsupported: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/User-Agent_: -------------------------------------------------------------------------------- 1 | User-Agent: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Via_: -------------------------------------------------------------------------------- 1 | Via: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/WWW-Authenticate_: -------------------------------------------------------------------------------- 1 | WWW-Authenticate: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Warning_: -------------------------------------------------------------------------------- 1 | Warning: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/Wed: -------------------------------------------------------------------------------- 1 | Wed -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/alert: -------------------------------------------------------------------------------- 1 | alert -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/algorithm_: -------------------------------------------------------------------------------- 1 | algorithm= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/application: -------------------------------------------------------------------------------- 1 | application -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/audio: -------------------------------------------------------------------------------- 1 | audio -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/auth: -------------------------------------------------------------------------------- 1 | auth -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/auth-int: -------------------------------------------------------------------------------- 1 | auth-int -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/branch: -------------------------------------------------------------------------------- 1 | branch -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/branch_: -------------------------------------------------------------------------------- 1 | branch= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/c_: -------------------------------------------------------------------------------- 1 | c: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/card: -------------------------------------------------------------------------------- 1 | card -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/cnonce_: -------------------------------------------------------------------------------- 1 | cnonce= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/domain_: -------------------------------------------------------------------------------- 1 | domain= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/duration_: -------------------------------------------------------------------------------- 1 | duration= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/e_: -------------------------------------------------------------------------------- 1 | e: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/emergency: -------------------------------------------------------------------------------- 1 | emergency -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/f_: -------------------------------------------------------------------------------- 1 | f: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/false: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/handling_: -------------------------------------------------------------------------------- 1 | handling= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/i_: -------------------------------------------------------------------------------- 1 | i: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/icon: -------------------------------------------------------------------------------- 1 | icon -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/image: -------------------------------------------------------------------------------- 1 | image -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/info: -------------------------------------------------------------------------------- 1 | info -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/ip: -------------------------------------------------------------------------------- 1 | ip -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/k_: -------------------------------------------------------------------------------- 1 | k: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/l_: -------------------------------------------------------------------------------- 1 | l: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/lr: -------------------------------------------------------------------------------- 1 | lr -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/m_: -------------------------------------------------------------------------------- 1 | m: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/maddr_: -------------------------------------------------------------------------------- 1 | maddr= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/message: -------------------------------------------------------------------------------- 1 | message -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/multipart: -------------------------------------------------------------------------------- 1 | multipart -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/nc_: -------------------------------------------------------------------------------- 1 | nc= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/nextnonce_: -------------------------------------------------------------------------------- 1 | nextnonce= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/non-urgent: -------------------------------------------------------------------------------- 1 | non-urgent -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/nonce_: -------------------------------------------------------------------------------- 1 | nonce= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/normal: -------------------------------------------------------------------------------- 1 | normal -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/opaque_: -------------------------------------------------------------------------------- 1 | opaque= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/optional: -------------------------------------------------------------------------------- 1 | optional -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/phone: -------------------------------------------------------------------------------- 1 | phone -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/purpose_: -------------------------------------------------------------------------------- 1 | purpose= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/q_: -------------------------------------------------------------------------------- 1 | q= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/qop_: -------------------------------------------------------------------------------- 1 | qop= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/realm_: -------------------------------------------------------------------------------- 1 | realm= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/received_: -------------------------------------------------------------------------------- 1 | received= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/render: -------------------------------------------------------------------------------- 1 | render -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/required: -------------------------------------------------------------------------------- 1 | required -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/response_: -------------------------------------------------------------------------------- 1 | response= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/rspauth_: -------------------------------------------------------------------------------- 1 | rspauth= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/s_: -------------------------------------------------------------------------------- 1 | s: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/session: -------------------------------------------------------------------------------- 1 | session -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/stale_: -------------------------------------------------------------------------------- 1 | stale= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/t_: -------------------------------------------------------------------------------- 1 | t: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/tag_: -------------------------------------------------------------------------------- 1 | tag= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/text: -------------------------------------------------------------------------------- 1 | text -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/true: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/ttl_: -------------------------------------------------------------------------------- 1 | ttl= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/urgent: -------------------------------------------------------------------------------- 1 | urgent -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/uri_: -------------------------------------------------------------------------------- 1 | uri= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/username_: -------------------------------------------------------------------------------- 1 | username= -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/v_: -------------------------------------------------------------------------------- 1 | v: -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/video: -------------------------------------------------------------------------------- 1 | video -------------------------------------------------------------------------------- /belle-sip/tester/afl/sip_dict/x-: -------------------------------------------------------------------------------- 1 | x- -------------------------------------------------------------------------------- /belle-sip/tester/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/bench.cc -------------------------------------------------------------------------------- /belle-sip/tester/cast_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/cast_test.c -------------------------------------------------------------------------------- /belle-sip/tester/criterion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/criterion.hpp -------------------------------------------------------------------------------- /belle-sip/tester/describe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/describe.c -------------------------------------------------------------------------------- /belle-sip/tester/foo.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /belle-sip/tester/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/get.c -------------------------------------------------------------------------------- /belle-sip/tester/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/parse.c -------------------------------------------------------------------------------- /belle-sip/tester/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/resolve.c -------------------------------------------------------------------------------- /belle-sip/tester/tester_hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belle-sip/tester/tester_hosts -------------------------------------------------------------------------------- /belr/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/.clang-format -------------------------------------------------------------------------------- /belr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/.gitignore -------------------------------------------------------------------------------- /belr/BelrConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/BelrConfig.cmake.in -------------------------------------------------------------------------------- /belr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/CHANGELOG.md -------------------------------------------------------------------------------- /belr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/CMakeLists.txt -------------------------------------------------------------------------------- /belr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/LICENSE.txt -------------------------------------------------------------------------------- /belr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/README.md -------------------------------------------------------------------------------- /belr/belr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/belr.pc.in -------------------------------------------------------------------------------- /belr/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/build/CMakeLists.txt -------------------------------------------------------------------------------- /belr/build/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/build/android/Android.mk -------------------------------------------------------------------------------- /belr/build/osx/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/build/osx/Info.plist.in -------------------------------------------------------------------------------- /belr/build/rpm/belr.spec.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/build/rpm/belr.spec.cmake -------------------------------------------------------------------------------- /belr/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/config.h.cmake -------------------------------------------------------------------------------- /belr/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/include/CMakeLists.txt -------------------------------------------------------------------------------- /belr/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=belr 2 | -------------------------------------------------------------------------------- /belr/include/belr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/include/belr/Makefile.am -------------------------------------------------------------------------------- /belr/include/belr/abnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/include/belr/abnf.h -------------------------------------------------------------------------------- /belr/include/belr/belr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/include/belr/belr.h -------------------------------------------------------------------------------- /belr/include/belr/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/include/belr/parser.h -------------------------------------------------------------------------------- /belr/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/CMakeLists.txt -------------------------------------------------------------------------------- /belr/src/abnf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/abnf.cpp -------------------------------------------------------------------------------- /belr/src/belr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/belr.cpp -------------------------------------------------------------------------------- /belr/src/binarystream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/binarystream.cpp -------------------------------------------------------------------------------- /belr/src/binarystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/binarystream.h -------------------------------------------------------------------------------- /belr/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/common.h -------------------------------------------------------------------------------- /belr/src/grammarbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/grammarbuilder.cpp -------------------------------------------------------------------------------- /belr/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/src/parser.cpp -------------------------------------------------------------------------------- /belr/tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/CMakeLists.txt -------------------------------------------------------------------------------- /belr/tester/belr-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/belr-tester.cpp -------------------------------------------------------------------------------- /belr/tester/belr-tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/belr-tester.h -------------------------------------------------------------------------------- /belr/tester/grammar-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/grammar-tester.cpp -------------------------------------------------------------------------------- /belr/tester/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/parser.cpp -------------------------------------------------------------------------------- /belr/tester/res/register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/res/register.txt -------------------------------------------------------------------------------- /belr/tester/res/response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/res/response.txt -------------------------------------------------------------------------------- /belr/tester/res/sipgrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tester/res/sipgrammar.txt -------------------------------------------------------------------------------- /belr/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/CMakeLists.txt -------------------------------------------------------------------------------- /belr/tools/belr-compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/belr-compiler.cc -------------------------------------------------------------------------------- /belr/tools/belr-demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/belr-demo.cc -------------------------------------------------------------------------------- /belr/tools/belr-parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/belr-parse.cc -------------------------------------------------------------------------------- /belr/tools/identitygrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/identitygrammar.txt -------------------------------------------------------------------------------- /belr/tools/sipgrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/sipgrammar.txt -------------------------------------------------------------------------------- /belr/tools/vcardgrammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/vcardgrammar.txt -------------------------------------------------------------------------------- /belr/tools/vcardsample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/belr/tools/vcardsample.txt -------------------------------------------------------------------------------- /bzrtp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/.gitignore -------------------------------------------------------------------------------- /bzrtp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/Android.mk -------------------------------------------------------------------------------- /bzrtp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/CHANGELOG.md -------------------------------------------------------------------------------- /bzrtp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/CMakeLists.txt -------------------------------------------------------------------------------- /bzrtp/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/Doxyfile.in -------------------------------------------------------------------------------- /bzrtp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/LICENSE.txt -------------------------------------------------------------------------------- /bzrtp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/Makefile.am -------------------------------------------------------------------------------- /bzrtp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/README.md -------------------------------------------------------------------------------- /bzrtp/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/autogen.sh -------------------------------------------------------------------------------- /bzrtp/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/build/CMakeLists.txt -------------------------------------------------------------------------------- /bzrtp/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/config.h.cmake -------------------------------------------------------------------------------- /bzrtp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/configure.ac -------------------------------------------------------------------------------- /bzrtp/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/CMakeLists.txt -------------------------------------------------------------------------------- /bzrtp/include/MSVC/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/MSVC/stdint.h -------------------------------------------------------------------------------- /bzrtp/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/Makefile.am -------------------------------------------------------------------------------- /bzrtp/include/bzrtp/bzrtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/bzrtp/bzrtp.h -------------------------------------------------------------------------------- /bzrtp/include/cryptoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/cryptoUtils.h -------------------------------------------------------------------------------- /bzrtp/include/packetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/packetParser.h -------------------------------------------------------------------------------- /bzrtp/include/stateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/stateMachine.h -------------------------------------------------------------------------------- /bzrtp/include/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/typedef.h -------------------------------------------------------------------------------- /bzrtp/include/zidCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/include/zidCache.h -------------------------------------------------------------------------------- /bzrtp/libbzrtp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/libbzrtp.pc.in -------------------------------------------------------------------------------- /bzrtp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/CMakeLists.txt -------------------------------------------------------------------------------- /bzrtp/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/Makefile.am -------------------------------------------------------------------------------- /bzrtp/src/bzrtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/bzrtp.c -------------------------------------------------------------------------------- /bzrtp/src/cryptoUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/cryptoUtils.cc -------------------------------------------------------------------------------- /bzrtp/src/packetParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/packetParser.c -------------------------------------------------------------------------------- /bzrtp/src/pgpwords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/pgpwords.c -------------------------------------------------------------------------------- /bzrtp/src/stateMachine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/stateMachine.c -------------------------------------------------------------------------------- /bzrtp/src/zidCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/src/zidCache.c -------------------------------------------------------------------------------- /bzrtp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/CMakeLists.txt -------------------------------------------------------------------------------- /bzrtp/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/Makefile.am -------------------------------------------------------------------------------- /bzrtp/test/bzrtpConfigsTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpConfigsTest.c -------------------------------------------------------------------------------- /bzrtp/test/bzrtpCryptoTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpCryptoTest.cc -------------------------------------------------------------------------------- /bzrtp/test/bzrtpParserTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpParserTest.c -------------------------------------------------------------------------------- /bzrtp/test/bzrtpTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpTest.c -------------------------------------------------------------------------------- /bzrtp/test/bzrtpTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpTest.h -------------------------------------------------------------------------------- /bzrtp/test/bzrtpZidCacheTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/bzrtpZidCacheTest.c -------------------------------------------------------------------------------- /bzrtp/test/testUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/testUtils.c -------------------------------------------------------------------------------- /bzrtp/test/testUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/bzrtp/test/testUtils.h -------------------------------------------------------------------------------- /cmake/Android/CopyLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Android/CopyLibs.cmake -------------------------------------------------------------------------------- /cmake/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Android/gradlew -------------------------------------------------------------------------------- /cmake/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Android/gradlew.bat -------------------------------------------------------------------------------- /cmake/Android/strip.sh.cmake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | @CMAKE_STRIP@ $* 4 | -------------------------------------------------------------------------------- /cmake/Android/wrap.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Android/wrap.sh.cmake -------------------------------------------------------------------------------- /cmake/Android/wrap.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Android/wrap.sh.in -------------------------------------------------------------------------------- /cmake/Autotools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Autotools/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/Autotools/build.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Autotools/build.sh.cmake -------------------------------------------------------------------------------- /cmake/BCProjects.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/BCProjects.cmake -------------------------------------------------------------------------------- /cmake/HWSanitizer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/HWSanitizer.cmake -------------------------------------------------------------------------------- /cmake/IOS/CleanSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/IOS/CleanSDK.cmake -------------------------------------------------------------------------------- /cmake/IOS/GenerateSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/IOS/GenerateSDK.cmake -------------------------------------------------------------------------------- /cmake/IOS/Podfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/IOS/Podfile.cmake -------------------------------------------------------------------------------- /cmake/IOS/Tools/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/IOS/Tools/deploy.sh -------------------------------------------------------------------------------- /cmake/Java/CopyLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Java/CopyLibs.cmake -------------------------------------------------------------------------------- /cmake/Java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Java/gradlew -------------------------------------------------------------------------------- /cmake/Java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Java/gradlew.bat -------------------------------------------------------------------------------- /cmake/Meson/build.sh.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Meson/build.sh.cmake -------------------------------------------------------------------------------- /cmake/NuGet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/NuGet/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/NuGet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/NuGet/README.md -------------------------------------------------------------------------------- /cmake/NuGet/Windows/.gitignore: -------------------------------------------------------------------------------- 1 | Win32 2 | NuGetLinphoneSDK 3 | -------------------------------------------------------------------------------- /cmake/NuGet/Windows/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/NuGet/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/NuGet/icon.png -------------------------------------------------------------------------------- /cmake/Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Options.cmake -------------------------------------------------------------------------------- /cmake/PlatformAndroid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformAndroid.cmake -------------------------------------------------------------------------------- /cmake/PlatformCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformCommon.cmake -------------------------------------------------------------------------------- /cmake/PlatformDesktop.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformDesktop.cmake -------------------------------------------------------------------------------- /cmake/PlatformIOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformIOS.cmake -------------------------------------------------------------------------------- /cmake/PlatformJava.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformJava.cmake -------------------------------------------------------------------------------- /cmake/PlatformMacos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformMacos.cmake -------------------------------------------------------------------------------- /cmake/PlatformUWP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformUWP.cmake -------------------------------------------------------------------------------- /cmake/PlatformYocto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/PlatformYocto.cmake -------------------------------------------------------------------------------- /cmake/Sanitizer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/Sanitizer.cmake -------------------------------------------------------------------------------- /cmake/TasksAndroid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksAndroid.cmake -------------------------------------------------------------------------------- /cmake/TasksIOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksIOS.cmake -------------------------------------------------------------------------------- /cmake/TasksJava.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksJava.cmake -------------------------------------------------------------------------------- /cmake/TasksMacos.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksMacos.cmake -------------------------------------------------------------------------------- /cmake/TasksUWP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksUWP.cmake -------------------------------------------------------------------------------- /cmake/TasksWindows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TasksWindows.cmake -------------------------------------------------------------------------------- /cmake/TunnelClone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/TunnelClone.cmake -------------------------------------------------------------------------------- /cmake/hook/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/hook/pre-commit -------------------------------------------------------------------------------- /cmake/macos/CleanSDK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/macos/CleanSDK.cmake -------------------------------------------------------------------------------- /cmake/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/python/__init__.py -------------------------------------------------------------------------------- /cmake/python/setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/cmake/python/setup.cmake -------------------------------------------------------------------------------- /docker-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/Makefile -------------------------------------------------------------------------------- /docker-files/bc-dev-centos8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/bc-dev-centos8 -------------------------------------------------------------------------------- /docker-files/bc-dev-gentoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/bc-dev-gentoo -------------------------------------------------------------------------------- /docker-files/bc-dev-raspios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/bc-dev-raspios -------------------------------------------------------------------------------- /docker-files/bc-dev-rocky8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/bc-dev-rocky8 -------------------------------------------------------------------------------- /docker-files/gentoo/package.unmask: -------------------------------------------------------------------------------- 1 | =net-libs/mbedtls-9999 -------------------------------------------------------------------------------- /docker-files/gentoo/package.use-bc-tests: -------------------------------------------------------------------------------- 1 | dev-libs/linphone-sdk test 2 | -------------------------------------------------------------------------------- /docker-files/gentoo/xerces-c.sh: -------------------------------------------------------------------------------- 1 | export XERCESC_NLS_HOME=/usr/share/xerces-c/msg/ -------------------------------------------------------------------------------- /docker-files/gentoo/xterm.sh: -------------------------------------------------------------------------------- 1 | export TERM=xterm -------------------------------------------------------------------------------- /docker-files/rpmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/docker-files/rpmmacros -------------------------------------------------------------------------------- /ekt-server/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ekt-server/.clang-format -------------------------------------------------------------------------------- /ekt-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ekt-server/CMakeLists.txt -------------------------------------------------------------------------------- /ekt-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ekt-server/README.md -------------------------------------------------------------------------------- /ekt-server/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ekt-server/config.h.cmake -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/flake.nix -------------------------------------------------------------------------------- /liblinphone/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/.clang-format -------------------------------------------------------------------------------- /liblinphone/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/.cproject -------------------------------------------------------------------------------- /liblinphone/.gitattributes: -------------------------------------------------------------------------------- 1 | *.belr binary -------------------------------------------------------------------------------- /liblinphone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/.gitignore -------------------------------------------------------------------------------- /liblinphone/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/.gitlab-ci.yml -------------------------------------------------------------------------------- /liblinphone/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/.project -------------------------------------------------------------------------------- /liblinphone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/CHANGELOG.md -------------------------------------------------------------------------------- /liblinphone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/CMakeLists.txt -------------------------------------------------------------------------------- /liblinphone/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/LICENSE.txt -------------------------------------------------------------------------------- /liblinphone/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/NEWS -------------------------------------------------------------------------------- /liblinphone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/README.md -------------------------------------------------------------------------------- /liblinphone/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/autogen.sh -------------------------------------------------------------------------------- /liblinphone/build/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=macos 2 | 3 | 4 | -------------------------------------------------------------------------------- /liblinphone/build/rpm/lp-autoanswer.conf: -------------------------------------------------------------------------------- 1 | OPTIONS=--verbose" 2 | 3 | -------------------------------------------------------------------------------- /liblinphone/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/config.h.cmake -------------------------------------------------------------------------------- /liblinphone/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/config.rpath -------------------------------------------------------------------------------- /liblinphone/console/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/console/TODO -------------------------------------------------------------------------------- /liblinphone/console/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/console/shell.c -------------------------------------------------------------------------------- /liblinphone/coreapi/chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/chat.c -------------------------------------------------------------------------------- /liblinphone/coreapi/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/enum.c -------------------------------------------------------------------------------- /liblinphone/coreapi/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/enum.h -------------------------------------------------------------------------------- /liblinphone/coreapi/help/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=doc examples 2 | -------------------------------------------------------------------------------- /liblinphone/coreapi/help/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=doxygen 2 | -------------------------------------------------------------------------------- /liblinphone/coreapi/help/examples/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=C 2 | -------------------------------------------------------------------------------- /liblinphone/coreapi/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/info.c -------------------------------------------------------------------------------- /liblinphone/coreapi/lsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/lsd.c -------------------------------------------------------------------------------- /liblinphone/coreapi/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/misc.c -------------------------------------------------------------------------------- /liblinphone/coreapi/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/coreapi/proxy.c -------------------------------------------------------------------------------- /liblinphone/daemon/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/daemon/daemon.h -------------------------------------------------------------------------------- /liblinphone/include/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=sal/sal.h 2 | SUBDIRS=linphone 3 | -------------------------------------------------------------------------------- /liblinphone/libxsd/FLOSSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/libxsd/FLOSSE -------------------------------------------------------------------------------- /liblinphone/libxsd/GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/libxsd/GPLv2 -------------------------------------------------------------------------------- /liblinphone/libxsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/libxsd/LICENSE -------------------------------------------------------------------------------- /liblinphone/libxsd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/libxsd/README -------------------------------------------------------------------------------- /liblinphone/linphone.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/linphone.iss.in -------------------------------------------------------------------------------- /liblinphone/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/.gitignore -------------------------------------------------------------------------------- /liblinphone/m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/Makefile.am -------------------------------------------------------------------------------- /liblinphone/m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/codeset.m4 -------------------------------------------------------------------------------- /liblinphone/m4/exosip.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/exosip.m4 -------------------------------------------------------------------------------- /liblinphone/m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/gettext.m4 -------------------------------------------------------------------------------- /liblinphone/m4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/glibc2.m4 -------------------------------------------------------------------------------- /liblinphone/m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/glibc21.m4 -------------------------------------------------------------------------------- /liblinphone/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/iconv.m4 -------------------------------------------------------------------------------- /liblinphone/m4/ilbc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/ilbc.m4 -------------------------------------------------------------------------------- /liblinphone/m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/intdiv0.m4 -------------------------------------------------------------------------------- /liblinphone/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/intl.m4 -------------------------------------------------------------------------------- /liblinphone/m4/intldir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/intldir.m4 -------------------------------------------------------------------------------- /liblinphone/m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/intmax.m4 -------------------------------------------------------------------------------- /liblinphone/m4/inttypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/inttypes.m4 -------------------------------------------------------------------------------- /liblinphone/m4/isc-posix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/isc-posix.m4 -------------------------------------------------------------------------------- /liblinphone/m4/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/lcmessage.m4 -------------------------------------------------------------------------------- /liblinphone/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/lib-ld.m4 -------------------------------------------------------------------------------- /liblinphone/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/lib-link.m4 -------------------------------------------------------------------------------- /liblinphone/m4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/lock.m4 -------------------------------------------------------------------------------- /liblinphone/m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/longlong.m4 -------------------------------------------------------------------------------- /liblinphone/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/nls.m4 -------------------------------------------------------------------------------- /liblinphone/m4/obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/obsolete.m4 -------------------------------------------------------------------------------- /liblinphone/m4/ortp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/ortp.m4 -------------------------------------------------------------------------------- /liblinphone/m4/osip.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/osip.m4 -------------------------------------------------------------------------------- /liblinphone/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/po.m4 -------------------------------------------------------------------------------- /liblinphone/m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/progtest.m4 -------------------------------------------------------------------------------- /liblinphone/m4/readline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/readline.m4 -------------------------------------------------------------------------------- /liblinphone/m4/signed.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/signed.m4 -------------------------------------------------------------------------------- /liblinphone/m4/size_max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/size_max.m4 -------------------------------------------------------------------------------- /liblinphone/m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/stdint_h.m4 -------------------------------------------------------------------------------- /liblinphone/m4/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/uintmax_t.m4 -------------------------------------------------------------------------------- /liblinphone/m4/ulonglong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/ulonglong.m4 -------------------------------------------------------------------------------- /liblinphone/m4/video.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/video.m4 -------------------------------------------------------------------------------- /liblinphone/m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/wchar_t.m4 -------------------------------------------------------------------------------- /liblinphone/m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/wint_t.m4 -------------------------------------------------------------------------------- /liblinphone/m4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/m4/xsize.m4 -------------------------------------------------------------------------------- /liblinphone/share/fr/Makefile.am: -------------------------------------------------------------------------------- 1 | HELPLANG=fr 2 | 3 | include ../Makefile.inc 4 | -------------------------------------------------------------------------------- /liblinphone/share/it/Makefile.am: -------------------------------------------------------------------------------- 1 | HELPLANG=it 2 | 3 | include ../Makefile.inc 4 | -------------------------------------------------------------------------------- /liblinphone/share/ja/Makefile.am: -------------------------------------------------------------------------------- 1 | HELPLANG=ja 2 | 3 | include ../Makefile.inc 4 | -------------------------------------------------------------------------------- /liblinphone/src/call/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/call/call.h -------------------------------------------------------------------------------- /liblinphone/src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/core/core.h -------------------------------------------------------------------------------- /liblinphone/src/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/enums.h -------------------------------------------------------------------------------- /liblinphone/src/ldap/ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/ldap/ldap.h -------------------------------------------------------------------------------- /liblinphone/src/sal/op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/sal/op.cpp -------------------------------------------------------------------------------- /liblinphone/src/sal/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/sal/op.h -------------------------------------------------------------------------------- /liblinphone/src/sal/sal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/sal/sal.cpp -------------------------------------------------------------------------------- /liblinphone/src/sal/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/sal/sal.h -------------------------------------------------------------------------------- /liblinphone/src/xml/imdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/xml/imdn.h -------------------------------------------------------------------------------- /liblinphone/src/xml/rlmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/xml/rlmi.h -------------------------------------------------------------------------------- /liblinphone/src/xml/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/xml/xml.cpp -------------------------------------------------------------------------------- /liblinphone/src/xml/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/xml/xml.h -------------------------------------------------------------------------------- /liblinphone/src/xml/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/src/xml/xml.xsd -------------------------------------------------------------------------------- /liblinphone/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /liblinphone/tester/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/tester/README -------------------------------------------------------------------------------- /liblinphone/tester/certificates/client/openssl-client.cnf: -------------------------------------------------------------------------------- 1 | use cn/openssl-cn.cnf 2 | -------------------------------------------------------------------------------- /liblinphone/tester/tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/tester/tester.c -------------------------------------------------------------------------------- /liblinphone/tools/my_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/liblinphone/tools/my_jni.h -------------------------------------------------------------------------------- /liblinphone/tools/python/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build 3 | linphone.c 4 | .kdev* 5 | -------------------------------------------------------------------------------- /liblinphone/wrappers/csharp/LinphoneWrapper.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /liblinphone/wrappers/java/WrapperTests/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.daemon=false 2 | -------------------------------------------------------------------------------- /lime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/.gitignore -------------------------------------------------------------------------------- /lime/AUTHORS.md: -------------------------------------------------------------------------------- 1 | * Johan Pascal 2 | -------------------------------------------------------------------------------- /lime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/CHANGELOG.md -------------------------------------------------------------------------------- /lime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/CMakeLists.txt -------------------------------------------------------------------------------- /lime/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/Doxyfile.in -------------------------------------------------------------------------------- /lime/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/LICENSE.txt -------------------------------------------------------------------------------- /lime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/README.md -------------------------------------------------------------------------------- /lime/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/build/CMakeLists.txt -------------------------------------------------------------------------------- /lime/cmake/FindSoci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/cmake/FindSoci.cmake -------------------------------------------------------------------------------- /lime/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/config.h.cmake -------------------------------------------------------------------------------- /lime/docker/Belledonne.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/docker/Belledonne.repo -------------------------------------------------------------------------------- /lime/docker/lime-from-src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/docker/lime-from-src -------------------------------------------------------------------------------- /lime/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/include/CMakeLists.txt -------------------------------------------------------------------------------- /lime/include/lime/lime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/include/lime/lime.hpp -------------------------------------------------------------------------------- /lime/lime.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/lime.pc.in -------------------------------------------------------------------------------- /lime/lime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/lime.pdf -------------------------------------------------------------------------------- /lime/lime.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/lime.tex -------------------------------------------------------------------------------- /lime/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/CMakeLists.txt -------------------------------------------------------------------------------- /lime/src/lime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime.cpp -------------------------------------------------------------------------------- /lime/src/lime_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_defines.hpp -------------------------------------------------------------------------------- /lime/src/lime_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_impl.hpp -------------------------------------------------------------------------------- /lime/src/lime_keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_keys.hpp -------------------------------------------------------------------------------- /lime/src/lime_lime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_lime.hpp -------------------------------------------------------------------------------- /lime/src/lime_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_log.cpp -------------------------------------------------------------------------------- /lime/src/lime_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_log.hpp -------------------------------------------------------------------------------- /lime/src/lime_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_manager.cpp -------------------------------------------------------------------------------- /lime/src/lime_settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_settings.hpp -------------------------------------------------------------------------------- /lime/src/lime_x3dh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_x3dh.cpp -------------------------------------------------------------------------------- /lime/src/lime_x3dh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/src/lime_x3dh.hpp -------------------------------------------------------------------------------- /lime/tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/tester/CMakeLists.txt -------------------------------------------------------------------------------- /lime/tester/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/tester/data/cacert.pem -------------------------------------------------------------------------------- /lime/tester/lime-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/tester/lime-tester.cpp -------------------------------------------------------------------------------- /lime/tester/lime-tester.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/lime/tester/lime-tester.hpp -------------------------------------------------------------------------------- /lime/tester/server/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules* 2 | -------------------------------------------------------------------------------- /mediastreamer2/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/.cproject -------------------------------------------------------------------------------- /mediastreamer2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/.gitignore -------------------------------------------------------------------------------- /mediastreamer2/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/.project -------------------------------------------------------------------------------- /mediastreamer2/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/CHANGELOG.md -------------------------------------------------------------------------------- /mediastreamer2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/LICENSE.txt -------------------------------------------------------------------------------- /mediastreamer2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/Makefile.am -------------------------------------------------------------------------------- /mediastreamer2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/README.md -------------------------------------------------------------------------------- /mediastreamer2/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/acinclude.m4 -------------------------------------------------------------------------------- /mediastreamer2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/autogen.sh -------------------------------------------------------------------------------- /mediastreamer2/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/config.rpath -------------------------------------------------------------------------------- /mediastreamer2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/configure.ac -------------------------------------------------------------------------------- /mediastreamer2/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /mediastreamer2/debian/patches/series: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mediastreamer2/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/debian/rules -------------------------------------------------------------------------------- /mediastreamer2/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /mediastreamer2/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/debian/watch -------------------------------------------------------------------------------- /mediastreamer2/extract-filters-names.awk: -------------------------------------------------------------------------------- 1 | BEGIN { FS="[()]" ; }; /^\t*MS_FILTER_DESC_EXPORT/{ printf("%s\n", $2) } -------------------------------------------------------------------------------- /mediastreamer2/help/.gitignore: -------------------------------------------------------------------------------- 1 | Doxyfile 2 | -------------------------------------------------------------------------------- /mediastreamer2/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=mediastreamer2 2 | -------------------------------------------------------------------------------- /mediastreamer2/include/OpenGL/README.md: -------------------------------------------------------------------------------- 1 | angle.windowsstore\2.1.13 -------------------------------------------------------------------------------- /mediastreamer2/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/java/gradlew -------------------------------------------------------------------------------- /mediastreamer2/m4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=\ 2 | obsolete.m4 3 | -------------------------------------------------------------------------------- /mediastreamer2/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/m4/po.m4 -------------------------------------------------------------------------------- /mediastreamer2/pkg.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/pkg.list -------------------------------------------------------------------------------- /mediastreamer2/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/ChangeLog -------------------------------------------------------------------------------- /mediastreamer2/po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr it de ja es pl cs nl sv pt_BR hu ru zh_CN 2 | -------------------------------------------------------------------------------- /mediastreamer2/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/cs.po -------------------------------------------------------------------------------- /mediastreamer2/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/de.po -------------------------------------------------------------------------------- /mediastreamer2/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/es.po -------------------------------------------------------------------------------- /mediastreamer2/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/fr.po -------------------------------------------------------------------------------- /mediastreamer2/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/hu.po -------------------------------------------------------------------------------- /mediastreamer2/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/it.po -------------------------------------------------------------------------------- /mediastreamer2/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/ja.po -------------------------------------------------------------------------------- /mediastreamer2/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/nl.po -------------------------------------------------------------------------------- /mediastreamer2/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/pl.po -------------------------------------------------------------------------------- /mediastreamer2/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/pt_BR.po -------------------------------------------------------------------------------- /mediastreamer2/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/ru.po -------------------------------------------------------------------------------- /mediastreamer2/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/sv.po -------------------------------------------------------------------------------- /mediastreamer2/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/po/zh_CN.po -------------------------------------------------------------------------------- /mediastreamer2/tools/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/tools/echo.c -------------------------------------------------------------------------------- /mediastreamer2/tools/ios/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /mediastreamer2/tools/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/tools/ring.c -------------------------------------------------------------------------------- /mediastreamer2/tools/xxd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mediastreamer2/tools/xxd.py -------------------------------------------------------------------------------- /msaaudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msaaudio/CMakeLists.txt -------------------------------------------------------------------------------- /msaaudio/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msaaudio/LICENSE.txt -------------------------------------------------------------------------------- /msaaudio/msaaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msaaudio/msaaudio.cpp -------------------------------------------------------------------------------- /msamr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/.gitignore -------------------------------------------------------------------------------- /msamr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/AUTHORS -------------------------------------------------------------------------------- /msamr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/Android.mk -------------------------------------------------------------------------------- /msamr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/CMakeLists.txt -------------------------------------------------------------------------------- /msamr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/COPYING -------------------------------------------------------------------------------- /msamr/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msamr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/Makefile.am -------------------------------------------------------------------------------- /msamr/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/NEWS -------------------------------------------------------------------------------- /msamr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/README -------------------------------------------------------------------------------- /msamr/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/autogen.sh -------------------------------------------------------------------------------- /msamr/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/config.h.cmake -------------------------------------------------------------------------------- /msamr/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/configure.ac -------------------------------------------------------------------------------- /msamr/include/MSVC/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/include/MSVC/stdint.h -------------------------------------------------------------------------------- /msamr/msamr.iss.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/msamr.iss.in -------------------------------------------------------------------------------- /msamr/msamr.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/msamr.spec.in -------------------------------------------------------------------------------- /msamr/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/src/CMakeLists.txt -------------------------------------------------------------------------------- /msamr/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/src/Makefile.am -------------------------------------------------------------------------------- /msamr/src/amrnb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/src/amrnb.c -------------------------------------------------------------------------------- /msamr/src/amrwb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/src/amrwb.c -------------------------------------------------------------------------------- /msamr/src/msamr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msamr/src/msamr.c -------------------------------------------------------------------------------- /mscodec2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/.gitignore -------------------------------------------------------------------------------- /mscodec2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/AUTHORS -------------------------------------------------------------------------------- /mscodec2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/Android.mk -------------------------------------------------------------------------------- /mscodec2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/CMakeLists.txt -------------------------------------------------------------------------------- /mscodec2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/COPYING -------------------------------------------------------------------------------- /mscodec2/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mscodec2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/Makefile.am -------------------------------------------------------------------------------- /mscodec2/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mscodec2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/README -------------------------------------------------------------------------------- /mscodec2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/autogen.sh -------------------------------------------------------------------------------- /mscodec2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/configure.ac -------------------------------------------------------------------------------- /mscodec2/mscodec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mscodec2/mscodec2.c -------------------------------------------------------------------------------- /msoboe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msoboe/CMakeLists.txt -------------------------------------------------------------------------------- /msoboe/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msoboe/LICENSE.txt -------------------------------------------------------------------------------- /msoboe/msoboe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msoboe/msoboe.cpp -------------------------------------------------------------------------------- /msoboe/msoboe_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msoboe/msoboe_player.cpp -------------------------------------------------------------------------------- /msoboe/msoboe_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msoboe/msoboe_recorder.cpp -------------------------------------------------------------------------------- /msopenh264/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/.gitignore -------------------------------------------------------------------------------- /msopenh264/AUTHORS: -------------------------------------------------------------------------------- 1 | Belledonne Communications SARL. 2 | -------------------------------------------------------------------------------- /msopenh264/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/Android.mk -------------------------------------------------------------------------------- /msopenh264/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/CMakeLists.txt -------------------------------------------------------------------------------- /msopenh264/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/COPYING -------------------------------------------------------------------------------- /msopenh264/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msopenh264/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/INSTALL -------------------------------------------------------------------------------- /msopenh264/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/Makefile.am -------------------------------------------------------------------------------- /msopenh264/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/NEWS -------------------------------------------------------------------------------- /msopenh264/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/README.md -------------------------------------------------------------------------------- /msopenh264/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/autogen.sh -------------------------------------------------------------------------------- /msopenh264/build/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=vs 2 | 3 | -------------------------------------------------------------------------------- /msopenh264/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/config.h.cmake -------------------------------------------------------------------------------- /msopenh264/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/configure.ac -------------------------------------------------------------------------------- /msopenh264/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/src/Makefile.am -------------------------------------------------------------------------------- /msopenh264/src/msopenh264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/msopenh264/src/msopenh264.h -------------------------------------------------------------------------------- /mswasapi/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/.clang-format -------------------------------------------------------------------------------- /mswasapi/AUTHORS: -------------------------------------------------------------------------------- 1 | Copyright Belledonne Communications SARL. 2 | 3 | -------------------------------------------------------------------------------- /mswasapi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/CMakeLists.txt -------------------------------------------------------------------------------- /mswasapi/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/COPYING -------------------------------------------------------------------------------- /mswasapi/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mswasapi/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/NEWS -------------------------------------------------------------------------------- /mswasapi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/README -------------------------------------------------------------------------------- /mswasapi/mswasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/mswasapi.cpp -------------------------------------------------------------------------------- /mswasapi/mswasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/mswasapi.h -------------------------------------------------------------------------------- /mswasapi/mswasapi_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/mswasapi_reader.h -------------------------------------------------------------------------------- /mswasapi/mswasapi_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/mswasapi_writer.h -------------------------------------------------------------------------------- /mswasapi/system_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/system_notifier.h -------------------------------------------------------------------------------- /mswasapi/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswasapi/utils.h -------------------------------------------------------------------------------- /mswebrtc/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/.clang-format -------------------------------------------------------------------------------- /mswebrtc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/.gitignore -------------------------------------------------------------------------------- /mswebrtc/AUTHORS: -------------------------------------------------------------------------------- 1 | Copyright Belledonne Communications SARL. 2 | 3 | -------------------------------------------------------------------------------- /mswebrtc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/CHANGELOG.md -------------------------------------------------------------------------------- /mswebrtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/CMakeLists.txt -------------------------------------------------------------------------------- /mswebrtc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/COPYING -------------------------------------------------------------------------------- /mswebrtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/README.md -------------------------------------------------------------------------------- /mswebrtc/aec3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/aec3.cc -------------------------------------------------------------------------------- /mswebrtc/api/array_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/api/array_view.h -------------------------------------------------------------------------------- /mswebrtc/api/audio/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/api/audio/BUILD.gn -------------------------------------------------------------------------------- /mswebrtc/api/audio/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/api/audio/OWNERS -------------------------------------------------------------------------------- /mswebrtc/api/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/api/location.h -------------------------------------------------------------------------------- /mswebrtc/api/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/api/ref_count.h -------------------------------------------------------------------------------- /mswebrtc/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/config.h.cmake -------------------------------------------------------------------------------- /mswebrtc/mswebrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/mswebrtc.c -------------------------------------------------------------------------------- /mswebrtc/mswebrtc_aec3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/mswebrtc_aec3.cc -------------------------------------------------------------------------------- /mswebrtc/mswebrtc_aec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/mswebrtc_aec3.h -------------------------------------------------------------------------------- /mswebrtc/rtc_base/checks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/rtc_base/checks.cc -------------------------------------------------------------------------------- /mswebrtc/rtc_base/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/rtc_base/checks.h -------------------------------------------------------------------------------- /mswebrtc/rtc_base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/rtc_base/logging.h -------------------------------------------------------------------------------- /mswebrtc/third_party/abseil-cpp/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2024b 2 | -------------------------------------------------------------------------------- /mswebrtc/vad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/mswebrtc/vad.cc -------------------------------------------------------------------------------- /ortp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/.clang-format -------------------------------------------------------------------------------- /ortp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/.gitignore -------------------------------------------------------------------------------- /ortp/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/AUTHORS.md -------------------------------------------------------------------------------- /ortp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/CHANGELOG.md -------------------------------------------------------------------------------- /ortp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/CMakeLists.txt -------------------------------------------------------------------------------- /ortp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/LICENSE.txt -------------------------------------------------------------------------------- /ortp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/Makefile.am -------------------------------------------------------------------------------- /ortp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/README.md -------------------------------------------------------------------------------- /ortp/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/autogen.sh -------------------------------------------------------------------------------- /ortp/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/build/.gitignore -------------------------------------------------------------------------------- /ortp/build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/build/CMakeLists.txt -------------------------------------------------------------------------------- /ortp/build/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/build/Makefile.am -------------------------------------------------------------------------------- /ortp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/configure.ac -------------------------------------------------------------------------------- /ortp/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/changelog -------------------------------------------------------------------------------- /ortp/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /ortp/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/control -------------------------------------------------------------------------------- /ortp/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/copyright -------------------------------------------------------------------------------- /ortp/debian/libortp-dev.docs: -------------------------------------------------------------------------------- 1 | usr/share/doc/ortp-*/html/ 2 | -------------------------------------------------------------------------------- /ortp/debian/libortp13.docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | README.md 3 | -------------------------------------------------------------------------------- /ortp/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/rules -------------------------------------------------------------------------------- /ortp/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /ortp/debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/source/options -------------------------------------------------------------------------------- /ortp/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/debian/watch -------------------------------------------------------------------------------- /ortp/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/docs/.gitignore -------------------------------------------------------------------------------- /ortp/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/.gitignore -------------------------------------------------------------------------------- /ortp/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/CMakeLists.txt -------------------------------------------------------------------------------- /ortp/include/MSVC/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/MSVC/stdint.h -------------------------------------------------------------------------------- /ortp/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=ortp 2 | -------------------------------------------------------------------------------- /ortp/include/ortp/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/event.h -------------------------------------------------------------------------------- /ortp/include/ortp/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/logging.h -------------------------------------------------------------------------------- /ortp/include/ortp/nack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/nack.h -------------------------------------------------------------------------------- /ortp/include/ortp/ortp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/ortp.h -------------------------------------------------------------------------------- /ortp/include/ortp/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/port.h -------------------------------------------------------------------------------- /ortp/include/ortp/rtcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/rtcp.h -------------------------------------------------------------------------------- /ortp/include/ortp/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/rtp.h -------------------------------------------------------------------------------- /ortp/include/ortp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/include/ortp/utils.h -------------------------------------------------------------------------------- /ortp/m4/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=\ 2 | obsolete.m4 3 | -------------------------------------------------------------------------------- /ortp/m4/ld-output-def.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/m4/ld-output-def.m4 -------------------------------------------------------------------------------- /ortp/m4/obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/m4/obsolete.m4 -------------------------------------------------------------------------------- /ortp/oRTP.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/oRTP.prj -------------------------------------------------------------------------------- /ortp/oRTP.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/oRTP.pws -------------------------------------------------------------------------------- /ortp/ortp-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/ortp-config.h.cmake -------------------------------------------------------------------------------- /ortp/ortp.doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/ortp.doxygen.in -------------------------------------------------------------------------------- /ortp/ortp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/ortp.pc.in -------------------------------------------------------------------------------- /ortp/ortp.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/ortp.spec.in -------------------------------------------------------------------------------- /ortp/pkg.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/pkg.list -------------------------------------------------------------------------------- /ortp/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/.gitignore -------------------------------------------------------------------------------- /ortp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/CMakeLists.txt -------------------------------------------------------------------------------- /ortp/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/Makefile.am -------------------------------------------------------------------------------- /ortp/src/avprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/avprofile.c -------------------------------------------------------------------------------- /ortp/src/dblk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/dblk.cc -------------------------------------------------------------------------------- /ortp/src/dll_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/dll_entry.c -------------------------------------------------------------------------------- /ortp/src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/event.c -------------------------------------------------------------------------------- /ortp/src/extremum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/extremum.c -------------------------------------------------------------------------------- /ortp/src/jitterctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/jitterctl.c -------------------------------------------------------------------------------- /ortp/src/jitterctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/jitterctl.h -------------------------------------------------------------------------------- /ortp/src/kalmanrls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/kalmanrls.c -------------------------------------------------------------------------------- /ortp/src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/logging.c -------------------------------------------------------------------------------- /ortp/src/master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/master -------------------------------------------------------------------------------- /ortp/src/nack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/nack.c -------------------------------------------------------------------------------- /ortp/src/netsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/netsim.c -------------------------------------------------------------------------------- /ortp/src/ortp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/ortp.c -------------------------------------------------------------------------------- /ortp/src/payloadtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/payloadtype.c -------------------------------------------------------------------------------- /ortp/src/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/port.c -------------------------------------------------------------------------------- /ortp/src/posixtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/posixtimer.c -------------------------------------------------------------------------------- /ortp/src/rtcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtcp.c -------------------------------------------------------------------------------- /ortp/src/rtcp_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtcp_fb.c -------------------------------------------------------------------------------- /ortp/src/rtcp_xr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtcp_xr.c -------------------------------------------------------------------------------- /ortp/src/rtcpparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtcpparse.c -------------------------------------------------------------------------------- /ortp/src/rtpaudiolevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpaudiolevel.c -------------------------------------------------------------------------------- /ortp/src/rtpbundle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpbundle.cc -------------------------------------------------------------------------------- /ortp/src/rtpbundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpbundle.h -------------------------------------------------------------------------------- /ortp/src/rtpframemarking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpframemarking.c -------------------------------------------------------------------------------- /ortp/src/rtpparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpparse.c -------------------------------------------------------------------------------- /ortp/src/rtpprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpprofile.c -------------------------------------------------------------------------------- /ortp/src/rtpsession.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpsession.c -------------------------------------------------------------------------------- /ortp/src/rtpsession_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpsession_inet.c -------------------------------------------------------------------------------- /ortp/src/rtpsession_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpsession_priv.h -------------------------------------------------------------------------------- /ortp/src/rtpsignaltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtpsignaltable.c -------------------------------------------------------------------------------- /ortp/src/rtptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtptimer.c -------------------------------------------------------------------------------- /ortp/src/rtptimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/rtptimer.h -------------------------------------------------------------------------------- /ortp/src/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/scheduler.c -------------------------------------------------------------------------------- /ortp/src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/scheduler.h -------------------------------------------------------------------------------- /ortp/src/sessionset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/sessionset.c -------------------------------------------------------------------------------- /ortp/src/str_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/str_utils.c -------------------------------------------------------------------------------- /ortp/src/telephonyevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/telephonyevents.c -------------------------------------------------------------------------------- /ortp/src/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/.gitignore -------------------------------------------------------------------------------- /ortp/src/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/Makefile.am -------------------------------------------------------------------------------- /ortp/src/tests/fmtpparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/fmtpparse.c -------------------------------------------------------------------------------- /ortp/src/tests/mrtprecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/mrtprecv.c -------------------------------------------------------------------------------- /ortp/src/tests/mrtpsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/mrtpsend.c -------------------------------------------------------------------------------- /ortp/src/tests/rtpmemtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/rtpmemtest.c -------------------------------------------------------------------------------- /ortp/src/tests/rtprecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/rtprecv.c -------------------------------------------------------------------------------- /ortp/src/tests/rtpsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/rtpsend.c -------------------------------------------------------------------------------- /ortp/src/tests/test_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/test_timer.c -------------------------------------------------------------------------------- /ortp/src/tests/tevrtprecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/tevrtprecv.c -------------------------------------------------------------------------------- /ortp/src/tests/tevrtpsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/tests/tevrtpsend.c -------------------------------------------------------------------------------- /ortp/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/utils.c -------------------------------------------------------------------------------- /ortp/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/utils.h -------------------------------------------------------------------------------- /ortp/src/winrttimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/winrttimer.cpp -------------------------------------------------------------------------------- /ortp/src/winrttimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/src/winrttimer.h -------------------------------------------------------------------------------- /ortp/tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/CMakeLists.txt -------------------------------------------------------------------------------- /ortp/tester/fec_tester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/fec_tester.cc -------------------------------------------------------------------------------- /ortp/tester/ortp_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/ortp_tester.c -------------------------------------------------------------------------------- /ortp/tester/ortp_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/ortp_tester.h -------------------------------------------------------------------------------- /ortp/tester/raw/h265-iframe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/raw/h265-iframe -------------------------------------------------------------------------------- /ortp/tester/rtp_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/ortp/tester/rtp_tester.c -------------------------------------------------------------------------------- /sanitizer_ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/sanitizer_ignore.txt -------------------------------------------------------------------------------- /scripts/gas-preprocessor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/scripts/gas-preprocessor.pl -------------------------------------------------------------------------------- /tester/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/tester/Android/.gitignore -------------------------------------------------------------------------------- /tester/Android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/tester/Android/README -------------------------------------------------------------------------------- /tester/Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/certificates: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/certificates/ -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/db: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/db -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/images: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/images -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/rcfiles: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/rcfiles -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/sounds: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/sounds -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/tester_hosts: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/tester_hosts -------------------------------------------------------------------------------- /tester/Android/app/src/main/assets/config_files/vcards: -------------------------------------------------------------------------------- 1 | ../../../../../../../liblinphone/tester/vcards -------------------------------------------------------------------------------- /tester/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/tester/Android/build.gradle -------------------------------------------------------------------------------- /tester/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/tester/Android/gradlew -------------------------------------------------------------------------------- /tester/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelledonneCommunications/linphone-sdk/HEAD/tester/Android/gradlew.bat -------------------------------------------------------------------------------- /tester/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':linphone-sdk-android' 2 | --------------------------------------------------------------------------------