pkg-ubuntu: add build pipeline Ubuntu 22.04, 24.04

This commit add necessary files for building debian .deb package and
shell script to build for Ubuntu 22.04 and 24.04. You can use it by
running `extras/packaging/build_packages.sh` script.

Change-Id: I91ba97cbe932ff4207072dcb2f9d2b2887de236a
diff --git a/extras/packaging/.gitignore b/extras/packaging/.gitignore
new file mode 100644
index 0000000..84a45e1
--- /dev/null
+++ b/extras/packaging/.gitignore
@@ -0,0 +1,6 @@
+gnu-linux/debian/dhtnet
+gnu-linux/debian/.debhelper
+
+ubuntu-*/*.deb
+ubuntu-*/build-at-*
+dhtnet-*.tar.gz
diff --git a/extras/packaging/build_packages.sh b/extras/packaging/build_packages.sh
new file mode 100755
index 0000000..8fdbeb0
--- /dev/null
+++ b/extras/packaging/build_packages.sh
@@ -0,0 +1,52 @@
+#!/bin/bash
+set -e
+
+PKG_NAME=dhtnet
+PKG_VERSION=0.2.0
+
+FOLDER_NAME="${PKG_NAME}-${PKG_VERSION}"
+
+# move pwd to the directory of this script (extras/packaging)
+cd "$(dirname "$0")" || exit 1
+
+rm -Rf "${FOLDER_NAME}"
+rm -f "${PKG_NAME}-${PKG_VERSION}.tar.gz"
+mkdir -p "${FOLDER_NAME}"
+
+rm -Rf "../../dependencies/msgpack"
+rm -Rf "../../dependencies/opendht"
+rm -Rf "../../dependencies/pjproject"
+rm -Rf "../../dependencies/restinio"
+(cd ../.. && git submodule update --init --recursive)
+
+# copy source code
+cp -Rf ../../dependencies "${FOLDER_NAME}/dependencies"
+cp -Rf ../../include "${FOLDER_NAME}/include"
+cp -Rf ../../src "${FOLDER_NAME}/src"
+cp -Rf ../../tools "${FOLDER_NAME}/tools"
+cp -Rf ../../CMakeLists.txt "${FOLDER_NAME}/CMakeLists.txt"
+cp -Rf ../../COPYING "${FOLDER_NAME}/COPYING"
+cp -Rf ../../dhtnet.pc.in "${FOLDER_NAME}/dhtnet.pc.in"
+cp -Rf ../../README.md "${FOLDER_NAME}/README.md"
+
+# copy debian conf
+cp -Rf "./gnu-linux/debian" "${FOLDER_NAME}/debian"
+
+tar -czf "${PKG_NAME}-${PKG_VERSION}.tar.gz" "${FOLDER_NAME}"
+rm -Rf "${FOLDER_NAME}"
+
+echo "Archive ${PKG_NAME}-${PKG_VERSION}.tar.gz is ready, starting builds... (will take few minutes)"
+
+#######################
+
+# build deb package
+
+docker build -t dhtnet-builder:ubuntu24 -f gnu-linux/ubuntu-24.Dockerfile --build-arg PKG_NAME="$FOLDER_NAME" .
+docker run --rm -v "$(pwd)/ubuntu-24/":/build/debs -e PKG_NAME="$FOLDER_NAME" dhtnet-builder:ubuntu24
+rm -f ubuntu-24/build-at-*
+echo "Ubuntu 24.04 package built at $(date)" > "ubuntu-24/build-at-$(date +%F-%R)"
+
+docker build -t dhtnet-builder:ubuntu22 -f gnu-linux/ubuntu-22.Dockerfile --build-arg PKG_NAME="$FOLDER_NAME" .
+docker run --rm -v "$(pwd)/ubuntu-22/":/build/debs -e PKG_NAME="$FOLDER_NAME" dhtnet-builder:ubuntu22
+rm -f ubuntu-22/build-at-*
+echo "Ubuntu 22.04 package built at $(date)" > "ubuntu-22/build-at-$(date +%F-%R)"
diff --git a/extras/packaging/gnu-linux/debian/README.Debian b/extras/packaging/gnu-linux/debian/README.Debian
new file mode 100644
index 0000000..317fe21
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/README.Debian
@@ -0,0 +1,17 @@
+DHTNet - Lightweight Peer-to-Peer Communication Library
+
+DHTNet is a C++17 library designed to serve as a network overlay that provides an IP network abstraction. Its main objective is to establish secure peer-to-peer connections using public-key authentication.
+Dhtnet allows you to connect with a device simply by knowing its public key and efficiently manages peer discovery and connectivity establishment, including NAT traversal.
+
+Features:
+
+- Connection Management:
+    DHTNet simplifies the establishment and management of connections to peers, streamlining the communication process.
+- Multiplexed Sockets:
+    It provides multiplexed sockets that allow multiple channels for data transmission, optimizing network resources.
+- UPnP Integration:
+    DHTNet seamlessly integrates with UPnP, enabling automatic port mapping and enhanced network connectivity.
+- Server TURN Support:
+    DHTNet includes support for server TURN, used as a fallback for connections if the NAT block all possible connections.
+
+ -- Louis Maillard <louis.maillard@savoirfairelinux.com>  Wed, 17 Jul 2024 09:27:39 -0400
diff --git a/extras/packaging/gnu-linux/debian/changelog b/extras/packaging/gnu-linux/debian/changelog
new file mode 100644
index 0000000..8d0dee0
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/changelog
@@ -0,0 +1,5 @@
+dhtnet (0.2.0-1) UNRELEASED; urgency=low
+
+  * Initial release.
+
+ -- Louis Maillard <louis.maillard@savoirfairelinux.com>  Wed, 17 Jul 2024 09:27:39 -0400
diff --git a/extras/packaging/gnu-linux/debian/control b/extras/packaging/gnu-linux/debian/control
new file mode 100644
index 0000000..e069138
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/control
@@ -0,0 +1,17 @@
+Source: dhtnet
+Section: net
+Priority: optional
+Maintainer: Louis Maillard <louis.maillard@savoirfairelinux.com>
+Build-Depends: cmake, debhelper-compat (= 12)
+Standards-Version: 4.5.0
+Homepage: https://git.jami.net/savoirfairelinux/dhtnet
+Vcs-Git: https://git.jami.net/savoirfairelinux/dhtnet.git
+
+Package: dhtnet
+Architecture: any
+Multi-Arch: foreign
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Conflicts: dsh
+Description: DHTNet, a Lightweight Peer-to-Peer Communication Library,
+ allows you to connect with a device simply by knowing its public key and
+ efficiently manages peer discovery and connectivity establishment, including NAT traversal.
diff --git a/extras/packaging/gnu-linux/debian/copyright b/extras/packaging/gnu-linux/debian/copyright
new file mode 100644
index 0000000..4da2032
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/copyright
@@ -0,0 +1,11015 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dhtnet
+Upstream-Contact: contact@savoirfairelinux.com
+Source: https://git.jami.net/savoirfairelinux/dhtnet
+#
+# Please double check copyright with the licensecheck(1) command.
+
+Files:     dependencies/install/include/pj++/file.hpp
+           dependencies/install/include/pj++/hash.hpp
+           dependencies/install/include/pj++/list.hpp
+           dependencies/install/include/pj++/lock.hpp
+           dependencies/install/include/pj++/os.hpp
+           dependencies/install/include/pj++/pool.hpp
+           dependencies/install/include/pj++/proactor.hpp
+           dependencies/install/include/pj++/scanner.hpp
+           dependencies/install/include/pj++/sock.hpp
+           dependencies/install/include/pj++/string.hpp
+           dependencies/install/include/pj++/timer.hpp
+           dependencies/install/include/pj++/tree.hpp
+           dependencies/install/include/pj++/types.hpp
+           dependencies/install/include/pj/activesock.h
+           dependencies/install/include/pj/addr_resolv.h
+           dependencies/install/include/pj/array.h
+           dependencies/install/include/pj/assert.h
+           dependencies/install/include/pj/compat/assert.h
+           dependencies/install/include/pj/compat/cc_armcc.h
+           dependencies/install/include/pj/compat/cc_codew.h
+           dependencies/install/include/pj/compat/cc_gcc.h
+           dependencies/install/include/pj/compat/cc_gcce.h
+           dependencies/install/include/pj/compat/cc_msvc.h
+           dependencies/install/include/pj/compat/cc_mwcc.h
+           dependencies/install/include/pj/compat/ctype.h
+           dependencies/install/include/pj/compat/errno.h
+           dependencies/install/include/pj/compat/high_precision.h
+           dependencies/install/include/pj/compat/limits.h
+           dependencies/install/include/pj/compat/m_alpha.h
+           dependencies/install/include/pj/compat/m_armv4.h
+           dependencies/install/include/pj/compat/m_auto.h
+           dependencies/install/include/pj/compat/m_auto.h.in
+           dependencies/install/include/pj/compat/m_i386.h
+           dependencies/install/include/pj/compat/m_m68k.h
+           dependencies/install/include/pj/compat/m_powerpc.h
+           dependencies/install/include/pj/compat/m_sparc.h
+           dependencies/install/include/pj/compat/m_x86_64.h
+           dependencies/install/include/pj/compat/malloc.h
+           dependencies/install/include/pj/compat/os_auto.h
+           dependencies/install/include/pj/compat/os_auto.h.in
+           dependencies/install/include/pj/compat/os_darwinos.h
+           dependencies/install/include/pj/compat/os_linux.h
+           dependencies/install/include/pj/compat/os_palmos.h
+           dependencies/install/include/pj/compat/os_sunos.h
+           dependencies/install/include/pj/compat/os_symbian.h
+           dependencies/install/include/pj/compat/os_win32.h
+           dependencies/install/include/pj/compat/os_win32_wince.h
+           dependencies/install/include/pj/compat/os_winphone8.h
+           dependencies/install/include/pj/compat/os_winuwp.h
+           dependencies/install/include/pj/compat/rand.h
+           dependencies/install/include/pj/compat/setjmp.h
+           dependencies/install/include/pj/compat/size_t.h
+           dependencies/install/include/pj/compat/socket.h
+           dependencies/install/include/pj/compat/stdarg.h
+           dependencies/install/include/pj/compat/stdfileio.h
+           dependencies/install/include/pj/compat/string.h
+           dependencies/install/include/pj/compat/time.h
+           dependencies/install/include/pj/config.h
+           dependencies/install/include/pj/ctype.h
+           dependencies/install/include/pj/doxygen.h
+           dependencies/install/include/pj/errno.h
+           dependencies/install/include/pj/except.h
+           dependencies/install/include/pj/fifobuf.h
+           dependencies/install/include/pj/file_access.h
+           dependencies/install/include/pj/file_io.h
+           dependencies/install/include/pj/guid.h
+           dependencies/install/include/pj/hash.h
+           dependencies/install/include/pj/ioqueue.h
+           dependencies/install/include/pj/ip_helper.h
+           dependencies/install/include/pj/limits.h
+           dependencies/install/include/pj/list.h
+           dependencies/install/include/pj/lock.h
+           dependencies/install/include/pj/log.h
+           dependencies/install/include/pj/math.h
+           dependencies/install/include/pj/os.h
+           dependencies/install/include/pj/pool.h
+           dependencies/install/include/pj/pool_alt.h
+           dependencies/install/include/pj/pool_buf.h
+           dependencies/install/include/pj/pool_i.h
+           dependencies/install/include/pj/rand.h
+           dependencies/install/include/pj/rbtree.h
+           dependencies/install/include/pj/sock.h
+           dependencies/install/include/pj/sock_qos.h
+           dependencies/install/include/pj/sock_select.h
+           dependencies/install/include/pj/ssl_sock.h
+           dependencies/install/include/pj/string.h
+           dependencies/install/include/pj/string_i.h
+           dependencies/install/include/pj/timer.h
+           dependencies/install/include/pj/types.h
+           dependencies/install/include/pj/unicode.h
+           dependencies/install/include/pjlib++.hpp
+           dependencies/install/include/pjlib-util.h
+           dependencies/install/include/pjlib-util/base64.h
+           dependencies/install/include/pjlib-util/cli.h
+           dependencies/install/include/pjlib-util/cli_console.h
+           dependencies/install/include/pjlib-util/cli_imp.h
+           dependencies/install/include/pjlib-util/cli_telnet.h
+           dependencies/install/include/pjlib-util/config.h
+           dependencies/install/include/pjlib-util/crc32.h
+           dependencies/install/include/pjlib-util/dns.h
+           dependencies/install/include/pjlib-util/dns_server.h
+           dependencies/install/include/pjlib-util/errno.h
+           dependencies/install/include/pjlib-util/hmac_md5.h
+           dependencies/install/include/pjlib-util/hmac_sha1.h
+           dependencies/install/include/pjlib-util/http_client.h
+           dependencies/install/include/pjlib-util/json.h
+           dependencies/install/include/pjlib-util/md5.h
+           dependencies/install/include/pjlib-util/pcap.h
+           dependencies/install/include/pjlib-util/resolver.h
+           dependencies/install/include/pjlib-util/scanner.h
+           dependencies/install/include/pjlib-util/scanner_cis_bitwise.h
+           dependencies/install/include/pjlib-util/scanner_cis_uint.h
+           dependencies/install/include/pjlib-util/sha1.h
+           dependencies/install/include/pjlib-util/srv_resolver.h
+           dependencies/install/include/pjlib-util/string.h
+           dependencies/install/include/pjlib-util/stun_simple.h
+           dependencies/install/include/pjlib-util/types.h
+           dependencies/install/include/pjlib-util/xml.h
+           dependencies/install/include/pjlib.h
+           dependencies/install/include/pjmedia-audiodev/audiodev.h
+           dependencies/install/include/pjmedia-audiodev/audiodev_imp.h
+           dependencies/install/include/pjmedia-audiodev/audiotest.h
+           dependencies/install/include/pjmedia-audiodev/config.h
+           dependencies/install/include/pjmedia-audiodev/errno.h
+           dependencies/install/include/pjmedia-codec.h
+           dependencies/install/include/pjmedia-codec/amr_helper.h
+           dependencies/install/include/pjmedia-codec/amr_sdp_match.h
+           dependencies/install/include/pjmedia-codec/and_aud_mediacodec.h
+           dependencies/install/include/pjmedia-codec/and_vid_mediacodec.h
+           dependencies/install/include/pjmedia-codec/audio_codecs.h
+           dependencies/install/include/pjmedia-codec/bcg729.h
+           dependencies/install/include/pjmedia-codec/config.h
+           dependencies/install/include/pjmedia-codec/config_auto.h
+           dependencies/install/include/pjmedia-codec/config_auto.h.in
+           dependencies/install/include/pjmedia-codec/ffmpeg_vid_codecs.h
+           dependencies/install/include/pjmedia-codec/g722.h
+           dependencies/install/include/pjmedia-codec/g7221.h
+           dependencies/install/include/pjmedia-codec/g7221_sdp_match.h
+           dependencies/install/include/pjmedia-codec/gsm.h
+           dependencies/install/include/pjmedia-codec/h263_packetizer.h
+           dependencies/install/include/pjmedia-codec/h264_packetizer.h
+           dependencies/install/include/pjmedia-codec/ilbc.h
+           dependencies/install/include/pjmedia-codec/ipp_codecs.h
+           dependencies/install/include/pjmedia-codec/l16.h
+           dependencies/install/include/pjmedia-codec/opencore_amr.h
+           dependencies/install/include/pjmedia-codec/openh264.h
+           dependencies/install/include/pjmedia-codec/passthrough.h
+           dependencies/install/include/pjmedia-codec/silk.h
+           dependencies/install/include/pjmedia-codec/speex.h
+           dependencies/install/include/pjmedia-codec/types.h
+           dependencies/install/include/pjmedia-codec/vid_toolbox.h
+           dependencies/install/include/pjmedia-codec/vpx.h
+           dependencies/install/include/pjmedia-codec/vpx_packetizer.h
+           dependencies/install/include/pjmedia-videodev/avi_dev.h
+           dependencies/install/include/pjmedia-videodev/config.h
+           dependencies/install/include/pjmedia-videodev/errno.h
+           dependencies/install/include/pjmedia-videodev/opengl_dev.h
+           dependencies/install/include/pjmedia-videodev/videodev.h
+           dependencies/install/include/pjmedia-videodev/videodev_imp.h
+           dependencies/install/include/pjmedia.h
+           dependencies/install/include/pjmedia/alaw_ulaw.h
+           dependencies/install/include/pjmedia/audiodev.h
+           dependencies/install/include/pjmedia/avi.h
+           dependencies/install/include/pjmedia/avi_stream.h
+           dependencies/install/include/pjmedia/bidirectional.h
+           dependencies/install/include/pjmedia/circbuf.h
+           dependencies/install/include/pjmedia/clock.h
+           dependencies/install/include/pjmedia/codec.h
+           dependencies/install/include/pjmedia/conference.h
+           dependencies/install/include/pjmedia/config.h
+           dependencies/install/include/pjmedia/config_auto.h
+           dependencies/install/include/pjmedia/config_auto.h.in
+           dependencies/install/include/pjmedia/converter.h
+           dependencies/install/include/pjmedia/delaybuf.h
+           dependencies/install/include/pjmedia/doxygen.h
+           dependencies/install/include/pjmedia/echo.h
+           dependencies/install/include/pjmedia/echo_port.h
+           dependencies/install/include/pjmedia/endpoint.h
+           dependencies/install/include/pjmedia/errno.h
+           dependencies/install/include/pjmedia/event.h
+           dependencies/install/include/pjmedia/format.h
+           dependencies/install/include/pjmedia/frame.h
+           dependencies/install/include/pjmedia/g711.h
+           dependencies/install/include/pjmedia/master_port.h
+           dependencies/install/include/pjmedia/mem_port.h
+           dependencies/install/include/pjmedia/null_port.h
+           dependencies/install/include/pjmedia/plc.h
+           dependencies/install/include/pjmedia/port.h
+           dependencies/install/include/pjmedia/resample.h
+           dependencies/install/include/pjmedia/rtcp.h
+           dependencies/install/include/pjmedia/rtcp_fb.h
+           dependencies/install/include/pjmedia/rtcp_xr.h
+           dependencies/install/include/pjmedia/rtp.h
+           dependencies/install/include/pjmedia/sdp.h
+           dependencies/install/include/pjmedia/sdp_neg.h
+           dependencies/install/include/pjmedia/session.h
+           dependencies/install/include/pjmedia/signatures.h
+           dependencies/install/include/pjmedia/silencedet.h
+           dependencies/install/include/pjmedia/sound.h
+           dependencies/install/include/pjmedia/sound_port.h
+           dependencies/install/include/pjmedia/splitcomb.h
+           dependencies/install/include/pjmedia/stereo.h
+           dependencies/install/include/pjmedia/stream.h
+           dependencies/install/include/pjmedia/stream_common.h
+           dependencies/install/include/pjmedia/symbian_sound_aps.h
+           dependencies/install/include/pjmedia/tonegen.h
+           dependencies/install/include/pjmedia/transport.h
+           dependencies/install/include/pjmedia/transport_adapter_sample.h
+           dependencies/install/include/pjmedia/transport_ice.h
+           dependencies/install/include/pjmedia/transport_loop.h
+           dependencies/install/include/pjmedia/transport_srtp.h
+           dependencies/install/include/pjmedia/transport_udp.h
+           dependencies/install/include/pjmedia/types.h
+           dependencies/install/include/pjmedia/vid_codec.h
+           dependencies/install/include/pjmedia/vid_codec_util.h
+           dependencies/install/include/pjmedia/vid_conf.h
+           dependencies/install/include/pjmedia/vid_port.h
+           dependencies/install/include/pjmedia/vid_stream.h
+           dependencies/install/include/pjmedia/vid_tee.h
+           dependencies/install/include/pjmedia/videodev.h
+           dependencies/install/include/pjmedia/wav_playlist.h
+           dependencies/install/include/pjmedia/wav_port.h
+           dependencies/install/include/pjmedia/wave.h
+           dependencies/install/include/pjmedia/wsola.h
+           dependencies/install/include/pjmedia_audiodev.h
+           dependencies/install/include/pjmedia_videodev.h
+           dependencies/install/include/pjnath.h
+           dependencies/install/include/pjnath/config.h
+           dependencies/install/include/pjnath/errno.h
+           dependencies/install/include/pjnath/ice_session.h
+           dependencies/install/include/pjnath/ice_strans.h
+           dependencies/install/include/pjnath/nat_detect.h
+           dependencies/install/include/pjnath/stun_auth.h
+           dependencies/install/include/pjnath/stun_config.h
+           dependencies/install/include/pjnath/stun_msg.h
+           dependencies/install/include/pjnath/stun_session.h
+           dependencies/install/include/pjnath/stun_sock.h
+           dependencies/install/include/pjnath/stun_transaction.h
+           dependencies/install/include/pjnath/turn_session.h
+           dependencies/install/include/pjnath/turn_sock.h
+           dependencies/install/include/pjnath/types.h
+           dependencies/install/include/pjnath/upnp.h
+           dependencies/install/include/pjsip-simple/errno.h
+           dependencies/install/include/pjsip-simple/evsub.h
+           dependencies/install/include/pjsip-simple/evsub_msg.h
+           dependencies/install/include/pjsip-simple/iscomposing.h
+           dependencies/install/include/pjsip-simple/mwi.h
+           dependencies/install/include/pjsip-simple/pidf.h
+           dependencies/install/include/pjsip-simple/presence.h
+           dependencies/install/include/pjsip-simple/publish.h
+           dependencies/install/include/pjsip-simple/rpid.h
+           dependencies/install/include/pjsip-simple/types.h
+           dependencies/install/include/pjsip-simple/xpidf.h
+           dependencies/install/include/pjsip-ua/sip_100rel.h
+           dependencies/install/include/pjsip-ua/sip_inv.h
+           dependencies/install/include/pjsip-ua/sip_regc.h
+           dependencies/install/include/pjsip-ua/sip_replaces.h
+           dependencies/install/include/pjsip-ua/sip_timer.h
+           dependencies/install/include/pjsip-ua/sip_xfer.h
+           dependencies/install/include/pjsip.h
+           dependencies/install/include/pjsip/print_util.h
+           dependencies/install/include/pjsip/sip_auth.h
+           dependencies/install/include/pjsip/sip_auth_aka.h
+           dependencies/install/include/pjsip/sip_auth_msg.h
+           dependencies/install/include/pjsip/sip_auth_parser.h
+           dependencies/install/include/pjsip/sip_autoconf.h
+           dependencies/install/include/pjsip/sip_autoconf.h.in
+           dependencies/install/include/pjsip/sip_config.h
+           dependencies/install/include/pjsip/sip_dialog.h
+           dependencies/install/include/pjsip/sip_endpoint.h
+           dependencies/install/include/pjsip/sip_errno.h
+           dependencies/install/include/pjsip/sip_event.h
+           dependencies/install/include/pjsip/sip_module.h
+           dependencies/install/include/pjsip/sip_msg.h
+           dependencies/install/include/pjsip/sip_multipart.h
+           dependencies/install/include/pjsip/sip_parser.h
+           dependencies/install/include/pjsip/sip_private.h
+           dependencies/install/include/pjsip/sip_resolve.h
+           dependencies/install/include/pjsip/sip_tel_uri.h
+           dependencies/install/include/pjsip/sip_transaction.h
+           dependencies/install/include/pjsip/sip_transport.h
+           dependencies/install/include/pjsip/sip_transport_loop.h
+           dependencies/install/include/pjsip/sip_transport_tcp.h
+           dependencies/install/include/pjsip/sip_transport_tls.h
+           dependencies/install/include/pjsip/sip_transport_udp.h
+           dependencies/install/include/pjsip/sip_types.h
+           dependencies/install/include/pjsip/sip_ua_layer.h
+           dependencies/install/include/pjsip/sip_uri.h
+           dependencies/install/include/pjsip/sip_util.h
+           dependencies/install/include/pjsip_auth.h
+           dependencies/install/include/pjsip_simple.h
+           dependencies/install/include/pjsip_ua.h
+           dependencies/install/include/pjsua-lib/pjsua.h
+           dependencies/install/include/pjsua-lib/pjsua_internal.h
+           dependencies/install/include/pjsua2.hpp
+           dependencies/install/include/pjsua2/account.hpp
+           dependencies/install/include/pjsua2/call.hpp
+           dependencies/install/include/pjsua2/config.hpp
+           dependencies/install/include/pjsua2/doxygen.hpp
+           dependencies/install/include/pjsua2/endpoint.hpp
+           dependencies/install/include/pjsua2/json.hpp
+           dependencies/install/include/pjsua2/media.hpp
+           dependencies/install/include/pjsua2/persistent.hpp
+           dependencies/install/include/pjsua2/presence.hpp
+           dependencies/install/include/pjsua2/siptypes.hpp
+           dependencies/install/include/pjsua2/types.hpp
+           dependencies/pjproject/pjlib-util/include/pjlib-util.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/base64.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/cli.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/cli_console.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/cli_imp.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/cli_telnet.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/config.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/crc32.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/dns.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/dns_server.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/errno.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/hmac_md5.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/hmac_sha1.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/http_client.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/json.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/md5.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/pcap.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/resolver.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/scanner.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/scanner_cis_bitwise.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/scanner_cis_uint.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/sha1.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/srv_resolver.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/string.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/stun_simple.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/types.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/xml.h
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/encryption.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/http_client.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/json_test.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/main.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/resolver_test.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/stun.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/test.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/test.h
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/xml.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/base64.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/cli.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/cli_console.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/cli_telnet.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/dns.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/dns_dump.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/dns_server.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/errno.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/hmac_md5.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/hmac_sha1.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/http_client.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/json.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/pcap.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/resolver.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/scanner.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/srv_resolver.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/string.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/stun_simple.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/stun_simple_client.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/symbols.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/xml.c
+           dependencies/pjproject/pjlib/include/pj++/file.hpp
+           dependencies/pjproject/pjlib/include/pj++/hash.hpp
+           dependencies/pjproject/pjlib/include/pj++/list.hpp
+           dependencies/pjproject/pjlib/include/pj++/lock.hpp
+           dependencies/pjproject/pjlib/include/pj++/os.hpp
+           dependencies/pjproject/pjlib/include/pj++/pool.hpp
+           dependencies/pjproject/pjlib/include/pj++/proactor.hpp
+           dependencies/pjproject/pjlib/include/pj++/scanner.hpp
+           dependencies/pjproject/pjlib/include/pj++/sock.hpp
+           dependencies/pjproject/pjlib/include/pj++/string.hpp
+           dependencies/pjproject/pjlib/include/pj++/timer.hpp
+           dependencies/pjproject/pjlib/include/pj++/tree.hpp
+           dependencies/pjproject/pjlib/include/pj++/types.hpp
+           dependencies/pjproject/pjlib/include/pj/activesock.h
+           dependencies/pjproject/pjlib/include/pj/addr_resolv.h
+           dependencies/pjproject/pjlib/include/pj/array.h
+           dependencies/pjproject/pjlib/include/pj/assert.h
+           dependencies/pjproject/pjlib/include/pj/compat/assert.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_armcc.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_codew.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_gcc.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_gcce.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_msvc.h
+           dependencies/pjproject/pjlib/include/pj/compat/cc_mwcc.h
+           dependencies/pjproject/pjlib/include/pj/compat/ctype.h
+           dependencies/pjproject/pjlib/include/pj/compat/errno.h
+           dependencies/pjproject/pjlib/include/pj/compat/high_precision.h
+           dependencies/pjproject/pjlib/include/pj/compat/limits.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_alpha.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_armv4.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_auto.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_auto.h.in
+           dependencies/pjproject/pjlib/include/pj/compat/m_i386.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_m68k.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_powerpc.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_sparc.h
+           dependencies/pjproject/pjlib/include/pj/compat/m_x86_64.h
+           dependencies/pjproject/pjlib/include/pj/compat/malloc.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_auto.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_auto.h.in
+           dependencies/pjproject/pjlib/include/pj/compat/os_darwinos.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_linux.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_palmos.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_sunos.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_symbian.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_win32.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_win32_wince.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_winphone8.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_winuwp.h
+           dependencies/pjproject/pjlib/include/pj/compat/rand.h
+           dependencies/pjproject/pjlib/include/pj/compat/setjmp.h
+           dependencies/pjproject/pjlib/include/pj/compat/size_t.h
+           dependencies/pjproject/pjlib/include/pj/compat/socket.h
+           dependencies/pjproject/pjlib/include/pj/compat/stdarg.h
+           dependencies/pjproject/pjlib/include/pj/compat/stdfileio.h
+           dependencies/pjproject/pjlib/include/pj/compat/string.h
+           dependencies/pjproject/pjlib/include/pj/compat/time.h
+           dependencies/pjproject/pjlib/include/pj/config.h
+           dependencies/pjproject/pjlib/include/pj/ctype.h
+           dependencies/pjproject/pjlib/include/pj/doxygen.h
+           dependencies/pjproject/pjlib/include/pj/errno.h
+           dependencies/pjproject/pjlib/include/pj/except.h
+           dependencies/pjproject/pjlib/include/pj/fifobuf.h
+           dependencies/pjproject/pjlib/include/pj/file_access.h
+           dependencies/pjproject/pjlib/include/pj/file_io.h
+           dependencies/pjproject/pjlib/include/pj/guid.h
+           dependencies/pjproject/pjlib/include/pj/hash.h
+           dependencies/pjproject/pjlib/include/pj/ioqueue.h
+           dependencies/pjproject/pjlib/include/pj/ip_helper.h
+           dependencies/pjproject/pjlib/include/pj/limits.h
+           dependencies/pjproject/pjlib/include/pj/list.h
+           dependencies/pjproject/pjlib/include/pj/lock.h
+           dependencies/pjproject/pjlib/include/pj/log.h
+           dependencies/pjproject/pjlib/include/pj/math.h
+           dependencies/pjproject/pjlib/include/pj/os.h
+           dependencies/pjproject/pjlib/include/pj/pool.h
+           dependencies/pjproject/pjlib/include/pj/pool_alt.h
+           dependencies/pjproject/pjlib/include/pj/pool_buf.h
+           dependencies/pjproject/pjlib/include/pj/pool_i.h
+           dependencies/pjproject/pjlib/include/pj/rand.h
+           dependencies/pjproject/pjlib/include/pj/rbtree.h
+           dependencies/pjproject/pjlib/include/pj/sock.h
+           dependencies/pjproject/pjlib/include/pj/sock_qos.h
+           dependencies/pjproject/pjlib/include/pj/sock_select.h
+           dependencies/pjproject/pjlib/include/pj/ssl_sock.h
+           dependencies/pjproject/pjlib/include/pj/string.h
+           dependencies/pjproject/pjlib/include/pj/string_i.h
+           dependencies/pjproject/pjlib/include/pj/timer.h
+           dependencies/pjproject/pjlib/include/pj/types.h
+           dependencies/pjproject/pjlib/include/pj/unicode.h
+           dependencies/pjproject/pjlib/include/pjlib++.hpp
+           dependencies/pjproject/pjlib/include/pjlib.h
+           dependencies/pjproject/pjlib/src/pj/activesock.c
+           dependencies/pjproject/pjlib/src/pj/addr_resolv_sock.c
+           dependencies/pjproject/pjlib/src/pj/addr_resolv_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/array.c
+           dependencies/pjproject/pjlib/src/pj/compat/sigjmp.c
+           dependencies/pjproject/pjlib/src/pj/compat/string.c
+           dependencies/pjproject/pjlib/src/pj/compat/string_compat.c
+           dependencies/pjproject/pjlib/src/pj/config.c
+           dependencies/pjproject/pjlib/src/pj/ctype.c
+           dependencies/pjproject/pjlib/src/pj/errno.c
+           dependencies/pjproject/pjlib/src/pj/except.c
+           dependencies/pjproject/pjlib/src/pj/exception_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/extra-exports.c
+           dependencies/pjproject/pjlib/src/pj/fifobuf.c
+           dependencies/pjproject/pjlib/src/pj/file_access_unistd.c
+           dependencies/pjproject/pjlib/src/pj/file_access_win32.c
+           dependencies/pjproject/pjlib/src/pj/file_io_ansi.c
+           dependencies/pjproject/pjlib/src/pj/file_io_win32.c
+           dependencies/pjproject/pjlib/src/pj/guid.c
+           dependencies/pjproject/pjlib/src/pj/guid_bsd.c
+           dependencies/pjproject/pjlib/src/pj/guid_darwin.c
+           dependencies/pjproject/pjlib/src/pj/guid_simple.c
+           dependencies/pjproject/pjlib/src/pj/guid_uuid.c
+           dependencies/pjproject/pjlib/src/pj/guid_win32.c
+           dependencies/pjproject/pjlib/src/pj/hash.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_common_abs.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_common_abs.h
+           dependencies/pjproject/pjlib/src/pj/ioqueue_dummy.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_epoll.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_kqueue.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_select.c
+           dependencies/pjproject/pjlib/src/pj/ioqueue_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/ioqueue_uwp.cpp
+           dependencies/pjproject/pjlib/src/pj/ioqueue_winnt.c
+           dependencies/pjproject/pjlib/src/pj/ip_helper_generic.c
+           dependencies/pjproject/pjlib/src/pj/ip_helper_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/ip_helper_win32.c
+           dependencies/pjproject/pjlib/src/pj/ip_helper_winphone8.c
+           dependencies/pjproject/pjlib/src/pj/list.c
+           dependencies/pjproject/pjlib/src/pj/lock.c
+           dependencies/pjproject/pjlib/src/pj/log.c
+           dependencies/pjproject/pjlib/src/pj/log_writer_printk.c
+           dependencies/pjproject/pjlib/src/pj/log_writer_stdout.c
+           dependencies/pjproject/pjlib/src/pj/log_writer_symbian_console.cpp
+           dependencies/pjproject/pjlib/src/pj/os_core_darwin.m
+           dependencies/pjproject/pjlib/src/pj/os_core_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/os_core_win32.c
+           dependencies/pjproject/pjlib/src/pj/os_error_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/os_error_unix.c
+           dependencies/pjproject/pjlib/src/pj/os_error_win32.c
+           dependencies/pjproject/pjlib/src/pj/os_info.c
+           dependencies/pjproject/pjlib/src/pj/os_info_iphone.m
+           dependencies/pjproject/pjlib/src/pj/os_info_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/os_symbian.h
+           dependencies/pjproject/pjlib/src/pj/os_time_bsd.c
+           dependencies/pjproject/pjlib/src/pj/os_time_common.c
+           dependencies/pjproject/pjlib/src/pj/os_time_unix.c
+           dependencies/pjproject/pjlib/src/pj/os_time_win32.c
+           dependencies/pjproject/pjlib/src/pj/os_timestamp_common.c
+           dependencies/pjproject/pjlib/src/pj/os_timestamp_posix.c
+           dependencies/pjproject/pjlib/src/pj/os_timestamp_win32.c
+           dependencies/pjproject/pjlib/src/pj/pool.c
+           dependencies/pjproject/pjlib/src/pj/pool_buf.c
+           dependencies/pjproject/pjlib/src/pj/pool_caching.c
+           dependencies/pjproject/pjlib/src/pj/pool_dbg.c
+           dependencies/pjproject/pjlib/src/pj/pool_policy_kmalloc.c
+           dependencies/pjproject/pjlib/src/pj/pool_policy_malloc.c
+           dependencies/pjproject/pjlib/src/pj/pool_policy_new.cpp
+           dependencies/pjproject/pjlib/src/pj/pool_signature.h
+           dependencies/pjproject/pjlib/src/pj/rand.c
+           dependencies/pjproject/pjlib/src/pj/rbtree.c
+           dependencies/pjproject/pjlib/src/pj/sock_bsd.c
+           dependencies/pjproject/pjlib/src/pj/sock_common.c
+           dependencies/pjproject/pjlib/src/pj/sock_qos_bsd.c
+           dependencies/pjproject/pjlib/src/pj/sock_qos_common.c
+           dependencies/pjproject/pjlib/src/pj/sock_qos_darwin.c
+           dependencies/pjproject/pjlib/src/pj/sock_qos_dummy.c
+           dependencies/pjproject/pjlib/src/pj/sock_qos_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/sock_qos_wm.c
+           dependencies/pjproject/pjlib/src/pj/sock_select.c
+           dependencies/pjproject/pjlib/src/pj/sock_select_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/sock_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/sock_uwp.cpp
+           dependencies/pjproject/pjlib/src/pj/sock_uwp.h
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_apple.m
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_common.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_darwin.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_dump.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_gtls.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_imp_common.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_imp_common.h
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_ossl.c
+           dependencies/pjproject/pjlib/src/pj/ssl_sock_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/string.c
+           dependencies/pjproject/pjlib/src/pj/symbols.c
+           dependencies/pjproject/pjlib/src/pj/timer.c
+           dependencies/pjproject/pjlib/src/pj/timer_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/types.c
+           dependencies/pjproject/pjlib/src/pj/unicode_symbian.cpp
+           dependencies/pjproject/pjlib/src/pj/unicode_win32.c
+           dependencies/pjproject/pjlib/src/pjlib++-test/main.cpp
+           dependencies/pjproject/pjlib/src/pjlib-samples/except.c
+           dependencies/pjproject/pjlib/src/pjlib-samples/list.c
+           dependencies/pjproject/pjlib/src/pjlib-samples/log.c
+           dependencies/pjproject/pjlib/src/pjlib-test/activesock.c
+           dependencies/pjproject/pjlib/src/pjlib-test/atomic.c
+           dependencies/pjproject/pjlib/src/pjlib-test/echo_clt.c
+           dependencies/pjproject/pjlib/src/pjlib-test/errno.c
+           dependencies/pjproject/pjlib/src/pjlib-test/exception.c
+           dependencies/pjproject/pjlib/src/pjlib-test/fifobuf.c
+           dependencies/pjproject/pjlib/src/pjlib-test/file.c
+           dependencies/pjproject/pjlib/src/pjlib-test/hash_test.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ioq_perf.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ioq_stress_test.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ioq_tcp.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ioq_udp.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ioq_unreg.c
+           dependencies/pjproject/pjlib/src/pjlib-test/list.c
+           dependencies/pjproject/pjlib/src/pjlib-test/main.c
+           dependencies/pjproject/pjlib/src/pjlib-test/main_mod.c
+           dependencies/pjproject/pjlib/src/pjlib-test/main_win32.c
+           dependencies/pjproject/pjlib/src/pjlib-test/mutex.c
+           dependencies/pjproject/pjlib/src/pjlib-test/os.c
+           dependencies/pjproject/pjlib/src/pjlib-test/pool.c
+           dependencies/pjproject/pjlib/src/pjlib-test/pool_perf.c
+           dependencies/pjproject/pjlib/src/pjlib-test/rand.c
+           dependencies/pjproject/pjlib/src/pjlib-test/rbtree.c
+           dependencies/pjproject/pjlib/src/pjlib-test/select.c
+           dependencies/pjproject/pjlib/src/pjlib-test/sleep.c
+           dependencies/pjproject/pjlib/src/pjlib-test/sock.c
+           dependencies/pjproject/pjlib/src/pjlib-test/sock_perf.c
+           dependencies/pjproject/pjlib/src/pjlib-test/ssl_sock.c
+           dependencies/pjproject/pjlib/src/pjlib-test/string.c
+           dependencies/pjproject/pjlib/src/pjlib-test/test.c
+           dependencies/pjproject/pjlib/src/pjlib-test/test.h
+           dependencies/pjproject/pjlib/src/pjlib-test/thread.c
+           dependencies/pjproject/pjlib/src/pjlib-test/timer.c
+           dependencies/pjproject/pjlib/src/pjlib-test/timestamp.c
+           dependencies/pjproject/pjlib/src/pjlib-test/udp_echo_srv_ioqueue.c
+           dependencies/pjproject/pjlib/src/pjlib-test/udp_echo_srv_sync.c
+           dependencies/pjproject/pjlib/src/pjlib-test/util.c
+           dependencies/pjproject/pjmedia/include/pjmedia-audiodev/audiodev.h
+           dependencies/pjproject/pjmedia/include/pjmedia-audiodev/audiodev_imp.h
+           dependencies/pjproject/pjmedia/include/pjmedia-audiodev/audiotest.h
+           dependencies/pjproject/pjmedia/include/pjmedia-audiodev/config.h
+           dependencies/pjproject/pjmedia/include/pjmedia-audiodev/errno.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/amr_helper.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/amr_sdp_match.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/and_aud_mediacodec.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/and_vid_mediacodec.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/audio_codecs.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/bcg729.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/config.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/config_auto.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/config_auto.h.in
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/ffmpeg_vid_codecs.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/g722.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/g7221.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/g7221_sdp_match.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/gsm.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/h263_packetizer.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/h264_packetizer.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/ilbc.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/ipp_codecs.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/l16.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/opencore_amr.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/openh264.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/passthrough.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/silk.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/speex.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/types.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/vid_toolbox.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/vpx.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/vpx_packetizer.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/avi_dev.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/config.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/errno.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/opengl_dev.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/videodev.h
+           dependencies/pjproject/pjmedia/include/pjmedia-videodev/videodev_imp.h
+           dependencies/pjproject/pjmedia/include/pjmedia.h
+           dependencies/pjproject/pjmedia/include/pjmedia/alaw_ulaw.h
+           dependencies/pjproject/pjmedia/include/pjmedia/audiodev.h
+           dependencies/pjproject/pjmedia/include/pjmedia/avi.h
+           dependencies/pjproject/pjmedia/include/pjmedia/avi_stream.h
+           dependencies/pjproject/pjmedia/include/pjmedia/bidirectional.h
+           dependencies/pjproject/pjmedia/include/pjmedia/circbuf.h
+           dependencies/pjproject/pjmedia/include/pjmedia/clock.h
+           dependencies/pjproject/pjmedia/include/pjmedia/codec.h
+           dependencies/pjproject/pjmedia/include/pjmedia/conference.h
+           dependencies/pjproject/pjmedia/include/pjmedia/config.h
+           dependencies/pjproject/pjmedia/include/pjmedia/config_auto.h
+           dependencies/pjproject/pjmedia/include/pjmedia/config_auto.h.in
+           dependencies/pjproject/pjmedia/include/pjmedia/converter.h
+           dependencies/pjproject/pjmedia/include/pjmedia/delaybuf.h
+           dependencies/pjproject/pjmedia/include/pjmedia/doxygen.h
+           dependencies/pjproject/pjmedia/include/pjmedia/echo.h
+           dependencies/pjproject/pjmedia/include/pjmedia/echo_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/endpoint.h
+           dependencies/pjproject/pjmedia/include/pjmedia/errno.h
+           dependencies/pjproject/pjmedia/include/pjmedia/event.h
+           dependencies/pjproject/pjmedia/include/pjmedia/format.h
+           dependencies/pjproject/pjmedia/include/pjmedia/frame.h
+           dependencies/pjproject/pjmedia/include/pjmedia/g711.h
+           dependencies/pjproject/pjmedia/include/pjmedia/master_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/mem_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/null_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/plc.h
+           dependencies/pjproject/pjmedia/include/pjmedia/port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/resample.h
+           dependencies/pjproject/pjmedia/include/pjmedia/rtcp.h
+           dependencies/pjproject/pjmedia/include/pjmedia/rtcp_fb.h
+           dependencies/pjproject/pjmedia/include/pjmedia/rtcp_xr.h
+           dependencies/pjproject/pjmedia/include/pjmedia/rtp.h
+           dependencies/pjproject/pjmedia/include/pjmedia/sdp.h
+           dependencies/pjproject/pjmedia/include/pjmedia/sdp_neg.h
+           dependencies/pjproject/pjmedia/include/pjmedia/session.h
+           dependencies/pjproject/pjmedia/include/pjmedia/signatures.h
+           dependencies/pjproject/pjmedia/include/pjmedia/silencedet.h
+           dependencies/pjproject/pjmedia/include/pjmedia/sound.h
+           dependencies/pjproject/pjmedia/include/pjmedia/sound_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/splitcomb.h
+           dependencies/pjproject/pjmedia/include/pjmedia/stereo.h
+           dependencies/pjproject/pjmedia/include/pjmedia/stream.h
+           dependencies/pjproject/pjmedia/include/pjmedia/stream_common.h
+           dependencies/pjproject/pjmedia/include/pjmedia/symbian_sound_aps.h
+           dependencies/pjproject/pjmedia/include/pjmedia/tonegen.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport_adapter_sample.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport_ice.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport_loop.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport_srtp.h
+           dependencies/pjproject/pjmedia/include/pjmedia/transport_udp.h
+           dependencies/pjproject/pjmedia/include/pjmedia/types.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_codec.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_codec_util.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_conf.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_stream.h
+           dependencies/pjproject/pjmedia/include/pjmedia/vid_tee.h
+           dependencies/pjproject/pjmedia/include/pjmedia/videodev.h
+           dependencies/pjproject/pjmedia/include/pjmedia/wav_playlist.h
+           dependencies/pjproject/pjmedia/include/pjmedia/wav_port.h
+           dependencies/pjproject/pjmedia/include/pjmedia/wave.h
+           dependencies/pjproject/pjmedia/include/pjmedia/wsola.h
+           dependencies/pjproject/pjmedia/include/pjmedia_audiodev.h
+           dependencies/pjproject/pjmedia/include/pjmedia_videodev.h
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/alsa_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/android/PjAudioDevInfo.java
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/audiodev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/audiotest.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/coreaudio_dev.m
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/errno.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/legacy_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/null_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/pa_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/symb_aps_dev.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/symb_mda_dev.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/symb_vas_dev.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/wasapi_dev.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/wmme_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/amr_sdp_match.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/and_aud_mediacodec.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/and_vid_mediacodec.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/audio_codecs.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/bcg729.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/ffmpeg_vid_codecs.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g722.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g7221.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g7221_sdp_match.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/gsm.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/h263_packetizer.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/h264_packetizer.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/ilbc.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/ipp_codecs.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/l16.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/openh264.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/passthrough.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/silk.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/speex_codec.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/vid_toolbox.m
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/vpx.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/vpx_packetizer.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android/PjCamera.java
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android/PjCamera2.java
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android/PjCameraInfo.java
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android/PjCameraInfo2.java
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/android_opengl.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/avi_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/colorbar_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/darwin_dev.m
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/dshow_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/dshowclasses.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/errno.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/ios_opengl_dev.m
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/opengl_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/qt_dev.m
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/sdl_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/sdl_dev_m.m
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/util.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/util.h
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/v4l2_dev.c
+           dependencies/pjproject/pjmedia/src/pjmedia-videodev/videodev.c
+           dependencies/pjproject/pjmedia/src/pjmedia/audiodev.c
+           dependencies/pjproject/pjmedia/src/pjmedia/bidirectional.c
+           dependencies/pjproject/pjmedia/src/pjmedia/clock_thread.c
+           dependencies/pjproject/pjmedia/src/pjmedia/codec.c
+           dependencies/pjproject/pjmedia/src/pjmedia/conf_switch.c
+           dependencies/pjproject/pjmedia/src/pjmedia/conference.c
+           dependencies/pjproject/pjmedia/src/pjmedia/converter.c
+           dependencies/pjproject/pjmedia/src/pjmedia/converter_libswscale.c
+           dependencies/pjproject/pjmedia/src/pjmedia/converter_libyuv.c
+           dependencies/pjproject/pjmedia/src/pjmedia/delaybuf.c
+           dependencies/pjproject/pjmedia/src/pjmedia/dummy.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_common.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_internal.h
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_speex.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_suppress.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_webrtc.c
+           dependencies/pjproject/pjmedia/src/pjmedia/echo_webrtc_aec3.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia/endpoint.c
+           dependencies/pjproject/pjmedia/src/pjmedia/errno.c
+           dependencies/pjproject/pjmedia/src/pjmedia/event.c
+           dependencies/pjproject/pjmedia/src/pjmedia/ffmpeg_util.c
+           dependencies/pjproject/pjmedia/src/pjmedia/format.c
+           dependencies/pjproject/pjmedia/src/pjmedia/master_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/mem_capture.c
+           dependencies/pjproject/pjmedia/src/pjmedia/mem_player.c
+           dependencies/pjproject/pjmedia/src/pjmedia/null_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/plc_common.c
+           dependencies/pjproject/pjmedia/src/pjmedia/port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/resample_libsamplerate.c
+           dependencies/pjproject/pjmedia/src/pjmedia/resample_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/resample_resample.c
+           dependencies/pjproject/pjmedia/src/pjmedia/resample_speex.c
+           dependencies/pjproject/pjmedia/src/pjmedia/rtcp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/rtcp_fb.c
+           dependencies/pjproject/pjmedia/src/pjmedia/rtcp_xr.c
+           dependencies/pjproject/pjmedia/src/pjmedia/rtp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/sdp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/sdp_cmp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/sdp_neg.c
+           dependencies/pjproject/pjmedia/src/pjmedia/session.c
+           dependencies/pjproject/pjmedia/src/pjmedia/silencedet.c
+           dependencies/pjproject/pjmedia/src/pjmedia/sound_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/splitcomb.c
+           dependencies/pjproject/pjmedia/src/pjmedia/stereo_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/stream.c
+           dependencies/pjproject/pjmedia/src/pjmedia/stream_common.c
+           dependencies/pjproject/pjmedia/src/pjmedia/stream_info.c
+           dependencies/pjproject/pjmedia/src/pjmedia/tonegen.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_adapter_sample.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_ice.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_loop.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_srtp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_srtp_dtls.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_srtp_sdes.c
+           dependencies/pjproject/pjmedia/src/pjmedia/transport_udp.c
+           dependencies/pjproject/pjmedia/src/pjmedia/types.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_codec.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_codec_util.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_conf.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_port.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_stream.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_stream_info.c
+           dependencies/pjproject/pjmedia/src/pjmedia/vid_tee.c
+           dependencies/pjproject/pjmedia/src/pjmedia/videodev.c
+           dependencies/pjproject/pjmedia/src/pjmedia/wav_player.c
+           dependencies/pjproject/pjmedia/src/pjmedia/wav_writer.c
+           dependencies/pjproject/pjmedia/src/pjmedia/wave.c
+           dependencies/pjproject/pjmedia/src/pjmedia/wsola.c
+           dependencies/pjproject/pjmedia/src/test/audio_tool.c
+           dependencies/pjproject/pjmedia/src/test/codec_vectors.c
+           dependencies/pjproject/pjmedia/src/test/jbuf_test.c
+           dependencies/pjproject/pjmedia/src/test/main.c
+           dependencies/pjproject/pjmedia/src/test/mips_test.c
+           dependencies/pjproject/pjmedia/src/test/rtp_test.c
+           dependencies/pjproject/pjmedia/src/test/sdptest.c
+           dependencies/pjproject/pjmedia/src/test/session_test.c
+           dependencies/pjproject/pjmedia/src/test/test.c
+           dependencies/pjproject/pjmedia/src/test/test.h
+           dependencies/pjproject/pjmedia/src/test/vectors/swapendian.c
+           dependencies/pjproject/pjmedia/src/test/vid_codec_test.c
+           dependencies/pjproject/pjmedia/src/test/vid_dev_test.c
+           dependencies/pjproject/pjmedia/src/test/vid_port_test.c
+           dependencies/pjproject/pjmedia/src/test/wince_main.c
+           dependencies/pjproject/pjmedia/src/test/wsola_test.c
+           dependencies/pjproject/pjnath/docs/doc_ice.h
+           dependencies/pjproject/pjnath/docs/doc_nat.h
+           dependencies/pjproject/pjnath/docs/doc_samples.h
+           dependencies/pjproject/pjnath/docs/doc_stun.h
+           dependencies/pjproject/pjnath/docs/doc_turn.h
+           dependencies/pjproject/pjnath/include/pjnath.h
+           dependencies/pjproject/pjnath/include/pjnath/config.h
+           dependencies/pjproject/pjnath/include/pjnath/errno.h
+           dependencies/pjproject/pjnath/include/pjnath/ice_session.h
+           dependencies/pjproject/pjnath/include/pjnath/ice_strans.h
+           dependencies/pjproject/pjnath/include/pjnath/nat_detect.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_auth.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_config.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_msg.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_session.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_sock.h
+           dependencies/pjproject/pjnath/include/pjnath/stun_transaction.h
+           dependencies/pjproject/pjnath/include/pjnath/turn_session.h
+           dependencies/pjproject/pjnath/include/pjnath/turn_sock.h
+           dependencies/pjproject/pjnath/include/pjnath/types.h
+           dependencies/pjproject/pjnath/include/pjnath/upnp.h
+           dependencies/pjproject/pjnath/src/pjnath-test/concur_test.c
+           dependencies/pjproject/pjnath/src/pjnath-test/ice_test.c
+           dependencies/pjproject/pjnath/src/pjnath-test/main.c
+           dependencies/pjproject/pjnath/src/pjnath-test/server.c
+           dependencies/pjproject/pjnath/src/pjnath-test/server.h
+           dependencies/pjproject/pjnath/src/pjnath-test/sess_auth.c
+           dependencies/pjproject/pjnath/src/pjnath-test/stun.c
+           dependencies/pjproject/pjnath/src/pjnath-test/stun_sock_test.c
+           dependencies/pjproject/pjnath/src/pjnath-test/test.c
+           dependencies/pjproject/pjnath/src/pjnath-test/test.h
+           dependencies/pjproject/pjnath/src/pjnath-test/turn_sock_test.c
+           dependencies/pjproject/pjnath/src/pjnath/errno.c
+           dependencies/pjproject/pjnath/src/pjnath/ice_session.c
+           dependencies/pjproject/pjnath/src/pjnath/ice_strans.c
+           dependencies/pjproject/pjnath/src/pjnath/nat_detect.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_auth.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_msg.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_msg_dump.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_session.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_sock.c
+           dependencies/pjproject/pjnath/src/pjnath/stun_transaction.c
+           dependencies/pjproject/pjnath/src/pjnath/turn_session.c
+           dependencies/pjproject/pjnath/src/pjnath/turn_sock.c
+           dependencies/pjproject/pjnath/src/pjnath/upnp.c
+           dependencies/pjproject/pjnath/src/pjturn-client/client_main.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/allocation.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/auth.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/auth.h
+           dependencies/pjproject/pjnath/src/pjturn-srv/listener_tcp.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/listener_udp.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/main.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/server.c
+           dependencies/pjproject/pjnath/src/pjturn-srv/turn.h
+           dependencies/pjproject/pjsip-apps/src/3rdparty_media_sample/alt_pjsua_aud.c
+           dependencies/pjproject/pjsip-apps/src/3rdparty_media_sample/alt_pjsua_vid.c
+           dependencies/pjproject/pjsip-apps/src/confbot/confbot.py
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/RootViewController.h
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/RootViewController.m
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/TestViewController.h
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/TestViewController.m
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/ipjsystestAppDelegate.h
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/Classes/ipjsystestAppDelegate.m
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/main.m
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/java/MainActivity.java
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/jni/pjsua_app_callback.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/jni/pjsua_app_callback.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/gui.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/ContentView.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaAppDelegate.m
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaViewController.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaViewController.m
+           dependencies/pjproject/pjsip-apps/src/pjsua/main.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_cli.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_common.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_common.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_config.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_config.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/pjsua_app_legacy.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/src/Globals.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/src/Globals.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/src/IPjsuaCallback.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/src/PjsuaCallback.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/src/PjsuaCallback.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/EndpointHelper.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/MyApp.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/MyApp.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/EndpointHelper.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/wm/main_wm.c
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/AppDelegate.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Controller/ActiveViewController.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Controller/IncomingViewController.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Controller/OutgoingViewController.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Controller/ViewController.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Model/Model.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/PJSua2/CustomPJSUA2.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/PJSua2/CustomPJSUA2.hpp
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/PJSua2/wrapper.h
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/PJSua2/wrapper.mm
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/SceneDelegate.swift
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/ios-swift-pjsua2-Bridging-Header.h
+           dependencies/pjproject/pjsip-apps/src/pjsystest/gui.h
+           dependencies/pjproject/pjsip-apps/src/pjsystest/main_console.c
+           dependencies/pjproject/pjsip-apps/src/pjsystest/main_wm.c
+           dependencies/pjproject/pjsip-apps/src/pjsystest/systest.c
+           dependencies/pjproject/pjsip-apps/src/pjsystest/systest.h
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/py_pjsua.c
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/py_pjsua.h
+           dependencies/pjproject/pjsip-apps/src/pygui/account.py
+           dependencies/pjproject/pjsip-apps/src/pygui/accountsetting.py
+           dependencies/pjproject/pjsip-apps/src/pygui/application.py
+           dependencies/pjproject/pjsip-apps/src/pygui/buddy.py
+           dependencies/pjproject/pjsip-apps/src/pygui/call.py
+           dependencies/pjproject/pjsip-apps/src/pygui/chat.py
+           dependencies/pjproject/pjsip-apps/src/pygui/chatgui.py
+           dependencies/pjproject/pjsip-apps/src/pygui/endpoint.py
+           dependencies/pjproject/pjsip-apps/src/pygui/log.py
+           dependencies/pjproject/pjsip-apps/src/pygui/settings.py
+           dependencies/pjproject/pjsip-apps/src/python/_pjsua.c
+           dependencies/pjproject/pjsip-apps/src/python/_pjsua.h
+           dependencies/pjproject/pjsip-apps/src/python/pjsua.py
+           dependencies/pjproject/pjsip-apps/src/python/samples/call.py
+           dependencies/pjproject/pjsip-apps/src/python/samples/presence.py
+           dependencies/pjproject/pjsip-apps/src/python/samples/registration.py
+           dependencies/pjproject/pjsip-apps/src/python/samples/simplecall.py
+           dependencies/pjproject/pjsip-apps/src/python/setup-vc.py
+           dependencies/pjproject/pjsip-apps/src/python/setup.py
+           dependencies/pjproject/pjsip-apps/src/samples/aectest.c
+           dependencies/pjproject/pjsip-apps/src/samples/auddemo.c
+           dependencies/pjproject/pjsip-apps/src/samples/aviplay.c
+           dependencies/pjproject/pjsip-apps/src/samples/confbench.c
+           dependencies/pjproject/pjsip-apps/src/samples/confsample.c
+           dependencies/pjproject/pjsip-apps/src/samples/encdec.c
+           dependencies/pjproject/pjsip-apps/src/samples/httpdemo.c
+           dependencies/pjproject/pjsip-apps/src/samples/icedemo.c
+           dependencies/pjproject/pjsip-apps/src/samples/level.c
+           dependencies/pjproject/pjsip-apps/src/samples/mix.c
+           dependencies/pjproject/pjsip-apps/src/samples/pcaputil.c
+           dependencies/pjproject/pjsip-apps/src/samples/pjsip-perf.c
+           dependencies/pjproject/pjsip-apps/src/samples/pjsua2_demo.cpp
+           dependencies/pjproject/pjsip-apps/src/samples/playfile.c
+           dependencies/pjproject/pjsip-apps/src/samples/playsine.c
+           dependencies/pjproject/pjsip-apps/src/samples/proxy.h
+           dependencies/pjproject/pjsip-apps/src/samples/recfile.c
+           dependencies/pjproject/pjsip-apps/src/samples/resampleplay.c
+           dependencies/pjproject/pjsip-apps/src/samples/simple_pjsua.c
+           dependencies/pjproject/pjsip-apps/src/samples/stateful_proxy.c
+           dependencies/pjproject/pjsip-apps/src/samples/stateless_proxy.c
+           dependencies/pjproject/pjsip-apps/src/samples/stereotest.c
+           dependencies/pjproject/pjsip-apps/src/samples/streamutil.c
+           dependencies/pjproject/pjsip-apps/src/samples/strerror.c
+           dependencies/pjproject/pjsip-apps/src/samples/tonegen.c
+           dependencies/pjproject/pjsip-apps/src/samples/util.h
+           dependencies/pjproject/pjsip-apps/src/samples/vid_codec_test.c
+           dependencies/pjproject/pjsip-apps/src/samples/vid_streamutil.c
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/PjSample.cs
+           dependencies/pjproject/pjsip-apps/src/swig/importsym.py
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/CallActivity.java
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/MainActivity.java
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/java/org/pjsip/pjsua2/app/MyApp.java
+           dependencies/pjproject/pjsip-apps/src/swig/java/sample.java
+           dependencies/pjproject/pjsip-apps/src/swig/java/sample2.java
+           dependencies/pjproject/pjsip-apps/src/swig/python/setup.py
+           dependencies/pjproject/pjsip-apps/src/symsndtest/app_main.cpp
+           dependencies/pjproject/pjsip-apps/src/symsndtest/main_symbian.cpp
+           dependencies/pjproject/pjsip-apps/src/vidgui/vidgui.cpp
+           dependencies/pjproject/pjsip-apps/src/vidgui/vidgui.h
+           dependencies/pjproject/pjsip-apps/src/vidgui/vidwin.cpp
+           dependencies/pjproject/pjsip-apps/src/vidgui/vidwin.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/errno.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/evsub.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/evsub_msg.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/iscomposing.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/mwi.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/pidf.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/presence.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/publish.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/rpid.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/types.h
+           dependencies/pjproject/pjsip/include/pjsip-simple/xpidf.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_100rel.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_inv.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_regc.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_replaces.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_timer.h
+           dependencies/pjproject/pjsip/include/pjsip-ua/sip_xfer.h
+           dependencies/pjproject/pjsip/include/pjsip.h
+           dependencies/pjproject/pjsip/include/pjsip/print_util.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_auth.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_auth_aka.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_auth_msg.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_auth_parser.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_autoconf.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_autoconf.h.in
+           dependencies/pjproject/pjsip/include/pjsip/sip_config.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_dialog.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_endpoint.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_errno.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_event.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_module.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_msg.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_multipart.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_parser.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_private.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_resolve.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_tel_uri.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transaction.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transport.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transport_loop.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transport_tcp.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transport_tls.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_transport_udp.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_types.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_ua_layer.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_uri.h
+           dependencies/pjproject/pjsip/include/pjsip/sip_util.h
+           dependencies/pjproject/pjsip/include/pjsip_auth.h
+           dependencies/pjproject/pjsip/include/pjsip_simple.h
+           dependencies/pjproject/pjsip/include/pjsip_ua.h
+           dependencies/pjproject/pjsip/include/pjsua-lib/pjsua.h
+           dependencies/pjproject/pjsip/include/pjsua-lib/pjsua_internal.h
+           dependencies/pjproject/pjsip/include/pjsua2.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/account.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/call.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/config.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/doxygen.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/endpoint.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/json.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/media.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/persistent.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/presence.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/siptypes.hpp
+           dependencies/pjproject/pjsip/include/pjsua2/types.hpp
+           dependencies/pjproject/pjsip/src/pjsip-simple/errno.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/evsub.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/evsub_msg.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/iscomposing.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/mwi.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/pidf.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/presence.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/presence_body.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/publishc.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/rpid.c
+           dependencies/pjproject/pjsip/src/pjsip-simple/xpidf.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_100rel.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_inv.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_reg.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_replaces.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_timer.c
+           dependencies/pjproject/pjsip/src/pjsip-ua/sip_xfer.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_aka.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_client.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_msg.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_parser.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_server.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_config.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_dialog.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_endpoint.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_errno.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_msg.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_multipart.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_parser.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_resolve.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_tel_uri.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transaction.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport_loop.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport_tcp.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport_tls.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport_udp.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_ua_layer.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_uri.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_util.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_util_proxy.c
+           dependencies/pjproject/pjsip/src/pjsip/sip_util_statefull.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_acc.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_aud.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_call.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_core.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_dump.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_im.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_media.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_pres.c
+           dependencies/pjproject/pjsip/src/pjsua-lib/pjsua_vid.c
+           dependencies/pjproject/pjsip/src/pjsua2-test/main.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/account.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/call.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/endpoint.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/json.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/media.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/persistent.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/presence.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/siptypes.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/types.cpp
+           dependencies/pjproject/pjsip/src/pjsua2/util.hpp
+           dependencies/pjproject/pjsip/src/test/dlg_core_test.c
+           dependencies/pjproject/pjsip/src/test/dns_test.c
+           dependencies/pjproject/pjsip/src/test/inv_offer_answer_test.c
+           dependencies/pjproject/pjsip/src/test/main.c
+           dependencies/pjproject/pjsip/src/test/msg_err_test.c
+           dependencies/pjproject/pjsip/src/test/msg_logger.c
+           dependencies/pjproject/pjsip/src/test/msg_test.c
+           dependencies/pjproject/pjsip/src/test/multipart_test.c
+           dependencies/pjproject/pjsip/src/test/regc_test.c
+           dependencies/pjproject/pjsip/src/test/test.c
+           dependencies/pjproject/pjsip/src/test/test.h
+           dependencies/pjproject/pjsip/src/test/transport_loop_test.c
+           dependencies/pjproject/pjsip/src/test/transport_tcp_test.c
+           dependencies/pjproject/pjsip/src/test/transport_test.c
+           dependencies/pjproject/pjsip/src/test/transport_udp_test.c
+           dependencies/pjproject/pjsip/src/test/tsx_basic_test.c
+           dependencies/pjproject/pjsip/src/test/tsx_bench.c
+           dependencies/pjproject/pjsip/src/test/tsx_uac_test.c
+           dependencies/pjproject/pjsip/src/test/tsx_uas_test.c
+           dependencies/pjproject/pjsip/src/test/txdata_test.c
+           dependencies/pjproject/pjsip/src/test/uri_test.c
+           dependencies/pjproject/tests/cdash/builder.py
+           dependencies/pjproject/tests/cdash/cfg_gnu.py
+           dependencies/pjproject/tests/cdash/cfg_msvc.py
+           dependencies/pjproject/tests/cdash/cfg_site_sample.py
+           dependencies/pjproject/tests/cdash/cfg_symbian.py
+           dependencies/pjproject/tests/cdash/main.py
+           dependencies/pjproject/tests/pjsua/tools/cmp_wav.c
+           dependencies/pjproject/third_party/build/srtp/config.h
+           dependencies/pjproject/third_party/build/srtp/srtp_config.h
+           dependencies/pjproject/third_party/g7221/common/count.h
+           dependencies/pjproject/third_party/g7221/common/typedef.h
+           dependencies/pjproject/third_party/srtp/pjlib/srtp_err.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2007-2009 Keystream AB and Konftel AB,
+           2008-2032 Teluu Inc. (http://www.teluu.com)
+           2011 Dan Arrhenius <dan@keystream.se>
+           2012 Teluu Inc. (http://www.teluu.com) Contributed  Emre Tufekci (github.com/emretufekci)
+           2012 Teluu Inc. (http://www.teluu.com) Contributed  Regis Montoya (aka r3gis - www.r3gis.fr)
+           2014-2017 Savoir-faire Linux. (https://www.savoirfairelinux.com)
+           2017 George Joseph <gjoseph@digium.com>
+           __NO_COPYRIGHT__ in: dependencies/install/include/pj/timer.h
+           __NO_COPYRIGHT__ in: dependencies/pjproject/pjlib/include/pj/timer.h
+           __NO_COPYRIGHT__ in: dependencies/pjproject/pjlib/src/pj/timer.c
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     CMakeLists.txt
+           README.md
+           dependencies/install/include/llhttp.h
+           dependencies/install/include/msgpack/cpp_version.hpp
+           dependencies/install/include/msgpack/preprocessor.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/add.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/dec.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/div.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/inc.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/mod.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/mul.hpp
+           dependencies/install/include/msgpack/preprocessor/arithmetic/sub.hpp
+           dependencies/install/include/msgpack/preprocessor/array.hpp
+           dependencies/install/include/msgpack/preprocessor/array/data.hpp
+           dependencies/install/include/msgpack/preprocessor/array/detail/get_data.hpp
+           dependencies/install/include/msgpack/preprocessor/array/elem.hpp
+           dependencies/install/include/msgpack/preprocessor/array/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/array/insert.hpp
+           dependencies/install/include/msgpack/preprocessor/array/pop_back.hpp
+           dependencies/install/include/msgpack/preprocessor/array/pop_front.hpp
+           dependencies/install/include/msgpack/preprocessor/array/push_back.hpp
+           dependencies/install/include/msgpack/preprocessor/array/push_front.hpp
+           dependencies/install/include/msgpack/preprocessor/array/remove.hpp
+           dependencies/install/include/msgpack/preprocessor/array/replace.hpp
+           dependencies/install/include/msgpack/preprocessor/array/reverse.hpp
+           dependencies/install/include/msgpack/preprocessor/array/size.hpp
+           dependencies/install/include/msgpack/preprocessor/array/to_list.hpp
+           dependencies/install/include/msgpack/preprocessor/array/to_seq.hpp
+           dependencies/install/include/msgpack/preprocessor/array/to_tuple.hpp
+           dependencies/install/include/msgpack/preprocessor/assert_msg.hpp
+           dependencies/install/include/msgpack/preprocessor/cat.hpp
+           dependencies/install/include/msgpack/preprocessor/comma.hpp
+           dependencies/install/include/msgpack/preprocessor/comma_if.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/equal.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/greater.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/greater_equal.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/less.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/less_equal.hpp
+           dependencies/install/include/msgpack/preprocessor/comparison/not_equal.hpp
+           dependencies/install/include/msgpack/preprocessor/config/config.hpp
+           dependencies/install/include/msgpack/preprocessor/config/limits.hpp
+           dependencies/install/include/msgpack/preprocessor/control.hpp
+           dependencies/install/include/msgpack/preprocessor/control/deduce_d.hpp
+           dependencies/install/include/msgpack/preprocessor/control/detail/dmc/while.hpp
+           dependencies/install/include/msgpack/preprocessor/control/detail/edg/while.hpp
+           dependencies/install/include/msgpack/preprocessor/control/detail/msvc/while.hpp
+           dependencies/install/include/msgpack/preprocessor/control/detail/while.hpp
+           dependencies/install/include/msgpack/preprocessor/control/expr_if.hpp
+           dependencies/install/include/msgpack/preprocessor/control/expr_iif.hpp
+           dependencies/install/include/msgpack/preprocessor/control/if.hpp
+           dependencies/install/include/msgpack/preprocessor/control/iif.hpp
+           dependencies/install/include/msgpack/preprocessor/control/while.hpp
+           dependencies/install/include/msgpack/preprocessor/debug.hpp
+           dependencies/install/include/msgpack/preprocessor/debug/assert.hpp
+           dependencies/install/include/msgpack/preprocessor/debug/error.hpp
+           dependencies/install/include/msgpack/preprocessor/debug/line.hpp
+           dependencies/install/include/msgpack/preprocessor/dec.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/auto_rec.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/check.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/is_binary.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/is_nullary.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/is_unary.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/null.hpp
+           dependencies/install/include/msgpack/preprocessor/detail/split.hpp
+           dependencies/install/include/msgpack/preprocessor/empty.hpp
+           dependencies/install/include/msgpack/preprocessor/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/enum_params.hpp
+           dependencies/install/include/msgpack/preprocessor/enum_params_with_a_default.hpp
+           dependencies/install/include/msgpack/preprocessor/enum_params_with_defaults.hpp
+           dependencies/install/include/msgpack/preprocessor/enum_shifted.hpp
+           dependencies/install/include/msgpack/preprocessor/enum_shifted_params.hpp
+           dependencies/install/include/msgpack/preprocessor/expand.hpp
+           dependencies/install/include/msgpack/preprocessor/expr_if.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/apply.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/detail/is_empty.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/empty.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/expand.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/identity.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/intercept.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/is_1.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/is_empty.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp
+           dependencies/install/include/msgpack/preprocessor/facilities/overload.hpp
+           dependencies/install/include/msgpack/preprocessor/for.hpp
+           dependencies/install/include/msgpack/preprocessor/identity.hpp
+           dependencies/install/include/msgpack/preprocessor/if.hpp
+           dependencies/install/include/msgpack/preprocessor/inc.hpp
+           dependencies/install/include/msgpack/preprocessor/iterate.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/finish.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/local.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/rlocal.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/self.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/detail/start.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/iterate.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/local.hpp
+           dependencies/install/include/msgpack/preprocessor/iteration/self.hpp
+           dependencies/install/include/msgpack/preprocessor/library.hpp
+           dependencies/install/include/msgpack/preprocessor/limits.hpp
+           dependencies/install/include/msgpack/preprocessor/list.hpp
+           dependencies/install/include/msgpack/preprocessor/list/adt.hpp
+           dependencies/install/include/msgpack/preprocessor/list/append.hpp
+           dependencies/install/include/msgpack/preprocessor/list/at.hpp
+           dependencies/install/include/msgpack/preprocessor/list/cat.hpp
+           dependencies/install/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp
+           dependencies/install/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp
+           dependencies/install/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp
+           dependencies/install/include/msgpack/preprocessor/list/detail/fold_left.hpp
+           dependencies/install/include/msgpack/preprocessor/list/detail/fold_right.hpp
+           dependencies/install/include/msgpack/preprocessor/list/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/list/filter.hpp
+           dependencies/install/include/msgpack/preprocessor/list/first_n.hpp
+           dependencies/install/include/msgpack/preprocessor/list/fold_left.hpp
+           dependencies/install/include/msgpack/preprocessor/list/fold_right.hpp
+           dependencies/install/include/msgpack/preprocessor/list/for_each.hpp
+           dependencies/install/include/msgpack/preprocessor/list/for_each_i.hpp
+           dependencies/install/include/msgpack/preprocessor/list/for_each_product.hpp
+           dependencies/install/include/msgpack/preprocessor/list/rest_n.hpp
+           dependencies/install/include/msgpack/preprocessor/list/reverse.hpp
+           dependencies/install/include/msgpack/preprocessor/list/size.hpp
+           dependencies/install/include/msgpack/preprocessor/list/to_array.hpp
+           dependencies/install/include/msgpack/preprocessor/list/to_seq.hpp
+           dependencies/install/include/msgpack/preprocessor/list/to_tuple.hpp
+           dependencies/install/include/msgpack/preprocessor/list/transform.hpp
+           dependencies/install/include/msgpack/preprocessor/logical.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/and.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/bitand.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/bitnor.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/bitor.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/bitxor.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/bool.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/compl.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/nor.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/not.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/or.hpp
+           dependencies/install/include/msgpack/preprocessor/logical/xor.hpp
+           dependencies/install/include/msgpack/preprocessor/max.hpp
+           dependencies/install/include/msgpack/preprocessor/min.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/comma.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/comma_if.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/paren.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/paren_if.hpp
+           dependencies/install/include/msgpack/preprocessor/punctuation/remove_parens.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat_2nd.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat_3rd.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat_from_to.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat_from_to_2nd.hpp
+           dependencies/install/include/msgpack/preprocessor/repeat_from_to_3rd.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/deduce_r.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/deduce_z.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/detail/edg/for.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/detail/for.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_binary_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_shifted.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_trailing.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/for.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/repeat.hpp
+           dependencies/install/include/msgpack/preprocessor/repetition/repeat_from_to.hpp
+           dependencies/install/include/msgpack/preprocessor/selection.hpp
+           dependencies/install/include/msgpack/preprocessor/selection/max.hpp
+           dependencies/install/include/msgpack/preprocessor/selection/min.hpp
+           dependencies/install/include/msgpack/preprocessor/seq.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/cat.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/detail/binary_transform.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/detail/is_empty.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/detail/split.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/detail/to_list_msvc.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/elem.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/filter.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/first_n.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/fold_left.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/fold_right.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/for_each.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/for_each_i.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/for_each_product.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/insert.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/pop_back.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/pop_front.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/push_back.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/push_front.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/remove.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/replace.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/rest_n.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/reverse.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/seq.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/size.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/subseq.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/to_array.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/to_list.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/to_tuple.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/transform.hpp
+           dependencies/install/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp
+           dependencies/install/include/msgpack/preprocessor/slot.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/counter.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/counter.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/def.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/shared.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/slot1.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/slot2.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/slot3.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/slot4.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/detail/slot5.hpp
+           dependencies/install/include/msgpack/preprocessor/slot/slot.hpp
+           dependencies/install/include/msgpack/preprocessor/stringize.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/eat.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/elem.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/enum.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/insert.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/pop_back.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/pop_front.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/push_back.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/push_front.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/rem.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/remove.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/replace.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/reverse.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/size.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/to_array.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/to_list.hpp
+           dependencies/install/include/msgpack/preprocessor/tuple/to_seq.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/elem.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/size.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/to_array.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/to_list.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/to_seq.hpp
+           dependencies/install/include/msgpack/preprocessor/variadic/to_tuple.hpp
+           dependencies/install/include/msgpack/preprocessor/while.hpp
+           dependencies/install/include/msgpack/preprocessor/wstringize.hpp
+           dependencies/install/include/msgpack/type.hpp
+           dependencies/install/include/msgpack/version_master.hpp
+           dependencies/install/include/opendht/def.h
+           dependencies/install/include/pj/config_site.h
+           dependencies/install/include/pj/config_site_sample.h
+           dependencies/install/include/pj/config_site_test.h
+           dependencies/install/include/pjsua.h
+           dependencies/install/include/restinio/all.hpp
+           dependencies/install/include/restinio/asio_include.hpp
+           dependencies/install/include/restinio/asio_timer_manager.hpp
+           dependencies/install/include/restinio/async_chain/common.hpp
+           dependencies/install/include/restinio/async_chain/fixed_size.hpp
+           dependencies/install/include/restinio/async_chain/growable_size.hpp
+           dependencies/install/include/restinio/buffers.hpp
+           dependencies/install/include/restinio/cast_to.hpp
+           dependencies/install/include/restinio/chunked_input_info.hpp
+           dependencies/install/include/restinio/common_types.hpp
+           dependencies/install/include/restinio/compiler_features.hpp
+           dependencies/install/include/restinio/connection_count_limiter.hpp
+           dependencies/install/include/restinio/connection_state_listener.hpp
+           dependencies/install/include/restinio/core.hpp
+           dependencies/install/include/restinio/default_strands.hpp
+           dependencies/install/include/restinio/detect_os.hpp
+           dependencies/install/include/restinio/exception.hpp
+           dependencies/install/include/restinio/expected.hpp
+           dependencies/install/include/restinio/helpers/easy_parser.hpp
+           dependencies/install/include/restinio/helpers/file_upload.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/accept-charset.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/accept-encoding.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/accept-language.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/accept.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/authorization.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/basic_auth.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/basics.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/bearer_auth.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/cache-control.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/connection.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/content-disposition.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/content-encoding.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/content-type.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/details/pct_encoded_symbols.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/host.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/media-type.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/range.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/transfer-encoding.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/try_parse_field.hpp
+           dependencies/install/include/restinio/helpers/http_field_parsers/user-agent.hpp
+           dependencies/install/include/restinio/helpers/multipart_body.hpp
+           dependencies/install/include/restinio/helpers/string_algo.hpp
+           dependencies/install/include/restinio/http_headers.hpp
+           dependencies/install/include/restinio/http_server.hpp
+           dependencies/install/include/restinio/http_server_run.hpp
+           dependencies/install/include/restinio/impl/acceptor.hpp
+           dependencies/install/include/restinio/impl/connection.hpp
+           dependencies/install/include/restinio/impl/connection_base.hpp
+           dependencies/install/include/restinio/impl/connection_settings.hpp
+           dependencies/install/include/restinio/impl/executor_wrapper.hpp
+           dependencies/install/include/restinio/impl/fixed_buffer.hpp
+           dependencies/install/include/restinio/impl/header_helpers.hpp
+           dependencies/install/include/restinio/impl/include_fmtlib.hpp
+           dependencies/install/include/restinio/impl/ioctx_on_thread_pool.hpp
+           dependencies/install/include/restinio/impl/os_posix.ipp
+           dependencies/install/include/restinio/impl/os_unknown.ipp
+           dependencies/install/include/restinio/impl/os_win.ipp
+           dependencies/install/include/restinio/impl/overflow_controlled_integer_accumulator.hpp
+           dependencies/install/include/restinio/impl/parser_callbacks.ipp
+           dependencies/install/include/restinio/impl/response_coordinator.hpp
+           dependencies/install/include/restinio/impl/sendfile_operation.hpp
+           dependencies/install/include/restinio/impl/sendfile_operation_default.ipp
+           dependencies/install/include/restinio/impl/sendfile_operation_posix.ipp
+           dependencies/install/include/restinio/impl/sendfile_operation_win.ipp
+           dependencies/install/include/restinio/impl/string_caseless_compare.hpp
+           dependencies/install/include/restinio/impl/tls_socket.hpp
+           dependencies/install/include/restinio/impl/to_lower_lut.hpp
+           dependencies/install/include/restinio/impl/write_group_output_ctx.hpp
+           dependencies/install/include/restinio/incoming_http_msg_limits.hpp
+           dependencies/install/include/restinio/ip_blocker.hpp
+           dependencies/install/include/restinio/message_builders.hpp
+           dependencies/install/include/restinio/null_logger.hpp
+           dependencies/install/include/restinio/null_mutex.hpp
+           dependencies/install/include/restinio/null_timer_manager.hpp
+           dependencies/install/include/restinio/os.hpp
+           dependencies/install/include/restinio/ostream_logger.hpp
+           dependencies/install/include/restinio/path2regex/path2regex.hpp
+           dependencies/install/include/restinio/request_handler.hpp
+           dependencies/install/include/restinio/router/boost_regex_engine.hpp
+           dependencies/install/include/restinio/router/easy_parser_router.hpp
+           dependencies/install/include/restinio/router/express.hpp
+           dependencies/install/include/restinio/router/impl/target_path_holder.hpp
+           dependencies/install/include/restinio/router/method_matcher.hpp
+           dependencies/install/include/restinio/router/non_matched_request_handler.hpp
+           dependencies/install/include/restinio/router/pcre2_regex_engine.hpp
+           dependencies/install/include/restinio/router/pcre_regex_engine.hpp
+           dependencies/install/include/restinio/router/std_regex_engine.hpp
+           dependencies/install/include/restinio/sendfile.hpp
+           dependencies/install/include/restinio/sendfile_defs_default.hpp
+           dependencies/install/include/restinio/sendfile_defs_posix.hpp
+           dependencies/install/include/restinio/sendfile_defs_win.hpp
+           dependencies/install/include/restinio/settings.hpp
+           dependencies/install/include/restinio/so5/so_timer_manager.hpp
+           dependencies/install/include/restinio/string_view.hpp
+           dependencies/install/include/restinio/sync_chain/fixed_size.hpp
+           dependencies/install/include/restinio/sync_chain/growable_size.hpp
+           dependencies/install/include/restinio/tcp_connection_ctx_base.hpp
+           dependencies/install/include/restinio/timer_common.hpp
+           dependencies/install/include/restinio/tls.hpp
+           dependencies/install/include/restinio/tls_fwd.hpp
+           dependencies/install/include/restinio/traits.hpp
+           dependencies/install/include/restinio/transforms/zlib.hpp
+           dependencies/install/include/restinio/uri_helpers.hpp
+           dependencies/install/include/restinio/utils/at_scope_exit.hpp
+           dependencies/install/include/restinio/utils/base64.hpp
+           dependencies/install/include/restinio/utils/base64_lut.ipp
+           dependencies/install/include/restinio/utils/from_string.hpp
+           dependencies/install/include/restinio/utils/from_string_details.ipp
+           dependencies/install/include/restinio/utils/impl/bitops.hpp
+           dependencies/install/include/restinio/utils/impl/safe_uint_truncate.hpp
+           dependencies/install/include/restinio/utils/metaprogramming.hpp
+           dependencies/install/include/restinio/utils/percent_encoding.hpp
+           dependencies/install/include/restinio/utils/sha1.hpp
+           dependencies/install/include/restinio/utils/suppress_exceptions.hpp
+           dependencies/install/include/restinio/utils/tagged_scalar.hpp
+           dependencies/install/include/restinio/utils/tuple_algorithms.hpp
+           dependencies/install/include/restinio/utils/utf8_checker.hpp
+           dependencies/install/include/restinio/value_or.hpp
+           dependencies/install/include/restinio/version.hpp
+           dependencies/install/include/restinio/websocket/impl/utf8.hpp
+           dependencies/install/include/restinio/websocket/impl/ws_connection.hpp
+           dependencies/install/include/restinio/websocket/impl/ws_connection_base.hpp
+           dependencies/install/include/restinio/websocket/impl/ws_parser.hpp
+           dependencies/install/include/restinio/websocket/impl/ws_protocol_validator.hpp
+           dependencies/install/include/restinio/websocket/message.hpp
+           dependencies/install/include/restinio/websocket/websocket.hpp
+           dependencies/install/lib/cmake/llhttp/llhttp-config-release.cmake
+           dependencies/install/lib/cmake/llhttp/llhttp-config.cmake
+           dependencies/install/lib/cmake/msgpack-cxx/msgpack-cxx-config-version.cmake
+           dependencies/install/lib/cmake/msgpack-cxx/msgpack-cxx-config.cmake
+           dependencies/install/lib/cmake/msgpack-cxx/msgpack-cxx-targets.cmake
+           dependencies/install/lib/cmake/opendht/opendhtConfig-release.cmake
+           dependencies/install/lib/cmake/opendht/opendhtConfig.cmake
+           dependencies/install/lib/cmake/opendht/opendhtConfigVersion.cmake
+           dependencies/install/lib/cmake/restinio/restinio-config-version.cmake
+           dependencies/install/lib/cmake/restinio/restinio-config.cmake
+           dependencies/install/lib/cmake/restinio/restinio-targets.cmake
+           dependencies/install/lib/libllhttp.a
+           dependencies/install/lib/libpj-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjlib-util-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjmedia-audiodev-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjmedia-codec-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjmedia-videodev-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjmedia-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjnath-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjsip-simple-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjsip-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libpjsua-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/libsrtp-x86_64-unknown-linux-gnu.a
+           dependencies/install/lib/pkgconfig/libllhttp.pc
+           dependencies/install/lib/pkgconfig/libpjproject.pc
+           dependencies/install/lib/pkgconfig/opendht.pc
+           dependencies/msgpack/.git
+           dependencies/msgpack/.github/depends/boost.sh
+           dependencies/msgpack/.github/depends/zlib.sh
+           dependencies/msgpack/.github/workflows/coverage.yml
+           dependencies/msgpack/.github/workflows/gha.yml
+           dependencies/msgpack/.gitignore
+           dependencies/msgpack/CHANGELOG.md
+           dependencies/msgpack/CMakeLists.txt
+           dependencies/msgpack/Doxyfile
+           dependencies/msgpack/Files.cmake
+           dependencies/msgpack/NOTICE
+           dependencies/msgpack/QUICKSTART-CPP.md
+           dependencies/msgpack/README.md
+           dependencies/msgpack/appveyor.yml
+           dependencies/msgpack/build/CMakeCache.txt
+           dependencies/msgpack/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake
+           dependencies/msgpack/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin
+           dependencies/msgpack/build/CMakeFiles/3.22.1/CMakeSystem.cmake
+           dependencies/msgpack/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
+           dependencies/msgpack/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out
+           dependencies/msgpack/build/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/msgpack/build/CMakeFiles/CMakeOutput.log
+           dependencies/msgpack/build/CMakeFiles/Export/lib/cmake/msgpack-cxx/msgpack-cxx-targets.cmake
+           dependencies/msgpack/build/CMakeFiles/Makefile.cmake
+           dependencies/msgpack/build/CMakeFiles/Makefile2
+           dependencies/msgpack/build/CMakeFiles/TargetDirectories.txt
+           dependencies/msgpack/build/CMakeFiles/cmake.check_cache
+           dependencies/msgpack/build/CMakeFiles/progress.marks
+           dependencies/msgpack/build/Makefile
+           dependencies/msgpack/build/cmake_install.cmake
+           dependencies/msgpack/build/install_manifest.txt
+           dependencies/msgpack/build/msgpack-cxx-config-version.cmake
+           dependencies/msgpack/build/msgpack-cxx-config.cmake
+           dependencies/msgpack/ci/build_cmake.sh
+           dependencies/msgpack/ci/build_regression.sh
+           dependencies/msgpack/ci/set_gcc_10.sh
+           dependencies/msgpack/cmake/CodeCoverage.cmake
+           dependencies/msgpack/codecov.yml
+           dependencies/msgpack/example/CMakeLists.txt
+           dependencies/msgpack/example/boost/CMakeLists.txt
+           dependencies/msgpack/example/cpp03/CMakeLists.txt
+           dependencies/msgpack/example/cpp11/CMakeLists.txt
+           dependencies/msgpack/example/cpp11/socket_stream_example.cpp
+           dependencies/msgpack/example/x3/CMakeLists.txt
+           dependencies/msgpack/fuzz/CMakeLists.txt
+           dependencies/msgpack/fuzz/regression_runner.cpp
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer.cpp
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_regressions/clusterfuzz-testcase-minimized-unpack_pack_fuzzer-5656982724804608
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_regressions/clusterfuzz-testcase-minimized-unpack_pack_fuzzer-6022481354686464
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_seed_corpus/EmptyArray
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_seed_corpus/EmptyObject
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_seed_corpus/ExcessiveNesting
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_seed_corpus/OpenWeatherMap
+           dependencies/msgpack/fuzz/unpack_pack_fuzzer_seed_corpus/WeatherUnderground
+           dependencies/msgpack/include/msgpack/cpp_version.hpp
+           dependencies/msgpack/include/msgpack/preprocessor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/add.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/dec.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/div.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/inc.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/mod.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/mul.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/arithmetic/sub.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/data.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/detail/get_data.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/elem.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/insert.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/pop_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/pop_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/push_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/push_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/remove.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/replace.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/reverse.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/size.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/to_list.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/to_seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/array/to_tuple.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/assert_msg.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/cat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comma.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comma_if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/equal.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/greater.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/greater_equal.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/less.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/less_equal.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/comparison/not_equal.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/config/config.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/config/limits.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/deduce_d.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/detail/dmc/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/detail/edg/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/detail/msvc/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/detail/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/expr_if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/expr_iif.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/iif.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/control/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/debug.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/debug/assert.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/debug/error.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/debug/line.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/dec.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/auto_rec.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/check.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/is_binary.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/is_nullary.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/is_unary.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/null.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/detail/split.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/empty.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum_params_with_a_default.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum_params_with_defaults.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum_shifted.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/enum_shifted_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/expand.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/expr_if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/apply.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/detail/is_empty.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/empty.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/expand.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/identity.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/intercept.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/is_1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/is_empty.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/facilities/overload.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/identity.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/inc.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iterate.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/finish.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/local.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/rlocal.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/self.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/detail/start.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/iterate.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/local.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/iteration/self.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/library.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/limits.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/adt.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/append.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/at.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/cat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/detail/fold_left.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/detail/fold_right.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/filter.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/first_n.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/fold_left.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/fold_right.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/for_each.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/for_each_i.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/for_each_product.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/rest_n.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/reverse.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/size.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/to_array.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/to_seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/to_tuple.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/list/transform.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/and.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/bitand.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/bitnor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/bitor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/bitxor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/bool.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/compl.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/nor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/not.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/or.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/logical/xor.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/max.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/min.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/comma.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/comma_if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/paren.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/paren_if.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/punctuation/remove_parens.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat_2nd.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat_3rd.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat_from_to.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat_from_to_2nd.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repeat_from_to_3rd.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/deduce_r.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/deduce_z.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/detail/edg/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/detail/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_binary_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_shifted.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_trailing.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/for.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/repeat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/repetition/repeat_from_to.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/selection.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/selection/max.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/selection/min.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/cat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/detail/binary_transform.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/detail/is_empty.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/detail/split.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/detail/to_list_msvc.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/elem.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/filter.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/first_n.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/fold_left.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/fold_right.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/for_each.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/for_each_i.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/for_each_product.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/insert.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/pop_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/pop_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/push_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/push_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/remove.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/replace.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/rest_n.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/reverse.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/size.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/subseq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/to_array.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/to_list.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/to_tuple.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/transform.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/counter.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/counter.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/def.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/shared.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/slot1.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/slot2.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/slot3.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/slot4.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/detail/slot5.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/slot/slot.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/stringize.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/eat.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/elem.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/enum.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/insert.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/pop_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/pop_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/push_back.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/push_front.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/rem.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/remove.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/replace.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/reverse.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/size.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/to_array.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/to_list.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/tuple/to_seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/elem.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/size.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/to_array.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/to_list.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/to_seq.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/variadic/to_tuple.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/while.hpp
+           dependencies/msgpack/include/msgpack/preprocessor/wstringize.hpp
+           dependencies/msgpack/include/msgpack/type.hpp
+           dependencies/msgpack/include/msgpack/version_master.hpp
+           dependencies/msgpack/make_file_list.sh
+           dependencies/msgpack/makedist.sh
+           dependencies/msgpack/msgpack-cxx-config.cmake.in
+           dependencies/msgpack/preprocess
+           dependencies/msgpack/test-install/CMakeLists.txt
+           dependencies/msgpack/test/CMakeLists.txt
+           dependencies/msgpack/test/array_ref.cpp
+           dependencies/msgpack/test/boost_fusion.cpp
+           dependencies/msgpack/test/boost_optional.cpp
+           dependencies/msgpack/test/boost_string_ref.cpp
+           dependencies/msgpack/test/boost_string_view.cpp
+           dependencies/msgpack/test/boost_variant.cpp
+           dependencies/msgpack/test/buffer.cpp
+           dependencies/msgpack/test/buffer_c.cpp
+           dependencies/msgpack/test/carray.cpp
+           dependencies/msgpack/test/cases.cpp
+           dependencies/msgpack/test/cases.mpac
+           dependencies/msgpack/test/cases_compact.mpac
+           dependencies/msgpack/test/convert.cpp
+           dependencies/msgpack/test/fixint.cpp
+           dependencies/msgpack/test/fuzz_unpack_pack_fuzzer_cpp11.cpp
+           dependencies/msgpack/test/inc_adaptor_define.cpp
+           dependencies/msgpack/test/iterator_cpp11.cpp
+           dependencies/msgpack/test/json.cpp
+           dependencies/msgpack/test/limit.cpp
+           dependencies/msgpack/test/msgpack_basic.cpp
+           dependencies/msgpack/test/msgpack_container.cpp
+           dependencies/msgpack/test/msgpack_cpp11.cpp
+           dependencies/msgpack/test/msgpack_cpp17.cpp
+           dependencies/msgpack/test/msgpack_cpp20.cpp
+           dependencies/msgpack/test/msgpack_stream.cpp
+           dependencies/msgpack/test/msgpack_tuple.cpp
+           dependencies/msgpack/test/msgpack_vref.cpp
+           dependencies/msgpack/test/msgpack_x3_parse.cpp
+           dependencies/msgpack/test/multi_file1.cpp
+           dependencies/msgpack/test/multi_file2.cpp
+           dependencies/msgpack/test/object.cpp
+           dependencies/msgpack/test/object_with_zone.cpp
+           dependencies/msgpack/test/pack_unpack.cpp
+           dependencies/msgpack/test/raw.cpp
+           dependencies/msgpack/test/reference.cpp
+           dependencies/msgpack/test/reference_cpp11.cpp
+           dependencies/msgpack/test/reference_wrapper_cpp11.cpp
+           dependencies/msgpack/test/shared_ptr_cpp11.cpp
+           dependencies/msgpack/test/size_equal_only.cpp
+           dependencies/msgpack/test/streaming.cpp
+           dependencies/msgpack/test/unique_ptr_cpp11.cpp
+           dependencies/msgpack/test/user_class.cpp
+           dependencies/msgpack/test/version.cpp
+           dependencies/msgpack/test/visitor.cpp
+           dependencies/msgpack/test/zone.cpp
+           dependencies/msgpack/update_version.sh
+           dependencies/opendht/.clang-tidy
+           dependencies/opendht/.devcontainer/devcontainer.json
+           dependencies/opendht/.git
+           dependencies/opendht/.github/workflows/ccpp.yml
+           dependencies/opendht/.github/workflows/clang-analyzer.yml
+           dependencies/opendht/.github/workflows/codeql-analysis.yml
+           dependencies/opendht/.github/workflows/release-package.yml
+           dependencies/opendht/.gitignore
+           dependencies/opendht/.vscode/launch.json
+           dependencies/opendht/.vscode/tasks.json
+           dependencies/opendht/CMakeLists.txt
+           dependencies/opendht/Makefile.am
+           dependencies/opendht/autogen.sh
+           dependencies/opendht/build/CMakeCache.txt
+           dependencies/opendht/build/CMakeFiles/3.22.1/CMakeCCompiler.cmake
+           dependencies/opendht/build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake
+           dependencies/opendht/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_C.bin
+           dependencies/opendht/build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin
+           dependencies/opendht/build/CMakeFiles/3.22.1/CMakeSystem.cmake
+           dependencies/opendht/build/CMakeFiles/3.22.1/CompilerIdC/CMakeCCompilerId.c
+           dependencies/opendht/build/CMakeFiles/3.22.1/CompilerIdC/a.out
+           dependencies/opendht/build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
+           dependencies/opendht/build/CMakeFiles/3.22.1/CompilerIdCXX/a.out
+           dependencies/opendht/build/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/opendht/build/CMakeFiles/CMakeError.log
+           dependencies/opendht/build/CMakeFiles/CMakeOutput.log
+           dependencies/opendht/build/CMakeFiles/Export/lib/cmake/opendht/opendhtConfig-release.cmake
+           dependencies/opendht/build/CMakeFiles/Export/lib/cmake/opendht/opendhtConfig.cmake
+           dependencies/opendht/build/CMakeFiles/Makefile.cmake
+           dependencies/opendht/build/CMakeFiles/Makefile2
+           dependencies/opendht/build/CMakeFiles/TargetDirectories.txt
+           dependencies/opendht/build/CMakeFiles/cmake.check_cache
+           dependencies/opendht/build/CMakeFiles/opendht.dir/DependInfo.cmake
+           dependencies/opendht/build/CMakeFiles/opendht.dir/build.make
+           dependencies/opendht/build/CMakeFiles/opendht.dir/cmake_clean.cmake
+           dependencies/opendht/build/CMakeFiles/opendht.dir/cmake_clean_target.cmake
+           dependencies/opendht/build/CMakeFiles/opendht.dir/compiler_depend.ts
+           dependencies/opendht/build/CMakeFiles/opendht.dir/depend.make
+           dependencies/opendht/build/CMakeFiles/opendht.dir/flags.make
+           dependencies/opendht/build/CMakeFiles/opendht.dir/link.txt
+           dependencies/opendht/build/CMakeFiles/opendht.dir/progress.make
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/base64.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/base64.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/callbacks.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/callbacks.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/compat/os_cert.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/compat/os_cert.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/crypto.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/crypto.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/default_types.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/default_types.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/dht.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/dht_proxy_client.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/dht_proxy_client.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/dhtrunner.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/dhtrunner.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/http.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/log.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/log.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/network_engine.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/network_engine.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/network_utils.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/network_utils.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/node.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/node.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/node_cache.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/node_cache.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/op_cache.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/op_cache.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/peer_discovery.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/peer_discovery.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/routing_table.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/routing_table.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/securedht.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/securedht.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/thread_pool.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/thread_pool.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/utils.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/utils.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/value.cpp.o
+           dependencies/opendht/build/CMakeFiles/opendht.dir/src/value.cpp.o.d
+           dependencies/opendht/build/CMakeFiles/progress.marks
+           dependencies/opendht/build/Makefile
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/Export/lib/cmake/llhttp/llhttp-config-release.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/Export/lib/cmake/llhttp/llhttp-config.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/DependInfo.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/build.make
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/cmake_clean.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/cmake_clean_target.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/compiler_depend.internal
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/compiler_depend.make
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/compiler_depend.ts
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/depend.make
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/flags.make
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/link.txt
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/progress.make
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/api.c.o
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/api.c.o.d
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/http.c.o
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/http.c.o.d
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/llhttp.c.o
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/llhttp_static.dir/src/llhttp.c.o.d
+           dependencies/opendht/build/_deps/llhttp-local-build/CMakeFiles/progress.marks
+           dependencies/opendht/build/_deps/llhttp-local-build/Makefile
+           dependencies/opendht/build/_deps/llhttp-local-build/cmake_install.cmake
+           dependencies/opendht/build/_deps/llhttp-local-build/libllhttp.a
+           dependencies/opendht/build/_deps/llhttp-local-src/.gitignore
+           dependencies/opendht/build/_deps/llhttp-local-src/CMakeLists.txt
+           dependencies/opendht/build/_deps/llhttp-local-src/common.gypi
+           dependencies/opendht/build/_deps/llhttp-local-src/include/llhttp.h
+           dependencies/opendht/build/_deps/llhttp-local-src/libllhttp.pc
+           dependencies/opendht/build/_deps/llhttp-local-src/libllhttp.pc.in
+           dependencies/opendht/build/_deps/llhttp-local-src/llhttp.gyp
+           dependencies/opendht/build/_deps/llhttp-local-src/src/api.c
+           dependencies/opendht/build/_deps/llhttp-local-src/src/http.c
+           dependencies/opendht/build/_deps/llhttp-local-src/src/llhttp.c
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeCache.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/3.22.1/CMakeSystem.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/CMakeOutput.log
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/CMakeRuleHashes.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/Makefile.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/Makefile2
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/TargetDirectories.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/cmake.check_cache
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate-complete
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/DependInfo.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/Labels.json
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/Labels.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/build.make
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/cmake_clean.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/compiler_depend.make
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/compiler_depend.ts
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/llhttp-local-populate.dir/progress.make
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeFiles/progress.marks
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/CMakeLists.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/Makefile
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/cmake_install.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/download-llhttp-local-populate.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/extract-llhttp-local-populate.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-build
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-configure
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-done
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-download
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-install
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-mkdir
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-patch
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-test
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-update
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/llhttp-local-populate-urlinfo.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/llhttp-local-populate-stamp/verify-llhttp-local-populate.cmake
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/src/v9.2.0.tar.gz
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/tmp/llhttp-local-populate-cfgcmd.txt
+           dependencies/opendht/build/_deps/llhttp-local-subbuild/llhttp-local-populate-prefix/tmp/llhttp-local-populate-cfgcmd.txt.in
+           dependencies/opendht/build/cmake_install.cmake
+           dependencies/opendht/build/doc/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/opendht/build/doc/CMakeFiles/progress.marks
+           dependencies/opendht/build/doc/Makefile
+           dependencies/opendht/build/doc/cmake_install.cmake
+           dependencies/opendht/build/install_manifest.txt
+           dependencies/opendht/build/opendht.pc
+           dependencies/opendht/build/opendhtConfigVersion.cmake
+           dependencies/opendht/c/Makefile.am
+           dependencies/opendht/cmake/CheckAtomic.cmake
+           dependencies/opendht/cmake/DetermineGCCCompatible.cmake
+           dependencies/opendht/cmake/FindRestinio.cmake
+           dependencies/opendht/configure.ac
+           dependencies/opendht/doc/CMakeLists.txt
+           dependencies/opendht/doc/Doxyfile.in
+           dependencies/opendht/doc/Makefile.am
+           dependencies/opendht/doc/connectivity-loss-by-search-criteria.pdf
+           dependencies/opendht/doc/connectivity-loss-by-search-criteria.tex
+           dependencies/opendht/doc/dhtnode.1
+           dependencies/opendht/docker/Dockerfile
+           dependencies/opendht/docker/DockerfileAlpine
+           dependencies/opendht/docker/DockerfileBionic
+           dependencies/opendht/docker/DockerfileDeps
+           dependencies/opendht/docker/DockerfileDepsAlpine
+           dependencies/opendht/docker/DockerfileDepsBionic
+           dependencies/opendht/docker/DockerfileDepsFocal
+           dependencies/opendht/docker/DockerfileDepsLlvm
+           dependencies/opendht/docker/DockerfileDhtnode
+           dependencies/opendht/docker/DockerfileFocal
+           dependencies/opendht/docker/DockerfileLlvm
+           dependencies/opendht/include/opendht/def.h
+           dependencies/opendht/meson.build
+           dependencies/opendht/meson.options
+           dependencies/opendht/opendht-c.pc.in
+           dependencies/opendht/opendht.pc.in
+           dependencies/opendht/python/CMakeLists.txt
+           dependencies/opendht/python/Makefile.am
+           dependencies/opendht/python/pyproject.toml
+           dependencies/opendht/python/tests/opendht_tests.py
+           dependencies/opendht/python/tools/README.md
+           dependencies/opendht/python/tools/dht/__init__.py
+           dependencies/opendht/resources/opendht_logo_512.png
+           dependencies/opendht/rust/.gitignore
+           dependencies/opendht/rust/Cargo.toml
+           dependencies/opendht/rust/README.md
+           dependencies/opendht/src/Makefile.am
+           dependencies/opendht/src/compat/getif_workaround_android.h
+           dependencies/opendht/src/compat/msvc/wingetopt.c
+           dependencies/opendht/src/compat/msvc/wingetopt.h
+           dependencies/opendht/tests/Makefile.am
+           dependencies/opendht/tools/CMakeLists.txt
+           dependencies/opendht/tools/Makefile.am
+           dependencies/opendht/tools/dhtproxy_stats.py
+           dependencies/opendht/tools/systemd/dhtcluster.conf
+           dependencies/opendht/tools/systemd/dhtcluster.service.in
+           dependencies/opendht/tools/systemd/dhtnode.conf
+           dependencies/opendht/tools/systemd/dhtnode.service.in
+           dependencies/pjproject/.editorconfig
+           dependencies/pjproject/.git
+           dependencies/pjproject/.git-blame-ignore-revs
+           dependencies/pjproject/.github/ISSUE_TEMPLATE/bug_report.yml
+           dependencies/pjproject/.github/ISSUE_TEMPLATE/config.yml
+           dependencies/pjproject/.github/ISSUE_TEMPLATE/feature_request.md
+           dependencies/pjproject/.github/workflows/ccpp.yml
+           dependencies/pjproject/.github/workflows/codeql-analysis.yml
+           dependencies/pjproject/.gitignore
+           dependencies/pjproject/INSTALL.txt
+           dependencies/pjproject/Makefile
+           dependencies/pjproject/README-RTEMS
+           dependencies/pjproject/SECURITY.md
+           dependencies/pjproject/aconfigure.ac
+           dependencies/pjproject/bb10-config.mak
+           dependencies/pjproject/build.mak
+           dependencies/pjproject/build.mak.in
+           dependencies/pjproject/build.symbian/00.bat
+           dependencies/pjproject/build.symbian/01.bat
+           dependencies/pjproject/build.symbian/bld.inf
+           dependencies/pjproject/build.symbian/libg7221codec.mmp
+           dependencies/pjproject/build.symbian/libgsmcodec.mmp
+           dependencies/pjproject/build.symbian/libpassthroughcodec.mmp
+           dependencies/pjproject/build.symbian/libresample.mmp
+           dependencies/pjproject/build.symbian/libspeexcodec.mmp
+           dependencies/pjproject/build.symbian/libsrtp.mmp
+           dependencies/pjproject/build.symbian/makedef.sh
+           dependencies/pjproject/build.symbian/null_audio.mmp
+           dependencies/pjproject/build.symbian/null_audioU.def
+           dependencies/pjproject/build.symbian/pjlib.mmp
+           dependencies/pjproject/build.symbian/pjlibU.def
+           dependencies/pjproject/build.symbian/pjlib_test.mmp
+           dependencies/pjproject/build.symbian/pjlib_test.pkg
+           dependencies/pjproject/build.symbian/pjlib_util.mmp
+           dependencies/pjproject/build.symbian/pjlib_utilU.def
+           dependencies/pjproject/build.symbian/pjmedia.mmp
+           dependencies/pjproject/build.symbian/pjmediaU.def
+           dependencies/pjproject/build.symbian/pjmedia_audiodev.mmp
+           dependencies/pjproject/build.symbian/pjnath.mmp
+           dependencies/pjproject/build.symbian/pjnathU.def
+           dependencies/pjproject/build.symbian/pjsdp.mmp
+           dependencies/pjproject/build.symbian/pjsdpU.def
+           dependencies/pjproject/build.symbian/pjsip.mmp
+           dependencies/pjproject/build.symbian/pjsipU.def
+           dependencies/pjproject/build.symbian/pjsip_simple.mmp
+           dependencies/pjproject/build.symbian/pjsip_simpleU.def
+           dependencies/pjproject/build.symbian/pjsip_ua.mmp
+           dependencies/pjproject/build.symbian/pjsip_uaU.def
+           dependencies/pjproject/build.symbian/pjstun_client.mmp
+           dependencies/pjproject/build.symbian/pjsua_lib.mmp
+           dependencies/pjproject/build.symbian/pjsua_libU.def
+           dependencies/pjproject/build.symbian/symbian_audio.mmp
+           dependencies/pjproject/build.symbian/symbian_audioU.def
+           dependencies/pjproject/build.symbian/symsndtest.mmp
+           dependencies/pjproject/build.symbian/symsndtest.pkg
+           dependencies/pjproject/build/cc-auto.mak
+           dependencies/pjproject/build/cc-auto.mak.in
+           dependencies/pjproject/build/cc-gcc.mak
+           dependencies/pjproject/build/cc-vc.mak
+           dependencies/pjproject/build/common.mak
+           dependencies/pjproject/build/host-mingw.mak
+           dependencies/pjproject/build/host-unix.mak
+           dependencies/pjproject/build/host-win32.mak
+           dependencies/pjproject/build/m-alpha.mak
+           dependencies/pjproject/build/m-arm.mak
+           dependencies/pjproject/build/m-auto.mak
+           dependencies/pjproject/build/m-i386.mak
+           dependencies/pjproject/build/m-m68k.mak
+           dependencies/pjproject/build/m-mpc860.mak
+           dependencies/pjproject/build/m-powerpc.mak
+           dependencies/pjproject/build/m-sparc.mak
+           dependencies/pjproject/build/m-x86_64.mak
+           dependencies/pjproject/build/os-auto.mak
+           dependencies/pjproject/build/os-auto.mak.in
+           dependencies/pjproject/build/os-darwinos.mak
+           dependencies/pjproject/build/os-linux.mak
+           dependencies/pjproject/build/os-palmos.mak
+           dependencies/pjproject/build/os-rtems.mak
+           dependencies/pjproject/build/os-sunos.mak
+           dependencies/pjproject/build/os-win32.mak
+           dependencies/pjproject/build/rules.mak
+           dependencies/pjproject/build/vs/pjproject-vs14-api-def.props
+           dependencies/pjproject/build/vs/pjproject-vs14-arm-common-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-arm-release-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-arm64-common-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-arm64-release-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-common-config.props
+           dependencies/pjproject/build/vs/pjproject-vs14-common-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-debug-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-debug-dynamic-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-debug-static-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-release-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-release-dynamic-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-release-static-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-win32-common-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-win32-release-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-win64-common-defaults.props
+           dependencies/pjproject/build/vs/pjproject-vs14-win64-release-defaults.props
+           dependencies/pjproject/c++-build.mak
+           dependencies/pjproject/configure
+           dependencies/pjproject/configure-android
+           dependencies/pjproject/configure-bb10
+           dependencies/pjproject/configure-iphone
+           dependencies/pjproject/configure-legacy
+           dependencies/pjproject/libpjproject.pc.in
+           dependencies/pjproject/pjlib-util/bin/pjlib-util-test-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjlib-util/build/Makefile
+           dependencies/pjproject/pjlib-util/build/os-auto.mak
+           dependencies/pjproject/pjlib-util/build/os-auto.mak.in
+           dependencies/pjproject/pjlib-util/build/os-rtems.mak
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/encryption.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/http_client.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/json_test.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/resolver_test.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/stun.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/test.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-test-x86_64-unknown-linux-gnu/xml.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/base64.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/cli.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/cli_console.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/cli_telnet.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/crc32.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/dns.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/dns_dump.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/dns_server.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/getopt.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/hmac_md5.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/hmac_sha1.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/http_client.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/json.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/md5.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/pcap.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/resolver.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/scanner.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/sha1.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/srv_resolver.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/string.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/stun_simple.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/stun_simple_client.o
+           dependencies/pjproject/pjlib-util/build/output/pjlib-util-x86_64-unknown-linux-gnu/xml.o
+           dependencies/pjproject/pjlib-util/build/pjlib_util.dsw
+           dependencies/pjproject/pjlib-util/build/pjlib_util.vcxproj
+           dependencies/pjproject/pjlib-util/build/pjlib_util.vcxproj.filters
+           dependencies/pjproject/pjlib-util/build/pjlib_util_test.vcxproj
+           dependencies/pjproject/pjlib-util/build/pjlib_util_test.vcxproj.filters
+           dependencies/pjproject/pjlib-util/build/wince-evc4/pjlib_util_test_wince.vcp
+           dependencies/pjproject/pjlib-util/build/wince-evc4/pjlib_util_wince.vcp
+           dependencies/pjproject/pjlib-util/build/wince-evc4/pjlib_util_wince.vcw
+           dependencies/pjproject/pjlib-util/docs/doxygen.cfg
+           dependencies/pjproject/pjlib-util/docs/doxygen.css
+           dependencies/pjproject/pjlib-util/lib/libpjlib-util-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/main_rtems.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util-test/main_win32.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/crc32.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/md5.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/sha1.c
+           dependencies/pjproject/pjlib/build/Makefile
+           dependencies/pjproject/pjlib/build/cacert.der
+           dependencies/pjproject/pjlib/build/cacert.pem
+           dependencies/pjproject/pjlib/build/os-auto.mak
+           dependencies/pjproject/pjlib/build/os-auto.mak.in
+           dependencies/pjproject/pjlib/build/os-darwinos.mak
+           dependencies/pjproject/pjlib/build/os-linux.mak
+           dependencies/pjproject/pjlib/build/os-rtems.mak
+           dependencies/pjproject/pjlib/build/os-sunos.mak
+           dependencies/pjproject/pjlib/build/os-win32.mak
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/activesock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/atomic.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/echo_clt.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/exception.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/fifobuf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/file.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/hash_test.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ioq_perf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ioq_tcp.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ioq_udp.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ioq_unreg.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/list.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/mutex.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/os.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/pool.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/pool_perf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/rand.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/rbtree.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/select.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/sleep.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/sock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/sock_perf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ssl_sock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/string.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/test.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/thread.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/timer.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/timestamp.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/udp_echo_srv_ioqueue.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/udp_echo_srv_sync.o
+           dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/util.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/activesock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/addr_resolv_sock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/array.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/config.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ctype.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/except.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/fifobuf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/file_access_unistd.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/file_io_ansi.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/guid.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/guid_simple.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/hash.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ioqueue_select.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ip_helper_generic.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/list.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/lock.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/log.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/log_writer_stdout.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_core_unix.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_error_unix.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_info.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_time_common.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_time_unix.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_timestamp_common.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/os_timestamp_posix.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/pool.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/pool_buf.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/pool_caching.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/pool_dbg.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/pool_policy_malloc.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/rand.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/rbtree.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/sock_bsd.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/sock_common.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/sock_qos_bsd.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/sock_qos_common.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/sock_select.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ssl_sock_common.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ssl_sock_darwin.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ssl_sock_dump.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ssl_sock_gtls.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/ssl_sock_ossl.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/string.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/timer.o
+           dependencies/pjproject/pjlib/build/output/pjlib-x86_64-unknown-linux-gnu/types.o
+           dependencies/pjproject/pjlib/build/pjlib.vcxproj
+           dependencies/pjproject/pjlib/build/pjlib.vcxproj.filters
+           dependencies/pjproject/pjlib/build/pjlib_samples.mak
+           dependencies/pjproject/pjlib/build/pjlib_test.vcxproj
+           dependencies/pjproject/pjlib/build/pjlib_test.vcxproj.filters
+           dependencies/pjproject/pjlib/build/privkey.p12
+           dependencies/pjproject/pjlib/build/privkey.pem
+           dependencies/pjproject/pjlib/build/wince-evc4/pjlib_wince.vcp
+           dependencies/pjproject/pjlib/build/wince-evc4/pjlib_wince.vcw
+           dependencies/pjproject/pjlib/docs/doxygen.cfg
+           dependencies/pjproject/pjlib/docs/doxygen.css
+           dependencies/pjproject/pjlib/include/pj/config_site.h
+           dependencies/pjproject/pjlib/include/pj/config_site_sample.h
+           dependencies/pjproject/pjlib/include/pj/config_site_test.h
+           dependencies/pjproject/pjlib/lib/libpj-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjlib/src/pjlib-test/main_symbian.cpp
+           dependencies/pjproject/pjlib/src/pjlib-test/pjlib_test_reg.rss
+           dependencies/pjproject/pjmedia/bin/pjmedia-test-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjmedia/build/Jbtest.dat
+           dependencies/pjproject/pjmedia/build/Makefile
+           dependencies/pjproject/pjmedia/build/m-i386.mak
+           dependencies/pjproject/pjmedia/build/m-x86_64.mak
+           dependencies/pjproject/pjmedia/build/os-auto.mak
+           dependencies/pjproject/pjmedia/build/os-auto.mak.in
+           dependencies/pjproject/pjmedia/build/os-darwinos.mak
+           dependencies/pjproject/pjmedia/build/os-linux.mak
+           dependencies/pjproject/pjmedia/build/os-rtems.mak
+           dependencies/pjproject/pjmedia/build/os-win32.mak
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/alsa_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/android_jni_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/audiodev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/audiotest.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/bb10_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/bdimad_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/legacy_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/null_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/oboe_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/opensl_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/pa_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-audiodev-x86_64-unknown-linux-gnu/wmme_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/amr_sdp_match.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/and_aud_mediacodec.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/and_vid_mediacodec.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/audio_codecs.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/ffmpeg_vid_codecs.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/g7221_sdp_match.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/h263_packetizer.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/h264_packetizer.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/ipp_codecs.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/openh264.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/opus.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/passthrough.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/silk.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/vpx.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-codec-x86_64-unknown-linux-gnu/vpx_packetizer.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/codec_vectors.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/jbuf_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/mips_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/rtp_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/sdp_neg_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/vid_codec_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/vid_dev_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-test-x86_64-unknown-linux-gnu/vid_port_test.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/avi_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/colorbar_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/ffmpeg_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/opengl_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/sdl_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/util.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/v4l2_dev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-videodev-x86_64-unknown-linux-gnu/videodev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/alaw_ulaw.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/alaw_ulaw_table.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/audiodev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/avi_player.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/bidirectional.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/clock_thread.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/codec.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/conf_switch.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/conference.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/converter.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/converter_libswscale.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/converter_libyuv.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/delaybuf.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/echo_common.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/echo_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/echo_suppress.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/echo_webrtc.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/echo_webrtc_aec3.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/endpoint.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/event.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/ffmpeg_util.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/format.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/g711.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/jbuf.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/master_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/mem_capture.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/mem_player.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/null_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/plc_common.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/resample_libsamplerate.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/resample_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/resample_resample.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/resample_speex.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/rtcp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/rtcp_fb.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/rtcp_xr.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/rtp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/sdp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/sdp_cmp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/sdp_neg.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/session.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/silencedet.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/sound_legacy.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/sound_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/splitcomb.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/stereo_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/stream.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/stream_common.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/stream_info.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/tonegen.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/transport_adapter_sample.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/transport_ice.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/transport_loop.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/transport_srtp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/transport_udp.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/types.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_codec.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_codec_util.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_conf.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_port.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_stream.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/vid_stream_info.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/videodev.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/wav_player.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/wav_playlist.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/wav_writer.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/wave.o
+           dependencies/pjproject/pjmedia/build/output/pjmedia-x86_64-unknown-linux-gnu/wsola.o
+           dependencies/pjproject/pjmedia/build/output/pjsdp-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjmedia/build/output/pjsdp-x86_64-unknown-linux-gnu/sdp.o
+           dependencies/pjproject/pjmedia/build/output/pjsdp-x86_64-unknown-linux-gnu/sdp_cmp.o
+           dependencies/pjproject/pjmedia/build/output/pjsdp-x86_64-unknown-linux-gnu/sdp_neg.o
+           dependencies/pjproject/pjmedia/build/pjmedia.vcxproj
+           dependencies/pjproject/pjmedia/build/pjmedia.vcxproj.filters
+           dependencies/pjproject/pjmedia/build/pjmedia_audiodev.vcxproj
+           dependencies/pjproject/pjmedia/build/pjmedia_audiodev.vcxproj.filters
+           dependencies/pjproject/pjmedia/build/pjmedia_codec.vcxproj
+           dependencies/pjproject/pjmedia/build/pjmedia_codec.vcxproj.filters
+           dependencies/pjproject/pjmedia/build/pjmedia_test.vcxproj
+           dependencies/pjproject/pjmedia/build/pjmedia_test.vcxproj.filters
+           dependencies/pjproject/pjmedia/build/pjmedia_videodev.vcxproj
+           dependencies/pjproject/pjmedia/build/pjmedia_videodev.vcxproj.filters
+           dependencies/pjproject/pjmedia/build/wince-evc4/pjmedia_auddev_wince.vcp
+           dependencies/pjproject/pjmedia/build/wince-evc4/pjmedia_codec_wince.vcp
+           dependencies/pjproject/pjmedia/build/wince-evc4/pjmedia_test.vcp
+           dependencies/pjproject/pjmedia/build/wince-evc4/pjmedia_wince.vcw
+           dependencies/pjproject/pjmedia/docs/doxygen.cfg
+           dependencies/pjproject/pjmedia/docs/master-port.jpg
+           dependencies/pjproject/pjmedia/docs/media-flow.jpg
+           dependencies/pjproject/pjmedia/docs/media-flow.vsd
+           dependencies/pjproject/pjmedia/docs/media-srtp-transport.PNG
+           dependencies/pjproject/pjmedia/docs/media-transport.PNG
+           dependencies/pjproject/pjmedia/docs/sample-manual-resampling.jpg
+           dependencies/pjproject/pjmedia/docs/siprtp.jpg
+           dependencies/pjproject/pjmedia/docs/sndtest.jpg
+           dependencies/pjproject/pjmedia/lib/libpjmedia-audiodev-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjmedia/lib/libpjmedia-codec-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjmedia/lib/libpjmedia-videodev-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjmedia/lib/libpjmedia-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjmedia/lib/libpjsdp-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjmedia/src/pjmedia-audiodev/s60_g729_bitstream.h
+           dependencies/pjproject/pjmedia/src/pjmedia/alaw_ulaw.c
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_in_24000_fe.itu
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_in_32000_fe.itu
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_out_24000.pcm
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_out_24000_fe.pcm
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_out_32000.pcm
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_dec_out_32000_fe.pcm
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_enc_in.wav
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_enc_out_24000_be.pak
+           dependencies/pjproject/pjmedia/src/test/vectors/g722_1_enc_out_32000_be.pak
+           dependencies/pjproject/pjnath/bin/pjnath-test-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjnath/bin/pjturn-client-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjnath/bin/pjturn-srv-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjnath/build/Makefile
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/concur_test.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/ice_test.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/server.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/sess_auth.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/stun.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/stun_sock_test.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/test.o
+           dependencies/pjproject/pjnath/build/output/pjnath-test-x86_64-unknown-linux-gnu/turn_sock_test.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/ice_session.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/ice_strans.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/nat_detect.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_auth.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_msg.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_msg_dump.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_session.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_sock.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/stun_transaction.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/turn_session.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/turn_sock.o
+           dependencies/pjproject/pjnath/build/output/pjnath-x86_64-unknown-linux-gnu/upnp.o
+           dependencies/pjproject/pjnath/build/output/pjturn-client-x86_64-unknown-linux-gnu/client_main.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/allocation.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/auth.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/listener_tcp.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/listener_udp.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjnath/build/output/pjturn-srv-x86_64-unknown-linux-gnu/server.o
+           dependencies/pjproject/pjnath/build/pjnath.vcxproj
+           dependencies/pjproject/pjnath/build/pjnath.vcxproj.filters
+           dependencies/pjproject/pjnath/build/pjnath_test.vcxproj
+           dependencies/pjproject/pjnath/build/pjnath_test.vcxproj.filters
+           dependencies/pjproject/pjnath/build/wince-evc4/pjnath_test_wince.vcp
+           dependencies/pjproject/pjnath/build/wince-evc4/pjnath_wince.vcp
+           dependencies/pjproject/pjnath/build/wince-evc4/pjnath_wince.vcw
+           dependencies/pjproject/pjnath/docs/UML-class-diagram.dia
+           dependencies/pjproject/pjnath/docs/UML-class-diagram.png
+           dependencies/pjproject/pjnath/docs/doxygen.cfg
+           dependencies/pjproject/pjnath/docs/doxygen.css
+           dependencies/pjproject/pjnath/docs/ice-arch.jpg
+           dependencies/pjproject/pjnath/docs/ice_demo.jpg
+           dependencies/pjproject/pjnath/docs/pjturn_client.jpg
+           dependencies/pjproject/pjnath/docs/stun-arch.jpg
+           dependencies/pjproject/pjnath/lib/libpjnath-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjnath/src/pjnath-test/main_win32.c
+           dependencies/pjproject/pjproject-vs14.sln
+           dependencies/pjproject/pjproject-vs8.sln
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/aectest
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/auddemo
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/aviplay
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/clidemo
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/confsample
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/encdec
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/httpdemo
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/icedemo
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/jbsim
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/latency
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/level
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/mix
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/pcaputil
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/pjsip-perf
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/playfile
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/playsine
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/recfile
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/resampleplay
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/simpleua
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/sipecho
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/siprtp
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/sipstateless
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/stateful_proxy
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/stateless_proxy
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/stereotest
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/streamutil
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/strerror
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/tonegen
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/vid_codec_test
+           dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/vid_streamutil
+           dependencies/pjproject/pjsip-apps/build/Footprint.mak
+           dependencies/pjproject/pjsip-apps/build/Makefile
+           dependencies/pjproject/pjsip-apps/build/Samples-vc.mak
+           dependencies/pjproject/pjsip-apps/build/Samples.mak
+           dependencies/pjproject/pjsip-apps/build/dummy.c
+           dependencies/pjproject/pjsip-apps/build/get-footprint.py
+           dependencies/pjproject/pjsip-apps/build/libpjproject.vcxproj
+           dependencies/pjproject/pjsip-apps/build/os-win32.mak
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/pjsua_app.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/pjsua_app_cli.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/pjsua_app_common.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/pjsua_app_config.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua-x86_64-unknown-linux-gnu/pjsua_app_legacy.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsua2_sample-x86_64-unknown-linux-gnu/pjsua2_hello_reg.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsystest-x86_64-unknown-linux-gnu/main_console.o
+           dependencies/pjproject/pjsip-apps/build/output/pjsystest-x86_64-unknown-linux-gnu/systest.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/aectest.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/auddemo.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/aviplay.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/clidemo.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/confsample.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/encdec.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/httpdemo.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/icedemo.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/jbsim.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/latency.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/level.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/mix.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/pcaputil.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/pjsip-perf.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/playfile.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/playsine.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/recfile.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/resampleplay.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/simple_pjsua.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/simpleua.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/sipecho.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/siprtp.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/sipstateless.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/stateful_proxy.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/stateless_proxy.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/stereotest.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/streamutil.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/strerror.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/tonegen.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/vid_codec_test.o
+           dependencies/pjproject/pjsip-apps/build/output/sample-x86_64-unknown-linux-gnu/vid_streamutil.o
+           dependencies/pjproject/pjsip-apps/build/pjsua.vcxproj
+           dependencies/pjproject/pjsip-apps/build/pjsua.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/pjsystest.vcxproj
+           dependencies/pjproject/pjsip-apps/build/pjsystest.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/python_pjsua.vcxproj
+           dependencies/pjproject/pjsip-apps/build/python_pjsua.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/sample_debug.vcxproj
+           dependencies/pjproject/pjsip-apps/build/sample_debug.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/samples.vcxproj
+           dependencies/pjproject/pjsip-apps/build/samples.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/swig_csharp_pjsua2.vcxproj
+           dependencies/pjproject/pjsip-apps/build/swig_java_pjsua2.vcxproj
+           dependencies/pjproject/pjsip-apps/build/swig_java_pjsua2.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/build/wince-evc4/wince_demos.vcw
+           dependencies/pjproject/pjsip-apps/src/3rdparty_media_sample/Makefile
+           dependencies/pjproject/pjsip-apps/src/3rdparty_media_sample/config_site.h
+           dependencies/pjproject/pjsip-apps/src/confbot/config.py
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/ipjsystest.xcodeproj/project.pbxproj
+           dependencies/pjproject/pjsip-apps/src/ipjsystest/ipjsystest_Prefix.pch
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/build.gradle
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-hdpi/main_image.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-ldpi/main_image.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-mdpi/main_image.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/drawable-xhdpi/main_image.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/build.gradle
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/gradle/wrapper/gradle-wrapper.jar
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/gradle/wrapper/gradle-wrapper.properties
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/gradlew
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/gradlew.bat
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/jni/Makefile
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/jni/pjsua.i
+           dependencies/pjproject/pjsip-apps/src/pjsua/android/settings.gradle
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/Makefile
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/PjsuaBB.pro
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/assets/.assets.index
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/assets/images/teluu-logo.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/assets/main.qml
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/config.pri
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/icon.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/precompiled.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/src/applicationui.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/src/applicationui.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/src/main.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/translations/Makefile
+           dependencies/pjproject/pjsip-apps/src/pjsua/bb10/translations/PjsuaBB.pro
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift.xcodeproj/project.pbxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/Assets.xcassets/AccentColor.colorset/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/Assets.xcassets/AppIcon.appiconset/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/Assets.xcassets/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/Preview Content/Preview Assets.xcassets/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/ipjsua-swift-Bridging-Header.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/pjsip.m
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/project.pbxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Default-568h@2x.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Default.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Default@2x.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/InfoPlist.strings
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsua-Prefix.pch
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/pjsua.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/main_rtems.c
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.rssi
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsua_reg.loc
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsua_reg.rss
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/list_icon.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/list_icon_mask.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/mark_icon.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/mark_icon_mask.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/pjsua.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/group/ABLD.BAT
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/group/bld.inf
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/group/pjsua.mmp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/group/pjsua_icons.mk
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsua.pan
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/sis/pjsua.pkg
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_shared_comp.vcxitems
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_shared_comp.vcxitems.filters
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_uwp_comp.vcxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_uwp_comp.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_wp8_comp.vcxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/comp/pjsua_cli_wp8_comp.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/App.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/App.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/LockScreenLogo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/SplashScreen.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square150x150Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square44x44Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/StoreLogo.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/Wide310x150Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Assets/teluu-logo.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/MainPage.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/MainPage.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Package.appxmanifest
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Properties/AssemblyInfo.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/pjsua_cli_uwp.csproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/project.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/project.lock.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/App.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/App.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/Assets/teluu-logo.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/MainPage.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/AppManifest.xml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/AssemblyInfo.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/Properties/WMAppManifest.xml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/wp8/pjsua_cli_wp8.csproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip.sln
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/App.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/App.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/LockScreenLogo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/SplashScreen.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square150x150Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square44x44Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/StoreLogo.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Assets/Wide310x150Logo.scale-200.png
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/MainPage.xaml
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Properties/AssemblyInfo.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Voip.csproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Voip_TemporaryKey.pfx
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/package.appxmanifest
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/project.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/project.lock.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/VoipBackEnd.vcxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/VoipBackEnd.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.vcxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.vcxproj.filters
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Properties/AssemblyInfo.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/VoipTasks.csproj
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/project.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/project.lock.json
+           dependencies/pjproject/pjsip-apps/src/pjsua/wm/pjsua.bmp
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2.xcodeproj/project.pbxproj
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Assets.xcassets/AccentColor.colorset/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Assets.xcassets/AppIcon.appiconset/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Assets.xcassets/Contents.json
+           dependencies/pjproject/pjsip-apps/src/pjsystest/pjsystest_wince.rc
+           dependencies/pjproject/pjsip-apps/src/pjsystest/pjsystest_wince.rc2
+           dependencies/pjproject/pjsip-apps/src/pjsystest/resource.h
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/DEPRECATED.txt
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/Makefile
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/helper.mak
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/pjsua.py
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/py_pjsua.def
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/setup.py
+           dependencies/pjproject/pjsip-apps/src/python/Makefile
+           dependencies/pjproject/pjsip-apps/src/python/_pjsua.def
+           dependencies/pjproject/pjsip-apps/src/python/helper.mak
+           dependencies/pjproject/pjsip-apps/src/samples/android_sample/jni/Android.mk
+           dependencies/pjproject/pjsip-apps/src/samples/android_sample/jni/Application.mk
+           dependencies/pjproject/pjsip-apps/src/samples/android_sample/jni/dummy.c
+           dependencies/pjproject/pjsip-apps/src/samples/android_sample/jni/dummy2.cc
+           dependencies/pjproject/pjsip-apps/src/samples/main_rtems.c
+           dependencies/pjproject/pjsip-apps/src/samples/pjsua2_hello_reg.cpp
+           dependencies/pjproject/pjsip-apps/src/swig/Makefile
+           dependencies/pjproject/pjsip-apps/src/swig/and_string.i
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/Makefile
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/App.config
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Form1.Designer.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Form1.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Form1.resx
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Program.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Properties/AssemblyInfo.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Properties/Resources.Designer.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Properties/Resources.resx
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Properties/Settings.Designer.cs
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/Properties/Settings.settings
+           dependencies/pjproject/pjsip-apps/src/swig/csharp/sample/SimplePjsua2CS/SimplePjsua2CS.csproj
+           dependencies/pjproject/pjsip-apps/src/swig/java/Makefile
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/.gitignore
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/build.gradle
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/proguard-rules.pro
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/java/org/pjsip/pjsua2/app_kotlin/MainActivity.kt
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-hdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-hdpi/ic_launcher_round.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-mdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-mdpi/ic_launcher_round.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xhdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xhdpi/ic_launcher_round.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/build.gradle
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-hdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-mdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xhdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/drawable-xxhdpi/ic_launcher.png
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/build.gradle
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/gradle/wrapper/gradle-wrapper.jar
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/gradle/wrapper/gradle-wrapper.properties
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/gradlew
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/gradlew.bat
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/pjsua2/build.gradle
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/pjsua2/consumer-rules.pro
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/pjsua2/proguard-rules.pro
+           dependencies/pjproject/pjsip-apps/src/swig/java/android/settings.gradle
+           dependencies/pjproject/pjsip-apps/src/swig/java/test.java
+           dependencies/pjproject/pjsip-apps/src/swig/pjsua2.i
+           dependencies/pjproject/pjsip-apps/src/swig/python/Makefile
+           dependencies/pjproject/pjsip-apps/src/swig/python/helper.mak
+           dependencies/pjproject/pjsip-apps/src/swig/python/test.py
+           dependencies/pjproject/pjsip-apps/src/swig/symbols.i
+           dependencies/pjproject/pjsip-apps/src/swig/symbols.lst
+           dependencies/pjproject/pjsip-apps/src/symsndtest/symsndtest_reg.rss
+           dependencies/pjproject/pjsip-apps/src/vidgui/INSTALL.TXT
+           dependencies/pjproject/pjsip-apps/src/vidgui/pj-pkgconfig.mak
+           dependencies/pjproject/pjsip-apps/src/vidgui/vidgui.pro
+           dependencies/pjproject/pjsip/bin/pjsip-test-x86_64-unknown-linux-gnu
+           dependencies/pjproject/pjsip/build/Makefile
+           dependencies/pjproject/pjsip/build/os-auto.mak
+           dependencies/pjproject/pjsip/build/os-auto.mak.in
+           dependencies/pjproject/pjsip/build/os-rtems.mak
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/errno.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/evsub.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/evsub_msg.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/iscomposing.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/mwi.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/pidf.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/presence.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/presence_body.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/publishc.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/rpid.o
+           dependencies/pjproject/pjsip/build/output/pjsip-simple-x86_64-unknown-linux-gnu/xpidf.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/dlg_core_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/dns_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/inv_offer_answer_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/msg_err_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/msg_logger.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/msg_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/multipart_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/regc_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/transport_loop_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/transport_tcp_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/transport_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/transport_udp_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/tsx_basic_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/tsx_bench.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/tsx_uac_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/tsx_uas_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/txdata_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-test-x86_64-unknown-linux-gnu/uri_test.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_100rel.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_inv.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_reg.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_replaces.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_timer.o
+           dependencies/pjproject/pjsip/build/output/pjsip-ua-x86_64-unknown-linux-gnu/sip_xfer.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_auth_aka.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_auth_client.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_auth_msg.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_auth_parser.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_auth_server.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_config.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_dialog.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_endpoint.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_errno.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_msg.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_multipart.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_parser.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_resolve.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_tel_uri.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transaction.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transport.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transport_loop.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transport_tcp.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transport_tls.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_transport_udp.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_ua_layer.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_uri.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_util.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_util_proxy.o
+           dependencies/pjproject/pjsip/build/output/pjsip-x86_64-unknown-linux-gnu/sip_util_statefull.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_acc.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_aud.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_call.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_core.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_dump.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_im.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_media.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_pres.o
+           dependencies/pjproject/pjsip/build/output/pjsua-lib-x86_64-unknown-linux-gnu/pjsua_vid.o
+           dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/json.o
+           dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/persistent.o
+           dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/presence.o
+           dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/types.o
+           dependencies/pjproject/pjsip/build/output/pjsua2-test-x86_64-unknown-linux-gnu/main.o
+           dependencies/pjproject/pjsip/build/pjsip_core.vcxproj
+           dependencies/pjproject/pjsip/build/pjsip_core.vcxproj.filters
+           dependencies/pjproject/pjsip/build/pjsip_simple.vcxproj
+           dependencies/pjproject/pjsip/build/pjsip_simple.vcxproj.filters
+           dependencies/pjproject/pjsip/build/pjsip_test.vcxproj
+           dependencies/pjproject/pjsip/build/pjsip_test.vcxproj.filters
+           dependencies/pjproject/pjsip/build/pjsip_ua.vcxproj
+           dependencies/pjproject/pjsip/build/pjsip_ua.vcxproj.filters
+           dependencies/pjproject/pjsip/build/pjsua2_lib.vcxproj
+           dependencies/pjproject/pjsip/build/pjsua2_lib.vcxproj.filters
+           dependencies/pjproject/pjsip/build/pjsua_lib.vcxproj
+           dependencies/pjproject/pjsip/build/pjsua_lib.vcxproj.filters
+           dependencies/pjproject/pjsip/build/wince-evc4/pjsip_core_wince.vcp
+           dependencies/pjproject/pjsip/build/wince-evc4/pjsip_simple_wince.vcp
+           dependencies/pjproject/pjsip/build/wince-evc4/pjsip_ua_wince.vcp
+           dependencies/pjproject/pjsip/build/wince-evc4/pjsip_wince.vcw
+           dependencies/pjproject/pjsip/build/wince-evc4/pjsua_lib_wince.vcp
+           dependencies/pjproject/pjsip/docs/PJSUA-TESTING.txt
+           dependencies/pjproject/pjsip/docs/TRANSPORT-PROBLEMS.TXT
+           dependencies/pjproject/pjsip/docs/doxygen.cfg
+           dependencies/pjproject/pjsip/docs/pjsip-arch.jpg
+           dependencies/pjproject/pjsip/docs/pjsip-perf.jpg
+           dependencies/pjproject/pjsip/docs/pjsua.jpg
+           dependencies/pjproject/pjsip/docs/siprtp.jpg
+           dependencies/pjproject/pjsip/include/pjsua.h
+           dependencies/pjproject/pjsip/lib/libpjsip-simple-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjsip/lib/libpjsip-ua-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjsip/lib/libpjsip-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjsip/lib/libpjsua-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/pjsip/src/test/main_rtems.c
+           dependencies/pjproject/pjsip/src/test/main_win32.c
+           dependencies/pjproject/pkgconfig.py
+           dependencies/pjproject/self-test.mak
+           dependencies/pjproject/svn_add
+           dependencies/pjproject/svn_add.bat
+           dependencies/pjproject/svn_pset
+           dependencies/pjproject/svn_pset.bat
+           dependencies/pjproject/tests/automated/README.txt
+           dependencies/pjproject/tests/automated/configure.py
+           dependencies/pjproject/tests/automated/run_continuous.py
+           dependencies/pjproject/tests/automated/run_scenario.py
+           dependencies/pjproject/tests/automated/testvars.template
+           dependencies/pjproject/tests/cdash/README.TXT
+           dependencies/pjproject/tests/cdash/inc_test.py
+           dependencies/pjproject/tests/cdash/starttest_sample.bat
+           dependencies/pjproject/tests/pjsua/README.TXT
+           dependencies/pjproject/tests/pjsua/config_site.py
+           dependencies/pjproject/tests/pjsua/inc_cfg.py
+           dependencies/pjproject/tests/pjsua/inc_const.py
+           dependencies/pjproject/tests/pjsua/inc_sdp.py
+           dependencies/pjproject/tests/pjsua/inc_sip.py
+           dependencies/pjproject/tests/pjsua/logs/.gitignore
+           dependencies/pjproject/tests/pjsua/mod_call.py
+           dependencies/pjproject/tests/pjsua/mod_media_playrec.py
+           dependencies/pjproject/tests/pjsua/mod_pesq.py
+           dependencies/pjproject/tests/pjsua/mod_pres.py
+           dependencies/pjproject/tests/pjsua/mod_recvfrom.py
+           dependencies/pjproject/tests/pjsua/mod_run.py
+           dependencies/pjproject/tests/pjsua/mod_sendto.py
+           dependencies/pjproject/tests/pjsua/mod_sipp.py
+           dependencies/pjproject/tests/pjsua/run.py
+           dependencies/pjproject/tests/pjsua/runall.py
+           dependencies/pjproject/tests/pjsua/scripts-call/100_simplecall.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_0_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_0_3.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_1_0.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_1_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_1_2.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_1_3.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_2_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_2_2.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_2_3.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_3_0.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_3_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_3_2.py
+           dependencies/pjproject/tests/pjsua/scripts-call/150_srtp_3_3.py
+           dependencies/pjproject/tests/pjsua/scripts-call/160_srtp_dtls.py
+           dependencies/pjproject/tests/pjsua/scripts-call/200_tcp.py
+           dependencies/pjproject/tests/pjsua/scripts-call/300_ice_0_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/300_ice_1_0.py
+           dependencies/pjproject/tests/pjsua/scripts-call/300_ice_1_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/301_ice_public_a.py
+           dependencies/pjproject/tests/pjsua/scripts-call/301_ice_public_b.py
+           dependencies/pjproject/tests/pjsua/scripts-call/305_ice_comp_1_2.py
+           dependencies/pjproject/tests/pjsua/scripts-call/305_ice_comp_2_1.py
+           dependencies/pjproject/tests/pjsua/scripts-call/320_ice_dtls_srtp.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_no_ice_vs_trickle_full.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_reg_vs_trickle_full.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_trickle_full.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_trickle_full_vs_no_ice.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_trickle_full_vs_reg.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_trickle_half.py
+           dependencies/pjproject/tests/pjsua/scripts-call/330_ice_trickle_half_vs_reg.py
+           dependencies/pjproject/tests/pjsua/scripts-call/350_prack_a.py
+           dependencies/pjproject/tests/pjsua/scripts-call/350_prack_b.py
+           dependencies/pjproject/tests/pjsua/scripts-call/400_tel_uri.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_16.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_22.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_32.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_44.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_48.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_11_8.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_11.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_16.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_22.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_32.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_44.py
+           dependencies/pjproject/tests/pjsua/scripts-media-playrec/100_resample_lf_8_48.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/100_defaults.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/101_defaults.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_g711a.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_g711u.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_g722.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_gsm.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_ilbc.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_l16_16000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_l16_16000_stereo.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_l16_8000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_l16_8000_stereo.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_speex_16000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/200_codec_speex_8000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_g711a.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_g711u.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_g722.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_gsm.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_ilbc.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_l16_16000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_l16_16000_stereo.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_l16_8000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_l16_8000_stereo.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_speex_16000.py
+           dependencies/pjproject/tests/pjsua/scripts-pesq/201_codec_speex_8000.py
+           dependencies/pjproject/tests/pjsua/scripts-pres/100_peertopeer.py
+           dependencies/pjproject/tests/pjsua/scripts-pres/200_publish.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/100_simple.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/200_reg_good_enocredentiall.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/201_reg_good_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/202_reg_good_ok_wildcard.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/203_reg_good_empty_realm.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/205_reg_good_no_realm.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/206_reg_good_efailedcredential.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/208_reg_good_retry_nonce_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/209a_reg_handle_423_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/209b_reg_handle_423_bad_min_expires1.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/209c_reg_handle_423_bad_min_expires2.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/215_reg_good_multi_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/220_reg_good_ims_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/230_reg_bad_fail_stale_true.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/231_reg_bad_fail_stale_false_nonce_changed.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/234_reg_bad_stale_ok.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/235_reg_good_tel_uri_enocredential.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/240_publish_scenarios.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/300_timer_good.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py
+           dependencies/pjproject/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py
+           dependencies/pjproject/tests/pjsua/scripts-run/100_simple.py
+           dependencies/pjproject/tests/pjsua/scripts-run/200_register.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_3.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_4.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/001_torture_4475_3_1_1_5.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/100_simplecall.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/110_tel_uri.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/120_sdp_with_video_dynamic_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/120_sdp_with_video_dynamic_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/121_sdp_with_video_static_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/121_sdp_with_video_static_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/122_sdp_with_unknown_dynamic_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/122_sdp_with_unknown_dynamic_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/123_sdp_with_unknown_static_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/123_sdp_with_unknown_static_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/124_sdp_with_unknown_static_unknown_transport.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_0.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_3.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/125_sdp_with_multi_audio_4.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/126_sdp_with_port_0_and_no_rtpmap_for_dynamic_pt.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/140_sdp_with_direction_attr_in_session_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/140_sdp_with_direction_attr_in_session_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/150_err_extension.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/151_err_sdp_video.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/152_err_sdp_no_media.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/153_err_sdp_unsupported_codec.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/155_err_sdp_bad_syntax.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/156_err_sdp_bad_net_type.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/157_err_sdp_bad_addr_type.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/158_err_sdp_bad_transport_type.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/159_no_rport.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/159_no_rport_nit.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/160_err_duplicate_replaces.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/161_err_replaces_dlg_not_found.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/170_timer_required.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/171_timer_initiated_by_uas.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/172_timer_supported_but_not_used.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/173_timer_offer_no_refresher.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/173_timer_offer_refresher_uac.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/173_timer_offer_refresher_uas.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/174_timer_se_too_small.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/200_ice_no_ice.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/200_ice_success_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/200_ice_success_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/200_ice_success_3.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/200_ice_success_4.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/201_ice_mismatch_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/201_ice_mismatch_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/201_ice_mismatch_3.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/251_multipart_ok_simple.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/252_multipart_ok_clutter.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/260_multipart_err_no_sdp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_crypto_case_insensitive.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_duplicated_crypto_tag.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_invalid_crypto_tag_non_numeric.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_receive_crypto_tag_zero.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/300_srtp_receive_no_key_3.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/301_srtp0_recv_avp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/301_srtp0_recv_savp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/310_srtp1_no_crypto.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/311_srtp1_recv_avp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/312_srtp1_recv_savp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/313_srtp1_unsupported_crypto.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/320_srtp2_no_crypto.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/320_srtp_with_unknown_media_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/320_srtp_with_unknown_media_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/320_srtp_with_unknown_transport_1.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/320_srtp_with_unknown_transport_2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/321_srtp2_recv_avp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/322_srtp2_recv_savp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/323_srtp2_receive_too_long_key.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/323_srtp2_unsupported_crypto.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/330_srtp_prefer_rtp_savp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/331_srtp_prefer_rtp_avp.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/360_non_sip_uri.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/361_non_sip_uri.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/362_non_sip_uri.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/363_non_sip_uri_subscribe.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/364_non_sip_uri_subscribe.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/400_fmtp_g7221_with_bitrate.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/401_fmtp_g7221_with_bitrate_24000.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/401_fmtp_g7221_with_bitrate_32000.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/410_fmtp_amrnb_offer_octet_align.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/411_fmtp_amrnb_offer_band_eff.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/412_fmtp_amrnb_offer_band_eff2.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/500_pres_subscribe_with_bad_event.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/999_asterisk_err.py
+           dependencies/pjproject/tests/pjsua/scripts-sendto/999_message_no_body.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/strict-route.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/transfer-attended.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/transfer-unattended.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-183-wrong-codec.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-183-wrong-media.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-without-sdp.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls-lower-prio.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls-reinv-sdes.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-sdes-reinv-dtls.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-sdes.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1148.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario1.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario2.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1866-reinv-after-failed-nego.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-upd-sdp-decline.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uac-upd-sdp-offer.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-without-to-tag.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-wrong-codec.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-wrong-media.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-reinvite-without-sdp.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-update-without-sdp.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-auth-two-algo.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-auth.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-cancel-no-final.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-mwi-0.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-mwi.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-after-failed-nego.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-glare.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-with-less-media.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-late-notify.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-multipart-notify.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-notify-terminate.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-refresh-481.py
+           dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-terminated-retry.py
+           dependencies/pjproject/tests/pjsua/tools/Makefile
+           dependencies/pjproject/tests/pjsua/tools/cmp_wav.vcxproj
+           dependencies/pjproject/tests/pjsua/wavs/input.11.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.16.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.2.16.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.22.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.32.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.44.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.48.wav
+           dependencies/pjproject/tests/pjsua/wavs/input.8.wav
+           dependencies/pjproject/tests/pjsua/wavs/tock8.wav
+           dependencies/pjproject/third_party/BaseClasses/sal2.h
+           dependencies/pjproject/third_party/README.txt
+           dependencies/pjproject/third_party/bdsound/include/bdimad.h
+           dependencies/pjproject/third_party/build/Makefile
+           dependencies/pjproject/third_party/build/baseclasses/Makefile
+           dependencies/pjproject/third_party/build/baseclasses/libbaseclasses.vcxproj
+           dependencies/pjproject/third_party/build/baseclasses/libbaseclasses.vcxproj.filters
+           dependencies/pjproject/third_party/build/g7221/Makefile
+           dependencies/pjproject/third_party/build/g7221/libg7221codec.vcxproj
+           dependencies/pjproject/third_party/build/g7221/libg7221codec.vcxproj.filters
+           dependencies/pjproject/third_party/build/gsm/Makefile
+           dependencies/pjproject/third_party/build/gsm/config.h
+           dependencies/pjproject/third_party/build/gsm/libgsmcodec.vcp
+           dependencies/pjproject/third_party/build/gsm/libgsmcodec.vcxproj
+           dependencies/pjproject/third_party/build/gsm/libgsmcodec.vcxproj.filters
+           dependencies/pjproject/third_party/build/ilbc/Makefile
+           dependencies/pjproject/third_party/build/ilbc/libilbccodec.vcp
+           dependencies/pjproject/third_party/build/ilbc/libilbccodec.vcxproj
+           dependencies/pjproject/third_party/build/ilbc/libilbccodec.vcxproj.filters
+           dependencies/pjproject/third_party/build/ilbc/notes.txt
+           dependencies/pjproject/third_party/build/milenage/Makefile
+           dependencies/pjproject/third_party/build/milenage/libmilenage.vcp
+           dependencies/pjproject/third_party/build/milenage/libmilenage.vcxproj
+           dependencies/pjproject/third_party/build/milenage/libmilenage.vcxproj.filters
+           dependencies/pjproject/third_party/build/os-auto.mak
+           dependencies/pjproject/third_party/build/os-auto.mak.in
+           dependencies/pjproject/third_party/build/os-darwinos.mak
+           dependencies/pjproject/third_party/build/os-linux.mak
+           dependencies/pjproject/third_party/build/os-win32.mak
+           dependencies/pjproject/third_party/build/resample/Makefile
+           dependencies/pjproject/third_party/build/resample/config.h
+           dependencies/pjproject/third_party/build/resample/libresample.vcp
+           dependencies/pjproject/third_party/build/resample/libresample.vcxproj
+           dependencies/pjproject/third_party/build/resample/libresample.vcxproj.filters
+           dependencies/pjproject/third_party/build/samplerate/Static.msvc
+           dependencies/pjproject/third_party/build/samplerate/libsamplerate_static.dsp
+           dependencies/pjproject/third_party/build/speex/Makefile
+           dependencies/pjproject/third_party/build/speex/config.h
+           dependencies/pjproject/third_party/build/speex/libspeex.vcp
+           dependencies/pjproject/third_party/build/speex/libspeex.vcxproj
+           dependencies/pjproject/third_party/build/speex/libspeex.vcxproj.filters
+           dependencies/pjproject/third_party/build/speex/speex/speex_config_types.h
+           dependencies/pjproject/third_party/build/srtp/Makefile
+           dependencies/pjproject/third_party/build/srtp/libsrtp.vcp
+           dependencies/pjproject/third_party/build/srtp/libsrtp.vcxproj
+           dependencies/pjproject/third_party/build/srtp/libsrtp.vcxproj.filters
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/cipher/aes.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/cipher/aes_icm.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/cipher/cipher.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/cipher/null_cipher.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/hash/auth.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/hash/hmac.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/hash/null_auth.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/hash/sha1.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/kernel/alloc.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/kernel/crypto_kernel.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/kernel/key.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/math/datatypes.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/math/stat.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/replay/rdb.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/replay/rdbx.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/crypto/replay/ut_sim.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/pjlib/srtp_err.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/srtp/ekt.o
+           dependencies/pjproject/third_party/build/srtp/output/libsrtp-x86_64-unknown-linux-gnu/srtp/srtp.o
+           dependencies/pjproject/third_party/build/webrtc/Makefile
+           dependencies/pjproject/third_party/build/webrtc/libwebrtc.vcxproj
+           dependencies/pjproject/third_party/build/webrtc/libwebrtc.vcxproj.filters
+           dependencies/pjproject/third_party/build/webrtc/notes.txt
+           dependencies/pjproject/third_party/build/webrtc_aec3/Makefile
+           dependencies/pjproject/third_party/build/webrtc_aec3/libwebrtc_aec3.vcxproj
+           dependencies/pjproject/third_party/build/webrtc_aec3/libwebrtc_aec3.vcxproj.filters
+           dependencies/pjproject/third_party/build/yuv/Makefile
+           dependencies/pjproject/third_party/build/yuv/Notes.txt
+           dependencies/pjproject/third_party/build/yuv/libyuv.vcxproj
+           dependencies/pjproject/third_party/build/yuv/libyuv.vcxproj.filters
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare_common.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare_gcc.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare_neon.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare_neon64.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/compare_win.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_argb.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_from.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_from_argb.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_jpeg.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_to_argb.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/convert_to_i420.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/cpu_id.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/mjpeg_decoder.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/mjpeg_validate.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/planar_functions.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_any.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_argb.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_common.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_dspr2.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_gcc.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_neon.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_neon64.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/rotate_win.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_any.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_common.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_dspr2.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_gcc.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_neon.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_neon64.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/row_win.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_any.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_argb.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_common.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_dspr2.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_gcc.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_neon.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_neon64.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/scale_win.o
+           dependencies/pjproject/third_party/build/yuv/output/libyuv-x86_64-unknown-linux-gnu/video_common.o
+           dependencies/pjproject/third_party/g7221/common/basic_op.c
+           dependencies/pjproject/third_party/g7221/common/basic_op.h
+           dependencies/pjproject/third_party/g7221/common/basic_op_i.h
+           dependencies/pjproject/third_party/g7221/common/common.c
+           dependencies/pjproject/third_party/g7221/common/config.h
+           dependencies/pjproject/third_party/g7221/common/defs.h
+           dependencies/pjproject/third_party/g7221/common/huff_def.h
+           dependencies/pjproject/third_party/g7221/common/huff_tab.c
+           dependencies/pjproject/third_party/g7221/common/huff_tab.h
+           dependencies/pjproject/third_party/g7221/common/tables.c
+           dependencies/pjproject/third_party/g7221/common/tables.h
+           dependencies/pjproject/third_party/g7221/decode/coef2sam.c
+           dependencies/pjproject/third_party/g7221/decode/dct4_s.c
+           dependencies/pjproject/third_party/g7221/decode/dct4_s.h
+           dependencies/pjproject/third_party/g7221/decode/decoder.c
+           dependencies/pjproject/third_party/g7221/encode/dct4_a.h
+           dependencies/pjproject/third_party/g7221/encode/encoder.c
+           dependencies/pjproject/third_party/g7221/encode/sam2coef.c
+           dependencies/pjproject/third_party/gsm/MACHINES
+           dependencies/pjproject/third_party/gsm/MANIFEST
+           dependencies/pjproject/third_party/lib/libsrtp-x86_64-unknown-linux-gnu.a
+           dependencies/pjproject/third_party/milenage/milenage.c
+           dependencies/pjproject/third_party/milenage/milenage.h
+           dependencies/pjproject/third_party/milenage/rijndael.c
+           dependencies/pjproject/third_party/milenage/rijndael.h
+           dependencies/pjproject/third_party/resample/include/resamplesubs.h
+           dependencies/pjproject/third_party/resample/src/largefilter.h
+           dependencies/pjproject/third_party/resample/src/libresample_dll.c
+           dependencies/pjproject/third_party/resample/src/resample.h
+           dependencies/pjproject/third_party/resample/src/resamplesubs.c
+           dependencies/pjproject/third_party/resample/src/smallfilter.h
+           dependencies/pjproject/third_party/resample/src/stddefs.h
+           dependencies/pjproject/third_party/speex/AUTHORS
+           dependencies/pjproject/third_party/speex/include/speex/speex_config_types.h.in
+           dependencies/pjproject/third_party/speex/include/speex/speex_types.h
+           dependencies/pjproject/third_party/speex/include/speex/speexdsp_types.h
+           dependencies/pjproject/third_party/speex/libspeex/echo_diagnostic.m
+           dependencies/pjproject/third_party/speex/libspeex/kiss_fft.h
+           dependencies/pjproject/third_party/speex/libspeex/kiss_fftr.h
+           dependencies/pjproject/third_party/speex/libspeex/smallft.c
+           dependencies/pjproject/third_party/speex/libspeex/smallft.h
+           dependencies/pjproject/third_party/speex/libspeex/testdenoise.c
+           dependencies/pjproject/third_party/speex/libspeex/testecho.c
+           dependencies/pjproject/third_party/speex/libspeex/testenc.c
+           dependencies/pjproject/third_party/speex/libspeex/testenc_uwb.c
+           dependencies/pjproject/third_party/speex/libspeex/testenc_wb.c
+           dependencies/pjproject/third_party/speex/libspeex/testjitter.c
+           dependencies/pjproject/third_party/speex/win32/config.h
+           dependencies/pjproject/third_party/srtp/CHANGES
+           dependencies/pjproject/third_party/srtp/VERSION
+           dependencies/pjproject/third_party/threademulation/Microsoft Permissive License.txt
+           dependencies/pjproject/third_party/webrtc/LICENSE_THIRD_PARTY
+           dependencies/pjproject/third_party/webrtc/OWNERS
+           dependencies/pjproject/third_party/webrtc/PATENTS
+           dependencies/pjproject/third_party/webrtc/PJSIP_NOTES
+           dependencies/pjproject/third_party/webrtc/README.chromium
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_bit_reverse_arm.S
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/filter_ar_fast_q12_armv7.S
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/spl_sqrt_floor.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/spl_sqrt_floor_arm.S
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/spl_sqrt_floor_mips.c
+           dependencies/pjproject/third_party/webrtc_aec3/OWNERS
+           dependencies/pjproject/third_party/webrtc_aec3/PATENTS
+           dependencies/pjproject/third_party/webrtc_aec3/PJSIP_NOTES
+           dependencies/pjproject/third_party/webrtc_aec3/README.md
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/AUTHORS
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/README.md
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/OWNERS
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/README.chromium
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/README.chromium
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor_arm.S
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor_mips.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/DEPS
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/DEPS
+           dependencies/pjproject/third_party/webrtc_aec3/src/third_party/pffft/README.txt
+           dependencies/pjproject/third_party/webrtc_aec3/src/third_party/rnnoise/OWNERS
+           dependencies/pjproject/third_party/webrtc_aec3/src/third_party/rnnoise/README.chromium
+           dependencies/pjproject/third_party/webrtc_aec3/src/third_party/rnnoise/src/rnn_vad_weights.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/third_party/rnnoise/src/rnn_vad_weights.h
+           dependencies/pjproject/third_party/yuv/AUTHORS
+           dependencies/pjproject/third_party/yuv/LICENSE_THIRD_PARTY
+           dependencies/pjproject/third_party/yuv/OWNERS
+           dependencies/pjproject/third_party/yuv/PATENTS
+           dependencies/pjproject/third_party/yuv/README.md
+           dependencies/pjproject/user.mak.sample
+           dependencies/pjproject/version.mak
+           dependencies/restinio/.git
+           dependencies/restinio/.gitattributes
+           dependencies/restinio/.github/workflows/ci.yml
+           dependencies/restinio/.gitignore
+           dependencies/restinio/.hgignore
+           dependencies/restinio/.hgtags
+           dependencies/restinio/README.md
+           dependencies/restinio/dev/CMakeLists.txt
+           dependencies/restinio/dev/Doxyfile
+           dependencies/restinio/dev/benches/CMakeLists.txt
+           dependencies/restinio/dev/benches/common_args/app_args.hpp
+           dependencies/restinio/dev/benches/single_handler/CMakeLists.txt
+           dependencies/restinio/dev/benches/single_handler/main.cpp
+           dependencies/restinio/dev/benches/single_handler_no_timer/CMakeLists.txt
+           dependencies/restinio/dev/benches/single_handler_no_timer/main.cpp
+           dependencies/restinio/dev/benches/single_handler_so5_timer/CMakeLists.txt
+           dependencies/restinio/dev/benches/single_handler_so5_timer/main.cpp
+           dependencies/restinio/dev/cmake/bench.cmake
+           dependencies/restinio/dev/cmake/code_coverage.cmake
+           dependencies/restinio/dev/cmake/find_program_required.cmake
+           dependencies/restinio/dev/cmake/libcxx.cmake
+           dependencies/restinio/dev/cmake/link_atomic_if_necessary.cmake
+           dependencies/restinio/dev/cmake/link_threads_if_necessary.cmake
+           dependencies/restinio/dev/cmake/modules/FindPCRE2.cmake
+           dependencies/restinio/dev/cmake/modules/Findasio.cmake
+           dependencies/restinio/dev/cmake/modules/Findhttp-parser.cmake
+           dependencies/restinio/dev/cmake/run_tests.bat
+           dependencies/restinio/dev/cmake/sample.cmake
+           dependencies/restinio/dev/cmake/testbench.cmake
+           dependencies/restinio/dev/cmake/unittest.cmake
+           dependencies/restinio/dev/cmake_build/CMakeCache.txt
+           dependencies/restinio/dev/cmake_build/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake
+           dependencies/restinio/dev/cmake_build/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin
+           dependencies/restinio/dev/cmake_build/CMakeFiles/3.22.1/CMakeSystem.cmake
+           dependencies/restinio/dev/cmake_build/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp
+           dependencies/restinio/dev/cmake_build/CMakeFiles/3.22.1/CompilerIdCXX/a.out
+           dependencies/restinio/dev/cmake_build/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/restinio/dev/cmake_build/CMakeFiles/CMakeOutput.log
+           dependencies/restinio/dev/cmake_build/CMakeFiles/Makefile.cmake
+           dependencies/restinio/dev/cmake_build/CMakeFiles/Makefile2
+           dependencies/restinio/dev/cmake_build/CMakeFiles/TargetDirectories.txt
+           dependencies/restinio/dev/cmake_build/CMakeFiles/cmake.check_cache
+           dependencies/restinio/dev/cmake_build/CMakeFiles/progress.marks
+           dependencies/restinio/dev/cmake_build/Makefile
+           dependencies/restinio/dev/cmake_build/cmake_install.cmake
+           dependencies/restinio/dev/cmake_build/install_manifest.txt
+           dependencies/restinio/dev/cmake_build/restinio/CMakeFiles/CMakeDirectoryInformation.cmake
+           dependencies/restinio/dev/cmake_build/restinio/CMakeFiles/Export/lib/cmake/restinio/restinio-targets.cmake
+           dependencies/restinio/dev/cmake_build/restinio/CMakeFiles/progress.marks
+           dependencies/restinio/dev/cmake_build/restinio/Makefile
+           dependencies/restinio/dev/cmake_build/restinio/cmake_install.cmake
+           dependencies/restinio/dev/cmake_build/restinio/restinio-config-version.cmake
+           dependencies/restinio/dev/cmake_build/restinio/restinio-config.cmake
+           dependencies/restinio/dev/default-clang-tidy-flags.cmake
+           dependencies/restinio/dev/mainpage.dox
+           dependencies/restinio/dev/restinio-helpers/CMakeLists.txt
+           dependencies/restinio/dev/restinio-helpers/cmd_line_args_helpers.hpp
+           dependencies/restinio/dev/restinio/CMakeLists.txt
+           dependencies/restinio/dev/restinio/all.hpp
+           dependencies/restinio/dev/restinio/asio_include.hpp
+           dependencies/restinio/dev/restinio/asio_timer_manager.hpp
+           dependencies/restinio/dev/restinio/async_chain/common.hpp
+           dependencies/restinio/dev/restinio/async_chain/fixed_size.hpp
+           dependencies/restinio/dev/restinio/async_chain/growable_size.hpp
+           dependencies/restinio/dev/restinio/buffers.hpp
+           dependencies/restinio/dev/restinio/cast_to.hpp
+           dependencies/restinio/dev/restinio/chunked_input_info.hpp
+           dependencies/restinio/dev/restinio/cmake/restinio-config.cmake.in
+           dependencies/restinio/dev/restinio/common_types.hpp
+           dependencies/restinio/dev/restinio/compiler_features.hpp
+           dependencies/restinio/dev/restinio/connection_count_limiter.hpp
+           dependencies/restinio/dev/restinio/connection_state_listener.hpp
+           dependencies/restinio/dev/restinio/core.hpp
+           dependencies/restinio/dev/restinio/default_strands.hpp
+           dependencies/restinio/dev/restinio/detect_os.hpp
+           dependencies/restinio/dev/restinio/exception.hpp
+           dependencies/restinio/dev/restinio/expected.hpp
+           dependencies/restinio/dev/restinio/helpers/easy_parser.hpp
+           dependencies/restinio/dev/restinio/helpers/file_upload.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/accept-charset.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/accept-encoding.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/accept-language.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/accept.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/authorization.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/basic_auth.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/basics.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/bearer_auth.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/cache-control.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/connection.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/content-disposition.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/content-encoding.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/content-type.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/details/pct_encoded_symbols.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/host.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/media-type.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/range.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/transfer-encoding.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/try_parse_field.hpp
+           dependencies/restinio/dev/restinio/helpers/http_field_parsers/user-agent.hpp
+           dependencies/restinio/dev/restinio/helpers/multipart_body.hpp
+           dependencies/restinio/dev/restinio/helpers/string_algo.hpp
+           dependencies/restinio/dev/restinio/http_headers.hpp
+           dependencies/restinio/dev/restinio/http_server.hpp
+           dependencies/restinio/dev/restinio/http_server_run.hpp
+           dependencies/restinio/dev/restinio/impl/acceptor.hpp
+           dependencies/restinio/dev/restinio/impl/connection.hpp
+           dependencies/restinio/dev/restinio/impl/connection_base.hpp
+           dependencies/restinio/dev/restinio/impl/connection_settings.hpp
+           dependencies/restinio/dev/restinio/impl/executor_wrapper.hpp
+           dependencies/restinio/dev/restinio/impl/fixed_buffer.hpp
+           dependencies/restinio/dev/restinio/impl/header_helpers.hpp
+           dependencies/restinio/dev/restinio/impl/include_fmtlib.hpp
+           dependencies/restinio/dev/restinio/impl/ioctx_on_thread_pool.hpp
+           dependencies/restinio/dev/restinio/impl/os_posix.ipp
+           dependencies/restinio/dev/restinio/impl/os_unknown.ipp
+           dependencies/restinio/dev/restinio/impl/os_win.ipp
+           dependencies/restinio/dev/restinio/impl/overflow_controlled_integer_accumulator.hpp
+           dependencies/restinio/dev/restinio/impl/parser_callbacks.ipp
+           dependencies/restinio/dev/restinio/impl/response_coordinator.hpp
+           dependencies/restinio/dev/restinio/impl/sendfile_operation.hpp
+           dependencies/restinio/dev/restinio/impl/sendfile_operation_default.ipp
+           dependencies/restinio/dev/restinio/impl/sendfile_operation_posix.ipp
+           dependencies/restinio/dev/restinio/impl/sendfile_operation_win.ipp
+           dependencies/restinio/dev/restinio/impl/string_caseless_compare.hpp
+           dependencies/restinio/dev/restinio/impl/tls_socket.hpp
+           dependencies/restinio/dev/restinio/impl/to_lower_lut.hpp
+           dependencies/restinio/dev/restinio/impl/write_group_output_ctx.hpp
+           dependencies/restinio/dev/restinio/incoming_http_msg_limits.hpp
+           dependencies/restinio/dev/restinio/ip_blocker.hpp
+           dependencies/restinio/dev/restinio/message_builders.hpp
+           dependencies/restinio/dev/restinio/null_logger.hpp
+           dependencies/restinio/dev/restinio/null_mutex.hpp
+           dependencies/restinio/dev/restinio/null_timer_manager.hpp
+           dependencies/restinio/dev/restinio/os.hpp
+           dependencies/restinio/dev/restinio/ostream_logger.hpp
+           dependencies/restinio/dev/restinio/path2regex/path2regex.hpp
+           dependencies/restinio/dev/restinio/request_handler.hpp
+           dependencies/restinio/dev/restinio/router/boost_regex_engine.hpp
+           dependencies/restinio/dev/restinio/router/easy_parser_router.hpp
+           dependencies/restinio/dev/restinio/router/express.hpp
+           dependencies/restinio/dev/restinio/router/impl/target_path_holder.hpp
+           dependencies/restinio/dev/restinio/router/method_matcher.hpp
+           dependencies/restinio/dev/restinio/router/non_matched_request_handler.hpp
+           dependencies/restinio/dev/restinio/router/pcre2_regex_engine.hpp
+           dependencies/restinio/dev/restinio/router/pcre_regex_engine.hpp
+           dependencies/restinio/dev/restinio/router/std_regex_engine.hpp
+           dependencies/restinio/dev/restinio/sendfile.hpp
+           dependencies/restinio/dev/restinio/sendfile_defs_default.hpp
+           dependencies/restinio/dev/restinio/sendfile_defs_posix.hpp
+           dependencies/restinio/dev/restinio/sendfile_defs_win.hpp
+           dependencies/restinio/dev/restinio/settings.hpp
+           dependencies/restinio/dev/restinio/so5/so_timer_manager.hpp
+           dependencies/restinio/dev/restinio/string_view.hpp
+           dependencies/restinio/dev/restinio/sync_chain/fixed_size.hpp
+           dependencies/restinio/dev/restinio/sync_chain/growable_size.hpp
+           dependencies/restinio/dev/restinio/tcp_connection_ctx_base.hpp
+           dependencies/restinio/dev/restinio/timer_common.hpp
+           dependencies/restinio/dev/restinio/tls.hpp
+           dependencies/restinio/dev/restinio/tls_fwd.hpp
+           dependencies/restinio/dev/restinio/traits.hpp
+           dependencies/restinio/dev/restinio/transforms/zlib.hpp
+           dependencies/restinio/dev/restinio/uri_helpers.hpp
+           dependencies/restinio/dev/restinio/utils/at_scope_exit.hpp
+           dependencies/restinio/dev/restinio/utils/base64.hpp
+           dependencies/restinio/dev/restinio/utils/base64_lut.ipp
+           dependencies/restinio/dev/restinio/utils/from_string.hpp
+           dependencies/restinio/dev/restinio/utils/from_string_details.ipp
+           dependencies/restinio/dev/restinio/utils/impl/bitops.hpp
+           dependencies/restinio/dev/restinio/utils/impl/safe_uint_truncate.hpp
+           dependencies/restinio/dev/restinio/utils/metaprogramming.hpp
+           dependencies/restinio/dev/restinio/utils/percent_encoding.hpp
+           dependencies/restinio/dev/restinio/utils/sha1.hpp
+           dependencies/restinio/dev/restinio/utils/suppress_exceptions.hpp
+           dependencies/restinio/dev/restinio/utils/tagged_scalar.hpp
+           dependencies/restinio/dev/restinio/utils/tuple_algorithms.hpp
+           dependencies/restinio/dev/restinio/utils/utf8_checker.hpp
+           dependencies/restinio/dev/restinio/value_or.hpp
+           dependencies/restinio/dev/restinio/version.cmake
+           dependencies/restinio/dev/restinio/version.hpp
+           dependencies/restinio/dev/restinio/websocket/impl/utf8.hpp
+           dependencies/restinio/dev/restinio/websocket/impl/ws_connection.hpp
+           dependencies/restinio/dev/restinio/websocket/impl/ws_connection_base.hpp
+           dependencies/restinio/dev/restinio/websocket/impl/ws_parser.hpp
+           dependencies/restinio/dev/restinio/websocket/impl/ws_protocol_validator.hpp
+           dependencies/restinio/dev/restinio/websocket/message.hpp
+           dependencies/restinio/dev/restinio/websocket/websocket.hpp
+           dependencies/restinio/dev/sample/CMakeLists.txt
+           dependencies/restinio/dev/sample/async_chained_handlers/CMakeLists.txt
+           dependencies/restinio/dev/sample/async_chained_handlers/main.cpp
+           dependencies/restinio/dev/sample/async_handling_with_sobjectizer/CMakeLists.txt
+           dependencies/restinio/dev/sample/async_handling_with_sobjectizer/main.cpp
+           dependencies/restinio/dev/sample/chained_handlers/CMakeLists.txt
+           dependencies/restinio/dev/sample/chained_handlers/main.cpp
+           dependencies/restinio/dev/sample/compression/CMakeLists.txt
+           dependencies/restinio/dev/sample/compression/main.cpp
+           dependencies/restinio/dev/sample/connection_state/CMakeLists.txt
+           dependencies/restinio/dev/sample/connection_state/main.cpp
+           dependencies/restinio/dev/sample/custom_buffer/CMakeLists.txt
+           dependencies/restinio/dev/sample/custom_buffer/main.cpp
+           dependencies/restinio/dev/sample/decompression/CMakeLists.txt
+           dependencies/restinio/dev/sample/decompression/main.cpp
+           dependencies/restinio/dev/sample/decompression/test_decompression.sh
+           dependencies/restinio/dev/sample/easy_parser_router/CMakeLists.txt
+           dependencies/restinio/dev/sample/easy_parser_router/curl_examples.txt
+           dependencies/restinio/dev/sample/easy_parser_router/main.cpp
+           dependencies/restinio/dev/sample/easy_parser_router/new_book_1.txt
+           dependencies/restinio/dev/sample/easy_parser_router/new_book_2.txt
+           dependencies/restinio/dev/sample/express_router/CMakeLists.txt
+           dependencies/restinio/dev/sample/express_router/curl_examples.txt
+           dependencies/restinio/dev/sample/express_router/main.cpp
+           dependencies/restinio/dev/sample/express_router/new_book_1.txt
+           dependencies/restinio/dev/sample/express_router/new_book_2.txt
+           dependencies/restinio/dev/sample/express_router_tutorial/CMakeLists.txt
+           dependencies/restinio/dev/sample/express_router_tutorial/main.cpp
+           dependencies/restinio/dev/sample/extra_data_factory/CMakeLists.txt
+           dependencies/restinio/dev/sample/extra_data_factory/main.cpp
+           dependencies/restinio/dev/sample/file_upload/CMakeLists.txt
+           dependencies/restinio/dev/sample/file_upload/main.cpp
+           dependencies/restinio/dev/sample/hello_world/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world/main.cpp
+           dependencies/restinio/dev/sample/hello_world_basic/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_basic/main.cpp
+           dependencies/restinio/dev/sample/hello_world_delayed/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_delayed/main.cpp
+           dependencies/restinio/dev/sample/hello_world_https/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_https/dh2048.pem
+           dependencies/restinio/dev/sample/hello_world_https/key.pem
+           dependencies/restinio/dev/sample/hello_world_https/main.cpp
+           dependencies/restinio/dev/sample/hello_world_https/server.pem
+           dependencies/restinio/dev/sample/hello_world_minimal/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_minimal/main.cpp
+           dependencies/restinio/dev/sample/hello_world_sendfile/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_sendfile/main.cpp
+           dependencies/restinio/dev/sample/hello_world_sendfile_https/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_sendfile_https/main.cpp
+           dependencies/restinio/dev/sample/hello_world_sendfile_w32_unicode/CMakeLists.txt
+           dependencies/restinio/dev/sample/hello_world_sendfile_w32_unicode/main.cpp
+           dependencies/restinio/dev/sample/ip_blocker/CMakeLists.txt
+           dependencies/restinio/dev/sample/ip_blocker/main.cpp
+           dependencies/restinio/dev/sample/notificators/CMakeLists.txt
+           dependencies/restinio/dev/sample/notificators/main.cpp
+           dependencies/restinio/dev/sample/query_string_params/CMakeLists.txt
+           dependencies/restinio/dev/sample/query_string_params/main.cpp
+           dependencies/restinio/dev/sample/run_existing_server/CMakeLists.txt
+           dependencies/restinio/dev/sample/run_existing_server/main.cpp
+           dependencies/restinio/dev/sample/run_for_minute/CMakeLists.txt
+           dependencies/restinio/dev/sample/run_for_minute/main.cpp
+           dependencies/restinio/dev/sample/samples.dox
+           dependencies/restinio/dev/sample/sendfiles/CMakeLists.txt
+           dependencies/restinio/dev/sample/sendfiles/main.cpp
+           dependencies/restinio/dev/sample/shared_tls_context/CMakeLists.txt
+           dependencies/restinio/dev/sample/shared_tls_context/dh2048.pem
+           dependencies/restinio/dev/sample/shared_tls_context/key.pem
+           dependencies/restinio/dev/sample/shared_tls_context/main.cpp
+           dependencies/restinio/dev/sample/shared_tls_context/server.pem
+           dependencies/restinio/dev/sample/tls_inspector/CMakeLists.txt
+           dependencies/restinio/dev/sample/tls_inspector/certs/README.md
+           dependencies/restinio/dev/sample/tls_inspector/certs/alice.cer
+           dependencies/restinio/dev/sample/tls_inspector/certs/alice.key
+           dependencies/restinio/dev/sample/tls_inspector/certs/bob.cer
+           dependencies/restinio/dev/sample/tls_inspector/certs/bob.key
+           dependencies/restinio/dev/sample/tls_inspector/certs/ca.cer
+           dependencies/restinio/dev/sample/tls_inspector/certs/ca.key
+           dependencies/restinio/dev/sample/tls_inspector/certs/ca.key.passphrase
+           dependencies/restinio/dev/sample/tls_inspector/certs/dh2048.pem
+           dependencies/restinio/dev/sample/tls_inspector/certs/server.cer
+           dependencies/restinio/dev/sample/tls_inspector/certs/server.key
+           dependencies/restinio/dev/sample/tls_inspector/main.cpp
+           dependencies/restinio/dev/sample/try_parse_query_string/CMakeLists.txt
+           dependencies/restinio/dev/sample/try_parse_query_string/main.cpp
+           dependencies/restinio/dev/sample/using_external_io_context/CMakeLists.txt
+           dependencies/restinio/dev/sample/using_external_io_context/main.cpp
+           dependencies/restinio/dev/sample/websocket/CMakeLists.txt
+           dependencies/restinio/dev/sample/websocket/main.cpp
+           dependencies/restinio/dev/sample/websocket_detailed/CMakeLists.txt
+           dependencies/restinio/dev/sample/websocket_detailed/main.cpp
+           dependencies/restinio/dev/sample/websocket_wss/CMakeLists.txt
+           dependencies/restinio/dev/sample/websocket_wss/main.cpp
+           dependencies/restinio/dev/sample/websocket_wss/wss_dh2048.pem
+           dependencies/restinio/dev/sample/websocket_wss/wss_key.pem
+           dependencies/restinio/dev/sample/websocket_wss/wss_server.pem
+           dependencies/restinio/dev/test/CMakeLists.txt
+           dependencies/restinio/dev/test/basic_auth/CMakeLists.txt
+           dependencies/restinio/dev/test/basic_auth/main.cpp
+           dependencies/restinio/dev/test/bearer_auth/CMakeLists.txt
+           dependencies/restinio/dev/test/bearer_auth/main.cpp
+           dependencies/restinio/dev/test/buffers/CMakeLists.txt
+           dependencies/restinio/dev/test/buffers/main.cpp
+           dependencies/restinio/dev/test/common/dummy_connection.hpp
+           dependencies/restinio/dev/test/common/fake_connection.ipp
+           dependencies/restinio/dev/test/common/pub.hpp
+           dependencies/restinio/dev/test/common/request_handler_pool.hpp
+           dependencies/restinio/dev/test/common/test_extra_data_factory.ipp
+           dependencies/restinio/dev/test/common/thread_safe_queue.hpp
+           dependencies/restinio/dev/test/common/time_limited_execution.hpp
+           dependencies/restinio/dev/test/common/utest_logger.hpp
+           dependencies/restinio/dev/test/default_constructed_settings/CMakeLists.txt
+           dependencies/restinio/dev/test/default_constructed_settings/main.cpp
+           dependencies/restinio/dev/test/encoders/CMakeLists.txt
+           dependencies/restinio/dev/test/encoders/main.cpp
+           dependencies/restinio/dev/test/file_upload/CMakeLists.txt
+           dependencies/restinio/dev/test/file_upload/main.cpp
+           dependencies/restinio/dev/test/from_string/CMakeLists.txt
+           dependencies/restinio/dev/test/from_string/main.cpp
+           dependencies/restinio/dev/test/from_string_bench/main.cpp
+           dependencies/restinio/dev/test/handle_requests/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/acceptor_post_bind_hook/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/acceptor_post_bind_hook/main.cpp
+           dependencies/restinio/dev/test/handle_requests/async_chained_handlers_1/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/async_chained_handlers_1/main.cpp
+           dependencies/restinio/dev/test/handle_requests/async_chained_handlers_2/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/async_chained_handlers_2/main.cpp
+           dependencies/restinio/dev/test/handle_requests/chunked_input/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/chunked_input/main.cpp
+           dependencies/restinio/dev/test/handle_requests/chunked_output/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/chunked_output/main.cpp
+           dependencies/restinio/dev/test/handle_requests/connection_count_limit/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/connection_count_limit/main.cpp
+           dependencies/restinio/dev/test/handle_requests/connection_state/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/connection_state/main.cpp
+           dependencies/restinio/dev/test/handle_requests/echo_body/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/echo_body/main.cpp
+           dependencies/restinio/dev/test/handle_requests/incoming_msg_limits/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/incoming_msg_limits/main.cpp
+           dependencies/restinio/dev/test/handle_requests/ip_blocker/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/ip_blocker/main.cpp
+           dependencies/restinio/dev/test/handle_requests/method/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/method/main.cpp
+           dependencies/restinio/dev/test/handle_requests/notificators/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/notificators/main.cpp
+           dependencies/restinio/dev/test/handle_requests/output_and_buffers/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/output_and_buffers/const_buffer.cpp
+           dependencies/restinio/dev/test/handle_requests/output_and_buffers/shared_ptr_std_string.cpp
+           dependencies/restinio/dev/test/handle_requests/output_and_buffers/std_string.cpp
+           dependencies/restinio/dev/test/handle_requests/remote_endpoint/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/remote_endpoint/main.cpp
+           dependencies/restinio/dev/test/handle_requests/slow_transmit/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/slow_transmit/main.cpp
+           dependencies/restinio/dev/test/handle_requests/sync_chained_handlers/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/sync_chained_handlers/main.cpp
+           dependencies/restinio/dev/test/handle_requests/throw_exception/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/throw_exception/main.cpp
+           dependencies/restinio/dev/test/handle_requests/timeouts/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/timeouts/main.cpp
+           dependencies/restinio/dev/test/handle_requests/upgrade/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/upgrade/main.cpp
+           dependencies/restinio/dev/test/handle_requests/user_controlled_output/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/user_controlled_output/main.cpp
+           dependencies/restinio/dev/test/handle_requests/user_data_simple/CMakeLists.txt
+           dependencies/restinio/dev/test/handle_requests/user_data_simple/main.cpp
+           dependencies/restinio/dev/test/header/CMakeLists.txt
+           dependencies/restinio/dev/test/header/main.cpp
+           dependencies/restinio/dev/test/http_field_parser/CMakeLists.txt
+           dependencies/restinio/dev/test/http_field_parser/accept-charset.cpp
+           dependencies/restinio/dev/test/http_field_parser/accept-encoding.cpp
+           dependencies/restinio/dev/test/http_field_parser/accept-language.cpp
+           dependencies/restinio/dev/test/http_field_parser/accept.cpp
+           dependencies/restinio/dev/test/http_field_parser/authorization.cpp
+           dependencies/restinio/dev/test/http_field_parser/basics.cpp
+           dependencies/restinio/dev/test/http_field_parser/cache-control.cpp
+           dependencies/restinio/dev/test/http_field_parser/connection.cpp
+           dependencies/restinio/dev/test/http_field_parser/content-disposition.cpp
+           dependencies/restinio/dev/test/http_field_parser/content-encoding.cpp
+           dependencies/restinio/dev/test/http_field_parser/content-type.cpp
+           dependencies/restinio/dev/test/http_field_parser/host.cpp
+           dependencies/restinio/dev/test/http_field_parser/media-type.cpp
+           dependencies/restinio/dev/test/http_field_parser/range.cpp
+           dependencies/restinio/dev/test/http_field_parser/transfer-encoding.cpp
+           dependencies/restinio/dev/test/http_field_parser/user-agent.cpp
+           dependencies/restinio/dev/test/http_pipelining/CMakeLists.txt
+           dependencies/restinio/dev/test/http_pipelining/sequence/CMakeLists.txt
+           dependencies/restinio/dev/test/http_pipelining/sequence/main.cpp
+           dependencies/restinio/dev/test/http_pipelining/timeouts/CMakeLists.txt
+           dependencies/restinio/dev/test/http_pipelining/timeouts/main.cpp
+           dependencies/restinio/dev/test/metaprogramming/CMakeLists.txt
+           dependencies/restinio/dev/test/metaprogramming/main.cpp
+           dependencies/restinio/dev/test/multipart_body/CMakeLists.txt
+           dependencies/restinio/dev/test/multipart_body/http_field_parser/CMakeLists.txt
+           dependencies/restinio/dev/test/multipart_body/http_field_parser/main.cpp
+           dependencies/restinio/dev/test/multipart_body/main.cpp
+           dependencies/restinio/dev/test/ref_qualifiers_settings/CMakeLists.txt
+           dependencies/restinio/dev/test/ref_qualifiers_settings/main.cpp
+           dependencies/restinio/dev/test/response_coordinator/CMakeLists.txt
+           dependencies/restinio/dev/test/response_coordinator/main.cpp
+           dependencies/restinio/dev/test/router/CMakeLists.txt
+           dependencies/restinio/dev/test/router/cmp_router_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/cmp_router_bench/main.cpp
+           dependencies/restinio/dev/test/router/cmp_router_bench/route_parser.cpp
+           dependencies/restinio/dev/test/router/cmp_router_bench/route_parser.hpp
+           dependencies/restinio/dev/test/router/easy_parser_path_to_params/CMakeLists.txt
+           dependencies/restinio/dev/test/router/easy_parser_path_to_params/main.cpp
+           dependencies/restinio/dev/test/router/easy_parser_path_to_tuple/CMakeLists.txt
+           dependencies/restinio/dev/test/router/easy_parser_path_to_tuple/main.cpp
+           dependencies/restinio/dev/test/router/easy_parser_router_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/easy_parser_router_bench/main.cpp
+           dependencies/restinio/dev/test/router/easy_parser_router_dsl/CMakeLists.txt
+           dependencies/restinio/dev/test/router/easy_parser_router_dsl/main.cpp
+           dependencies/restinio/dev/test/router/express/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express/additional_tests.ipp
+           dependencies/restinio/dev/test/router/express/main.cpp
+           dependencies/restinio/dev/test/router/express/original_tests_part1.ipp
+           dependencies/restinio/dev/test/router/express/original_tests_part2.ipp
+           dependencies/restinio/dev/test/router/express/original_tests_part3.ipp
+           dependencies/restinio/dev/test/router/express/original_tests_part4.ipp
+           dependencies/restinio/dev/test/router/express/original_tests_part5.ipp
+           dependencies/restinio/dev/test/router/express/part1.cpp
+           dependencies/restinio/dev/test/router/express/part2.cpp
+           dependencies/restinio/dev/test/router/express/part3.cpp
+           dependencies/restinio/dev/test/router/express/part4.cpp
+           dependencies/restinio/dev/test/router/express/part5.cpp
+           dependencies/restinio/dev/test/router/express/usings.ipp
+           dependencies/restinio/dev/test/router/express_boost_regex/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_boost_regex/main.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/part1.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/part2.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/part3.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/part4.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/part5.cpp
+           dependencies/restinio/dev/test/router/express_boost_regex/usings.ipp
+           dependencies/restinio/dev/test/router/express_pcre/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_pcre/main.cpp
+           dependencies/restinio/dev/test/router/express_pcre/part1.cpp
+           dependencies/restinio/dev/test/router/express_pcre/part2.cpp
+           dependencies/restinio/dev/test/router/express_pcre/part3.cpp
+           dependencies/restinio/dev/test/router/express_pcre/part4.cpp
+           dependencies/restinio/dev/test/router/express_pcre/part5.cpp
+           dependencies/restinio/dev/test/router/express_pcre/usings.ipp
+           dependencies/restinio/dev/test/router/express_pcre2/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_pcre2/main.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/part1.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/part2.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/part3.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/part4.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/part5.cpp
+           dependencies/restinio/dev/test/router/express_pcre2/usings.ipp
+           dependencies/restinio/dev/test/router/express_router/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router/main.cpp
+           dependencies/restinio/dev/test/router/express_router/tests.ipp
+           dependencies/restinio/dev/test/router/express_router_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_bench/cmp_routes.lua
+           dependencies/restinio/dev/test/router/express_router_bench/cmp_routes.txt
+           dependencies/restinio/dev/test/router/express_router_bench/main.cpp
+           dependencies/restinio/dev/test/router/express_router_bench/many_routes.txt
+           dependencies/restinio/dev/test/router/express_router_bench/simple.txt
+           dependencies/restinio/dev/test/router/express_router_boost_regex/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_boost_regex/main.cpp
+           dependencies/restinio/dev/test/router/express_router_boost_regex_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_boost_regex_bench/main.cpp
+           dependencies/restinio/dev/test/router/express_router_pcre/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_pcre/main.cpp
+           dependencies/restinio/dev/test/router/express_router_pcre2/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_pcre2/main.cpp
+           dependencies/restinio/dev/test/router/express_router_pcre2_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_pcre2_bench/main.cpp
+           dependencies/restinio/dev/test/router/express_router_pcre_bench/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_pcre_bench/main.cpp
+           dependencies/restinio/dev/test/router/express_router_user_data_simple/CMakeLists.txt
+           dependencies/restinio/dev/test/router/express_router_user_data_simple/main.cpp
+           dependencies/restinio/dev/test/router/fake_connection_and_request.ipp
+           dependencies/restinio/dev/test/run_on_thread_pool/CMakeLists.txt
+           dependencies/restinio/dev/test/run_on_thread_pool/main.cpp
+           dependencies/restinio/dev/test/sendfile/.gitattributes
+           dependencies/restinio/dev/test/sendfile/CMakeLists.txt
+           dependencies/restinio/dev/test/sendfile/f1.dat
+           dependencies/restinio/dev/test/sendfile/f2.dat
+           dependencies/restinio/dev/test/sendfile/f3.dat
+           dependencies/restinio/dev/test/sendfile/main.cpp
+           dependencies/restinio/dev/test/sendfile/Привет-你好.dat
+           dependencies/restinio/dev/test/socket_options/CMakeLists.txt
+           dependencies/restinio/dev/test/socket_options/main.cpp
+           dependencies/restinio/dev/test/socket_options_tls/CMakeLists.txt
+           dependencies/restinio/dev/test/socket_options_tls/main.cpp
+           dependencies/restinio/dev/test/start_stop/CMakeLists.txt
+           dependencies/restinio/dev/test/start_stop/main.cpp
+           dependencies/restinio/dev/test/to_lower_bench/main.cpp
+           dependencies/restinio/dev/test/transforms/CMakeLists.txt
+           dependencies/restinio/dev/test/transforms/random_data_generators.ipp
+           dependencies/restinio/dev/test/transforms/zlib/CMakeLists.txt
+           dependencies/restinio/dev/test/transforms/zlib/main.cpp
+           dependencies/restinio/dev/test/transforms/zlib_body_appender/CMakeLists.txt
+           dependencies/restinio/dev/test/transforms/zlib_body_appender/main.cpp
+           dependencies/restinio/dev/test/transforms/zlib_body_handler/CMakeLists.txt
+           dependencies/restinio/dev/test/transforms/zlib_body_handler/main.cpp
+           dependencies/restinio/dev/test/try_parse_field/CMakeLists.txt
+           dependencies/restinio/dev/test/try_parse_field/main.cpp
+           dependencies/restinio/dev/test/tuple_algorithms/CMakeLists.txt
+           dependencies/restinio/dev/test/tuple_algorithms/main.cpp
+           dependencies/restinio/dev/test/uri_helpers/CMakeLists.txt
+           dependencies/restinio/dev/test/uri_helpers/main.cpp
+           dependencies/restinio/dev/test/utf8_checker/CMakeLists.txt
+           dependencies/restinio/dev/test/utf8_checker/main.cpp
+           dependencies/restinio/dev/test/websocket/CMakeLists.txt
+           dependencies/restinio/dev/test/websocket/common/pub.hpp
+           dependencies/restinio/dev/test/websocket/notificators/CMakeLists.txt
+           dependencies/restinio/dev/test/websocket/notificators/main.cpp
+           dependencies/restinio/dev/test/websocket/parser/CMakeLists.txt
+           dependencies/restinio/dev/test/websocket/parser/main.cpp
+           dependencies/restinio/dev/test/websocket/validators/CMakeLists.txt
+           dependencies/restinio/dev/test/websocket/validators/main.cpp
+           dependencies/restinio/dev/test/websocket/ws_connection/CMakeLists.txt
+           dependencies/restinio/dev/test/websocket/ws_connection/main.cpp
+           dependencies/restinio/dev/test/write_group_output_ctx/CMakeLists.txt
+           dependencies/restinio/dev/test/write_group_output_ctx/main.cpp
+           dependencies/restinio/externals.rb
+           dhtnet.pc.in
+           src/tracepoint/tracepoint-def.h
+           src/tracepoint/tracepoint.c
+           tools/benchmark/main.cpp
+           tools/dhtnet_crtmgr/README.md
+           tools/dnc/README.md
+           tools/dnc/dnc.1
+           tools/dnc/dnc.yaml
+           tools/dnc/systemd/dnc.service.in
+           tools/dsh/README.md
+           tools/dsh/dsh.1
+           tools/dsh/dsh.yaml
+           tools/dvpn/README.md
+           tools/dvpn/dvpn.1
+           tools/dvpn/dvpn.yaml
+           tools/dvpn/dvpn_up.sh
+           tools/dvpn/test_config.yaml
+           tools/upnp/upnpctrl.cpp
+Copyright: __NO_COPYRIGHT_NOR_LICENSE__
+License:   __NO_COPYRIGHT_NOR_LICENSE__
+
+Files:     dependencies/install/include/msgpack.hpp
+           dependencies/install/include/msgpack/adaptor/adaptor_base.hpp
+           dependencies/install/include/msgpack/adaptor/adaptor_base_decl.hpp
+           dependencies/install/include/msgpack/adaptor/array_ref.hpp
+           dependencies/install/include/msgpack/adaptor/array_ref_decl.hpp
+           dependencies/install/include/msgpack/adaptor/bool.hpp
+           dependencies/install/include/msgpack/adaptor/boost/fusion.hpp
+           dependencies/install/include/msgpack/adaptor/boost/msgpack_variant.hpp
+           dependencies/install/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/install/include/msgpack/adaptor/boost/optional.hpp
+           dependencies/install/include/msgpack/adaptor/boost/string_ref.hpp
+           dependencies/install/include/msgpack/adaptor/boost/string_view.hpp
+           dependencies/install/include/msgpack/adaptor/carray.hpp
+           dependencies/install/include/msgpack/adaptor/char_ptr.hpp
+           dependencies/install/include/msgpack/adaptor/check_container_size.hpp
+           dependencies/install/include/msgpack/adaptor/check_container_size_decl.hpp
+           dependencies/install/include/msgpack/adaptor/complex.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/array.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/array_char.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/chrono.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/forward_list.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/reference_wrapper.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/shared_ptr.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/timespec.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/tuple.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/unique_ptr.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/unordered_map.hpp
+           dependencies/install/include/msgpack/adaptor/cpp11/unordered_set.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/array_byte.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/byte.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/carray_byte.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/optional.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/string_view.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/variant.hpp
+           dependencies/install/include/msgpack/adaptor/cpp17/vector_byte.hpp
+           dependencies/install/include/msgpack/adaptor/cpp20/span.hpp
+           dependencies/install/include/msgpack/adaptor/define.hpp
+           dependencies/install/include/msgpack/adaptor/define_decl.hpp
+           dependencies/install/include/msgpack/adaptor/deque.hpp
+           dependencies/install/include/msgpack/adaptor/ext.hpp
+           dependencies/install/include/msgpack/adaptor/ext_decl.hpp
+           dependencies/install/include/msgpack/adaptor/fixint.hpp
+           dependencies/install/include/msgpack/adaptor/fixint_decl.hpp
+           dependencies/install/include/msgpack/adaptor/float.hpp
+           dependencies/install/include/msgpack/adaptor/int.hpp
+           dependencies/install/include/msgpack/adaptor/int_decl.hpp
+           dependencies/install/include/msgpack/adaptor/list.hpp
+           dependencies/install/include/msgpack/adaptor/map.hpp
+           dependencies/install/include/msgpack/adaptor/map_decl.hpp
+           dependencies/install/include/msgpack/adaptor/msgpack_tuple.hpp
+           dependencies/install/include/msgpack/adaptor/msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/adaptor/nil.hpp
+           dependencies/install/include/msgpack/adaptor/nil_decl.hpp
+           dependencies/install/include/msgpack/adaptor/pair.hpp
+           dependencies/install/include/msgpack/adaptor/raw.hpp
+           dependencies/install/include/msgpack/adaptor/raw_decl.hpp
+           dependencies/install/include/msgpack/adaptor/set.hpp
+           dependencies/install/include/msgpack/adaptor/size_equal_only.hpp
+           dependencies/install/include/msgpack/adaptor/size_equal_only_decl.hpp
+           dependencies/install/include/msgpack/adaptor/string.hpp
+           dependencies/install/include/msgpack/adaptor/tr1/unordered_map.hpp
+           dependencies/install/include/msgpack/adaptor/tr1/unordered_set.hpp
+           dependencies/install/include/msgpack/adaptor/v4raw.hpp
+           dependencies/install/include/msgpack/adaptor/v4raw_decl.hpp
+           dependencies/install/include/msgpack/adaptor/vector.hpp
+           dependencies/install/include/msgpack/adaptor/vector_bool.hpp
+           dependencies/install/include/msgpack/adaptor/vector_char.hpp
+           dependencies/install/include/msgpack/adaptor/vector_unsigned_char.hpp
+           dependencies/install/include/msgpack/adaptor/wstring.hpp
+           dependencies/install/include/msgpack/assert.hpp
+           dependencies/install/include/msgpack/cpp_config.hpp
+           dependencies/install/include/msgpack/cpp_config_decl.hpp
+           dependencies/install/include/msgpack/create_object_visitor.hpp
+           dependencies/install/include/msgpack/create_object_visitor_decl.hpp
+           dependencies/install/include/msgpack/fbuffer.hpp
+           dependencies/install/include/msgpack/fbuffer_decl.hpp
+           dependencies/install/include/msgpack/gcc_atomic.hpp
+           dependencies/install/include/msgpack/iterator.hpp
+           dependencies/install/include/msgpack/iterator_decl.hpp
+           dependencies/install/include/msgpack/meta.hpp
+           dependencies/install/include/msgpack/meta_decl.hpp
+           dependencies/install/include/msgpack/null_visitor.hpp
+           dependencies/install/include/msgpack/null_visitor_decl.hpp
+           dependencies/install/include/msgpack/object.hpp
+           dependencies/install/include/msgpack/object_decl.hpp
+           dependencies/install/include/msgpack/object_fwd.hpp
+           dependencies/install/include/msgpack/object_fwd_decl.hpp
+           dependencies/install/include/msgpack/pack.hpp
+           dependencies/install/include/msgpack/pack_decl.hpp
+           dependencies/install/include/msgpack/parse.hpp
+           dependencies/install/include/msgpack/parse_decl.hpp
+           dependencies/install/include/msgpack/parse_return.hpp
+           dependencies/install/include/msgpack/predef.h
+           dependencies/install/include/msgpack/predef/architecture.h
+           dependencies/install/include/msgpack/predef/architecture/alpha.h
+           dependencies/install/include/msgpack/predef/architecture/arm.h
+           dependencies/install/include/msgpack/predef/architecture/blackfin.h
+           dependencies/install/include/msgpack/predef/architecture/convex.h
+           dependencies/install/include/msgpack/predef/architecture/ia64.h
+           dependencies/install/include/msgpack/predef/architecture/m68k.h
+           dependencies/install/include/msgpack/predef/architecture/mips.h
+           dependencies/install/include/msgpack/predef/architecture/parisc.h
+           dependencies/install/include/msgpack/predef/architecture/ppc.h
+           dependencies/install/include/msgpack/predef/architecture/ptx.h
+           dependencies/install/include/msgpack/predef/architecture/pyramid.h
+           dependencies/install/include/msgpack/predef/architecture/rs6k.h
+           dependencies/install/include/msgpack/predef/architecture/sparc.h
+           dependencies/install/include/msgpack/predef/architecture/superh.h
+           dependencies/install/include/msgpack/predef/architecture/sys370.h
+           dependencies/install/include/msgpack/predef/architecture/sys390.h
+           dependencies/install/include/msgpack/predef/architecture/x86.h
+           dependencies/install/include/msgpack/predef/architecture/x86/32.h
+           dependencies/install/include/msgpack/predef/architecture/x86/64.h
+           dependencies/install/include/msgpack/predef/architecture/z.h
+           dependencies/install/include/msgpack/predef/compiler.h
+           dependencies/install/include/msgpack/predef/compiler/borland.h
+           dependencies/install/include/msgpack/predef/compiler/clang.h
+           dependencies/install/include/msgpack/predef/compiler/comeau.h
+           dependencies/install/include/msgpack/predef/compiler/compaq.h
+           dependencies/install/include/msgpack/predef/compiler/diab.h
+           dependencies/install/include/msgpack/predef/compiler/digitalmars.h
+           dependencies/install/include/msgpack/predef/compiler/dignus.h
+           dependencies/install/include/msgpack/predef/compiler/edg.h
+           dependencies/install/include/msgpack/predef/compiler/ekopath.h
+           dependencies/install/include/msgpack/predef/compiler/gcc.h
+           dependencies/install/include/msgpack/predef/compiler/gcc_xml.h
+           dependencies/install/include/msgpack/predef/compiler/greenhills.h
+           dependencies/install/include/msgpack/predef/compiler/hp_acc.h
+           dependencies/install/include/msgpack/predef/compiler/iar.h
+           dependencies/install/include/msgpack/predef/compiler/ibm.h
+           dependencies/install/include/msgpack/predef/compiler/intel.h
+           dependencies/install/include/msgpack/predef/compiler/kai.h
+           dependencies/install/include/msgpack/predef/compiler/llvm.h
+           dependencies/install/include/msgpack/predef/compiler/metaware.h
+           dependencies/install/include/msgpack/predef/compiler/metrowerks.h
+           dependencies/install/include/msgpack/predef/compiler/microtec.h
+           dependencies/install/include/msgpack/predef/compiler/mpw.h
+           dependencies/install/include/msgpack/predef/compiler/nvcc.h
+           dependencies/install/include/msgpack/predef/compiler/palm.h
+           dependencies/install/include/msgpack/predef/compiler/pgi.h
+           dependencies/install/include/msgpack/predef/compiler/sgi_mipspro.h
+           dependencies/install/include/msgpack/predef/compiler/sunpro.h
+           dependencies/install/include/msgpack/predef/compiler/tendra.h
+           dependencies/install/include/msgpack/predef/compiler/visualc.h
+           dependencies/install/include/msgpack/predef/compiler/watcom.h
+           dependencies/install/include/msgpack/predef/detail/_cassert.h
+           dependencies/install/include/msgpack/predef/detail/_exception.h
+           dependencies/install/include/msgpack/predef/detail/comp_detected.h
+           dependencies/install/include/msgpack/predef/detail/endian_compat.h
+           dependencies/install/include/msgpack/predef/detail/os_detected.h
+           dependencies/install/include/msgpack/predef/detail/platform_detected.h
+           dependencies/install/include/msgpack/predef/detail/test.h
+           dependencies/install/include/msgpack/predef/detail/test_def.h
+           dependencies/install/include/msgpack/predef/hardware.h
+           dependencies/install/include/msgpack/predef/hardware/simd.h
+           dependencies/install/include/msgpack/predef/hardware/simd/arm.h
+           dependencies/install/include/msgpack/predef/hardware/simd/arm/versions.h
+           dependencies/install/include/msgpack/predef/hardware/simd/ppc.h
+           dependencies/install/include/msgpack/predef/hardware/simd/ppc/versions.h
+           dependencies/install/include/msgpack/predef/hardware/simd/x86.h
+           dependencies/install/include/msgpack/predef/hardware/simd/x86/versions.h
+           dependencies/install/include/msgpack/predef/hardware/simd/x86_amd.h
+           dependencies/install/include/msgpack/predef/hardware/simd/x86_amd/versions.h
+           dependencies/install/include/msgpack/predef/language.h
+           dependencies/install/include/msgpack/predef/language/cuda.h
+           dependencies/install/include/msgpack/predef/language/objc.h
+           dependencies/install/include/msgpack/predef/language/stdc.h
+           dependencies/install/include/msgpack/predef/language/stdcpp.h
+           dependencies/install/include/msgpack/predef/library.h
+           dependencies/install/include/msgpack/predef/library/c.h
+           dependencies/install/include/msgpack/predef/library/c/_prefix.h
+           dependencies/install/include/msgpack/predef/library/c/cloudabi.h
+           dependencies/install/include/msgpack/predef/library/c/gnu.h
+           dependencies/install/include/msgpack/predef/library/c/uc.h
+           dependencies/install/include/msgpack/predef/library/c/vms.h
+           dependencies/install/include/msgpack/predef/library/c/zos.h
+           dependencies/install/include/msgpack/predef/library/std.h
+           dependencies/install/include/msgpack/predef/library/std/_prefix.h
+           dependencies/install/include/msgpack/predef/library/std/cxx.h
+           dependencies/install/include/msgpack/predef/library/std/dinkumware.h
+           dependencies/install/include/msgpack/predef/library/std/libcomo.h
+           dependencies/install/include/msgpack/predef/library/std/modena.h
+           dependencies/install/include/msgpack/predef/library/std/msl.h
+           dependencies/install/include/msgpack/predef/library/std/roguewave.h
+           dependencies/install/include/msgpack/predef/library/std/sgi.h
+           dependencies/install/include/msgpack/predef/library/std/stdcpp3.h
+           dependencies/install/include/msgpack/predef/library/std/stlport.h
+           dependencies/install/include/msgpack/predef/library/std/vacpp.h
+           dependencies/install/include/msgpack/predef/make.h
+           dependencies/install/include/msgpack/predef/os.h
+           dependencies/install/include/msgpack/predef/os/aix.h
+           dependencies/install/include/msgpack/predef/os/amigaos.h
+           dependencies/install/include/msgpack/predef/os/android.h
+           dependencies/install/include/msgpack/predef/os/beos.h
+           dependencies/install/include/msgpack/predef/os/bsd.h
+           dependencies/install/include/msgpack/predef/os/bsd/bsdi.h
+           dependencies/install/include/msgpack/predef/os/bsd/dragonfly.h
+           dependencies/install/include/msgpack/predef/os/bsd/free.h
+           dependencies/install/include/msgpack/predef/os/bsd/net.h
+           dependencies/install/include/msgpack/predef/os/bsd/open.h
+           dependencies/install/include/msgpack/predef/os/cygwin.h
+           dependencies/install/include/msgpack/predef/os/haiku.h
+           dependencies/install/include/msgpack/predef/os/hpux.h
+           dependencies/install/include/msgpack/predef/os/ios.h
+           dependencies/install/include/msgpack/predef/os/irix.h
+           dependencies/install/include/msgpack/predef/os/linux.h
+           dependencies/install/include/msgpack/predef/os/macos.h
+           dependencies/install/include/msgpack/predef/os/os400.h
+           dependencies/install/include/msgpack/predef/os/qnxnto.h
+           dependencies/install/include/msgpack/predef/os/solaris.h
+           dependencies/install/include/msgpack/predef/os/unix.h
+           dependencies/install/include/msgpack/predef/os/vms.h
+           dependencies/install/include/msgpack/predef/os/windows.h
+           dependencies/install/include/msgpack/predef/other.h
+           dependencies/install/include/msgpack/predef/other/endian.h
+           dependencies/install/include/msgpack/predef/other/workaround.h
+           dependencies/install/include/msgpack/predef/platform.h
+           dependencies/install/include/msgpack/predef/platform/cloudabi.h
+           dependencies/install/include/msgpack/predef/platform/ios.h
+           dependencies/install/include/msgpack/predef/platform/mingw.h
+           dependencies/install/include/msgpack/predef/platform/mingw32.h
+           dependencies/install/include/msgpack/predef/platform/mingw64.h
+           dependencies/install/include/msgpack/predef/platform/windows_desktop.h
+           dependencies/install/include/msgpack/predef/platform/windows_phone.h
+           dependencies/install/include/msgpack/predef/platform/windows_runtime.h
+           dependencies/install/include/msgpack/predef/platform/windows_server.h
+           dependencies/install/include/msgpack/predef/platform/windows_store.h
+           dependencies/install/include/msgpack/predef/platform/windows_system.h
+           dependencies/install/include/msgpack/predef/platform/windows_uwp.h
+           dependencies/install/include/msgpack/predef/version.h
+           dependencies/install/include/msgpack/predef/version_number.h
+           dependencies/install/include/msgpack/sbuffer.hpp
+           dependencies/install/include/msgpack/sbuffer_decl.hpp
+           dependencies/install/include/msgpack/sysdep.hpp
+           dependencies/install/include/msgpack/unpack.hpp
+           dependencies/install/include/msgpack/unpack_decl.hpp
+           dependencies/install/include/msgpack/unpack_define.hpp
+           dependencies/install/include/msgpack/unpack_exception.hpp
+           dependencies/install/include/msgpack/v1/adaptor/adaptor_base.hpp
+           dependencies/install/include/msgpack/v1/adaptor/adaptor_base_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/array_ref.hpp
+           dependencies/install/include/msgpack/v1/adaptor/array_ref_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/bool.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/fusion.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/optional.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/string_ref.hpp
+           dependencies/install/include/msgpack/v1/adaptor/boost/string_view.hpp
+           dependencies/install/include/msgpack/v1/adaptor/carray.hpp
+           dependencies/install/include/msgpack/v1/adaptor/char_ptr.hpp
+           dependencies/install/include/msgpack/v1/adaptor/check_container_size.hpp
+           dependencies/install/include/msgpack/v1/adaptor/check_container_size_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/complex.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/array.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/array_char.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/chrono.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/forward_list.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/shared_ptr.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/timespec.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/tuple.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/unique_ptr.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/array_byte.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/byte.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/carray_byte.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/optional.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/string_view.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/variant.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp17/vector_byte.hpp
+           dependencies/install/include/msgpack/v1/adaptor/cpp20/span.hpp
+           dependencies/install/include/msgpack/v1/adaptor/define.hpp
+           dependencies/install/include/msgpack/v1/adaptor/define_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/deque.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp
+           dependencies/install/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/ext.hpp
+           dependencies/install/include/msgpack/v1/adaptor/ext_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/fixint.hpp
+           dependencies/install/include/msgpack/v1/adaptor/fixint_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/float.hpp
+           dependencies/install/include/msgpack/v1/adaptor/int.hpp
+           dependencies/install/include/msgpack/v1/adaptor/int_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/list.hpp
+           dependencies/install/include/msgpack/v1/adaptor/map.hpp
+           dependencies/install/include/msgpack/v1/adaptor/map_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/msgpack_tuple.hpp
+           dependencies/install/include/msgpack/v1/adaptor/msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/nil.hpp
+           dependencies/install/include/msgpack/v1/adaptor/nil_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/pair.hpp
+           dependencies/install/include/msgpack/v1/adaptor/raw.hpp
+           dependencies/install/include/msgpack/v1/adaptor/raw_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/set.hpp
+           dependencies/install/include/msgpack/v1/adaptor/size_equal_only.hpp
+           dependencies/install/include/msgpack/v1/adaptor/size_equal_only_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/string.hpp
+           dependencies/install/include/msgpack/v1/adaptor/tr1/unordered_map.hpp
+           dependencies/install/include/msgpack/v1/adaptor/tr1/unordered_set.hpp
+           dependencies/install/include/msgpack/v1/adaptor/v4raw.hpp
+           dependencies/install/include/msgpack/v1/adaptor/v4raw_decl.hpp
+           dependencies/install/include/msgpack/v1/adaptor/vector.hpp
+           dependencies/install/include/msgpack/v1/adaptor/vector_bool.hpp
+           dependencies/install/include/msgpack/v1/adaptor/vector_char.hpp
+           dependencies/install/include/msgpack/v1/adaptor/vector_unsigned_char.hpp
+           dependencies/install/include/msgpack/v1/adaptor/wstring.hpp
+           dependencies/install/include/msgpack/v1/cpp_config.hpp
+           dependencies/install/include/msgpack/v1/cpp_config_decl.hpp
+           dependencies/install/include/msgpack/v1/detail/cpp03_zone.hpp
+           dependencies/install/include/msgpack/v1/detail/cpp03_zone_decl.hpp
+           dependencies/install/include/msgpack/v1/detail/cpp11_zone.hpp
+           dependencies/install/include/msgpack/v1/detail/cpp11_zone_decl.hpp
+           dependencies/install/include/msgpack/v1/fbuffer.hpp
+           dependencies/install/include/msgpack/v1/fbuffer_decl.hpp
+           dependencies/install/include/msgpack/v1/iterator.hpp
+           dependencies/install/include/msgpack/v1/iterator_decl.hpp
+           dependencies/install/include/msgpack/v1/meta.hpp
+           dependencies/install/include/msgpack/v1/meta_decl.hpp
+           dependencies/install/include/msgpack/v1/object.hpp
+           dependencies/install/include/msgpack/v1/object_decl.hpp
+           dependencies/install/include/msgpack/v1/object_fwd.hpp
+           dependencies/install/include/msgpack/v1/object_fwd_decl.hpp
+           dependencies/install/include/msgpack/v1/pack.hpp
+           dependencies/install/include/msgpack/v1/pack_decl.hpp
+           dependencies/install/include/msgpack/v1/parse_return.hpp
+           dependencies/install/include/msgpack/v1/sbuffer.hpp
+           dependencies/install/include/msgpack/v1/sbuffer_decl.hpp
+           dependencies/install/include/msgpack/v1/unpack.hpp
+           dependencies/install/include/msgpack/v1/unpack_decl.hpp
+           dependencies/install/include/msgpack/v1/unpack_exception.hpp
+           dependencies/install/include/msgpack/v1/version.hpp
+           dependencies/install/include/msgpack/v1/versioning.hpp
+           dependencies/install/include/msgpack/v1/vrefbuffer.hpp
+           dependencies/install/include/msgpack/v1/vrefbuffer_decl.hpp
+           dependencies/install/include/msgpack/v1/zbuffer.hpp
+           dependencies/install/include/msgpack/v1/zbuffer_decl.hpp
+           dependencies/install/include/msgpack/v1/zone.hpp
+           dependencies/install/include/msgpack/v1/zone_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/adaptor_base.hpp
+           dependencies/install/include/msgpack/v2/adaptor/adaptor_base_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/array_ref_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/check_container_size_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/define_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/ext_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/fixint_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/int_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/map_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/nil_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/raw_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/size_equal_only_decl.hpp
+           dependencies/install/include/msgpack/v2/adaptor/v4raw_decl.hpp
+           dependencies/install/include/msgpack/v2/cpp_config_decl.hpp
+           dependencies/install/include/msgpack/v2/create_object_visitor.hpp
+           dependencies/install/include/msgpack/v2/create_object_visitor_decl.hpp
+           dependencies/install/include/msgpack/v2/detail/cpp03_zone_decl.hpp
+           dependencies/install/include/msgpack/v2/detail/cpp11_zone_decl.hpp
+           dependencies/install/include/msgpack/v2/fbuffer_decl.hpp
+           dependencies/install/include/msgpack/v2/iterator_decl.hpp
+           dependencies/install/include/msgpack/v2/meta_decl.hpp
+           dependencies/install/include/msgpack/v2/null_visitor.hpp
+           dependencies/install/include/msgpack/v2/null_visitor_decl.hpp
+           dependencies/install/include/msgpack/v2/object.hpp
+           dependencies/install/include/msgpack/v2/object_decl.hpp
+           dependencies/install/include/msgpack/v2/object_fwd.hpp
+           dependencies/install/include/msgpack/v2/object_fwd_decl.hpp
+           dependencies/install/include/msgpack/v2/pack_decl.hpp
+           dependencies/install/include/msgpack/v2/parse.hpp
+           dependencies/install/include/msgpack/v2/parse_decl.hpp
+           dependencies/install/include/msgpack/v2/parse_return.hpp
+           dependencies/install/include/msgpack/v2/sbuffer_decl.hpp
+           dependencies/install/include/msgpack/v2/unpack.hpp
+           dependencies/install/include/msgpack/v2/unpack_decl.hpp
+           dependencies/install/include/msgpack/v2/vrefbuffer_decl.hpp
+           dependencies/install/include/msgpack/v2/x3_parse.hpp
+           dependencies/install/include/msgpack/v2/x3_parse_decl.hpp
+           dependencies/install/include/msgpack/v2/x3_unpack.hpp
+           dependencies/install/include/msgpack/v2/x3_unpack_decl.hpp
+           dependencies/install/include/msgpack/v2/zbuffer_decl.hpp
+           dependencies/install/include/msgpack/v2/zone_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/adaptor_base.hpp
+           dependencies/install/include/msgpack/v3/adaptor/adaptor_base_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/array_ref_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/check_container_size_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/define_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/ext_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/fixint_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/int_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/map_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/nil_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/raw_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/size_equal_only_decl.hpp
+           dependencies/install/include/msgpack/v3/adaptor/v4raw_decl.hpp
+           dependencies/install/include/msgpack/v3/cpp_config_decl.hpp
+           dependencies/install/include/msgpack/v3/create_object_visitor_decl.hpp
+           dependencies/install/include/msgpack/v3/detail/cpp03_zone_decl.hpp
+           dependencies/install/include/msgpack/v3/detail/cpp11_zone_decl.hpp
+           dependencies/install/include/msgpack/v3/fbuffer_decl.hpp
+           dependencies/install/include/msgpack/v3/iterator_decl.hpp
+           dependencies/install/include/msgpack/v3/meta_decl.hpp
+           dependencies/install/include/msgpack/v3/null_visitor_decl.hpp
+           dependencies/install/include/msgpack/v3/object_decl.hpp
+           dependencies/install/include/msgpack/v3/object_fwd.hpp
+           dependencies/install/include/msgpack/v3/object_fwd_decl.hpp
+           dependencies/install/include/msgpack/v3/pack_decl.hpp
+           dependencies/install/include/msgpack/v3/parse.hpp
+           dependencies/install/include/msgpack/v3/parse_decl.hpp
+           dependencies/install/include/msgpack/v3/parse_return.hpp
+           dependencies/install/include/msgpack/v3/sbuffer_decl.hpp
+           dependencies/install/include/msgpack/v3/unpack.hpp
+           dependencies/install/include/msgpack/v3/unpack_decl.hpp
+           dependencies/install/include/msgpack/v3/vrefbuffer_decl.hpp
+           dependencies/install/include/msgpack/v3/x3_parse_decl.hpp
+           dependencies/install/include/msgpack/v3/x3_unpack.hpp
+           dependencies/install/include/msgpack/v3/x3_unpack_decl.hpp
+           dependencies/install/include/msgpack/v3/zbuffer_decl.hpp
+           dependencies/install/include/msgpack/v3/zone_decl.hpp
+           dependencies/install/include/msgpack/version.hpp
+           dependencies/install/include/msgpack/versioning.hpp
+           dependencies/install/include/msgpack/vrefbuffer.hpp
+           dependencies/install/include/msgpack/vrefbuffer_decl.hpp
+           dependencies/install/include/msgpack/x3_parse.hpp
+           dependencies/install/include/msgpack/x3_parse_decl.hpp
+           dependencies/install/include/msgpack/x3_unpack.hpp
+           dependencies/install/include/msgpack/x3_unpack_decl.hpp
+           dependencies/install/include/msgpack/zbuffer.hpp
+           dependencies/install/include/msgpack/zbuffer_decl.hpp
+           dependencies/install/include/msgpack/zone.hpp
+           dependencies/install/include/msgpack/zone_decl.hpp
+           dependencies/install/include/nonstd/expected.hpp
+           dependencies/msgpack/erb/v1/cpp03_define_array.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_define_array_decl.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_define_map.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_define_map_decl.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_msgpack_tuple.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_msgpack_tuple_decl.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_zone.hpp.erb
+           dependencies/msgpack/erb/v1/cpp03_zone_decl.hpp.erb
+           dependencies/msgpack/example/boost/asio_send_recv.cpp
+           dependencies/msgpack/example/boost/asio_send_recv_zlib.cpp
+           dependencies/msgpack/example/boost/msgpack_variant_capitalize.cpp
+           dependencies/msgpack/example/boost/msgpack_variant_mapbased.cpp
+           dependencies/msgpack/example/cpp03/class_intrusive.cpp
+           dependencies/msgpack/example/cpp03/class_intrusive_map.cpp
+           dependencies/msgpack/example/cpp03/class_non_intrusive.cpp
+           dependencies/msgpack/example/cpp03/custom.cpp
+           dependencies/msgpack/example/cpp03/enum.cpp
+           dependencies/msgpack/example/cpp03/map_based_versionup.cpp
+           dependencies/msgpack/example/cpp03/protocol.cpp
+           dependencies/msgpack/example/cpp03/protocol_new.cpp
+           dependencies/msgpack/example/cpp03/reuse_zone.cpp
+           dependencies/msgpack/example/cpp03/simple.cpp
+           dependencies/msgpack/example/cpp03/speed_test.cpp
+           dependencies/msgpack/example/cpp03/speed_test_nested_array.cpp
+           dependencies/msgpack/example/cpp03/stream.cpp
+           dependencies/msgpack/example/cpp11/container.cpp
+           dependencies/msgpack/example/cpp11/non_def_con_class.cpp
+           dependencies/msgpack/example/x3/parse.cpp
+           dependencies/msgpack/example/x3/stream_unpack.cpp
+           dependencies/msgpack/example/x3/unpack.cpp
+           dependencies/msgpack/include/msgpack.hpp
+           dependencies/msgpack/include/msgpack/adaptor/adaptor_base.hpp
+           dependencies/msgpack/include/msgpack/adaptor/adaptor_base_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/array_ref.hpp
+           dependencies/msgpack/include/msgpack/adaptor/array_ref_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/bool.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/fusion.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/msgpack_variant.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/optional.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/string_ref.hpp
+           dependencies/msgpack/include/msgpack/adaptor/boost/string_view.hpp
+           dependencies/msgpack/include/msgpack/adaptor/carray.hpp
+           dependencies/msgpack/include/msgpack/adaptor/char_ptr.hpp
+           dependencies/msgpack/include/msgpack/adaptor/check_container_size.hpp
+           dependencies/msgpack/include/msgpack/adaptor/check_container_size_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/complex.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/array.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/array_char.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/chrono.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/forward_list.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/reference_wrapper.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/shared_ptr.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/timespec.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/tuple.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/unique_ptr.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/unordered_map.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp11/unordered_set.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/array_byte.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/byte.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/carray_byte.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/optional.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/string_view.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/variant.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp17/vector_byte.hpp
+           dependencies/msgpack/include/msgpack/adaptor/cpp20/span.hpp
+           dependencies/msgpack/include/msgpack/adaptor/define.hpp
+           dependencies/msgpack/include/msgpack/adaptor/define_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/deque.hpp
+           dependencies/msgpack/include/msgpack/adaptor/ext.hpp
+           dependencies/msgpack/include/msgpack/adaptor/ext_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/fixint.hpp
+           dependencies/msgpack/include/msgpack/adaptor/fixint_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/float.hpp
+           dependencies/msgpack/include/msgpack/adaptor/int.hpp
+           dependencies/msgpack/include/msgpack/adaptor/int_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/list.hpp
+           dependencies/msgpack/include/msgpack/adaptor/map.hpp
+           dependencies/msgpack/include/msgpack/adaptor/map_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/msgpack_tuple.hpp
+           dependencies/msgpack/include/msgpack/adaptor/msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/nil.hpp
+           dependencies/msgpack/include/msgpack/adaptor/nil_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/pair.hpp
+           dependencies/msgpack/include/msgpack/adaptor/raw.hpp
+           dependencies/msgpack/include/msgpack/adaptor/raw_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/set.hpp
+           dependencies/msgpack/include/msgpack/adaptor/size_equal_only.hpp
+           dependencies/msgpack/include/msgpack/adaptor/size_equal_only_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/string.hpp
+           dependencies/msgpack/include/msgpack/adaptor/tr1/unordered_map.hpp
+           dependencies/msgpack/include/msgpack/adaptor/tr1/unordered_set.hpp
+           dependencies/msgpack/include/msgpack/adaptor/v4raw.hpp
+           dependencies/msgpack/include/msgpack/adaptor/v4raw_decl.hpp
+           dependencies/msgpack/include/msgpack/adaptor/vector.hpp
+           dependencies/msgpack/include/msgpack/adaptor/vector_bool.hpp
+           dependencies/msgpack/include/msgpack/adaptor/vector_char.hpp
+           dependencies/msgpack/include/msgpack/adaptor/vector_unsigned_char.hpp
+           dependencies/msgpack/include/msgpack/adaptor/wstring.hpp
+           dependencies/msgpack/include/msgpack/assert.hpp
+           dependencies/msgpack/include/msgpack/cpp_config.hpp
+           dependencies/msgpack/include/msgpack/cpp_config_decl.hpp
+           dependencies/msgpack/include/msgpack/create_object_visitor.hpp
+           dependencies/msgpack/include/msgpack/create_object_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/fbuffer.hpp
+           dependencies/msgpack/include/msgpack/fbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/gcc_atomic.hpp
+           dependencies/msgpack/include/msgpack/iterator.hpp
+           dependencies/msgpack/include/msgpack/iterator_decl.hpp
+           dependencies/msgpack/include/msgpack/meta.hpp
+           dependencies/msgpack/include/msgpack/meta_decl.hpp
+           dependencies/msgpack/include/msgpack/null_visitor.hpp
+           dependencies/msgpack/include/msgpack/null_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/object.hpp
+           dependencies/msgpack/include/msgpack/object_decl.hpp
+           dependencies/msgpack/include/msgpack/object_fwd.hpp
+           dependencies/msgpack/include/msgpack/object_fwd_decl.hpp
+           dependencies/msgpack/include/msgpack/pack.hpp
+           dependencies/msgpack/include/msgpack/pack_decl.hpp
+           dependencies/msgpack/include/msgpack/parse.hpp
+           dependencies/msgpack/include/msgpack/parse_decl.hpp
+           dependencies/msgpack/include/msgpack/parse_return.hpp
+           dependencies/msgpack/include/msgpack/predef.h
+           dependencies/msgpack/include/msgpack/predef/architecture.h
+           dependencies/msgpack/include/msgpack/predef/architecture/alpha.h
+           dependencies/msgpack/include/msgpack/predef/architecture/arm.h
+           dependencies/msgpack/include/msgpack/predef/architecture/blackfin.h
+           dependencies/msgpack/include/msgpack/predef/architecture/convex.h
+           dependencies/msgpack/include/msgpack/predef/architecture/ia64.h
+           dependencies/msgpack/include/msgpack/predef/architecture/m68k.h
+           dependencies/msgpack/include/msgpack/predef/architecture/mips.h
+           dependencies/msgpack/include/msgpack/predef/architecture/parisc.h
+           dependencies/msgpack/include/msgpack/predef/architecture/ppc.h
+           dependencies/msgpack/include/msgpack/predef/architecture/ptx.h
+           dependencies/msgpack/include/msgpack/predef/architecture/pyramid.h
+           dependencies/msgpack/include/msgpack/predef/architecture/rs6k.h
+           dependencies/msgpack/include/msgpack/predef/architecture/sparc.h
+           dependencies/msgpack/include/msgpack/predef/architecture/superh.h
+           dependencies/msgpack/include/msgpack/predef/architecture/sys370.h
+           dependencies/msgpack/include/msgpack/predef/architecture/sys390.h
+           dependencies/msgpack/include/msgpack/predef/architecture/x86.h
+           dependencies/msgpack/include/msgpack/predef/architecture/x86/32.h
+           dependencies/msgpack/include/msgpack/predef/architecture/x86/64.h
+           dependencies/msgpack/include/msgpack/predef/architecture/z.h
+           dependencies/msgpack/include/msgpack/predef/compiler.h
+           dependencies/msgpack/include/msgpack/predef/compiler/borland.h
+           dependencies/msgpack/include/msgpack/predef/compiler/clang.h
+           dependencies/msgpack/include/msgpack/predef/compiler/comeau.h
+           dependencies/msgpack/include/msgpack/predef/compiler/compaq.h
+           dependencies/msgpack/include/msgpack/predef/compiler/diab.h
+           dependencies/msgpack/include/msgpack/predef/compiler/digitalmars.h
+           dependencies/msgpack/include/msgpack/predef/compiler/dignus.h
+           dependencies/msgpack/include/msgpack/predef/compiler/edg.h
+           dependencies/msgpack/include/msgpack/predef/compiler/ekopath.h
+           dependencies/msgpack/include/msgpack/predef/compiler/gcc.h
+           dependencies/msgpack/include/msgpack/predef/compiler/gcc_xml.h
+           dependencies/msgpack/include/msgpack/predef/compiler/greenhills.h
+           dependencies/msgpack/include/msgpack/predef/compiler/hp_acc.h
+           dependencies/msgpack/include/msgpack/predef/compiler/iar.h
+           dependencies/msgpack/include/msgpack/predef/compiler/ibm.h
+           dependencies/msgpack/include/msgpack/predef/compiler/intel.h
+           dependencies/msgpack/include/msgpack/predef/compiler/kai.h
+           dependencies/msgpack/include/msgpack/predef/compiler/llvm.h
+           dependencies/msgpack/include/msgpack/predef/compiler/metaware.h
+           dependencies/msgpack/include/msgpack/predef/compiler/metrowerks.h
+           dependencies/msgpack/include/msgpack/predef/compiler/microtec.h
+           dependencies/msgpack/include/msgpack/predef/compiler/mpw.h
+           dependencies/msgpack/include/msgpack/predef/compiler/nvcc.h
+           dependencies/msgpack/include/msgpack/predef/compiler/palm.h
+           dependencies/msgpack/include/msgpack/predef/compiler/pgi.h
+           dependencies/msgpack/include/msgpack/predef/compiler/sgi_mipspro.h
+           dependencies/msgpack/include/msgpack/predef/compiler/sunpro.h
+           dependencies/msgpack/include/msgpack/predef/compiler/tendra.h
+           dependencies/msgpack/include/msgpack/predef/compiler/visualc.h
+           dependencies/msgpack/include/msgpack/predef/compiler/watcom.h
+           dependencies/msgpack/include/msgpack/predef/detail/_cassert.h
+           dependencies/msgpack/include/msgpack/predef/detail/_exception.h
+           dependencies/msgpack/include/msgpack/predef/detail/comp_detected.h
+           dependencies/msgpack/include/msgpack/predef/detail/endian_compat.h
+           dependencies/msgpack/include/msgpack/predef/detail/os_detected.h
+           dependencies/msgpack/include/msgpack/predef/detail/platform_detected.h
+           dependencies/msgpack/include/msgpack/predef/detail/test.h
+           dependencies/msgpack/include/msgpack/predef/detail/test_def.h
+           dependencies/msgpack/include/msgpack/predef/hardware.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/arm.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/arm/versions.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/ppc.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/ppc/versions.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/x86.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/x86/versions.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/x86_amd.h
+           dependencies/msgpack/include/msgpack/predef/hardware/simd/x86_amd/versions.h
+           dependencies/msgpack/include/msgpack/predef/language.h
+           dependencies/msgpack/include/msgpack/predef/language/cuda.h
+           dependencies/msgpack/include/msgpack/predef/language/objc.h
+           dependencies/msgpack/include/msgpack/predef/language/stdc.h
+           dependencies/msgpack/include/msgpack/predef/language/stdcpp.h
+           dependencies/msgpack/include/msgpack/predef/library.h
+           dependencies/msgpack/include/msgpack/predef/library/c.h
+           dependencies/msgpack/include/msgpack/predef/library/c/_prefix.h
+           dependencies/msgpack/include/msgpack/predef/library/c/cloudabi.h
+           dependencies/msgpack/include/msgpack/predef/library/c/gnu.h
+           dependencies/msgpack/include/msgpack/predef/library/c/uc.h
+           dependencies/msgpack/include/msgpack/predef/library/c/vms.h
+           dependencies/msgpack/include/msgpack/predef/library/c/zos.h
+           dependencies/msgpack/include/msgpack/predef/library/std.h
+           dependencies/msgpack/include/msgpack/predef/library/std/_prefix.h
+           dependencies/msgpack/include/msgpack/predef/library/std/cxx.h
+           dependencies/msgpack/include/msgpack/predef/library/std/dinkumware.h
+           dependencies/msgpack/include/msgpack/predef/library/std/libcomo.h
+           dependencies/msgpack/include/msgpack/predef/library/std/modena.h
+           dependencies/msgpack/include/msgpack/predef/library/std/msl.h
+           dependencies/msgpack/include/msgpack/predef/library/std/roguewave.h
+           dependencies/msgpack/include/msgpack/predef/library/std/sgi.h
+           dependencies/msgpack/include/msgpack/predef/library/std/stdcpp3.h
+           dependencies/msgpack/include/msgpack/predef/library/std/stlport.h
+           dependencies/msgpack/include/msgpack/predef/library/std/vacpp.h
+           dependencies/msgpack/include/msgpack/predef/make.h
+           dependencies/msgpack/include/msgpack/predef/os.h
+           dependencies/msgpack/include/msgpack/predef/os/aix.h
+           dependencies/msgpack/include/msgpack/predef/os/amigaos.h
+           dependencies/msgpack/include/msgpack/predef/os/android.h
+           dependencies/msgpack/include/msgpack/predef/os/beos.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd/bsdi.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd/dragonfly.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd/free.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd/net.h
+           dependencies/msgpack/include/msgpack/predef/os/bsd/open.h
+           dependencies/msgpack/include/msgpack/predef/os/cygwin.h
+           dependencies/msgpack/include/msgpack/predef/os/haiku.h
+           dependencies/msgpack/include/msgpack/predef/os/hpux.h
+           dependencies/msgpack/include/msgpack/predef/os/ios.h
+           dependencies/msgpack/include/msgpack/predef/os/irix.h
+           dependencies/msgpack/include/msgpack/predef/os/linux.h
+           dependencies/msgpack/include/msgpack/predef/os/macos.h
+           dependencies/msgpack/include/msgpack/predef/os/os400.h
+           dependencies/msgpack/include/msgpack/predef/os/qnxnto.h
+           dependencies/msgpack/include/msgpack/predef/os/solaris.h
+           dependencies/msgpack/include/msgpack/predef/os/unix.h
+           dependencies/msgpack/include/msgpack/predef/os/vms.h
+           dependencies/msgpack/include/msgpack/predef/os/windows.h
+           dependencies/msgpack/include/msgpack/predef/other.h
+           dependencies/msgpack/include/msgpack/predef/other/endian.h
+           dependencies/msgpack/include/msgpack/predef/other/workaround.h
+           dependencies/msgpack/include/msgpack/predef/platform.h
+           dependencies/msgpack/include/msgpack/predef/platform/cloudabi.h
+           dependencies/msgpack/include/msgpack/predef/platform/ios.h
+           dependencies/msgpack/include/msgpack/predef/platform/mingw.h
+           dependencies/msgpack/include/msgpack/predef/platform/mingw32.h
+           dependencies/msgpack/include/msgpack/predef/platform/mingw64.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_desktop.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_phone.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_runtime.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_server.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_store.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_system.h
+           dependencies/msgpack/include/msgpack/predef/platform/windows_uwp.h
+           dependencies/msgpack/include/msgpack/predef/version.h
+           dependencies/msgpack/include/msgpack/predef/version_number.h
+           dependencies/msgpack/include/msgpack/sbuffer.hpp
+           dependencies/msgpack/include/msgpack/sbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/sysdep.hpp
+           dependencies/msgpack/include/msgpack/unpack.hpp
+           dependencies/msgpack/include/msgpack/unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/unpack_define.hpp
+           dependencies/msgpack/include/msgpack/unpack_exception.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/adaptor_base.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/adaptor_base_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/array_ref.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/array_ref_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/bool.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/fusion.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/optional.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/string_ref.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/boost/string_view.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/carray.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/char_ptr.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/check_container_size.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/check_container_size_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/complex.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/array.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/array_char.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/chrono.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/forward_list.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/reference_wrapper.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/shared_ptr.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/timespec.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/tuple.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/unique_ptr.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/array_byte.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/byte.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/carray_byte.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/optional.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/string_view.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/variant.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp17/vector_byte.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/cpp20/span.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/define.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/define_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/deque.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/ext.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/ext_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/fixint.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/fixint_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/float.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/int.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/int_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/list.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/map.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/map_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/msgpack_tuple.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/nil.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/nil_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/pair.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/raw.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/set.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/size_equal_only.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/size_equal_only_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/string.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/tr1/unordered_map.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/tr1/unordered_set.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/v4raw.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/v4raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/vector.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/vector_bool.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/vector_char.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/vector_unsigned_char.hpp
+           dependencies/msgpack/include/msgpack/v1/adaptor/wstring.hpp
+           dependencies/msgpack/include/msgpack/v1/cpp_config.hpp
+           dependencies/msgpack/include/msgpack/v1/cpp_config_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/detail/cpp03_zone.hpp
+           dependencies/msgpack/include/msgpack/v1/detail/cpp03_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/detail/cpp11_zone.hpp
+           dependencies/msgpack/include/msgpack/v1/detail/cpp11_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/fbuffer.hpp
+           dependencies/msgpack/include/msgpack/v1/fbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/iterator.hpp
+           dependencies/msgpack/include/msgpack/v1/iterator_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/meta.hpp
+           dependencies/msgpack/include/msgpack/v1/meta_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/object.hpp
+           dependencies/msgpack/include/msgpack/v1/object_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/object_fwd.hpp
+           dependencies/msgpack/include/msgpack/v1/object_fwd_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/pack.hpp
+           dependencies/msgpack/include/msgpack/v1/pack_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/parse_return.hpp
+           dependencies/msgpack/include/msgpack/v1/sbuffer.hpp
+           dependencies/msgpack/include/msgpack/v1/sbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/unpack.hpp
+           dependencies/msgpack/include/msgpack/v1/unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/unpack_exception.hpp
+           dependencies/msgpack/include/msgpack/v1/version.hpp
+           dependencies/msgpack/include/msgpack/v1/versioning.hpp
+           dependencies/msgpack/include/msgpack/v1/vrefbuffer.hpp
+           dependencies/msgpack/include/msgpack/v1/vrefbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/zbuffer.hpp
+           dependencies/msgpack/include/msgpack/v1/zbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v1/zone.hpp
+           dependencies/msgpack/include/msgpack/v1/zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/adaptor_base.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/adaptor_base_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/array_ref_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/check_container_size_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/define_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/ext_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/fixint_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/int_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/map_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/nil_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/size_equal_only_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/adaptor/v4raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/cpp_config_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/create_object_visitor.hpp
+           dependencies/msgpack/include/msgpack/v2/create_object_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/detail/cpp03_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/detail/cpp11_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/fbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/iterator_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/meta_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/null_visitor.hpp
+           dependencies/msgpack/include/msgpack/v2/null_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/object.hpp
+           dependencies/msgpack/include/msgpack/v2/object_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/object_fwd.hpp
+           dependencies/msgpack/include/msgpack/v2/object_fwd_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/pack_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/parse.hpp
+           dependencies/msgpack/include/msgpack/v2/parse_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/parse_return.hpp
+           dependencies/msgpack/include/msgpack/v2/sbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/unpack.hpp
+           dependencies/msgpack/include/msgpack/v2/unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/vrefbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/x3_parse.hpp
+           dependencies/msgpack/include/msgpack/v2/x3_parse_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/x3_unpack.hpp
+           dependencies/msgpack/include/msgpack/v2/x3_unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/zbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v2/zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/adaptor_base.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/adaptor_base_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/array_ref_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/check_container_size_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/define_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/ext_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/fixint_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/int_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/map_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/nil_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/size_equal_only_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/adaptor/v4raw_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/cpp_config_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/create_object_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/detail/cpp03_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/detail/cpp11_zone_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/fbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/iterator_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/meta_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/null_visitor_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/object_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/object_fwd.hpp
+           dependencies/msgpack/include/msgpack/v3/object_fwd_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/pack_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/parse.hpp
+           dependencies/msgpack/include/msgpack/v3/parse_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/parse_return.hpp
+           dependencies/msgpack/include/msgpack/v3/sbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/unpack.hpp
+           dependencies/msgpack/include/msgpack/v3/unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/vrefbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/x3_parse_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/x3_unpack.hpp
+           dependencies/msgpack/include/msgpack/v3/x3_unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/zbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/v3/zone_decl.hpp
+           dependencies/msgpack/include/msgpack/version.hpp
+           dependencies/msgpack/include/msgpack/versioning.hpp
+           dependencies/msgpack/include/msgpack/vrefbuffer.hpp
+           dependencies/msgpack/include/msgpack/vrefbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/x3_parse.hpp
+           dependencies/msgpack/include/msgpack/x3_parse_decl.hpp
+           dependencies/msgpack/include/msgpack/x3_unpack.hpp
+           dependencies/msgpack/include/msgpack/x3_unpack_decl.hpp
+           dependencies/msgpack/include/msgpack/zbuffer.hpp
+           dependencies/msgpack/include/msgpack/zbuffer_decl.hpp
+           dependencies/msgpack/include/msgpack/zone.hpp
+           dependencies/msgpack/include/msgpack/zone_decl.hpp
+           dependencies/msgpack/test-install/simple.cpp
+           dependencies/msgpack/test/test_allocator.hpp
+Copyright: 2005-2017 Rene Rivera
+           2008-2013 FURUHASHI Sadayuki and Takatoshi Kondo
+           2008-2016 FURUHASHI Sadayuki
+           2008-2018 FURUHASHI Sadayuki and KONDO Takatoshi
+           2013 Vladimir Volodko
+           2013-2018 Vladimir Volodko and KONDO Takatoshi
+           2013-2022 KONDO Takatoshi
+           2014 Franz Detro
+           2014 Jessica Hamilton
+           2014 KONDO-2015 Takatoshi
+           2014 Microsoft Corporation
+           2015 Charly Chevalier
+           2015 Joel Falcou
+           2015-2016 MIZUKI Hirata
+           2016-2020 Martin Moene.
+           2017 James E. King III
+           2017 James E. King III,
+           2017 James E. King, III
+           2017 Ruslan Baratov
+           2018 Benjamin Worpitz
+           2021 KONDO Takatoshi and Daniil Kovalev
+           2023 Uy Ha
+License:   BSL-1.0
+ Distributed under the Boost Software License, Version 1.0.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/fft4g.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/auto_corr_to_refl_coef.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/auto_correlation.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_bit_reverse.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_bit_reverse_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_fft.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_fft_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/complex_fft_tables.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/cross_correlation.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/cross_correlation_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/cross_correlation_neon.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/dot_product_with_scale.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/downsample_fast.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/downsample_fast_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/downsample_fast_neon.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/energy.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/filter_ar.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/filter_ar_fast_q12.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/filter_ar_fast_q12_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/filter_ma_fast_q12.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/get_hanning_window.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/get_scaling_square.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/include/real_fft.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/levinson_durbin.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/lpc_to_refl_coef.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/min_max_operations_neon.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/real_fft.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/real_fft_unittest.cc
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/refl_coef_to_lpc.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/signal_processing_unittest.cc
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/spl_sqrt.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/sqrt_of_one_minus_x_squared.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/wav_file.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_common.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core_internal.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_rdft.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_rdft_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_rdft_sse2.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_resampler.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/echo_cancellation_internal.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/include/echo_cancellation.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/system_delay_unittest.cc
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_core.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_core_c.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_core_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_core_neon.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_defines.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/echo_control_mobile.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/include/echo_control_mobile.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/logging/aec_logging.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/logging/aec_logging_file_handling.cc
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/logging/aec_logging_file_handling.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/defines.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/include/noise_suppression.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/include/noise_suppression_x.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/noise_suppression.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/noise_suppression_x.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/ns_core.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/ns_core.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_core.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_core.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_core_c.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_core_mips.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_core_neon.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/nsx_defines.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/ns/windows_private.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/system_wrappers/interface/compile_assert_c.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/system_wrappers/interface/cpu_features_wrapper.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/system_wrappers/source/cpu_features_android.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/array_view.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/audio_frame.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/audio_frame.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/audio_frame_processor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/audio_mixer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/channel_layout.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/channel_layout.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_config.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_config.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_config_json.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_config_json.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_factory.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_canceller3_factory.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_control.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_detector_creator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/echo_detector_creator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/test/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/test/audio_frame_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/test/echo_canceller3_config_json_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/audio/test/echo_canceller3_config_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/function_view.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/rtp_headers.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/rtp_headers.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/rtp_packet_info.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/rtp_packet_info.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/units/time_delta.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/units/time_delta.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/units/timestamp.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/api/units/timestamp.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/audio_util.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/channel_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/channel_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/include/audio_util.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/include/push_resampler.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/push_resampler.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/push_sinc_resampler.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/push_sinc_resampler.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/dot_product_with_scale.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/dot_product_with_scale.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft_mips.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft_sse2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft_tables_neon_sse2.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/spl_sqrt_floor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_erl.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_erl.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_erl_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_erl_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/adaptive_fir_filter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec3_common.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec3_common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec3_fft.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec3_fft.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec3_fft_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec_state.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec_state.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/aec_state_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/alignment_mixer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/alignment_mixer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/alignment_mixer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/api_call_jitter_metrics.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/api_call_jitter_metrics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/api_call_jitter_metrics_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_delay_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_delay_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_delay_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_framer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_framer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_framer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor_metrics.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor_metrics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor_metrics_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/block_processor_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/clockdrift_detector.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/clockdrift_detector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/clockdrift_detector_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/coarse_filter_update_gain.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/coarse_filter_update_gain.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/coarse_filter_update_gain_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/comfort_noise_generator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/comfort_noise_generator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/comfort_noise_generator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/decimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/decimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/decimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/delay_estimate.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/dominant_nearend_detector.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/dominant_nearend_detector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/downsampled_render_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/downsampled_render_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_audibility.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_audibility.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_canceller3.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_canceller3.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_canceller3_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_delay_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_delay_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_delay_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_variability.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_variability.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_path_variability_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover_metrics.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover_metrics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover_metrics_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/echo_remover_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erl_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erl_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erl_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erle_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erle_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/erle_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fft_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fft_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fft_data.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fft_data_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fft_data_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/filter_analyzer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/filter_analyzer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/filter_analyzer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/frame_blocker.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/frame_blocker.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/frame_blocker_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fullband_erle_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/fullband_erle_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter_lag_aggregator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter_lag_aggregator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter_lag_aggregator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/matched_filter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_block_processor.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_block_processor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_echo_remover.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_echo_remover.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_render_delay_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_render_delay_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_render_delay_controller.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/mock/mock_render_delay_controller.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/moving_average.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/moving_average.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/moving_average_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/nearend_detector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/refined_filter_update_gain.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/refined_filter_update_gain.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/refined_filter_update_gain_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller_metrics.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller_metrics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller_metrics_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_delay_controller_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_signal_analyzer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_signal_analyzer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/render_signal_analyzer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/residual_echo_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/residual_echo_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_decay_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_decay_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_frequency_response.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_frequency_response.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_model.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_model.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_model_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_model_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/reverb_model_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/signal_dependent_erle_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/signal_dependent_erle_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/signal_dependent_erle_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/spectrum_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/spectrum_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/stationarity_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/stationarity_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subband_erle_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subband_erle_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subband_nearend_detector.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subband_nearend_detector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor_output.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor_output.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor_output_analyzer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor_output_analyzer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/subtractor_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_filter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_gain.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_gain.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/suppression_gain_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/transparent_mode.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/transparent_mode.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/vector_math.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/vector_math_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/aec3/vector_math_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_agc.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_agc.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_digital_gain_applier.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_digital_gain_applier.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_digital_gain_applier_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_mode_level_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_mode_level_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/adaptive_mode_level_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/agc2_common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/agc2_testing_common.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/agc2_testing_common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/agc2_testing_common_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/biquad_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/biquad_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/biquad_filter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/compute_interpolated_gain_curve.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/compute_interpolated_gain_curve.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/cpu_features.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/cpu_features.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/down_sampler.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/down_sampler.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/fixed_digital_level_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/fixed_digital_level_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/fixed_digital_level_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/gain_applier.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/gain_applier.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/gain_applier_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/interpolated_gain_curve.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/interpolated_gain_curve.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/interpolated_gain_curve_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter_db_gain_curve.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter_db_gain_curve.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter_db_gain_curve_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/limiter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/noise_level_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/noise_level_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/noise_level_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/noise_spectrum_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/noise_spectrum_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/auto_correlation.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/auto_correlation.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/auto_correlation_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/features_extraction.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/features_extraction.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/features_extraction_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/lp_residual.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/lp_residual.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/lp_residual_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search_internal.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search_internal.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search_internal_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/pitch_search_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/ring_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/ring_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_fc.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_fc.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_fc_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_gru.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_gru.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_gru_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_vad_tool.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_vad_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/rnn_vector_math_avx2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/sequence_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/sequence_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features_internal.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features_internal.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features_internal_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/spectral_features_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/symmetric_matrix_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/symmetric_matrix_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/test_utils.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/test_utils.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/vector_math.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/rnn_vad/vector_math_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/saturation_protector_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/signal_classifier.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/signal_classifier.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/signal_classifier_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/vad_with_level.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/vad_with_level.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/vad_with_level_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/vector_float_frame.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/agc2/vector_float_frame.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/audio_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/audio_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/circular_buffer.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/circular_buffer.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/circular_buffer_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/mean_variance_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/mean_variance_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/mean_variance_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/moving_max.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/moving_max.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/moving_max_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/normalized_covariance_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/normalized_covariance_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/echo_detector/normalized_covariance_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/gain_controller2.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/gain_controller2.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/high_pass_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/high_pass_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/audio_frame_view.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/audio_processing.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/audio_processing.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/audio_processing_statistics.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/audio_processing_statistics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/config.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/include/config.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/logging/apm_data_dumper.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/logging/apm_data_dumper.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/fast_math.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/fast_math.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/histograms.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/histograms.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/noise_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/noise_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/noise_suppressor.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/noise_suppressor.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/noise_suppressor_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/ns_common.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/ns_config.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/ns_fft.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/ns_fft.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/prior_signal_model.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/prior_signal_model.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/prior_signal_model_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/prior_signal_model_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/quantile_noise_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/quantile_noise_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/signal_model.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/signal_model.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/signal_model_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/signal_model_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/speech_probability_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/speech_probability_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/suppression_params.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/suppression_params.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/wiener_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/ns/wiener_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/residual_echo_detector.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/residual_echo_detector.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/splitting_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/splitting_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/three_band_filter_bank.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/cascaded_biquad_filter.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/cascaded_biquad_filter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/cascaded_biquad_filter_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator_wrapper.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/pffft_wrapper.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/pffft_wrapper.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/pffft_wrapper_unittest.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/arraysize.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/atomic_ops.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/checks.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/compile_assert_c.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/constructor_magic.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/experiments/field_trial_parser.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/experiments/field_trial_parser.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/gtest_prod_util.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/logging.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/logging.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/memory/aligned_malloc.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/memory/aligned_malloc.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/numerics/safe_conversions.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/numerics/safe_conversions_impl.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/platform_thread_types.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/platform_thread_types.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/race_checker.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/race_checker.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/random.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/random.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/ref_count.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/ref_counted_object.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/ref_counter.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_encode.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_encode.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_to_number.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_to_number.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_utils.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/string_utils.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/strings/string_builder.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/strings/string_builder.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/swap_queue.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex_abseil.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex_benchmark.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex_critical_section.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex_pthread.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/mutex_race_check.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/yield.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/synchronization/yield.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system/file_wrapper.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system/file_wrapper.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system/inline.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system/rtc_export.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system_time.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system_time.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/time_utils.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/time_utils.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/type_traits.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/units/unit_base.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/include/cpu_features_wrapper.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/include/field_trial.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/include/metrics.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/source/cpu_features_android.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/source/cpu_features_linux.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/source/field_trial.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/source/metrics.cc
+           dependencies/pjproject/third_party/yuv/include/libyuv.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/basic_types.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/compare.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/compare_row.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/convert.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/convert_argb.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/convert_from.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/convert_from_argb.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/cpu_id.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/macros_msa.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/mjpeg_decoder.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/planar_functions.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/rotate.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/rotate_argb.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/rotate_row.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/row.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/scale.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/scale_argb.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/scale_row.h
+           dependencies/pjproject/third_party/yuv/include/libyuv/version.h
+           dependencies/pjproject/third_party/yuv/source/compare.cc
+           dependencies/pjproject/third_party/yuv/source/compare_common.cc
+           dependencies/pjproject/third_party/yuv/source/compare_gcc.cc
+           dependencies/pjproject/third_party/yuv/source/compare_neon.cc
+           dependencies/pjproject/third_party/yuv/source/compare_neon64.cc
+           dependencies/pjproject/third_party/yuv/source/compare_win.cc
+           dependencies/pjproject/third_party/yuv/source/convert.cc
+           dependencies/pjproject/third_party/yuv/source/convert_argb.cc
+           dependencies/pjproject/third_party/yuv/source/convert_from.cc
+           dependencies/pjproject/third_party/yuv/source/convert_from_argb.cc
+           dependencies/pjproject/third_party/yuv/source/convert_jpeg.cc
+           dependencies/pjproject/third_party/yuv/source/convert_to_argb.cc
+           dependencies/pjproject/third_party/yuv/source/convert_to_i420.cc
+           dependencies/pjproject/third_party/yuv/source/cpu_id.cc
+           dependencies/pjproject/third_party/yuv/source/mjpeg_decoder.cc
+           dependencies/pjproject/third_party/yuv/source/mjpeg_validate.cc
+           dependencies/pjproject/third_party/yuv/source/planar_functions.cc
+           dependencies/pjproject/third_party/yuv/source/rotate.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_any.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_argb.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_common.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_dspr2.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_gcc.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_msa.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_neon.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_neon64.cc
+           dependencies/pjproject/third_party/yuv/source/rotate_win.cc
+           dependencies/pjproject/third_party/yuv/source/row_any.cc
+           dependencies/pjproject/third_party/yuv/source/row_common.cc
+           dependencies/pjproject/third_party/yuv/source/row_dspr2.cc
+           dependencies/pjproject/third_party/yuv/source/row_gcc.cc
+           dependencies/pjproject/third_party/yuv/source/row_msa.cc
+           dependencies/pjproject/third_party/yuv/source/row_neon.cc
+           dependencies/pjproject/third_party/yuv/source/row_neon64.cc
+           dependencies/pjproject/third_party/yuv/source/row_win.cc
+           dependencies/pjproject/third_party/yuv/source/scale.cc
+           dependencies/pjproject/third_party/yuv/source/scale_any.cc
+           dependencies/pjproject/third_party/yuv/source/scale_argb.cc
+           dependencies/pjproject/third_party/yuv/source/scale_common.cc
+           dependencies/pjproject/third_party/yuv/source/scale_dspr2.cc
+           dependencies/pjproject/third_party/yuv/source/scale_gcc.cc
+           dependencies/pjproject/third_party/yuv/source/scale_msa.cc
+           dependencies/pjproject/third_party/yuv/source/scale_neon.cc
+           dependencies/pjproject/third_party/yuv/source/scale_neon64.cc
+           dependencies/pjproject/third_party/yuv/source/scale_win.cc
+           dependencies/pjproject/third_party/yuv/source/video_common.cc
+Copyright: 2004-2021 The WebRTC Project Authors.
+           2011-2016 The Liuv Project Authors.
+           2011-2021 The WebRTC project authors.
+           2012 The Liuv project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+
+Files:     dependencies/opendht/python/tools/dht/tests.py
+           dependencies/pjproject/pjnath/docs/footer.html
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/main.m
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsua.l01
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsua.loc
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsua.rss
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.l01
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/data/pjsuaContainer.loc
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/PjsuaContainerView.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsua.hrh
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsuaAppUi.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsuaApplication.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsuaContainer.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/inc/pjsuaDocument.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/src/PjsuaContainerView.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/src/pjsuaAppUi.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/src/pjsuaApplication.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/src/pjsuaContainer.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/symbian/src/pjsuaDocument.cpp
+           dependencies/pjproject/pjsip-apps/src/py_pjsua/pjsua_app.py
+           dependencies/pjproject/third_party/BaseClasses/amfilter.cpp
+           dependencies/pjproject/third_party/BaseClasses/amfilter.h
+           dependencies/pjproject/third_party/BaseClasses/amvideo.cpp
+           dependencies/pjproject/third_party/BaseClasses/amvideo2.h
+           dependencies/pjproject/third_party/BaseClasses/arithutil.cpp
+           dependencies/pjproject/third_party/BaseClasses/combase.cpp
+           dependencies/pjproject/third_party/BaseClasses/combase.h
+           dependencies/pjproject/third_party/BaseClasses/ctlutil.cpp
+           dependencies/pjproject/third_party/BaseClasses/ctlutil.h
+           dependencies/pjproject/third_party/BaseClasses/fourcc.h
+           dependencies/pjproject/third_party/BaseClasses/measure.h
+           dependencies/pjproject/third_party/BaseClasses/msgthrd.h
+           dependencies/pjproject/third_party/BaseClasses/mtype.cpp
+           dependencies/pjproject/third_party/BaseClasses/mtype.h
+           dependencies/pjproject/third_party/BaseClasses/refclock.h
+           dependencies/pjproject/third_party/BaseClasses/reftime.h
+           dependencies/pjproject/third_party/BaseClasses/renbase.cpp
+           dependencies/pjproject/third_party/BaseClasses/renbase.h
+           dependencies/pjproject/third_party/BaseClasses/seekpt.h
+           dependencies/pjproject/third_party/BaseClasses/streams.h
+           dependencies/pjproject/third_party/BaseClasses/wxdebug.cpp
+           dependencies/pjproject/third_party/BaseClasses/wxdebug.h
+           dependencies/pjproject/third_party/BaseClasses/wxlist.cpp
+           dependencies/pjproject/third_party/BaseClasses/wxlist.h
+           dependencies/pjproject/third_party/BaseClasses/wxutil.cpp
+           dependencies/pjproject/third_party/BaseClasses/wxutil.h
+           dependencies/pjproject/third_party/g7221/encode/dct4_a.c
+           dependencies/pjproject/third_party/ilbc/FrameClassify.c
+           dependencies/pjproject/third_party/ilbc/FrameClassify.h
+           dependencies/pjproject/third_party/ilbc/LPCdecode.c
+           dependencies/pjproject/third_party/ilbc/LPCdecode.h
+           dependencies/pjproject/third_party/ilbc/LPCencode.c
+           dependencies/pjproject/third_party/ilbc/LPCencode.h
+           dependencies/pjproject/third_party/ilbc/StateConstructW.c
+           dependencies/pjproject/third_party/ilbc/StateConstructW.h
+           dependencies/pjproject/third_party/ilbc/StateSearchW.c
+           dependencies/pjproject/third_party/ilbc/StateSearchW.h
+           dependencies/pjproject/third_party/ilbc/anaFilter.c
+           dependencies/pjproject/third_party/ilbc/anaFilter.h
+           dependencies/pjproject/third_party/ilbc/constants.c
+           dependencies/pjproject/third_party/ilbc/constants.h
+           dependencies/pjproject/third_party/ilbc/createCB.c
+           dependencies/pjproject/third_party/ilbc/createCB.h
+           dependencies/pjproject/third_party/ilbc/doCPLC.c
+           dependencies/pjproject/third_party/ilbc/doCPLC.h
+           dependencies/pjproject/third_party/ilbc/enhancer.c
+           dependencies/pjproject/third_party/ilbc/enhancer.h
+           dependencies/pjproject/third_party/ilbc/filter.c
+           dependencies/pjproject/third_party/ilbc/filter.h
+           dependencies/pjproject/third_party/ilbc/gainquant.c
+           dependencies/pjproject/third_party/ilbc/gainquant.h
+           dependencies/pjproject/third_party/ilbc/getCBvec.c
+           dependencies/pjproject/third_party/ilbc/getCBvec.h
+           dependencies/pjproject/third_party/ilbc/helpfun.c
+           dependencies/pjproject/third_party/ilbc/helpfun.h
+           dependencies/pjproject/third_party/ilbc/hpInput.c
+           dependencies/pjproject/third_party/ilbc/hpInput.h
+           dependencies/pjproject/third_party/ilbc/hpOutput.c
+           dependencies/pjproject/third_party/ilbc/hpOutput.h
+           dependencies/pjproject/third_party/ilbc/iCBConstruct.c
+           dependencies/pjproject/third_party/ilbc/iCBConstruct.h
+           dependencies/pjproject/third_party/ilbc/iCBSearch.c
+           dependencies/pjproject/third_party/ilbc/iCBSearch.h
+           dependencies/pjproject/third_party/ilbc/iLBC_decode.c
+           dependencies/pjproject/third_party/ilbc/iLBC_decode.h
+           dependencies/pjproject/third_party/ilbc/iLBC_define.h
+           dependencies/pjproject/third_party/ilbc/iLBC_encode.c
+           dependencies/pjproject/third_party/ilbc/iLBC_encode.h
+           dependencies/pjproject/third_party/ilbc/iLBC_test.c
+           dependencies/pjproject/third_party/ilbc/lsf.c
+           dependencies/pjproject/third_party/ilbc/lsf.h
+           dependencies/pjproject/third_party/ilbc/packing.c
+           dependencies/pjproject/third_party/ilbc/packing.h
+           dependencies/pjproject/third_party/ilbc/syntFilter.c
+           dependencies/pjproject/third_party/ilbc/syntFilter.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_bits.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_buffer.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_callbacks.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_echo.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_header.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_jitter.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_preprocess.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_resampler.h
+           dependencies/pjproject/third_party/speex/include/speex/speex_stereo.h
+           dependencies/pjproject/third_party/speex/libspeex/bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/bits.c
+           dependencies/pjproject/third_party/speex/libspeex/cb_search.c
+           dependencies/pjproject/third_party/speex/libspeex/cb_search.h
+           dependencies/pjproject/third_party/speex/libspeex/cb_search_arm4.h
+           dependencies/pjproject/third_party/speex/libspeex/cb_search_sse.h
+           dependencies/pjproject/third_party/speex/libspeex/exc_10_16_table.c
+           dependencies/pjproject/third_party/speex/libspeex/exc_10_32_table.c
+           dependencies/pjproject/third_party/speex/libspeex/exc_20_32_table.c
+           dependencies/pjproject/third_party/speex/libspeex/exc_5_256_table.c
+           dependencies/pjproject/third_party/speex/libspeex/exc_5_64_table.c
+           dependencies/pjproject/third_party/speex/libspeex/exc_8_128_table.c
+           dependencies/pjproject/third_party/speex/libspeex/filters_arm4.h
+           dependencies/pjproject/third_party/speex/libspeex/filters_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/filters_sse.h
+           dependencies/pjproject/third_party/speex/libspeex/fixed_arm4.h
+           dependencies/pjproject/third_party/speex/libspeex/fixed_arm5e.h
+           dependencies/pjproject/third_party/speex/libspeex/fixed_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/fixed_debug.h
+           dependencies/pjproject/third_party/speex/libspeex/fixed_generic.h
+           dependencies/pjproject/third_party/speex/libspeex/gain_table.c
+           dependencies/pjproject/third_party/speex/libspeex/gain_table_lbr.c
+           dependencies/pjproject/third_party/speex/libspeex/hexc_10_32_table.c
+           dependencies/pjproject/third_party/speex/libspeex/hexc_table.c
+           dependencies/pjproject/third_party/speex/libspeex/high_lsp_tables.c
+           dependencies/pjproject/third_party/speex/libspeex/jitter.c
+           dependencies/pjproject/third_party/speex/libspeex/lpc_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/lsp_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/lsp_tables_nb.c
+           dependencies/pjproject/third_party/speex/libspeex/ltp_arm4.h
+           dependencies/pjproject/third_party/speex/libspeex/ltp_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/ltp_sse.h
+           dependencies/pjproject/third_party/speex/libspeex/math_approx.h
+           dependencies/pjproject/third_party/speex/libspeex/misc_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/nb_celp.c
+           dependencies/pjproject/third_party/speex/libspeex/nb_celp.h
+           dependencies/pjproject/third_party/speex/libspeex/os_support.h
+           dependencies/pjproject/third_party/speex/libspeex/quant_lsp.c
+           dependencies/pjproject/third_party/speex/libspeex/quant_lsp.h
+           dependencies/pjproject/third_party/speex/libspeex/quant_lsp_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/resample_neon.h
+           dependencies/pjproject/third_party/speex/libspeex/resample_sse.h
+           dependencies/pjproject/third_party/speex/libspeex/sb_celp.c
+           dependencies/pjproject/third_party/speex/libspeex/sb_celp.h
+           dependencies/pjproject/third_party/speex/libspeex/speex_callbacks.c
+           dependencies/pjproject/third_party/speex/libspeex/speex_header.c
+           dependencies/pjproject/third_party/speex/libspeex/stack_alloc.h
+           dependencies/pjproject/third_party/speex/libspeex/vorbis_psy.c
+           dependencies/pjproject/third_party/speex/libspeex/vorbis_psy.h
+           dependencies/pjproject/third_party/speex/libspeex/vq_arm4.h
+           dependencies/pjproject/third_party/speex/libspeex/vq_bfin.h
+           dependencies/pjproject/third_party/speex/libspeex/vq_sse.h
+           dependencies/pjproject/third_party/threademulation/src/ThreadEmulation.cpp
+Copyright: 1992-2004 Microsoft Corporation.
+           2002 Jean-Marc Valin & David Rowe
+           2002-2008 Jean-Marc Valin
+           2003 Epic Games  Jean-Marc Valin
+           2003-2007 Benny Prijono <benny@prijono.org>
+           2004 Polycom, Inc.
+           2005 Jean-Marc Valin, CSIRO, Christopher Montgomery
+           2005-2009 Analog Devices
+           2006 David Rowe
+           2006-2009 Teluu Inc. </center>
+           2008 Thorvald Natvig
+           2011 Texas Instruments
+           2013 Teluu.
+           2015-2023 Savoir-Faire Linux Inc. Author(s): Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <sim.desaulniers@gmail.com>
+           : Copyright (C) 2013 Teluu Inc. (http://www.teluu.com) Description :
+           The Internet Society (2004).
+License:   __NO_LICENSE__
+
+Files:     dependencies/install/include/opendht.h
+           dependencies/install/include/opendht/callbacks.h
+           dependencies/install/include/opendht/crypto.h
+           dependencies/install/include/opendht/crypto/secure_vector.h
+           dependencies/install/include/opendht/default_types.h
+           dependencies/install/include/opendht/dht.h
+           dependencies/install/include/opendht/dht_interface.h
+           dependencies/install/include/opendht/dht_proxy_client.h
+           dependencies/install/include/opendht/dht_proxy_server.h
+           dependencies/install/include/opendht/dhtrunner.h
+           dependencies/install/include/opendht/http.h
+           dependencies/install/include/opendht/indexation/pht.h
+           dependencies/install/include/opendht/infohash.h
+           dependencies/install/include/opendht/log.h
+           dependencies/install/include/opendht/logger.h
+           dependencies/install/include/opendht/network_engine.h
+           dependencies/install/include/opendht/network_utils.h
+           dependencies/install/include/opendht/node.h
+           dependencies/install/include/opendht/node_cache.h
+           dependencies/install/include/opendht/node_export.h
+           dependencies/install/include/opendht/peer_discovery.h
+           dependencies/install/include/opendht/proxy.h
+           dependencies/install/include/opendht/rate_limiter.h
+           dependencies/install/include/opendht/rng.h
+           dependencies/install/include/opendht/routing_table.h
+           dependencies/install/include/opendht/scheduler.h
+           dependencies/install/include/opendht/securedht.h
+           dependencies/install/include/opendht/sockaddr.h
+           dependencies/install/include/opendht/utils.h
+           dependencies/install/include/opendht/value.h
+           dependencies/opendht/c/opendht.cpp
+           dependencies/opendht/c/opendht_c.h
+           dependencies/opendht/include/opendht.h
+           dependencies/opendht/include/opendht/callbacks.h
+           dependencies/opendht/include/opendht/crypto.h
+           dependencies/opendht/include/opendht/crypto/secure_vector.h
+           dependencies/opendht/include/opendht/default_types.h
+           dependencies/opendht/include/opendht/dht.h
+           dependencies/opendht/include/opendht/dht_interface.h
+           dependencies/opendht/include/opendht/dht_proxy_client.h
+           dependencies/opendht/include/opendht/dht_proxy_server.h
+           dependencies/opendht/include/opendht/dhtrunner.h
+           dependencies/opendht/include/opendht/http.h
+           dependencies/opendht/include/opendht/indexation/pht.h
+           dependencies/opendht/include/opendht/infohash.h
+           dependencies/opendht/include/opendht/log.h
+           dependencies/opendht/include/opendht/logger.h
+           dependencies/opendht/include/opendht/network_engine.h
+           dependencies/opendht/include/opendht/network_utils.h
+           dependencies/opendht/include/opendht/node.h
+           dependencies/opendht/include/opendht/node_cache.h
+           dependencies/opendht/include/opendht/node_export.h
+           dependencies/opendht/include/opendht/peer_discovery.h
+           dependencies/opendht/include/opendht/proxy.h
+           dependencies/opendht/include/opendht/rate_limiter.h
+           dependencies/opendht/include/opendht/rng.h
+           dependencies/opendht/include/opendht/routing_table.h
+           dependencies/opendht/include/opendht/scheduler.h
+           dependencies/opendht/include/opendht/securedht.h
+           dependencies/opendht/include/opendht/sockaddr.h
+           dependencies/opendht/include/opendht/utils.h
+           dependencies/opendht/include/opendht/value.h
+           dependencies/opendht/rust/examples/dhtnode.rs
+           dependencies/opendht/rust/src/blob.rs
+           dependencies/opendht/rust/src/crypto.rs
+           dependencies/opendht/rust/src/dhtrunner.rs
+           dependencies/opendht/rust/src/ffi.rs
+           dependencies/opendht/rust/src/infohash.rs
+           dependencies/opendht/rust/src/lib.rs
+           dependencies/opendht/rust/src/pkid.rs
+           dependencies/opendht/rust/src/value.rs
+           dependencies/opendht/src/base64.cpp
+           dependencies/opendht/src/base64.h
+           dependencies/opendht/src/callbacks.cpp
+           dependencies/opendht/src/compat/os_cert.cpp
+           dependencies/opendht/src/compat/os_cert.h
+           dependencies/opendht/src/crypto.cpp
+           dependencies/opendht/src/default_types.cpp
+           dependencies/opendht/src/dht.cpp
+           dependencies/opendht/src/dht_proxy_client.cpp
+           dependencies/opendht/src/dht_proxy_server.cpp
+           dependencies/opendht/src/dhtrunner.cpp
+           dependencies/opendht/src/http.cpp
+           dependencies/opendht/src/indexation/pht.cpp
+           dependencies/opendht/src/listener.h
+           dependencies/opendht/src/log.cpp
+           dependencies/opendht/src/net.h
+           dependencies/opendht/src/network_engine.cpp
+           dependencies/opendht/src/network_utils.cpp
+           dependencies/opendht/src/node.cpp
+           dependencies/opendht/src/node_cache.cpp
+           dependencies/opendht/src/op_cache.cpp
+           dependencies/opendht/src/op_cache.h
+           dependencies/opendht/src/parsed_message.h
+           dependencies/opendht/src/peer_discovery.cpp
+           dependencies/opendht/src/request.h
+           dependencies/opendht/src/routing_table.cpp
+           dependencies/opendht/src/search.h
+           dependencies/opendht/src/securedht.cpp
+           dependencies/opendht/src/storage.h
+           dependencies/opendht/src/utils.cpp
+           dependencies/opendht/src/value.cpp
+           dependencies/opendht/src/value_cache.h
+           dependencies/opendht/tests/cryptotester.cpp
+           dependencies/opendht/tests/cryptotester.h
+           dependencies/opendht/tests/dhtproxy_stress_tester.cpp
+           dependencies/opendht/tests/dhtproxy_stress_tester.h
+           dependencies/opendht/tests/dhtproxytester.cpp
+           dependencies/opendht/tests/dhtproxytester.h
+           dependencies/opendht/tests/dhtrunnertester.cpp
+           dependencies/opendht/tests/dhtrunnertester.h
+           dependencies/opendht/tests/httptester.cpp
+           dependencies/opendht/tests/httptester.h
+           dependencies/opendht/tests/infohashtester.cpp
+           dependencies/opendht/tests/infohashtester.h
+           dependencies/opendht/tests/peerdiscoverytester.cpp
+           dependencies/opendht/tests/peerdiscoverytester.h
+           dependencies/opendht/tests/threadpooltester.cpp
+           dependencies/opendht/tests/threadpooltester.h
+           dependencies/opendht/tests/valuetester.cpp
+           dependencies/opendht/tests/valuetester.h
+           dependencies/opendht/tools/dhtchat.cpp
+           dependencies/opendht/tools/dhtcnode.c
+           dependencies/opendht/tools/dhtnode.cpp
+           dependencies/opendht/tools/dhtscanner.cpp
+           dependencies/opendht/tools/durl.cpp
+           dependencies/opendht/tools/perftest.cpp
+Copyright: 2014-2023 Savoir-faire Linux Inc. Author(s) : Adrien Béraud <adrien.beraud@savoirfairelinux.com>
+           2014-2023 Savoir-faire Linux Inc. Author(s) : Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <simon.desaulniers@savoirfairelinux.com>
+           2014-2023 Savoir-faire Linux Inc. Author(s) : Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <simon.desaulniers@savoirfairelinux.com> Nicolas Reynaud <nicolas.reynaud@savoirfairelinux.com>
+           2014-2023 Savoir-faire Linux Inc. Author(s) : Mingrui Zhang <mingrui.zhang@savoirfairelinux.com> Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com>
+           2014-2023 Savoir-faire Linux Inc. Author(s) : Mingrui Zhang <mingrui.zhang@savoirfairelinux.com> Vsevolod Ivanov <vsevolod.ivanov@savoirfairelinux.com> Adrien Béraud <adrien.beraud@savoirfairelinux.com>
+           2014-2024 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     include/certstore.h
+           include/connectionmanager.h
+           include/diffie-hellman.h
+           include/fileutils.h
+           include/generic_io.h
+           include/ice_options.h
+           include/ice_socket.h
+           include/ice_transport.h
+           include/ice_transport_factory.h
+           include/ip_utils.h
+           include/multiplexed_socket.h
+           include/pj_init_lock.h
+           include/string_utils.h
+           include/tls_session.h
+           include/turn_cache.h
+           include/turn_params.h
+           include/upnp/mapping.h
+           include/upnp/upnp_context.h
+           include/upnp/upnp_control.h
+           src/connectionmanager.cpp
+           src/fileutils.cpp
+           src/ice_transport.cpp
+           src/ip_utils.cpp
+           src/multiplexed_socket.cpp
+           src/peer_connection.cpp
+           src/peer_connection.h
+           src/security/certstore.cpp
+           src/security/diffie-hellman.cpp
+           src/security/security_const.h
+           src/security/threadloop.cpp
+           src/security/threadloop.h
+           src/security/tls_session.cpp
+           src/sip_utils.h
+           src/string_utils.cpp
+           src/tracepoint/trace-tools.h
+           src/tracepoint/tracepoint.h
+           src/transport/peer_channel.h
+           src/turn/turn_cache.cpp
+           src/turn/turn_transport.cpp
+           src/turn/turn_transport.h
+           src/upnp/protocol/igd.cpp
+           src/upnp/protocol/igd.h
+           src/upnp/protocol/mapping.cpp
+           src/upnp/protocol/natpmp/nat_pmp.cpp
+           src/upnp/protocol/natpmp/nat_pmp.h
+           src/upnp/protocol/natpmp/pmp_igd.cpp
+           src/upnp/protocol/natpmp/pmp_igd.h
+           src/upnp/protocol/pupnp/pupnp.cpp
+           src/upnp/protocol/pupnp/pupnp.h
+           src/upnp/protocol/pupnp/upnp_igd.cpp
+           src/upnp/protocol/pupnp/upnp_igd.h
+           src/upnp/protocol/upnp_protocol.h
+           src/upnp/upnp_context.cpp
+           src/upnp/upnp_control.cpp
+           tools/common.cpp
+           tools/common.h
+           tools/dhtnet_crtmgr/dhtnet_crtmgr.cpp
+           tools/dhtnet_crtmgr/dhtnet_crtmgr.h
+           tools/dhtnet_crtmgr/main.cpp
+           tools/dnc/dnc.cpp
+           tools/dnc/dnc.h
+           tools/dnc/main.cpp
+           tools/dsh/dsh.cpp
+           tools/dsh/dsh.h
+           tools/dsh/main.cpp
+           tools/dvpn/dvpn.cpp
+           tools/dvpn/dvpn.h
+           tools/dvpn/main.cpp
+           tools/peerdiscovery/peerDiscovery.cpp
+Copyright: 2004-2024 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/pjproject/third_party/gsm/README
+           dependencies/pjproject/third_party/gsm/add-test/add_test.c
+           dependencies/pjproject/third_party/gsm/inc/config.h
+           dependencies/pjproject/third_party/gsm/inc/private.h
+           dependencies/pjproject/third_party/gsm/inc/proto.h
+           dependencies/pjproject/third_party/gsm/inc/toast.h
+           dependencies/pjproject/third_party/gsm/inc/unproto.h
+           dependencies/pjproject/third_party/gsm/man/bitter.1
+           dependencies/pjproject/third_party/gsm/man/gsm.3
+           dependencies/pjproject/third_party/gsm/man/gsm_explode.3
+           dependencies/pjproject/third_party/gsm/man/gsm_option.3
+           dependencies/pjproject/third_party/gsm/man/gsm_print.3
+           dependencies/pjproject/third_party/gsm/man/toast.1
+           dependencies/pjproject/third_party/gsm/src/add.c
+           dependencies/pjproject/third_party/gsm/src/code.c
+           dependencies/pjproject/third_party/gsm/src/debug.c
+           dependencies/pjproject/third_party/gsm/src/decode.c
+           dependencies/pjproject/third_party/gsm/src/gsm_create.c
+           dependencies/pjproject/third_party/gsm/src/gsm_decode.c
+           dependencies/pjproject/third_party/gsm/src/gsm_destroy.c
+           dependencies/pjproject/third_party/gsm/src/gsm_encode.c
+           dependencies/pjproject/third_party/gsm/src/gsm_explode.c
+           dependencies/pjproject/third_party/gsm/src/gsm_implode.c
+           dependencies/pjproject/third_party/gsm/src/gsm_option.c
+           dependencies/pjproject/third_party/gsm/src/gsm_print.c
+           dependencies/pjproject/third_party/gsm/src/long_term.c
+           dependencies/pjproject/third_party/gsm/src/lpc.c
+           dependencies/pjproject/third_party/gsm/src/preprocess.c
+           dependencies/pjproject/third_party/gsm/src/rpe.c
+           dependencies/pjproject/third_party/gsm/src/short_term.c
+           dependencies/pjproject/third_party/gsm/src/table.c
+           dependencies/pjproject/third_party/gsm/src/toast.c
+           dependencies/pjproject/third_party/gsm/src/toast_alaw.c
+           dependencies/pjproject/third_party/gsm/src/toast_audio.c
+           dependencies/pjproject/third_party/gsm/src/toast_lin.c
+           dependencies/pjproject/third_party/gsm/src/toast_ulaw.c
+           dependencies/pjproject/third_party/gsm/tls/bitter.c
+           dependencies/pjproject/third_party/gsm/tls/sweet.c
+           dependencies/pjproject/third_party/gsm/tls/taste.c
+           dependencies/pjproject/third_party/gsm/tst/cod2lin.c
+           dependencies/pjproject/third_party/gsm/tst/cod2txt.c
+           dependencies/pjproject/third_party/gsm/tst/gsm2cod.c
+           dependencies/pjproject/third_party/gsm/tst/lin2cod.c
+           dependencies/pjproject/third_party/gsm/tst/lin2txt.c
+           dependencies/pjproject/third_party/gsm/tst/run
+Copyright: 1992-1995 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+
+Files:     dependencies/pjproject/third_party/srtp/crypto/cipher/aes.c
+           dependencies/pjproject/third_party/srtp/crypto/cipher/aes_gcm_ossl.c
+           dependencies/pjproject/third_party/srtp/crypto/cipher/aes_icm.c
+           dependencies/pjproject/third_party/srtp/crypto/cipher/aes_icm_ossl.c
+           dependencies/pjproject/third_party/srtp/crypto/cipher/cipher.c
+           dependencies/pjproject/third_party/srtp/crypto/cipher/null_cipher.c
+           dependencies/pjproject/third_party/srtp/crypto/hash/auth.c
+           dependencies/pjproject/third_party/srtp/crypto/hash/hmac.c
+           dependencies/pjproject/third_party/srtp/crypto/hash/hmac_ossl.c
+           dependencies/pjproject/third_party/srtp/crypto/hash/null_auth.c
+           dependencies/pjproject/third_party/srtp/crypto/hash/sha1.c
+           dependencies/pjproject/third_party/srtp/crypto/include/aes.h
+           dependencies/pjproject/third_party/srtp/crypto/include/aes_gcm_ossl.h
+           dependencies/pjproject/third_party/srtp/crypto/include/aes_icm.h
+           dependencies/pjproject/third_party/srtp/crypto/include/aes_icm_ossl.h
+           dependencies/pjproject/third_party/srtp/crypto/include/alloc.h
+           dependencies/pjproject/third_party/srtp/crypto/include/auth.h
+           dependencies/pjproject/third_party/srtp/crypto/include/cipher.h
+           dependencies/pjproject/third_party/srtp/crypto/include/crypto_kernel.h
+           dependencies/pjproject/third_party/srtp/crypto/include/crypto_types.h
+           dependencies/pjproject/third_party/srtp/crypto/include/datatypes.h
+           dependencies/pjproject/third_party/srtp/crypto/include/err.h
+           dependencies/pjproject/third_party/srtp/crypto/include/hmac.h
+           dependencies/pjproject/third_party/srtp/crypto/include/integers.h
+           dependencies/pjproject/third_party/srtp/crypto/include/key.h
+           dependencies/pjproject/third_party/srtp/crypto/include/null_auth.h
+           dependencies/pjproject/third_party/srtp/crypto/include/null_cipher.h
+           dependencies/pjproject/third_party/srtp/crypto/include/rdb.h
+           dependencies/pjproject/third_party/srtp/crypto/include/rdbx.h
+           dependencies/pjproject/third_party/srtp/crypto/include/sha1.h
+           dependencies/pjproject/third_party/srtp/crypto/include/stat.h
+           dependencies/pjproject/third_party/srtp/crypto/kernel/alloc.c
+           dependencies/pjproject/third_party/srtp/crypto/kernel/crypto_kernel.c
+           dependencies/pjproject/third_party/srtp/crypto/kernel/err.c
+           dependencies/pjproject/third_party/srtp/crypto/kernel/key.c
+           dependencies/pjproject/third_party/srtp/crypto/math/datatypes.c
+           dependencies/pjproject/third_party/srtp/crypto/math/stat.c
+           dependencies/pjproject/third_party/srtp/crypto/replay/rdb.c
+           dependencies/pjproject/third_party/srtp/crypto/replay/rdbx.c
+           dependencies/pjproject/third_party/srtp/crypto/replay/ut_sim.c
+           dependencies/pjproject/third_party/srtp/include/getopt_s.h
+           dependencies/pjproject/third_party/srtp/include/srtp.h
+           dependencies/pjproject/third_party/srtp/include/srtp_priv.h
+           dependencies/pjproject/third_party/srtp/include/ut_sim.h
+           dependencies/pjproject/third_party/srtp/srtp/ekt.c
+Copyright: 2001-2017 Cisco Systems, Inc.
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ .
+ Neither the name of the Cisco Systems, Inc. nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/config.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/const_init.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/atomic_hook.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/identity.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/inline_variable.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/invoke.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/raw_logging.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/throw_delegate.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/throw_delegate.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/log_severity.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/log_severity.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/macros.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/optimization.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/options.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/policy_checks.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/memory/memory.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/meta/type_traits.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/strings/string_view.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/strings/string_view.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/types/bad_optional_access.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/types/bad_optional_access.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/types/internal/optional.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/absl/types/optional.h
+Copyright: 2017-2019 The Abseil Authors.
+License:   Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ https://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache License Version 2.0
+  can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+Files:     dependencies/pjproject/pjlib-util/src/pjlib-util/resolver_wrap.cpp
+           dependencies/pjproject/pjlib-util/src/pjlib-util/xml_wrap.cpp
+           dependencies/pjproject/pjlib/src/pjlib-test/exception_wrap.cpp
+           dependencies/pjproject/pjlib/src/pjlib-test/pool_wrap.cpp
+           dependencies/pjproject/pjlib/src/pjlib-test/test_wrap.cpp
+           dependencies/pjproject/pjmedia/src/pjmedia/sdp_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_auth_parser_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_dialog_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_endpoint_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_parser_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_tel_uri_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_transport_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_util_proxy_wrap.cpp
+           dependencies/pjproject/pjsip/src/pjsip/sip_util_wrap.cpp
+Copyright: 2009-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is a C++ wrapper, see ticket #886 for details.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/AppServiceHelper.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Helpers/VoipCallHelper.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/MainPage.xaml.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/pch.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/pch.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipHost/VoipHost.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/AppService.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/BackgroundOperations/BackgroundOperations.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/CallRtcTask.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/Current.cs
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipTasks/Helpers/VccCallHelper.cs
+Copyright: Microsoft.
+License:   __UNKNOWN__
+ This code is licensed under the MIT License (MIT).
+ THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
+ ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
+ IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
+ PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
+ .
+ *********************************************************
+
+Files:     dependencies/opendht/python/tools/benchmark.py
+           dependencies/opendht/python/tools/dht/network.py
+           dependencies/opendht/python/tools/dht/virtual_network_builder.py
+           dependencies/opendht/python/tools/dhtcluster.py
+           dependencies/opendht/python/tools/http_server.py
+           dependencies/opendht/python/tools/network_monitor.py
+           dependencies/opendht/python/tools/scanner.py
+Copyright: 2014-2023 Savoir-faire Linux Inc. Author(s): Adrien Béraud <adrien.beraud@savoirfairelinux.com>
+           2014-2023 Savoir-faire Linux Inc. Author(s): Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <sim.desaulniers@gmail.com>
+           2015-2023 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/filters.c
+           dependencies/pjproject/third_party/speex/libspeex/lsp.c
+           dependencies/pjproject/third_party/speex/libspeex/lsp.h
+           dependencies/pjproject/third_party/speex/libspeex/ltp.c
+           dependencies/pjproject/third_party/speex/libspeex/stereo.c
+           dependencies/pjproject/third_party/speex/libspeex/vq.c
+           dependencies/pjproject/third_party/speex/libspeex/window.c
+Copyright: 2002 Jean-Marc Valin File: stereo.c
+           2002 Jean-Marc Valin File: vq.c Vector quantization
+           2002-2006 Jean-Marc Valin File: filters.c Various analysis/synthesis filters
+           2002-2006 Jean-Marc Valin File: ltp.c Long-Term Prediction functions
+           2006 Jean-Marc Valin File: window.c
+           __NO_COPYRIGHT__ in: dependencies/pjproject/third_party/speex/libspeex/lsp.c
+           __NO_COPYRIGHT__ in: dependencies/pjproject/third_party/speex/libspeex/lsp.h
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-codec/g722/g722_dec.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g722/g722_dec.h
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g722/g722_enc.c
+           dependencies/pjproject/pjmedia/src/pjmedia-codec/g722/g722_enc.h
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Based on implementation found in Carnegie Mellon Speech Group Software
+ depository (ftp://ftp.cs.cmu.edu/project/fgdata/index.html). No copyright
+ was claimed in the original source codes.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/include/spl_inl.h
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/include/spl_inl_mips.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/include/spl_inl.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/include/spl_inl_mips.h
+Copyright: 2011-2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This header file includes the inline functions in
+ the fix point signal processing library.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler_neon.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler_sse.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler_unittest.cc
+Copyright: 2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Modified from the Chromium original:
+
+Files:     dependencies/opendht/build/_deps/llhttp-local-src/LICENSE-MIT
+           dependencies/restinio/LICENSE.fmtlib
+           dependencies/restinio/LICENSE.llhttp
+Copyright: 2012 present, Victor Zverovich and {fmt} contributors
+           2018 Fedor Indutny,
+License:   Expat
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to permit
+ persons to whom the Software is furnished to do so, subject to the
+ following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Files:     dependencies/install/include/pjmedia/jbuf.h
+           dependencies/pjproject/pjmedia/include/pjmedia/jbuf.h
+           dependencies/pjproject/pjmedia/src/pjmedia/jbuf.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Based on implementation kindly contributed by Switchlab, Ltd.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/install/include/opendht/thread_pool.h
+           dependencies/opendht/include/opendht/thread_pool.h
+           dependencies/opendht/src/thread_pool.cpp
+Copyright: 2014-2023 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/build.py
+           dependencies/opendht/src/compat/msvc/unistd.h
+           dependencies/opendht/tests/tests_runner.cpp
+Copyright: 2014-2024 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/pjproject/third_party/gsm/tls/bitter.dta
+           dependencies/pjproject/third_party/gsm/tls/sour1.dta
+           dependencies/pjproject/third_party/gsm/tls/sour2.dta
+Copyright: 1992 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ Variable     Size
+
+Files:     dependencies/msgpack/LICENSE_1_0.txt
+           dependencies/restinio/LICENSE.catch2
+           dependencies/restinio/LICENSE.expected-lite
+Copyright: __NO_COPYRIGHT__ in: dependencies/msgpack/LICENSE_1_0.txt
+           __NO_COPYRIGHT__ in: dependencies/restinio/LICENSE.catch2
+           __NO_COPYRIGHT__ in: dependencies/restinio/LICENSE.expected-lite
+License:   __UNKNOWN__
+ Permission is hereby granted, free of charge, to any person or organization
+ obtaining a copy of the software and accompanying documentation covered by
+ this license (the "Software") to use, reproduce, display, distribute,
+ execute, and transmit the Software, and to prepare derivative works of the
+ Software, and to permit third-parties to whom the Software is furnished to
+ do so, all subject to the following:
+ .
+ The copyright notices in the Software and this entire statement, including
+ the above license grant, this restriction and the following disclaimer,
+ must be included in all copies of the Software, in whole or in part, and
+ all derivative works of the Software, unless such copies or derivative
+ works are solely in the form of machine-executable object code generated by
+ a source language processor.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/BUILD.gn
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_256/fft4g.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/spl_sqrt_floor/BUILD.gn
+Copyright: 2018-2020 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the ../../../LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/_kiss_fft_guts.h
+           dependencies/pjproject/third_party/speex/libspeex/kiss_fft.c
+           dependencies/pjproject/third_party/speex/libspeex/kiss_fftr.c
+Copyright: 2003-2004 Mark Borgerding
+           2005-2007 Jean-Marc Valin
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+ .
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+ * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/mp3/mp3_port.h
+           dependencies/pjproject/third_party/mp3/mp3_writer.c
+Copyright: 2003-2007 Benny Prijono <benny@prijono.org>
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Contributed by:
+ Toni < buldozer at aufbix dot org >
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib-util/src/pjlib-util/scanner_cis_bitwise.c
+           dependencies/pjproject/pjlib-util/src/pjlib-util/scanner_cis_uint.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ THIS FILE IS INCLUDED BY scanner.c.
+ DO NOT COMPILE THIS FILE ALONE!
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/install/include/pj/list_i.h
+           dependencies/pjproject/pjlib/include/pj/list_i.h
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Internal
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/install/include/pj/compat/os_rtems.h
+           dependencies/pjproject/pjlib/include/pj/compat/os_rtems.h
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Thanks Zetron, Inc and Phil Torre <ptorre@zetron.com> for donating PJLIB
+ port to RTEMS.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/install/include/pjmedia-codec/opus.h
+           dependencies/pjproject/pjmedia/include/pjmedia-codec/opus.h
+Copyright: 2012-2015 Zaark Technology AB
+           2015-2016 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is the header of Opus codec wrapper and was contributed by
+ Zaark Technology AB
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/opendht/python/opendht_cpp.pxd
+           dependencies/opendht/python/tools/pingpong.py
+Copyright: 2015-2023 Savoir-faire Linux Inc.
+           2015-2023 Savoir-faire Linux Inc. Author(s): Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <sim.desaulniers@gmail.com>
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/install/include/pjlib-util/getopt.h
+           dependencies/pjproject/pjlib-util/include/pjlib-util/getopt.h
+Copyright: 1989-1998 Free Software Foundation, Inc.
+License:   LGPL-2.0+
+ This file is part of the GNU C Library.
+ .
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+ .
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Library General Public License for more details.
+ .
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB.  If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU Library General Public License
+ Version 2 can be found in `/usr/share/common-licenses/LGPL-2'.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/copy_set_operations.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/min_max_operations.c
+Copyright: 2011-2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the implementation of functions
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_by_2_internal.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_by_2_internal.h
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This header file contains some internal resampling functions.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Performs delay estimation on binary converted spectra.
+ The return value is  0 - OK and -1 - Error, unless otherwise stated.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator_wrapper.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator_wrapper.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Performs delay estimation on block by block basis.
+ The return value is  0 - OK and -1 - Error, unless otherwise stated.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/typedefs.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/system/arch.h
+Copyright: 2012-2018 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains platform-specific typedefs and defines.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_rdft_neon.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft_neon.cc
+Copyright: 2014 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ The rdft AEC algorithm, neon version of speed-critical functions.
+ .
+ Based on the sse2 version.
+
+Files:     dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Reachability.h
+           dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Reachability.m
+Copyright: 2016 Apple Inc. See LICENSE.txt for this sample’s licensing information
+License:   __UNKNOWN__
+ Abstract:
+ Basic demonstration of how to use the SystemConfiguration Reachablity APIs.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core_mips.c
+Copyright: 2012-2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ The core AEC algorithm, which is presented with time-aligned signals.
+
+Files:     dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/ApiLock.cpp
+           dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/VoipBackEnd/ApiLock.h
+Copyright: 2012 Microsoft Corporation.
+License:   __UNKNOWN__
+ Use of this sample source code is subject to the terms of the Microsoft license
+ agreement under which you licensed this sample source code and is provided AS-IS.
+ If you did not accept the terms of the license agreement, you are not authorized
+ to use this sample source code.  For the terms of the license, please see the
+ license agreement between you and Microsoft.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/ring_buffer.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/ring_buffer.h
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ A ring buffer to hold arbitrary data. Provides no thread safety. Unless
+ otherwise specified, functions return 0 on success and -1 on error.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/fft4g.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_256/fft4g.cc
+Copyright: 1996-2001 Takuya OOURA,
+License:   __UNKNOWN__
+ You may use, copy, modify and distribute this code for any purpose (include
+ commercial use) and without fee. Please refer to this package when you modify
+ this code.
+ .
+ Changes:
+ Trivial type modifications by the WebRTC authors.
+ .
+ Fast Fourier/Cosine/Sine Transform
+ dimension   :one
+ data length :power of 2
+ decimation  :frequency
+ radix       :4, 2
+ data        :inplace
+ table       :use
+ functions
+ cdft: Complex Discrete Fourier Transform
+ rdft: Real Discrete Fourier Transform
+ ddct: Discrete Cosine Transform
+ ddst: Discrete Sine Transform
+ dfct: Cosine Transform of RDFT (Real Symmetric DFT)
+ dfst: Sine Transform of RDFT (Real Anti-symmetric DFT)
+ function prototypes
+ void cdft(int, int, float *, int *, float *);
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/include/signal_processing_library.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/include/signal_processing_library.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This header file includes all of the fix point signal processing library (SPL) function
+ descriptions and declarations.
+ For specific function calls, see bottom of file.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/include/spl_inl_armv7.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/include/spl_inl_armv7.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This header file includes the inline functions for ARM processors in
+ the fix point signal processing library.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/splitting_filter.c
+           dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/signal_processing/splitting_filter2.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the splitting filter functions.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/system_wrappers/source/cpu_features.cc
+           dependencies/pjproject/third_party/webrtc_aec3/src/system_wrappers/source/cpu_features2.cc
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Parts of this file derived from Chromium's base/cpu.cc.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_by_2.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_by_2_mips.c
+Copyright: 2011-2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the resampling by two functions.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/utility/delay_estimator_internal.h
+           dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/utility/delay_estimator_internal.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Header file including the delay estimator handle used for testing.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/vector_scaling_operations.c
+           dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/vector_scaling_operations_mips.c
+Copyright: 2012-2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains implementations of the functions
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/fftwrap.c
+           dependencies/pjproject/third_party/speex/libspeex/fftwrap.h
+Copyright: 2005 Jean-Marc Valin File: fftwrap.h
+           2005-2006 Jean-Marc Valin File: fftwrap.c
+License:   BSD-3-Clause
+ Wrapper for various FFTs
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/filterbank.c
+           dependencies/pjproject/third_party/speex/libspeex/filterbank.h
+Copyright: 2006 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Converting between psd and filterbank
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/include/speex/speex.h
+           dependencies/pjproject/third_party/speex/libspeex/modes.h
+Copyright: 2002-2006 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Describes the different modes of the codec
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/install-sh
+Copyright: 1991 the Massachusetts Institute of Technology
+License:   ISC
+ Permission to use, copy, modify, distribute, and sell this software and its
+ documentation for any purpose is hereby granted without fee, provided that
+ the above copyright notice appear in all copies and that both that
+ copyright notice and this permission notice appear in supporting
+ documentation, and that the name of M.I.T. not be used in advertising or
+ publicity pertaining to distribution of the software without specific,
+ written prior permission.  M.I.T. makes no representations about the
+ suitability of this software for any purpose.  It is provided "as is"
+ without express or implied warranty.
+ .
+ Calling this script install-sh is preferred over install.sh, to prevent
+ `make' implicit rules from creating a file called install from it
+ when there is no Makefile.
+ .
+ This script is compatible with the BSD install script, but was written
+ from scratch.  It can only install one file at a time, a restriction
+ shared with many OS's install programs.
+ .
+ set DOITPROG to echo to test this script
+ .
+ Don't use :- since 4.3BSD and earlier shells don't like it.
+
+Files:     dependencies/restinio/LICENSE.zlib
+Copyright: 1995-2017 Jean-loup Gailly and Mark Adler
+License:   Zlib
+ This software is provided 'as-is', without any express or implied
+ warranty.  In no event will the authors be held liable for any damages
+ arising from the use of this software.
+ .
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+ .
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+ .
+ Jean-loup Gailly        Mark Adler
+ jloup@gzip.org          madler@alumni.caltech.edu
+ .
+ If you use the zlib library in a product, we would appreciate *not* receiving
+ lengthy legal documents to sign.  The sources are provided for free but without
+ warranty of any kind.  The library has been entirely written by Jean-loup
+ Gailly and Mark Adler; it does not include third-party code.
+ .
+ If you redistribute modified sources, we would appreciate that you include in
+ the file ChangeLog history information documenting your changes.  Please read
+ the FAQ for more information on the distribution of modified source versions.
+
+Files:     dependencies/opendht/build/_deps/llhttp-local-src/README.md
+Copyright: 2018 Fedor Indutny,
+License:   Expat
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to permit
+ persons to whom the Software is furnished to do so, subject to the
+ following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
+ .
+ [0]: https://github.com/nodejs/http-parser
+ [1]: https://github.com/nodejs/llparse
+
+Files:     dependencies/pkg-static.sh
+Copyright: 2012 Rémi Denis-Courmont
+License:   _SAME_
+ This file is distributed under the same license as the vlc package.
+
+Files:     dependencies/pjproject/pjmedia/src/test/sdp_neg_test.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0
+ This program is free software; you can redistribute it and/or modify
+ it under the terms oa the GNU General Public License as published by
+ the Free Software Foundation; either version 2 oa the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty oa
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy oa the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/wav_playlist.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ Original author:
+ David Clark <vdc1048 @ tx.rr.com>
+ .
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjnath/docs/doc_mainpage.h
+Copyright: 2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ @mainpage PJNATH - Open Source ICE, STUN, and TURN Library
+ .
+ PJNATH (PJSIP NAT Helper) is an open source library providing NAT traversal
+ functionalities by using standard based protocols such as STUN, TURN, and ICE.
+ .
+ Network Address Translation (NAT) is commonly deployed everywhere primarily to
+ alleviate the exhaustion of IPv4 address space by allowing multiple hosts to
+ share a public/Internet address. While NAT would work well for typical client
+ server communications (such as web and email), since it's always the client
+ that initiates the conversation and normally client doesn't need to maintain
+ the connection for a long time, installation of NAT would cause major problem
+ for peer-to-peer communication, such as (and especially) VoIP.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/simpleua.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ simpleua.c
+ .
+ This is a very simple SIP user agent complete with media. The user
+ agent should do a proper SDP negotiation and start RTP media once
+ SDP negotiation has completed.
+ .
+ This program does not register to SIP server.
+ .
+ Capabilities to be demonstrated here:
+ - Basic call
+ - Should support IPv6 (not tested)
+ - UDP transport at port 5060 (hard coded)
+ - RTP socket at port 4000 (hard coded)
+ - proper SDP negotiation
+ - PCMA/PCMU codec only.
+ - Audio/media to sound device.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/sipstateless.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ sipcore.c
+ .
+ A simple program to respond any incoming requests (except ACK, of course!)
+ with any status code (taken from command line argument, with the default
+ is 501/Not Implemented).
+ .
+ Include all headers.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip/docs/doxygen.h
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ @brief PJSIP Doxygen's mainpage.
+ .
+ //////////////////////////////////////////////////////////////////////////
+ .
+ INTRODUCTION PAGE
+ .
+ @mainpage PJSIP - Open Source SIP Stack
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-audiodev/opensl_dev.c
+Copyright: 2010-2012 Regis Montoya (aka r3gis - www.r3gis.fr)
+           2012 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is the implementation of Android OpenSL ES audio device.
+ The original code was originally part of CSipSimple
+ (http://code.google.com/p/csipsimple/) and was kindly donated
+ by Regis Montoya.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/invtester.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ invtester.c
+ .
+ Send INVITE/re-INVITE without SDP.
+ .
+ Include all headers.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/sound_legacy.c
+Copyright: 2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This is implementation of legacy sound device API, for applications
+ that still use the old/deprecated sound device API. This implementation
+ uses the new Audio Device API.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-audiodev/oboe_dev.cpp
+Copyright: 2021 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is the implementation of Android Oboe audio device.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/latency.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ See http://trac.pjsip.org/repos/wiki/MeasuringSoundLatency on
+ how to use this program.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/footprint.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ The purpose of this file is to show the typical footprint of
+ the application when various PJSIP/PJMEDIA components are used.
+ .
+ This file will not be build as samples, but instead it is build
+ by get-footprint.py Python script in pjsip-apps/build directory.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/sipecho.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ sipecho.c
+ .
+ - Accepts incoming calls and echoes back SDP and any media.
+ - Specify URI in cmdline argument to make call
+ - Accepts registration too!
+ .
+ Include all headers.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib/src/pj/os_rwmutex.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Note:
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/siprtp.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Usage
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/siprtp_report.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ DO NOT COMPILE THIS FILE ON ITS OWN!
+ .
+ This file is included by siprtp.c to implement the reporting capability
+ to a separate file, so that user can implement different reporting
+ functionality (such as writing to XML file).
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/ipjsua_swiftApp.swift
+Copyright: 2021 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This is a simple Swift demo app that shows an example of how to use
+ PJSUA API to make one audio+video call to another user.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/clidemo.c
+Copyright: 2010 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Sample CLI application
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib/src/pjlib-test/rtems_network_config.h
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Thanks Zetron, Inc and Phil Torre <ptorre@zetron.com> for donating PJLIB
+ port to RTEMS.
+ .
+ Network configuration
+ .
+ EDIT THIS FILE TO REFLECT YOUR NETWORK CONFIGURATION     *
+ BEFORE RUNNING ANY RTEMS PROGRAMS WHICH USE THE NETWORK! *
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/avi_player.c
+Copyright: 2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Default file player/writer buffer size.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-audiodev/bb10_dev.c
+Copyright: 2008-2012 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This is the implementation of BlackBerry 10 (BB10) audio device.
+ Original code was kindly donated by Truphone Ltd. (http://www.truphone.com)
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/README.txt
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the Free
+ Software Foundation, either version 2 of the License, or (at your option)
+ any later version.
+ .
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ for more details.
+ .
+ You should have received a copy of the GNU General Public License along
+ with this program. If not, see http://www.gnu.org/licenses/.
+ .
+ Getting Started: Building and Using PJSIP and PJMEDIA
+ .
+ [Last Update: $Date: 2007-02-02 20:42:44 +0000 (Fri, 02 Feb 2007) $]
+ .
+ Print Friendly Page
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/g711.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file contains file from Sun Microsystems, Inc, with the complete
+ notice in the second half of this file.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-videodev/ffmpeg_dev.c
+Copyright: 2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Video device with ffmpeg backend, currently only capture devices are
+ implemented.
+ .
+ Issues:
+ - no device enumeration (ffmpeg limitation), so this uses "host API" enum
+ instead
+ - need stricter filter on "host API" enum, currently audio capture devs are
+ still listed.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/debug.cpp
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ PURPOSE:
+ The purpose of this file is to allow debugging of a sample application
+ using MSVC IDE.
+ .
+ To debug a sample application, include the source file here.
+ E.g.:
+ #include "playfile.c"
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/ffmpeg_util.h
+Copyright: 2010-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file contains common utilities that are useful for pjmedia components
+ that use ffmpeg. This is not a public API.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib/src/pj/guid_android.c
+Copyright: 2015-2016 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This original code was kindly contributed by Johan Lantz.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/swig/python/cc_mingw.c
+Copyright: 2014 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ A simple proxy application for gcc/g++ to remove '-mno-cygwin' option
+ when the gcc/g++ doesn't support it. Note that the option seems to be
+ deprecated and causing compile error since gcc 4.7, while the option is
+ auto-generated by Python distutils module (up to Python 2.7) in building
+ Python extension.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib/src/pj/os_core_unix.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ Contributors:
+ - Thanks for Zetron, Inc. (Phil Torre, ptorre@zetron.com) for donating
+ the RTEMS port.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-codec/opencore_amr.c
+Copyright: 2011 Dan Arrhenius <dan@keystream.se>
+           2011-2013 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ AMR codec implementation with OpenCORE AMR library
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjsip-apps/src/samples/jbsim.c
+Copyright: 2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ jbsim:
+ .
+ This program emulates various system and network impairment
+ conditions as well as application parameters and apply it to
+ an input WAV file. The output is another WAV file as well as
+ a detailed log file (in CSV format) for troubleshooting.
+ .
+ Include PJMEDIA and PJLIB
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-audiodev/android_jni_dev.c
+Copyright: 2010-2012 Regis Montoya (aka r3gis - www.r3gis.fr)
+           2012 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is the implementation of Android JNI audio device.
+ The original code was originally part of CSipSimple
+ (http://code.google.com/p/csipsimple/) and was kindly donated
+ by Regis Montoya.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia/alaw_ulaw_table.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ The tables here and also the conversion ideas are contributed by
+ Toni Rutar <toni at aufbix.org>. Many thanks!
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-codec/opus.c
+Copyright: 2012-2015 Zaark Technology AB
+           2015-2016 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ This file is the implementation of Opus codec wrapper and was contributed by
+ Zaark Technology AB
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/pjlib/src/pjlib-test/main_rtems.c
+Copyright: 2003-2008 Benny Prijono <benny@prijono.org>
+           2008-2011 Teluu Inc. (http://www.teluu.com)
+License:   GPL-2.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ .
+ - Many thanks for Zetron, Inc. and Phil Torre <ptorre@zetron.com> for
+ donating this file and the RTEMS port in general!
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/opendht/tools/proxy_loadtester.py
+Copyright: 2014-2023 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ Manually run with Web UI:
+ locust -f tester.py --host http://127.0.0.1:8080
+ .
+ Run in Terminal:
+ locust -f tester.py --host http://127.0.0.1:8080 \
+ --clients 100 --hatch-rate 1 --run-time 10s --no-web --only-summary
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/opendht/python/setup.py.in
+Copyright: 2014-2023 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ A Python3 wrapper to access to OpenDHT API
+ This wrapper is written for Cython 0.22
+ .
+ This file is part of OpenDHT Python Wrapper.
+ .
+ OpenDHT Python Wrapper is free software:  you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ OpenDHT Python Wrapper is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with OpenDHT Python Wrapper. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/opendht/python/opendht.pyx
+Copyright: 2015-2023 Savoir-faire Linux Inc. Author(s): Guillaume Roguez <guillaume.roguez@savoirfairelinux.com> Adrien Béraud <adrien.beraud@savoirfairelinux.com> Simon Désaulniers <sim.desaulniers@gmail.com>
+License:   GPL-3.0+
+ This wrapper is written for Cython 0.22
+ .
+ This file is part of OpenDHT Python Wrapper.
+ .
+ OpenDHT Python Wrapper is free software:  you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ OpenDHT Python Wrapper is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with OpenDHT Python Wrapper. If not, see <https://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/opendht/tools/tools_common.h
+Copyright: 2014-2023 Savoir-faire Linux Inc.
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ .
+ Common utility methods used by C++ OpenDHT tools.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/opendht/cmake/FindReadline.cmake
+Copyright: 2009 ASTRON (Netherlands Institute for Radio Astronomy) P.O.Box 2, 7990 AA Dwingeloo, The Netherlands
+License:   GPL-3.0+
+ This program is free software; you can redistribute it and/or modify
+ modify it under the terms of the GNU General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along
+ with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 3 can be found in `/usr/share/common-licenses/GPL-3'.
+
+Files:     dependencies/pjproject/pjlib-util/src/pjlib-util/getopt.c
+Copyright: 1987-1997 Free Software Foundation, Inc.
+License:   LGPL-2.0+
+ This file is part of the GNU C Library.
+ .
+ The GNU C Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+ .
+ The GNU C Library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Library General Public License for more details.
+ .
+ You should have received a copy of the GNU Library General Public
+ License along with the GNU C Library; see the file COPYING.LIB.  If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+ .
+ Comment out all this code if we are using the GNU C Library, and are not
+ actually compiling the library itself.  This code is part of the GNU C
+ Library, but also included in many other GNU distributions.  Compiling
+ and linking in this code is a waste when using the GNU C library
+ (especially if it is a shared library).  Rather than having every GNU
+ program understand `configure --with-gnu-libc' and omit the object files,
+ it is simpler to just do this in the source for each such file.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU Library General Public License
+ Version 2 can be found in `/usr/share/common-licenses/LGPL-2'.
+
+Files:     dependencies/pjproject/third_party/mp3/BladeMP3EncDLL.h
+Copyright: 1999-2002 A.L. Faber Based on bladedll.h version 1.0  Jukka Poikolainen
+License:   LGPL-2.0+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA  02111-1307, USA.
+ .
+ The FSF address in the above text is the old one.
+ .
+ On Debian systems, the complete text of the GNU Library General Public License
+ Version 2 can be found in `/usr/share/common-licenses/LGPL-2'.
+
+Files:     dependencies/pjproject/third_party/resample/README.resample
+Copyright: 1994-2006 Julius O. Smith III <jos@ccrma.stanford.edu>,
+License:   LGPL-2.1+
+ Permission to use and copy is granted subject to
+ the terms of the "GNU Lesser General Public License" (LGPL) as
+ published by the Free Software Foundation; either version 2.1 of the
+ License, or any later version.  In addition, we request that a copy of
+ any modified files be sent by email to jos@ccrma.stanford.edu so that
+ we may incorporate them into the CCRMA version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ FILTERKIT CONTENTS
+ .
+ LpFilter() - Calculates the filter coeffs for a Kaiser-windowed
+ low-pass filter with a given roll-off frequency.  These
+ coeffs are stored into a array of doubles.
+ .
+ writeFilter() - Writes a filter to a file.
+ .
+ makeFilter() - A section of the original SAIL program.  Calls
+ LpFilter() to create a filter, then scales the double
+ coeffs into a array of half words.
+ .
+ readFilter() - Reads a filter from a file.
+ .
+ FilterUp() - Applies a filter to a given sample when up-converting.
+ .
+ FilterUD() - Applies a filter to a given sample when up- or down-
+ converting.  Both are repoductions of the original SAIL
+ program.
+ .
+ initZerox() - Initialization routine for the zerox() function.  Must
+ be called before zerox() is called.  This routine loads
+ the correct filter so zerox() can use it.
+ .
+ zerox() - Given a pointer into a sample, finds a zero-crossing on the
+ interval [pointer-1:pointer+2] by iteration.
+ .
+ Query() - Ask the user for a yes/no question with prompt, default,
+ and optional help.
+ .
+ GetUShort() - Ask the user for a unsigned short with prompt, default,
+ and optional help.
+ .
+ GetDouble() -  Ask the user for a double with prompt, default, and
+ optional help.
+ .
+ GetString() -  Ask the user for a string with prompt, default, and
+ optional help.
+ .
+ FILTER FILE FORMAT
+ .
+ File Name: "F" Nmult "T" Nhc ".filter"
+ example: "F13T8.filter" and "F27T8.filter"
+ .
+ Structure of File:
+ "ScaleFactor" LpScl
+ "Length" Nwing
+ "Coeffs:"
+ Imp[0]
+ Imp[1]
+ :
+ Imp[Nwing-1]
+ "Differences:"
+ ImpD[0]
+ ImpD[1]
+ :
+ ImpD[Nwing-1]
+ .
+ On Debian systems, the complete text of the GNU Lesser General Public License
+ Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/attributes.h
+Copyright: 2017 The Abseil Authors.
+License:   Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ https://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ This header file defines macros for declaring attributes for functions,
+ types, and variables.
+ .
+ These macros are used within Abseil and allow the compiler to optimize, where
+ applicable, certain function calls.
+ .
+ Most macros here are exposing GCC or Clang features, and are stubbed out for
+ other compilers.
+ .
+ GCC attributes documentation:
+ https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Function-Attributes.html
+ https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Variable-Attributes.html
+ https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Type-Attributes.html
+ .
+ Most attributes in this file are already supported by GCC 4.7. However, some
+ of them are not supported in older version of Clang. Thus, we check
+ .
+ On Debian systems, the complete text of the Apache License Version 2.0
+  can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/absl/utility/utility.h
+Copyright: 2017 The Abseil Authors.
+License:   Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ https://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ This header file contains C++11 versions of standard <utility> header
+ abstractions available within C++14 and C++17, and are designed to be drop-in
+ replacement for code compliant with C++14 and C++17.
+ .
+ The following abstractions are defined:
+ .
+ On Debian systems, the complete text of the Apache License Version 2.0
+  can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/internal/raw_logging.h
+Copyright: 2017 The Abseil Authors.
+License:   Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ https://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ Thread-safe logging routines that do not allocate any memory or
+ acquire any locks, and can therefore be used by low-level memory
+ allocation, synchronization, and signal-handling code.
+ .
+ On Debian systems, the complete text of the Apache License Version 2.0
+  can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/absl/base/port.h
+Copyright: 2017 The Abseil Authors.
+License:   Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ https://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ This files is a forwarding header for other headers containing various
+ portability macros and functions.
+ .
+ On Debian systems, the complete text of the Apache License Version 2.0
+  can be found in `/usr/share/common-licenses/Apache-2.0'.
+
+Files:     dependencies/opendht/m4/ax_cxx_compile_stdcxx.m4
+Copyright: 2008 Benjamin Kosnik <bkoz@redhat.com>
+           2012 Zack Weinberg <zackw@panix.com>
+           2013 Roy Stogner <roystgnr@ices.utexas.edu>
+           2014-2015 Google Inc.; contributed  Alexey Sokolov <sokolov@google.com>
+           2015 Moritz Klammler <moritz@klammler.eu>
+           2015 Paul Norman <penorman@mac.com>
+           2016-2018 Krzesimir Nowak <qdlacz@gmail.com>
+           2019 Enji Cooper <yaneurabeya@gmail.com>
+           2020 Jason Merrill <jason@redhat.com>
+           2021 Jörn Heusipp <osmanx@problemloesungsmaschine.de>
+License:   PERMISSIVE
+ Copying and distribution of this file, with or without modification, are
+ permitted in any medium without royalty provided the copyright notice
+ and this notice are preserved.  This file is offered as-is, without any
+ warranty.
+
+Files:     dependencies/pjproject/aconfigure
+Copyright: 1992-2021 Free Software Foundation, Inc.
+License:   PERMISSIVE
+ This configure script is free software; the Free Software Foundation
+ gives unlimited permission to copy, distribute and modify it.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/arch.h
+Copyright: 2003 Jean-Marc Valin
+License:   __HEADER___
+ @brief Various architecture definitions Speex
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files:     dependencies/pjproject/third_party/threademulation/include/ThreadEmulation.h
+Copyright: Microsoft Corporation.
+License:   __UNKNOWN__
+ Emulates a subset of the Win32 threading API as a layer on top of WinRT threadpools.
+ .
+ Supported features:
+ .
+ - CreateThread (returns a standard Win32 handle which can be waited on, then closed)
+
+Files:     dependencies/pjproject/pjmedia/src/pjmedia-audiodev/bdimad_dev.c
+Copyright: 2015 bdSound s.r.l. (www.bdsound.com)
+License:   __UNKNOWN__
+ Date: 12/03/2015
+ Version 2.0.0 rev.1618
+
+Files:     dependencies/pjproject/third_party/gsm/tls/taste.h
+Copyright: 1992 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ common code to sweet.c and bitter.c
+
+Files:     dependencies/pjproject/third_party/gsm/inc/gsm.h
+Copyright: 1992 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ $Header: /home/kbs/jutta/src/gsm/gsm-1.0/inc/RCS/gsm.h,v 1.11 1996/07/05 18:02:56 jutta Exp $
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/numerics/safe_minmax.h
+Copyright: 2017 The WebRTC Project Authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Minimum and maximum
+
+Files:     dependencies/pjproject/third_party/gsm/tls/ginger.c
+Copyright: 1996 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ $Header
+ .
+ Generate code to pack a bit array from a name:#bits description
+
+Files:     include/compat/msvc/windirent.h
+Copyright: 2006-2012 Toni Ronkko
+License:   __UNKNOWN__
+ This file is part of dirent.  Dirent may be freely distributed
+ under the MIT license.  For all details and documentation, see
+ https://github.com/tronkko/dirent
+
+Files:     dependencies/pjproject/config.log
+Copyright: 2021 Free Software Foundation, Inc.
+License:   __UNKNOWN__
+ This is free software; see the source for copying conditions.  There is NO
+ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+Files:     dependencies/pjproject/config.status
+Copyright: 2021 Free Software Foundation, Inc.
+License:   __UNKNOWN__
+ This config.status script is free software; the Free Software Foundation
+ gives unlimited permission to copy, distribute and modify it."
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/checks.cc
+Copyright: 2006 The WebRTC Project Authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Most of this was borrowed (with minor modifications) from V8's and Chromium's
+ src/base/logging.cc.
+
+Files:     dependencies/pjproject/third_party/gsm/COPYRIGHT
+Copyright: 1992-1994 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin
+License:   __UNKNOWN__
+ Any use of this software is permitted provided that this notice is not
+ removed and that neither the authors nor the Technische Universitaet Berlin
+ are deemed to have made any representations as to the suitability of this
+ software for any purpose nor are held responsible for any defects of
+ this software.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ As a matter of courtesy, the authors request to be informed about uses
+ this software has found, about bugs in this software, and about any
+ improvements that may be of general interest.
+ .
+ Berlin, 28.11.1994
+ Jutta Degener
+ Carsten Bormann
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/echo_cancellation.c
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Contains the API functions for the AEC.
+
+Files:     dependencies/pjproject/pjmedia/README.txt
+Copyright: 1992 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin
+License:   __UNKNOWN__
+ - Speex 1.1.12
+ http://www.speex.org
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Specifies the interface for the AEC core.
+
+Files:     dependencies/pjproject/third_party/yuv/include/libyuv/video_common.h
+Copyright: 2011 The Liuv Project Authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS. All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Common definitions for video, including fourcc and VideoFormat.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/cb_search_bfin.h
+Copyright: 2005 Analog Devices
+License:   __UNKNOWN__
+ @author Jean-Marc Valin
+
+Files:     dependencies/pjproject/third_party/gsm/Makefile
+Copyright: 1992-1996 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ Machine- or installation dependent flags you should configure to port
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/echo_cancellation_unittest.cc
+Copyright: 2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ TODO(bjornv): Make this a comprehensive test.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/third_party/pffft/src/pffft.c
+Copyright: 2004 the University Corporation for Atmospheric Research ("UCAR").  Developed  NCAR's Computational and Information Systems Laboratory, UCAR, www.cisl.ucar.edu.
+           2013 Julien Pommier ( pommier@modartt.com )
+License:   __UNKNOWN__
+ Based on original fortran 77 code from FFTPACKv4 from NETLIB
+ (http://www.netlib.org/fftpack), authored by Dr Paul Swarztrauber
+ of NCAR, in 1985.
+ .
+ As confirmed by the NCAR fftpack software curators, the following
+ FFTPACKv5 license applies to FFTPACKv4 sources. My changes are
+ released under the same terms.
+ .
+ FFTPACK license:
+ .
+ http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html
+ .
+ Redistribution and use of the Software in source and binary forms,
+ with or without modification, is permitted provided that the
+ following conditions are met:
+ .
+ - Neither the names of NCAR's Computational and Information Systems
+ Laboratory, the University Corporation for Atmospheric Research,
+ nor the names of its sponsors or contributors may be used to
+ endorse or promote products derived from this Software without
+ specific prior written permission.
+ .
+ - Redistributions of source code must retain the above copyright
+ notices, this list of conditions, and the disclaimer below.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions, and the disclaimer below in the
+ documentation and/or other materials provided with the
+ distribution.
+ .
+ THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+ SOFTWARE.
+ .
+ PFFFT : a Pretty Fast FFT.
+ .
+ This file is largerly based on the original FFTPACK implementation, modified in
+ order to take advantage of SIMD instructions of modern CPUs.
+ .
+ ChangeLog:
+ - 2011/10/02, version 1: This is the very first release of this file.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/thread_annotations.h
+Copyright: 2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Borrowed from
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aecm/aecm_core.h
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Performs echo control (suppression) with fft routines in fixed-point.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_resampler.c
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Resamples a signal to an arbitrary rate. Used by the AEC to compensate for
+ clock skew by resampling the farend signal.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/sinc_resampler.h
+Copyright: 2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Modified from the Chromium original here:
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/third_party/pffft/src/pffft.h
+Copyright: 2004 the University Corporation for Atmospheric Research ("UCAR").  Developed  NCAR's Computational and Information Systems Laboratory, UCAR, www.cisl.ucar.edu.
+           2013 Julien Pommier ( pommier@modartt.com )
+License:   __UNKNOWN__
+ Based on original fortran 77 code from FFTPACKv4 from NETLIB,
+ authored by Dr Paul Swarztrauber of NCAR, in 1985.
+ .
+ As confirmed by the NCAR fftpack software curators, the following
+ FFTPACKv5 license applies to FFTPACKv4 sources. My changes are
+ released under the same terms.
+ .
+ FFTPACK license:
+ .
+ http://www.cisl.ucar.edu/css/software/fftpack5/ftpk.html
+ .
+ Redistribution and use of the Software in source and binary forms,
+ with or without modification, is permitted provided that the
+ following conditions are met:
+ .
+ - Neither the names of NCAR's Computational and Information Systems
+ Laboratory, the University Corporation for Atmospheric Research,
+ nor the names of its sponsors or contributors may be used to
+ endorse or promote products derived from this Software without
+ specific prior written permission.
+ .
+ - Redistributions of source code must retain the above copyright
+ notices, this list of conditions, and the disclaimer below.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions, and the disclaimer below in the
+ documentation and/or other materials provided with the
+ distribution.
+ .
+ THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE
+ SOFTWARE.
+ .
+ PFFFT : a Pretty Fast FFT.
+ .
+ This is basically an adaptation of the single precision fftpack
+ (v4) as found on netlib taking advantage of SIMD instruction found
+ on cpus such as intel x86 (SSE1), powerpc (Altivec), and arm (NEON).
+ .
+ For architectures where no SIMD instruction is available, the code
+ falls back to a scalar version.
+ .
+ Restrictions:
+ .
+ - 1D transforms only, with 32-bit single precision.
+ .
+ - supports only transforms for inputs of length N of the form
+
+Files:     dependencies/pjproject/tests/pjsua/wavs/input.2.8.wav
+Copyright: __NO_COPYRIGHT__ in: dependencies/pjproject/tests/pjsua/wavs/input.2.8.wav
+License:   __UNKNOWN__
+ _MANY_NON_ASCII_(5chars. over 5chars.) starting with: ÞÞ†
+ _MANY_NON_ASCII_(1chars. over 1chars.) starting with: †
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/rtc_base/numerics/safe_compare.h
+Copyright: 2016 The WebRTC Project Authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file defines six constexpr functions:
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/spl_init.c
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ The global function contained in this file initializes SPL function
+ pointers, currently only for ARM platforms.
+ .
+ Some code came from common/rtcd.c in the WebM project.
+
+Files:     dependencies/restinio/dev/cmake/modules/FindPCRE.cmake
+Copyright: 2007-2009 LuaDist. Created  Peter Kapec <kapecp@gmail.com>
+License:   __UNKNOWN__
+ Redistribution and use of this file is allowed according to the terms of the MIT license.
+ For details see the COPYRIGHT file distributed with LuaDist.
+ Note:
+ Searching headers and libraries is very simple and is NOT as powerful as scripts
+ distributed with CMake, because LuaDist defines directories to search for.
+ Everyone is encouraged to contact the author with improvements. Maybe this file
+ becomes part of CMake distribution sometimes.
+ .
+ - Find pcre
+ Find the native PCRE headers and libraries.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/api/scoped_refptr.h
+Copyright: 2011 The WebRTC Project Authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ Originally these classes are from Chromium.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_fractional.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the resampling functions between 48, 44, 32 and 24 kHz.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/min_max_operations_mips.c
+Copyright: 2013 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the implementation of function
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/division_operations.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains implementations of the divisions
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/randomization_functions.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains implementations of the randomization functions
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/modules/audio_processing/three_band_filter_bank.cc
+Copyright: 2015 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ An implementation of a 3-band FIR filter-bank with DCT modulation, similar to
+ the proposed in "Multirate Signal Processing for Communication Systems" by
+ Fredric J Harris.
+ .
+ The idea is to take a heterodyne system and change the order of the
+ components to get something which is efficient to implement digitally.
+ .
+ It is possible to separate the filter using the noble identity as follows:
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/third_party/ooura/fft_size_128/ooura_fft.cc
+Copyright: 1996-2001 Takuya OOURA,
+License:   __UNKNOWN__
+ You may use, copy, modify and distribute this code for any purpose (include
+ commercial use) and without fee. Please refer to this package when you modify
+ this code.
+ .
+ Changes by the WebRTC authors:
+ - Trivial type modifications.
+ - Minimal code subset to do rdft of length 128.
+ - Optimizations because of known length.
+ - Removed the global variables by moving the code in to a class in order
+ to make it thread safe.
+ .
+ All changes are covered by the WebRTC license and IP grant:
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/common_audio/resampler/include/resampler.h
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ A wrapper for resampling a numerous amount of sampling combinations.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/ilbc_specific_functions.c
+Copyright: 2012 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains implementations of the iLBC specific functions
+
+Files:     dependencies/pjproject/third_party/gsm/tls/sour.c
+Copyright: 1996 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ $Header
+ .
+ Generate code to pack a bit array from a name:#bits description,
+ WAV #49 style.
+
+Files:     dependencies/pjproject/third_party/gsm/INSTALL
+Copyright: 1992-1994 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT"
+License:   __UNKNOWN__
+ for details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+
+Files:     dependencies/pjproject/third_party/gsm/add-test/add_test.dta
+Copyright: 1992 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin.  See the accompanying file "COPYRIGHT" for
+License:   __UNKNOWN__
+ details.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ Lines starting with ' (in the first col) are echoed.
+ Lines starting with " (in the first col) are echoed to stderr.
+ Lines starting with ; or empty lines are ignored.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core_neon.c
+Copyright: 2014 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ The core AEC algorithm, neon version of speed-critical functions.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains the resampling functions for 22 kHz.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/common_audio/signal_processing/resample_48khz.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ This file contains resampling functions between 48 kHz and nb/wb.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_core_sse2.c
+Copyright: 2011 The WebRTC project authors.
+License:   __UNKNOWN__
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+ .
+ The core AEC algorithm, SSE2 version of speed-critical functions.
+
+Files:     dependencies/pjproject/third_party/webrtc/src/webrtc/modules/audio_processing/aec/aec_rdft.c
+Copyright: 1996-2001 Takuya OOURA,
+License:   __UNKNOWN__
+ You may use, copy, modify and distribute this code for any purpose (include
+ commercial use) and without fee. Please refer to this package when you modify
+ this code.
+ .
+ Changes by the WebRTC authors:
+ - Trivial type modifications.
+ - Minimal code subset to do rdft of length 128.
+ - Optimizations because of known length.
+ .
+ All changes are covered by the WebRTC license and IP grant:
+ Use of this source code is governed by a BSD-style license
+ that can be found in the LICENSE file in the root of the source
+ tree. An additional intellectual property rights grant can be found
+ in the file PATENTS.  All contributing project authors may
+ be found in the AUTHORS file in the root of the source tree.
+
+Files:     dependencies/pjproject/third_party/webrtc_aec3/src/third_party/rnnoise/src/rnn_activations.h
+Copyright: 2008-2011 Octasic Inc.
+           2012-2017 Jean-Marc Valin
+License:   BSD-2-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/testresample.c
+Copyright: 2007 Jean-Marc Valin
+License:   BSD-3-Clause
+ File: testresample.c
+ Testing the resampling code
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/speex.c
+Copyright: 2002 Jean-Marc Valin File: speex.c
+License:   BSD-3-Clause
+ Basic Speex functions
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/srtp/srtp/srtp.c
+Copyright: 2001-2017 Cisco Systems, Inc.
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ .
+ Neither the name of the Cisco Systems, Inc. nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ Leave this as the top level import. Ensures the existence of defines
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/lpc.c
+Copyright: 1992-1994 Jutta Degener and Carsten Bormann, Technische Universitaet Berlin
+License:   BSD-3-Clause
+ Any use of this software is permitted provided that this notice is not
+ removed and that neither the authors nor the Technische Universitaet Berlin
+ are deemed to have made any representations as to the suitability of this
+ software for any purpose nor are held responsible for any defects of
+ this software.  THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE.
+ .
+ As a matter of courtesy, the authors request to be informed about uses
+ this software has found, about bugs in this software, and about any
+ improvements that may be of general interest.
+ .
+ Berlin, 28.11.1994
+ Jutta Degener
+ Carsten Bormann
+ .
+ Code modified by Jean-Marc Valin
+ .
+ Speex License:
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/filters.h
+Copyright: 2002 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Various analysis/synthesis filters
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/pseudofloat.h
+Copyright: 2005 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Pseudo-floating point
+ * This header file provides a lightweight floating point type for
+ * use on fixed-point platforms when a large dynamic range is
+ * required. The new type is not compatible with the 32-bit IEEE format,
+ * it is not even remotely as accurate as 32-bit floats, and is not
+ * even guaranteed to produce even remotely correct results for code
+ * other than Speex. It makes all kinds of shortcuts that are acceptable
+ * for Speex, but may not be acceptable for your application. You're
+ * quite welcome to reuse this code and improve it, but don't assume
+ * it works out of the box. Most likely, it doesn't.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/modes.c
+Copyright: 2002-2006 Jean-Marc Valin File: modes.c
+License:   BSD-3-Clause
+ Describes the different modes of the codec
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/buffer.c
+Copyright: 2007 Jean-Marc Valin
+License:   BSD-3-Clause
+ File: buffer.c
+ This is a very simple ring buffer implementation. It is not thread-safe
+ so you need to do your own locking.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/symbian/config.h
+Copyright: 2003 Commonwealth Scientific and Industrial Research Organisation (CSIRO) Australia
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of CSIRO Australia nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+ PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE ORGANISATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/vq.h
+Copyright: 2002 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Vector quantization
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/resample.c
+Copyright: 2007-2008 Jean-Marc Valin
+           2008 Thorvald Natvig
+License:   BSD-3-Clause
+ File: resample.c
+ Arbitrary resampling code
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ The design goals of this code are:
+ - Very fast algorithm
+ - SIMD-friendly algorithm
+ - Low memory requirement
+ - Good *perceptual* quality (and not best SNR)
+ .
+ Warning: This resampler is relatively new. Although I think I got rid of
+ all the major bugs and I don't expect the API to change anymore, there
+ may be something I've missed. So use with caution.
+ .
+ This algorithm is based on this original resampling algorithm:
+ Smith, Julius O. Digital Audio Resampling Home Page
+ Center for Computer Research in Music and Acoustics (CCRMA),
+ Stanford University, 2007.
+ Web published at https://ccrma.stanford.edu/~jos/resample/.
+ .
+ There is one main difference, though. This resampler uses cubic
+ interpolation instead of linear interpolation in the above paper. This
+ makes the table much smaller and makes it possible to compute that table
+ on a per-stream basis. In turn, being able to tweak the table for each
+ stream makes it possible to both reduce complexity on simple ratios
+ (e.g. 2/3), and get rid of the rounding operations in the inner loop.
+ The latter both reduces CPU time and makes the algorithm more SIMD-friendly.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/testresample2.c
+Copyright: 2007 Jean-Marc Valin
+License:   BSD-3-Clause
+ File: testresample2.c
+ Testing the resampling code
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/lpc.h
+Copyright: 2002 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Functions for LPC (Linear Prediction Coefficients) analysis
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/preprocess.c
+Copyright: 2003 Epic Games ( Jean-Marc Valin)
+           2004-2006 Epic Games
+License:   BSD-3-Clause
+ File: preprocess.c
+ Preprocessor with denoising based on the algorithm by Ephraim and Malah
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ Recommended papers:
+ .
+ Y. Ephraim and D. Malah, "Speech enhancement using minimum mean-square error
+ short-time spectral amplitude estimator". IEEE Transactions on Acoustics,
+ Speech and Signal Processing, vol. ASSP-32, no. 6, pp. 1109-1121, 1984.
+ .
+ Y. Ephraim and D. Malah, "Speech enhancement using minimum mean-square error
+ log-spectral amplitude estimator". IEEE Transactions on Acoustics, Speech and
+ Signal Processing, vol. ASSP-33, no. 2, pp. 443-445, 1985.
+ .
+ I. Cohen and B. Berdugo, "Speech enhancement for non-stationary noise environments".
+ Signal Processing, vol. 81, no. 2, pp. 2403-2418, 2001.
+ .
+ Stefan Gustafsson, Rainer Martin, Peter Jax, and Peter Vary. "A psychoacoustic
+ approach to combined acoustic echo cancellation and noise reduction". IEEE
+ Transactions on Speech and Audio Processing, 2002.
+ .
+ J.-M. Valin, J. Rouat, and F. Michaud, "Microphone array post-filter for separation
+ of simultaneous non-stationary sources". In Proceedings IEEE International
+ Conference on Acoustics, Speech, and Signal Processing, 2004.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/vbr.h
+Copyright: 2002 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Variable Bit-Rate (VBR) related routines
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/vbr.c
+Copyright: 2002 Jean-Marc Valin File: vbr.c
+License:   BSD-3-Clause
+ VBR-related routines
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/ltp.h
+Copyright: 2002 Jean-Marc Valin
+License:   BSD-3-Clause
+ @brief Long-Term Prediction functions
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/srtp/include/ekt.h
+Copyright: 2001-2017 Cisco Systems, Inc.
+License:   BSD-3-Clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ .
+ Neither the name of the Cisco Systems, Inc. nor the names of its
+ contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+ OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ EKT implementation strategy
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/modes_wb.c
+Copyright: 2002-2007 Jean-Marc Valin File: modes.c
+License:   BSD-3-Clause
+ Describes the wideband modes of the codec
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ - Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ - Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ - Neither the name of the Xiph.org Foundation nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/scal.c
+Copyright: 2006-2008 CSIRO, Jean-Marc Valin, Xiph.Org Foundation
+License:   BSD-3-Clause
+ File: scal.c
+ Shaped comb-allpass filter for channel decorrelation
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ The algorithm implemented here is described in:
+ .
+ * J.-M. Valin, Perceptually-Motivated Nonlinear Channel Decorrelation For
+ Stereo Acoustic Echo Cancellation, Accepted for Joint Workshop on
+ Hands­free Speech Communication and Microphone Arrays (HSCMA), 2008.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/third_party/speex/libspeex/mdf.c
+Copyright: 2003-2008 Jean-Marc Valin
+License:   BSD-3-Clause
+ File: mdf.c
+ Echo canceller based on the MDF algorithm (see below)
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ .
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ .
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+ .
+ The echo canceller is based on the MDF algorithm described in:
+ .
+ J. S. Soo, K. K. Pang Multidelay block frequency adaptive filter,
+ IEEE Trans. Acoust. Speech Signal Process., Vol. ASSP-38, No. 2,
+ February 1990.
+ .
+ We use the Alternatively Updated MDF (AUMDF) variant. Robustness to
+ double-talk is achieved using a variable learning rate as described in:
+ .
+ Valin, J.-M., On Adjusting the Learning Rate in Frequency Domain Echo
+ Cancellation With Double-Talk. IEEE Transactions on Audio,
+ Speech and Language Processing, Vol. 15, No. 3, pp. 1030-1034, 2007.
+ .
+ On Debian systems, the complete text of the BSD 3-clause "New" or "Revised"
+ License can be found in `/usr/share/common-licenses/BSD'.
+
+Files:     dependencies/pjproject/config.guess
+Copyright: 1992-2012 Free Software Foundation, Inc.
+License:   GPL-2.0+ with autoconf exception
+ This file is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, see <http://www.gnu.org/licenses/>.
+ .
+ As a special exception to the GNU General Public License, if you
+ distribute this file as part of a program that contains a
+ configuration script generated by Autoconf, you may include it under
+ the same distribution terms that you use for the rest of that program.
+ .
+ Originally written by Per Bothner.  Please send patches (context
+ diff format) to <config-patches@gnu.org> and include a ChangeLog
+ entry.
+ .
+ This script attempts to guess a canonical system name similar to
+ config.sub.  If it succeeds, it prints the system name on stdout, and
+ exits with 0.  Otherwise, it exits with 1.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/config.sub
+Copyright: 1992-2012 Free Software Foundation, Inc.
+License:   GPL-2.0+ with autoconf exception
+ This file is (in principle) common to ALL GNU software.
+ The presence of a machine in this file suggests that SOME GNU software
+ can handle that machine.  It does not imply ALL GNU software can.
+ .
+ This file is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, see <http://www.gnu.org/licenses/>.
+ .
+ As a special exception to the GNU General Public License, if you
+ distribute this file as part of a program that contains a
+ configuration script generated by Autoconf, you may include it under
+ the same distribution terms that you use for the rest of that program.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ Version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files:     dependencies/pjproject/third_party/build/samplerate/README.txt
+Copyright: __NO_COPYRIGHT__ in: dependencies/pjproject/third_party/build/samplerate/README.txt
+License:   __UNKNOWN__ *** dual license ***
+ licensed under dual license, GPL and proprietary).
+ .
+ Supported Platforms
+
+#----------------------------------------------------------------------------
+# xml and html files (skipped):
+#         dependencies/opendht/README.md
+#         dependencies/opendht/tools/proxy_node.html
+#         dependencies/opendht/resources/opendht_logo.svg
+#         dependencies/pjproject/third_party/build/resample/libresample.vcproj
+#         dependencies/pjproject/third_party/build/resample/libresample_dll.vcproj
+#         dependencies/pjproject/third_party/build/ilbc/libilbccodec.vcproj
+#         dependencies/pjproject/third_party/build/webrtc/libwebrtc.vcproj
+#         dependencies/pjproject/third_party/build/g7221/libg7221codec.vcproj
+#         dependencies/pjproject/third_party/build/baseclasses/libbaseclasses.vcproj
+#         dependencies/pjproject/third_party/build/milenage/libmilenage.vcproj
+#         dependencies/pjproject/third_party/build/speex/libspeex.vcproj
+#         dependencies/pjproject/third_party/build/srtp/libsrtp.vcproj
+#         dependencies/pjproject/third_party/build/gsm/libgsmcodec.vcproj
+#         dependencies/pjproject/third_party/build/yuv/libyuv.vcproj
+#         dependencies/pjproject/third_party/srtp/README.md
+#         dependencies/pjproject/pjnath/build/pjturn_client.vcproj
+#         dependencies/pjproject/pjnath/build/pjnath_test.vcproj
+#         dependencies/pjproject/pjnath/build/pjnath.vcproj
+#         dependencies/pjproject/pjnath/build/pjstun_srv_test.vcproj
+#         dependencies/pjproject/pjnath/docs/header.html
+#         dependencies/pjproject/pjmedia/build/pjmedia_test.vcproj
+#         dependencies/pjproject/pjmedia/build/pjmedia_audiodev.vcproj
+#         dependencies/pjproject/pjmedia/build/pjmedia.vcproj
+#         dependencies/pjproject/pjmedia/build/pjmedia_codec.vcproj
+#         dependencies/pjproject/pjmedia/build/pjmedia_videodev.vcproj
+#         dependencies/pjproject/pjmedia/docs/footer.html
+#         dependencies/pjproject/pjmedia/docs/header.html
+#         dependencies/pjproject/pjsip/build/pjsua_lib.vcproj
+#         dependencies/pjproject/pjsip/build/pjsip_simple.vcproj
+#         dependencies/pjproject/pjsip/build/pjsip_ua.vcproj
+#         dependencies/pjproject/pjsip/build/pjsua2_lib.vcproj
+#         dependencies/pjproject/pjsip/build/pjsip_test.vcproj
+#         dependencies/pjproject/pjsip/build/pjsip_core.vcproj
+#         dependencies/pjproject/pjsip/docs/footer.html
+#         dependencies/pjproject/pjsip/docs/header.html
+#         dependencies/pjproject/pjlib-util/build/pjlib_util_test.vcproj
+#         dependencies/pjproject/pjlib-util/build/pjlib_util.vcproj
+#         dependencies/pjproject/pjlib-util/docs/footer.html
+#         dependencies/pjproject/pjlib-util/docs/header.html
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-reinvite-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-reinvite-port-0-bad-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1148.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-mwi-0.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-multiple-fmts-support-update.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-prack_fork.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-and-ack-same-branch-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/transfer-unattended.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-upd-sdp-offer.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-180-multiple-fmts-support-update.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-180-multiple-fmts.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-inv_401_retry_after_100.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-template.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-reinvite-bad-via-branch.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls-reinv-sdes.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-timer-update.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-and-ack-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/transfer-attended.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario1.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-after-failed-nego.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-inv-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-and-ack-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-late-notify.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-subscribe.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-message-no-body.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-multiple-fmts.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-422-then-200-bad-se.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-bad-ack.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-wrong-media.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-forked-200.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-without-to-tag.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1864-scenario2.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-options.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-ticket-1866-reinv-after-failed-nego.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-200-update-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-refresh-481.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-no-media.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/strict-route.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-timer-reinvite.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-cancel-no-final.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-auth-two-algo.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-upd-sdp-decline.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-multipart-notify.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-auth.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-register-ip-change.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-register-ip-change-port-only.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-sdes-reinv-dtls.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-inv-answered-with-srtp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-without-sdp.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-183-wrong-media.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-sdes.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-multiple-require.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-terminated-retry.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-subscribe-notify-terminate.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-183-wrong-codec.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-mwi.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-with-less-media.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-answer-183-wrong-codec.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-forked-100rel.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-reinv-glare.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uas-early-bye.xml
+#         dependencies/pjproject/tests/pjsua/scripts-sipp/uac-srtp-dtls-lower-prio.xml
+#         dependencies/pjproject/tests/automated/gnu.xml.template
+#         dependencies/pjproject/tests/automated/gnu-ipp.xml.template
+#         dependencies/pjproject/tests/automated/android64-ipv6.xml.template
+#         dependencies/pjproject/tests/automated/iphone.xml.template
+#         dependencies/pjproject/tests/automated/android64.xml.template
+#         dependencies/pjproject/tests/automated/msvc.xml.template
+#         dependencies/pjproject/tests/automated/iphone64-ipv6.xml.template
+#         dependencies/pjproject/tests/automated/android.xml.template
+#         dependencies/pjproject/tests/automated/symbian.xml.template
+#         dependencies/pjproject/tests/automated/gnu-video-ffmpeg.xml.template
+#         dependencies/pjproject/tests/automated/iphone64.xml.template
+#         dependencies/pjproject/tests/automated/gnu-video.xml.template
+#         dependencies/pjproject/tests/automated/symbian-aps.xml.template
+#         dependencies/pjproject/tests/automated/symbian-vas.xml.template
+#         dependencies/pjproject/tests/automated/prepare.xml.template
+#         dependencies/pjproject/pjlib/build/pjlib_test.vcproj
+#         dependencies/pjproject/pjlib/build/pjlib.vcproj
+#         dependencies/pjproject/pjlib/docs/footer.html
+#         dependencies/pjproject/pjlib/docs/header.html
+#         dependencies/pjproject/pjsip-apps/build/vidgui.vcproj
+#         dependencies/pjproject/pjsip-apps/build/swig_java_pjsua2.vcproj
+#         dependencies/pjproject/pjsip-apps/build/libpjproject.vcproj
+#         dependencies/pjproject/pjsip-apps/build/samples.vcproj
+#         dependencies/pjproject/pjsip-apps/build/py_pjsua.vcproj
+#         dependencies/pjproject/pjsip-apps/build/pjsystest.vcproj
+#         dependencies/pjproject/pjsip-apps/build/pjsua.vcproj
+#         dependencies/pjproject/pjsip-apps/build/sample_debug.vcproj
+#         dependencies/pjproject/pjsip-apps/build/python_pjsua.vcproj
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/android.iml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/pjsua2/src/main/AndroidManifest.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/AndroidManifest.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/layout/activity_main.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/values/colors.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/values/strings.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/values/themes.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/values-night/themes.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/drawable/ic_launcher_background.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/app.iml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/AndroidManifest.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values-v14/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/layout/dlg_account_config.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/layout/activity_main.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/layout/activity_call.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/layout/dlg_add_buddy.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/menu/main.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/menu/call.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw600dp/dimens.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values-sw720dp-land/dimens.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values/colors.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values/strings.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values/dimens.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/drawable/bkg.xml
+#         dependencies/pjproject/pjsip-apps/src/swig/java/android/app/src/main/res/values-v11/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/AndroidManifest.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/values-v14/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/layout/activity_main.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/values/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/values/strings.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/android/app/src/main/res/values-v11/styles.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/bb10/bar-descriptor.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/bb10/.cproject
+#         dependencies/pjproject/pjsip-apps/src/pjsua/bb10/.project
+#         dependencies/pjproject/pjsip-apps/src/pjsua/bb10/translations/PjsuaBB.ts
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios-swift/ipjsua-swift/Info.plist
+#         dependencies/pjproject/pjsip-apps/src/pjsua/symbian/pjsuaContainer.uidesign
+#         dependencies/pjproject/pjsip-apps/src/pjsua/symbian/application.uidesign
+#         dependencies/pjproject/pjsip-apps/src/pjsua/symbian/gfx/qgn_menu_pjsua.svg
+#         dependencies/pjproject/pjsip-apps/src/pjsua/symbian/sis/backup_registration.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/ApplicationInsights.config
+#         dependencies/pjproject/pjsip-apps/src/pjsua/winrt/gui/uwp/Voip/Properties/Default.rd.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/ApplicationInsights.config
+#         dependencies/pjproject/pjsip-apps/src/pjsua/winrt/cli/uwp/Properties/Default.rd.xml
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/ipjsua-Info.plist
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Base.lproj/ipjsuaViewController_iPhone.xib
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/Base.lproj/ipjsuaViewController_iPad.xib
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/ipjsuaViewController_iPhone.xib
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua/en.lproj/ipjsuaViewController_iPad.xib
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/contents.xcworkspacedata
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua.xcworkspace/xcshareddata/ipjsua.xccheckout
+#         dependencies/pjproject/pjsip-apps/src/pjsua/ios/ipjsua.xcodeproj/xcshareddata/xcschemes/ipjsua.xcscheme
+#         dependencies/pjproject/pjsip-apps/src/ipjsystest/RootViewController.xib
+#         dependencies/pjproject/pjsip-apps/src/ipjsystest/ipjsystest-Info.plist
+#         dependencies/pjproject/pjsip-apps/src/ipjsystest/TestViewController.xib
+#         dependencies/pjproject/pjsip-apps/src/ipjsystest/MainWindow.xib
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/Info.plist
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/View/Base.lproj/Main.storyboard
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2/View/Base.lproj/LaunchScreen.storyboard
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2.xcodeproj/project.xcworkspace/contents.xcworkspacedata
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
+#         dependencies/pjproject/pjsip-apps/src/pjsua2/ios-swift-pjsua2/ios-swift-pjsua2.xcodeproj/xcshareddata/xcschemes/ios-swift-pjsua2.xcscheme
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm5-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-win64-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm5-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-debug-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-debug-dynamic-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs14-common-targets.targets
+#         dependencies/pjproject/build/vs/pjproject-vs8-win32-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs14-build-targets.targets
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm6-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-release-dynamic-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm6-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm2003-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-wm2003-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-debug-static-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-win32-common-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-win64-release-defaults.vsprops
+#         dependencies/pjproject/build/vs/pjproject-vs8-release-static-defaults.vsprops
+#         dependencies/pjproject/build.symbian/pjproject.cww
+#         dependencies/pjproject/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md
+
+#----------------------------------------------------------------------------
+# huge files   (skipped):
+#         dependencies/install/lib/libopendht.a
+#         dependencies/install/lib/libyuv-x86_64-unknown-linux-gnu.a
+#         dependencies/install/lib/libpjsua2-x86_64-unknown-linux-gnu.a
+#         dependencies/install/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp
+#         dependencies/msgpack/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp
+#         dependencies/opendht/build/libopendht.a
+#         dependencies/opendht/build/CMakeFiles/opendht.dir/compiler_depend.make
+#         dependencies/opendht/build/CMakeFiles/opendht.dir/compiler_depend.internal
+#         dependencies/opendht/build/CMakeFiles/opendht.dir/src/http.cpp.o
+#         dependencies/opendht/build/CMakeFiles/opendht.dir/src/dht.cpp.o
+#         dependencies/pjproject/third_party/lib/libyuv-x86_64-unknown-linux-gnu.a
+#         dependencies/pjproject/pjmedia/build/wince-evc4/pjmedia_wince.vcp
+#         dependencies/pjproject/pjsip/lib/libpjsua2-x86_64-unknown-linux-gnu.a
+#         dependencies/pjproject/pjsip/bin/pjsua2-test-x86_64-unknown-linux-gnu
+#         dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/endpoint.o
+#         dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/account.o
+#         dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/media.o
+#         dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/siptypes.o
+#         dependencies/pjproject/pjsip/build/output/pjsua2-lib-x86_64-unknown-linux-gnu/call.o
+#         dependencies/pjproject/pjsip/build/wince-evc4/test_pjsip_wince.vcp
+#         dependencies/pjproject/pjlib/bin/pjlib-test-x86_64-unknown-linux-gnu
+#         dependencies/pjproject/pjlib/build/output/pjlib-test-x86_64-unknown-linux-gnu/ioq_stress_test.o
+#         dependencies/pjproject/pjlib/build/wince-evc4/pjlib_test_wince.vcp
+#         dependencies/pjproject/pjsip-apps/bin/pjsua-x86_64-unknown-linux-gnu
+#         dependencies/pjproject/pjsip-apps/bin/pjsystest-x86_64-unknown-linux-gnu
+#         dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/pjsua2_demo
+#         dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/simple_pjsua
+#         dependencies/pjproject/pjsip-apps/bin/samples/x86_64-unknown-linux-gnu/pjsua2_hello_reg
+#         dependencies/pjproject/pjsip-apps/build/output/pjsua2_sample-x86_64-unknown-linux-gnu/pjsua2_demo.o
+
+#----------------------------------------------------------------------------
+# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
+# license/copyright files.
+
+#----------------------------------------------------------------------------
+# License file: COPYING
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+ .
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+ .
+ Preamble
+ .
+ The GNU General Public License is a free, copyleft license for
+ software and other kinds of works.
+ .
+ The licenses for most software and other practical works are designed
+ to take away your freedom to share and change the works.  By contrast,
+    the GNU General Public License is intended to guarantee your freedom to
+    share and change all versions of a program--to make sure it remains free
+    software for all its users.  We, the Free Software Foundation, use the
+    GNU General Public License for most of our software; it applies also to
+    any other work released this way by its authors.  You can apply it to
+    your programs, too.
+ .
+    When we speak of free software, we are referring to freedom, not
+    price.  Our General Public Licenses are designed to make sure that you
+    have the freedom to distribute copies of free software (and charge for
+        them if you wish), that you receive source code or can get it if you
+    want it, that you can change the software or use pieces of it in new
+    free programs, and that you know you can do these things.
+ .
+    To protect your rights, we need to prevent others from denying you
+    these rights or asking you to surrender the rights.  Therefore, you have
+    certain responsibilities if you distribute copies of the software, or if
+    you modify it: responsibilities to respect the freedom of others.
+ .
+    For example, if you distribute copies of such a program, whether
+    gratis or for a fee, you must pass on to the recipients the same
+    freedoms that you received.  You must make sure that they, too, receive
+    or can get the source code.  And you must show them these terms so they
+    know their rights.
+ .
+    Developers that use the GNU GPL protect your rights with two steps:
+    (1) assert copyright on the software, and (2) offer you this License
+    giving you legal permission to copy, distribute and/or modify it.
+ .
+    For the developers' and authors' protection, the GPL clearly explains
+    that there is no warranty for this free software.  For both users' and
+    authors' sake, the GPL requires that modified versions be marked as
+    changed, so that their problems will not be attributed erroneously to
+    authors of previous versions.
+ .
+    Some devices are designed to deny users access to install or run
+    modified versions of the software inside them, although the manufacturer
+    can do so.  This is fundamentally incompatible with the aim of
+    protecting users' freedom to change the software.  The systematic
+    pattern of such abuse occurs in the area of products for individuals to
+    use, which is precisely where it is most unacceptable.  Therefore, we
+    have designed this version of the GPL to prohibit the practice for those
+    products.  If such problems arise substantially in other domains, we
+    stand ready to extend this provision to those domains in future versions
+    of the GPL, as needed to protect the freedom of users.
+ .
+    Finally, every program is threatened constantly by software patents.
+    States should not allow patents to restrict development and use of
+    software on general-purpose computers, but in those that do, we wish to
+    avoid the special danger that patents applied to a free program could
+    make it effectively proprietary.  To prevent this, the GPL assures that
+    patents cannot be used to render the program non-free.
+ .
+    The precise terms and conditions for copying, distribution and
+    modification follow.
+ .
+    TERMS AND CONDITIONS
+ .
+    0. Definitions.
+ .
+    "This License" refers to version 3 of the GNU General Public License.
+ .
+    "Copyright" also means copyright-like laws that apply to other kinds of
+    works, such as semiconductor masks.
+ .
+    "The Program" refers to any copyrightable work licensed under this
+    License.  Each licensee is addressed as "you".  "Licensees" and
+    "recipients" may be individuals or organizations.
+ .
+    To "modify" a work means to copy from or adapt all or part of the work
+    in a fashion requiring copyright permission, other than the making of an
+    exact copy.  The resulting work is called a "modified version" of the
+    earlier work or a work "based on" the earlier work.
+ .
+    A "covered work" means either the unmodified Program or a work based
+    on the Program.
+ .
+    To "propagate" a work means to do anything with it that, without
+    permission, would make you directly or secondarily liable for
+    infringement under applicable copyright law, except executing it on a
+    computer or modifying a private copy.  Propagation includes copying,
+    distribution (with or without modification), making available to the
+    public, and in some countries other activities as well.
+ .
+    To "convey" a work means any kind of propagation that enables other
+    parties to make or receive copies.  Mere interaction with a user through
+    a computer network, with no transfer of a copy, is not conveying.
+ .
+    An interactive user interface displays "Appropriate Legal Notices"
+   to the extent that it includes a convenient and prominently visible
+ feature that (1) displays an appropriate copyright notice, and (2)
+   tells the user that there is no warranty for the work (except to the
+       extent that warranties are provided), that licensees may convey the
+   work under this License, and how to view a copy of this License.  If
+   the interface presents a list of user commands or options, such as a
+   menu, a prominent item in the list meets this criterion.
+ .
+   1. Source Code.
+ .
+   The "source code" for a work means the preferred form of the work
+   for making modifications to it.  "Object code" means any non-source
+   form of a work.
+ .
+   A "Standard Interface" means an interface that either is an official
+   standard defined by a recognized standards body, or, in the case of
+   interfaces specified for a particular programming language, one that
+   is widely used among developers working in that language.
+ .
+   The "System Libraries" of an executable work include anything, other
+   than the work as a whole, that (a) is included in the normal form of
+   packaging a Major Component, but which is not part of that Major
+   Component, and (b) serves only to enable use of the work with that
+   Major Component, or to implement a Standard Interface for which an
+   implementation is available to the public in source code form.  A
+   "Major Component", in this context, means a major essential component
+   (kernel, window system, and so on) of the specific operating system
+   (if any) on which the executable work runs, or a compiler used to
+   produce the work, or an object code interpreter used to run it.
+ .
+   The "Corresponding Source" for a work in object code form means all
+   the source code needed to generate, install, and (for an executable
+       work) run the object code and to modify the work, including scripts to
+   control those activities.  However, it does not include the work's
+   System Libraries, or general-purpose tools or generally available free
+   programs which are used unmodified in performing those activities but
+   which are not part of the work.  For example, Corresponding Source
+   includes interface definition files associated with source files for
+   the work, and the source code for shared libraries and dynamically
+   linked subprograms that the work is specifically designed to require,
+   such as by intimate data communication or control flow between those
+   subprograms and other parts of the work.
+ .
+   The Corresponding Source need not include anything that users
+   can regenerate automatically from other parts of the Corresponding
+   Source.
+ .
+   The Corresponding Source for a work in source code form is that
+   same work.
+ .
+   2. Basic Permissions.
+ .
+   All rights granted under this License are granted for the term of
+   copyright on the Program, and are irrevocable provided the stated
+   conditions are met.  This License explicitly affirms your unlimited
+   permission to run the unmodified Program.  The output from running a
+   covered work is covered by this License only if the output, given its
+   content, constitutes a covered work.  This License acknowledges your
+   rights of fair use or other equivalent, as provided by copyright law.
+ .
+   You may make, run and propagate covered works that you do not
+   convey, without conditions so long as your license otherwise remains
+   in force.  You may convey covered works to others for the sole purpose
+   of having them make modifications exclusively for you, or provide you
+   with facilities for running those works, provided that you comply with
+   the terms of this License in conveying all material for which you do
+   not control copyright.  Those thus making or running the covered works
+   for you must do so exclusively on your behalf, under your direction
+   and control, on terms that prohibit them from making any copies of
+   your copyrighted material outside their relationship with you.
+ .
+   Conveying under any other circumstances is permitted solely under
+   the conditions stated below.  Sublicensing is not allowed; section 10
+   makes it unnecessary.
+ .
+   3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+ .
+   No covered work shall be deemed part of an effective technological
+   measure under any applicable law fulfilling obligations under article
+   11 of the WIPO copyright treaty adopted on 20 December 1996, or
+   similar laws prohibiting or restricting circumvention of such
+   measures.
+ .
+   When you convey a covered work, you waive any legal power to forbid
+   circumvention of technological measures to the extent such circumvention
+   is effected by exercising rights under this License with respect to
+   the covered work, and you disclaim any intention to limit operation or
+   modification of the work as a means of enforcing, against the work's
+   users, your or third parties' legal rights to forbid circumvention of
+   technological measures.
+ .
+   4. Conveying Verbatim Copies.
+ .
+   You may convey verbatim copies of the Program's source code as you
+   receive it, in any medium, provided that you conspicuously and
+   appropriately publish on each copy an appropriate copyright notice;
+   keep intact all notices stating that this License and any
+   non-permissive terms added in accord with section 7 apply to the code;
+   keep intact all notices of the absence of any warranty; and give all
+   recipients a copy of this License along with the Program.
+ .
+   You may charge any price or no price for each copy that you convey,
+   and you may offer support or warranty protection for a fee.
+ .
+   5. Conveying Modified Source Versions.
+ .
+   You may convey a work based on the Program, or the modifications to
+   produce it from the Program, in the form of source code under the
+   terms of section 4, provided that you also meet all of these conditions:
+ .
+   a) The work must carry prominent notices stating that you modified
+   it, and giving a relevant date.
+ .
+   b) The work must carry prominent notices stating that it is
+   released under this License and any conditions added under section
+   7.  This requirement modifies the requirement in section 4 to
+   "keep intact all notices".
+ .
+   c) You must license the entire work, as a whole, under this
+   License to anyone who comes into possession of a copy.  This
+   License will therefore apply, along with any applicable section 7
+   additional terms, to the whole of the work, and all its parts,
+   regardless of how they are packaged.  This License gives no
+   permission to license the work in any other way, but it does not
+   invalidate such permission if you have separately received it.
+ .
+   d) If the work has interactive user interfaces, each must display
+   Appropriate Legal Notices; however, if the Program has interactive
+   interfaces that do not display Appropriate Legal Notices, your
+   work need not make them do so.
+ .
+   A compilation of a covered work with other separate and independent
+   works, which are not by their nature extensions of the covered work,
+   and which are not combined with it such as to form a larger program,
+   in or on a volume of a storage or distribution medium, is called an
+   "aggregate" if the compilation and its resulting copyright are not
+   used to limit the access or legal rights of the compilation's users
+   beyond what the individual works permit.  Inclusion of a covered work
+   in an aggregate does not cause this License to apply to the other
+   parts of the aggregate.
+ .
+   6. Conveying Non-Source Forms.
+ .
+   You may convey a covered work in object code form under the terms
+   of sections 4 and 5, provided that you also convey the
+   machine-readable Corresponding Source under the terms of this License,
+   in one of these ways:
+ .
+   a) Convey the object code in, or embodied in, a physical product
+   (including a physical distribution medium), accompanied by the
+   Corresponding Source fixed on a durable physical medium
+   customarily used for software interchange.
+ .
+   b) Convey the object code in, or embodied in, a physical product
+   (including a physical distribution medium), accompanied by a
+   written offer, valid for at least three years and valid for as
+   long as you offer spare parts or customer support for that product
+   model, to give anyone who possesses the object code either (1) a
+   copy of the Corresponding Source for all the software in the
+   product that is covered by this License, on a durable physical
+   medium customarily used for software interchange, for a price no
+   more than your reasonable cost of physically performing this
+   conveying of source, or (2) access to copy the
+   Corresponding Source from a network server at no charge.
+ .
+   c) Convey individual copies of the object code with a copy of the
+   written offer to provide the Corresponding Source.  This
+   alternative is allowed only occasionally and noncommercially, and
+   only if you received the object code with such an offer, in accord
+   with subsection 6b.
+ .
+   d) Convey the object code by offering access from a designated
+   place (gratis or for a charge), and offer equivalent access to the
+   Corresponding Source in the same way through the same place at no
+   further charge.  You need not require recipients to copy the
+   Corresponding Source along with the object code.  If the place to
+   copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+   that supports equivalent copying facilities, provided you maintain
+   clear directions next to the object code saying where to find the
+   Corresponding Source.  Regardless of what server hosts the
+   Corresponding Source, you remain obligated to ensure that it is
+   available for as long as needed to satisfy these requirements.
+ .
+   e) Convey the object code using peer-to-peer transmission, provided
+   you inform other peers where the object code and Corresponding
+   Source of the work are being offered to the general public at no
+   charge under subsection 6d.
+ .
+   A separable portion of the object code, whose source code is excluded
+   from the Corresponding Source as a System Library, need not be
+   included in conveying the object code work.
+ .
+   A "User Product" is either (1) a "consumer product", which means any
+   tangible personal property which is normally used for personal, family,
+   or household purposes, or (2) anything designed or sold for incorporation
+   into a dwelling.  In determining whether a product is a consumer product,
+   doubtful cases shall be resolved in favor of coverage.  For a particular
+   product received by a particular user, "normally used" refers to a
+   typical or common use of that class of product, regardless of the status
+   of the particular user or of the way in which the particular user
+   actually uses, or expects or is expected to use, the product.  A product
+   is a consumer product regardless of whether the product has substantial
+   commercial, industrial or non-consumer uses, unless such uses represent
+   the only significant mode of use of the product.
+ .
+   "Installation Information" for a User Product means any methods,
+   procedures, authorization keys, or other information required to install
+   and execute modified versions of a covered work in that User Product from
+   a modified version of its Corresponding Source.  The information must
+   suffice to ensure that the continued functioning of the modified object
+   code is in no case prevented or interfered with solely because
+   modification has been made.
+ .
+   If you convey an object code work under this section in, or with, or
+   specifically for use in, a User Product, and the conveying occurs as
+   part of a transaction in which the right of possession and use of the
+   User Product is transferred to the recipient in perpetuity or for a
+   fixed term (regardless of how the transaction is characterized), the
+   Corresponding Source conveyed under this section must be accompanied
+   by the Installation Information.  But this requirement does not apply
+   if neither you nor any third party retains the ability to install
+   modified object code on the User Product (for example, the work has
+       been installed in ROM).
+ .
+   The requirement to provide Installation Information does not include a
+   requirement to continue to provide support service, warranty, or updates
+   for a work that has been modified or installed by the recipient, or for
+   the User Product in which it has been modified or installed.  Access to a
+   network may be denied when the modification itself materially and
+   adversely affects the operation of the network or violates the rules and
+   protocols for communication across the network.
+ .
+   Corresponding Source conveyed, and Installation Information provided,
+   in accord with this section must be in a format that is publicly
+   documented (and with an implementation available to the public in
+       source code form), and must require no special password or key for
+   unpacking, reading or copying.
+ .
+   7. Additional Terms.
+ .
+   "Additional permissions" are terms that supplement the terms of this
+   License by making exceptions from one or more of its conditions.
+   Additional permissions that are applicable to the entire Program shall
+   be treated as though they were included in this License, to the extent
+   that they are valid under applicable law.  If additional permissions
+   apply only to part of the Program, that part may be used separately
+   under those permissions, but the entire Program remains governed by
+   this License without regard to the additional permissions.
+ .
+   When you convey a copy of a covered work, you may at your option
+   remove any additional permissions from that copy, or from any part of
+   it.  (Additional permissions may be written to require their own
+       removal in certain cases when you modify the work.)  You may place
+   additional permissions on material, added by you to a covered work,
+   for which you have or can give appropriate copyright permission.
+ .
+   Notwithstanding any other provision of this License, for material you
+   add to a covered work, you may (if authorized by the copyright holders of
+       that material) supplement the terms of this License with terms:
+ .
+   a) Disclaiming warranty or limiting liability differently from the
+   terms of sections 15 and 16 of this License; or
+ .
+   b) Requiring preservation of specified reasonable legal notices or
+   author attributions in that material or in the Appropriate Legal
+   Notices displayed by works containing it; or
+ .
+   c) Prohibiting misrepresentation of the origin of that material, or
+   requiring that modified versions of such material be marked in
+   reasonable ways as different from the original version; or
+ .
+   d) Limiting the use for publicity purposes of names of licensors or
+   authors of the material; or
+ .
+   e) Declining to grant rights under trademark law for use of some
+   trade names, trademarks, or service marks; or
+ .
+   f) Requiring indemnification of licensors and authors of that
+   material by anyone who conveys the material (or modified versions of
+       it) with contractual assumptions of liability to the recipient, for
+   any liability that these contractual assumptions directly impose on
+   those licensors and authors.
+ .
+   All other non-permissive additional terms are considered "further
+   restrictions" within the meaning of section 10.  If the Program as you
+   received it, or any part of it, contains a notice stating that it is
+   governed by this License along with a term that is a further
+   restriction, you may remove that term.  If a license document contains
+   a further restriction but permits relicensing or conveying under this
+   License, you may add to a covered work material governed by the terms
+   of that license document, provided that the further restriction does
+   not survive such relicensing or conveying.
+ .
+   If you add terms to a covered work in accord with this section, you
+   must place, in the relevant source files, a statement of the
+   additional terms that apply to those files, or a notice indicating
+   where to find the applicable terms.
+ .
+   Additional terms, permissive or non-permissive, may be stated in the
+   form of a separately written license, or stated as exceptions;
+   the above requirements apply either way.
+ .
+   8. Termination.
+ .
+   You may not propagate or modify a covered work except as expressly
+   provided under this License.  Any attempt otherwise to propagate or
+   modify it is void, and will automatically terminate your rights under
+   this License (including any patent licenses granted under the third
+       paragraph of section 11).
+ .
+   However, if you cease all violation of this License, then your
+ license from a particular copyright holder is reinstated (a)
+   provisionally, unless and until the copyright holder explicitly and
+   finally terminates your license, and (b) permanently, if the copyright
+   holder fails to notify you of the violation by some reasonable means
+   prior to 60 days after the cessation.
+ .
+   Moreover, your license from a particular copyright holder is
+   reinstated permanently if the copyright holder notifies you of the
+   violation by some reasonable means, this is the first time you have
+   received notice of violation of this License (for any work) from that
+   copyright holder, and you cure the violation prior to 30 days after
+   your receipt of the notice.
+ .
+   Termination of your rights under this section does not terminate the
+   licenses of parties who have received copies or rights from you under
+   this License.  If your rights have been terminated and not permanently
+   reinstated, you do not qualify to receive new licenses for the same
+   material under section 10.
+ .
+   9. Acceptance Not Required for Having Copies.
+ .
+   You are not required to accept this License in order to receive or
+   run a copy of the Program.  Ancillary propagation of a covered work
+   occurring solely as a consequence of using peer-to-peer transmission
+   to receive a copy likewise does not require acceptance.  However,
+   nothing other than this License grants you permission to propagate or
+   modify any covered work.  These actions infringe copyright if you do
+   not accept this License.  Therefore, by modifying or propagating a
+   covered work, you indicate your acceptance of this License to do so.
+ .
+   10. Automatic Licensing of Downstream Recipients.
+ .
+   Each time you convey a covered work, the recipient automatically
+   receives a license from the original licensors, to run, modify and
+   propagate that work, subject to this License.  You are not responsible
+   for enforcing compliance by third parties with this License.
+ .
+   An "entity transaction" is a transaction transferring control of an
+   organization, or substantially all assets of one, or subdividing an
+   organization, or merging organizations.  If propagation of a covered
+   work results from an entity transaction, each party to that
+   transaction who receives a copy of the work also receives whatever
+   licenses to the work the party's predecessor in interest had or could
+   give under the previous paragraph, plus a right to possession of the
+   Corresponding Source of the work from the predecessor in interest, if
+   the predecessor has it or can get it with reasonable efforts.
+ .
+   You may not impose any further restrictions on the exercise of the
+   rights granted or affirmed under this License.  For example, you may
+   not impose a license fee, royalty, or other charge for exercise of
+   rights granted under this License, and you may not initiate litigation
+   (including a cross-claim or counterclaim in a lawsuit) alleging that
+   any patent claim is infringed by making, using, selling, offering for
+   sale, or importing the Program or any portion of it.
+ .
+   11. Patents.
+ .
+   A "contributor" is a copyright holder who authorizes use under this
+   License of the Program or a work on which the Program is based.  The
+   work thus licensed is called the contributor's "contributor version".
+ .
+   A contributor's "essential patent claims" are all patent claims
+   owned or controlled by the contributor, whether already acquired or
+   hereafter acquired, that would be infringed by some manner, permitted
+   by this License, of making, using, or selling its contributor version,
+   but do not include claims that would be infringed only as a
+   consequence of further modification of the contributor version.  For
+   purposes of this definition, "control" includes the right to grant
+   patent sublicenses in a manner consistent with the requirements of
+   this License.
+ .
+   Each contributor grants you a non-exclusive, worldwide, royalty-free
+   patent license under the contributor's essential patent claims, to
+   make, use, sell, offer for sale, import and otherwise run, modify and
+   propagate the contents of its contributor version.
+ .
+   In the following three paragraphs, a "patent license" is any express
+   agreement or commitment, however denominated, not to enforce a patent
+   (such as an express permission to practice a patent or covenant not to
+    sue for patent infringement).  To "grant" such a patent license to a
+   party means to make such an agreement or commitment not to enforce a
+   patent against the party.
+ .
+   If you convey a covered work, knowingly relying on a patent license,
+   and the Corresponding Source of the work is not available for anyone
+   to copy, free of charge and under the terms of this License, through a
+   publicly available network server or other readily accessible means,
+   then you must either (1) cause the Corresponding Source to be so
+   available, or (2) arrange to deprive yourself of the benefit of the
+   patent license for this particular work, or (3) arrange, in a manner
+   consistent with the requirements of this License, to extend the patent
+   license to downstream recipients.  "Knowingly relying" means you have
+   actual knowledge that, but for the patent license, your conveying the
+   covered work in a country, or your recipient's use of the covered work
+   in a country, would infringe one or more identifiable patents in that
+   country that you have reason to believe are valid.
+ .
+   If, pursuant to or in connection with a single transaction or
+   arrangement, you convey, or propagate by procuring conveyance of, a
+   covered work, and grant a patent license to some of the parties
+   receiving the covered work authorizing them to use, propagate, modify
+   or convey a specific copy of the covered work, then the patent license
+   you grant is automatically extended to all recipients of the covered
+   work and works based on it.
+ .
+   A patent license is "discriminatory" if it does not include within
+   the scope of its coverage, prohibits the exercise of, or is
+   conditioned on the non-exercise of one or more of the rights that are
+   specifically granted under this License.  You may not convey a covered
+   work if you are a party to an arrangement with a third party that is
+   in the business of distributing software, under which you make payment
+   to the third party based on the extent of your activity of conveying
+   the work, and under which the third party grants, to any of the
+   parties who would receive the covered work from you, a discriminatory
+   patent license (a) in connection with copies of the covered work
+   conveyed by you (or copies made from those copies), or (b) primarily
+   for and in connection with specific products or compilations that
+   contain the covered work, unless you entered into that arrangement,
+   or that patent license was granted, prior to 28 March 2007.
+ .
+   Nothing in this License shall be construed as excluding or limiting
+   any implied license or other defenses to infringement that may
+   otherwise be available to you under applicable patent law.
+ .
+   12. No Surrender of Others' Freedom.
+ .
+   If conditions are imposed on you (whether by court order, agreement or
+       otherwise) that contradict the conditions of this License, they do not
+   excuse you from the conditions of this License.  If you cannot convey a
+   covered work so as to satisfy simultaneously your obligations under this
+   License and any other pertinent obligations, then as a consequence you may
+   not convey it at all.  For example, if you agree to terms that obligate you
+   to collect a royalty for further conveying from those to whom you convey
+   the Program, the only way you could satisfy both those terms and this
+   License would be to refrain entirely from conveying the Program.
+ .
+   13. Use with the GNU Affero General Public License.
+ .
+   Notwithstanding any other provision of this License, you have
+   permission to link or combine any covered work with a work licensed
+   under version 3 of the GNU Affero General Public License into a single
+   combined work, and to convey the resulting work.  The terms of this
+   License will continue to apply to the part which is the covered work,
+   but the special requirements of the GNU Affero General Public License,
+   section 13, concerning interaction through a network will apply to the
+   combination as such.
+ .
+   14. Revised Versions of this License.
+ .
+   The Free Software Foundation may publish revised and/or new versions of
+   the GNU General Public License from time to time.  Such new versions will
+   be similar in spirit to the present version, but may differ in detail to
+   address new problems or concerns.
+ .
+   Each version is given a distinguishing version number.  If the
+   Program specifies that a certain numbered version of the GNU General
+   Public License "or any later version" applies to it, you have the
+   option of following the terms and conditions either of that numbered
+   version or of any later version published by the Free Software
+   Foundation.  If the Program does not specify a version number of the
+   GNU General Public License, you may choose any version ever published
+   by the Free Software Foundation.
+ .
+   If the Program specifies that a proxy can decide which future
+   versions of the GNU General Public License can be used, that proxy's
+   public statement of acceptance of a version permanently authorizes you
+   to choose that version for the Program.
+ .
+   Later license versions may give you additional or different
+   permissions.  However, no additional obligations are imposed on any
+   author or copyright holder as a result of your choosing to follow a
+   later version.
+ .
+   15. Disclaimer of Warranty.
+ .
+   THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+   APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+   HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+   OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+   THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+   PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+   IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+   ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+ .
+   16. Limitation of Liability.
+ .
+   IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+   WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+   THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+   GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+   USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+       DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+       PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+   EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+   SUCH DAMAGES.
+ .
+   17. Interpretation of Sections 15 and 16.
+ .
+   If the disclaimer of warranty and limitation of liability provided
+   above cannot be given local legal effect according to their terms,
+   reviewing courts shall apply local law that most closely approximates
+   an absolute waiver of all civil liability in connection with the
+   Program, unless a warranty or assumption of liability accompanies a
+   copy of the Program in return for a fee.
+ .
+   END OF TERMS AND CONDITIONS
+ .
+   How to Apply These Terms to Your New Programs
+ .
+   If you develop a new program, and you want it to be of the greatest
+   possible use to the public, the best way to achieve this is to make it
+   free software which everyone can redistribute and change under these terms.
+ .
+   To do so, attach the following notices to the program.  It is safest
+   to attach them to the start of each source file to most effectively
+   state the exclusion of warranty; and each file should have at least
+   the "copyright" line and a pointer to where the full notice is found.
+ .
+   <one line to give the program's name and a brief idea of what it does.>
+   Copyright (C) <year>  <name of author>
+ .
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation, either version 3 of the License, or
+   (at your option) any later version.
+ .
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+ .
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ .
+   Also add information on how to contact you by electronic and paper mail.
+ .
+   If the program does terminal interaction, make it output a short
+   notice like this when it starts in an interactive mode:
+ .
+   <program>  Copyright (C) <year>  <name of author>
+   This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+   This is free software, and you are welcome to redistribute it
+   under certain conditions; type `show c' for details.
+ .
+   The hypothetical commands `show w' and `show c' should show the appropriate
+   parts of the General Public License.  Of course, your program's commands
+   might be different; for a GUI interface, you would use an "about box".
+ .
+   You should also get your employer (if you work as a programmer) or school,
+   if any, to sign a "copyright disclaimer" for the program, if necessary.
+   For more information on this, and how to apply and follow the GNU GPL, see
+   <http://www.gnu.org/licenses/>.
+ .
+   The GNU General Public License does not permit incorporating your program
+   into proprietary programs.  If your program is a subroutine library, you
+   may consider it more useful to permit linking proprietary applications with
+   the library.  If this is what you want to do, use the GNU Lesser General
+   Public License instead of this License.  But first, please read
+   <http://www.gnu.org/philosophy/why-not-lgpl.html>.
+ .
diff --git a/extras/packaging/gnu-linux/debian/debhelper-build-stamp b/extras/packaging/gnu-linux/debian/debhelper-build-stamp
new file mode 100644
index 0000000..7775e1d
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/debhelper-build-stamp
@@ -0,0 +1 @@
+dhtnet
diff --git a/extras/packaging/gnu-linux/debian/dhtnet.postrm.debhelper b/extras/packaging/gnu-linux/debian/dhtnet.postrm.debhelper
new file mode 100644
index 0000000..71a29c2
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/dhtnet.postrm.debhelper
@@ -0,0 +1,19 @@
+# Automatically added by dh_installsystemd/13.6ubuntu1
+if [ "$1" = remove ] && [ -d /run/systemd/system ] ; then
+	systemctl --system daemon-reload >/dev/null || true
+fi
+# End automatically added section
+# Automatically added by dh_installsystemd/13.6ubuntu1
+if [ "$1" = "remove" ]; then
+	if [ -x "/usr/bin/deb-systemd-helper" ]; then
+		deb-systemd-helper mask 'dnc.service' >/dev/null || true
+	fi
+fi
+
+if [ "$1" = "purge" ]; then
+	if [ -x "/usr/bin/deb-systemd-helper" ]; then
+		deb-systemd-helper purge 'dnc.service' >/dev/null || true
+		deb-systemd-helper unmask 'dnc.service' >/dev/null || true
+	fi
+fi
+# End automatically added section
diff --git a/extras/packaging/gnu-linux/debian/dhtnet.substvars b/extras/packaging/gnu-linux/debian/dhtnet.substvars
new file mode 100644
index 0000000..e56b39c
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/dhtnet.substvars
@@ -0,0 +1,3 @@
+shlibs:Depends=libargon2-1 (>= 0~20171227), libc6 (>= 2.34), libfmt8 (>= 8.1.1+ds1), libgcc-s1 (>= 3.3.1), libgnutls30 (>= 3.7.3), libixml10 (>= 1:1.8.0), libjsoncpp25 (>= 1.9.5), libnatpmp1 (>= 20150609), libnettle8, libreadline8 (>= 6.0), libssl3 (>= 3.0.0~~alpha1), libstdc++6 (>= 12), libupnp13 (>= 1:1.8.3), libyaml-cpp0.7 (>= 0.7.0)
+misc:Depends=
+misc:Pre-Depends=
diff --git a/extras/packaging/gnu-linux/debian/files b/extras/packaging/gnu-linux/debian/files
new file mode 100644
index 0000000..eba7bfd
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/files
@@ -0,0 +1,3 @@
+dhtnet-dbgsym_0.1.0-1_amd64.ddeb debug optional automatic=yes
+dhtnet_0.1.0-1_amd64.buildinfo net optional
+dhtnet_0.1.0-1_amd64.deb net optional
diff --git a/extras/packaging/gnu-linux/debian/patches/series b/extras/packaging/gnu-linux/debian/patches/series
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/patches/series
@@ -0,0 +1 @@
+
diff --git a/extras/packaging/gnu-linux/debian/postinst b/extras/packaging/gnu-linux/debian/postinst
new file mode 100644
index 0000000..04b2f19
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/postinst
@@ -0,0 +1,29 @@
+#!/bin/sh
+set -e
+
+umask 022
+
+create_server_keys() {
+    mkdir -p /etc/dhtnet/id
+    if [ ! -f /etc/dhtnet/id/id-server.crt ] && [ ! -f /etc/dhtnet/id/id-server.pem ]; then
+        echo "Generating server keys..."
+        dhtnet-crtmgr --setup -o /etc/dhtnet/
+        dhtnet-crtmgr -g -c /etc/dhtnet/id/id-server.crt -p /etc/dhtnet/id/id-server.pem
+        disable_dnc_service
+    fi
+}
+
+# reload_dnc_service() {
+#     status=$(systemctl is-active dnc.service || true)
+#     if [ "$status" = "failed" ]; then
+#         echo "dnc.service failed to start, try a restart after keys was created..."
+#         systemctl restart dnc.service
+#     fi
+# }
+
+disable_dnc_service() {
+    systemctl stop dnc.service
+    systemctl disable dnc.service
+}
+
+create_server_keys
diff --git a/extras/packaging/gnu-linux/debian/rules b/extras/packaging/gnu-linux/debian/rules
new file mode 100755
index 0000000..3138f95
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/rules
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+export DH_VERBOSE = 1
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+# export JAVA_HOME=/usr/lib/jvm/default-java
+# export CLASSPATH=/usr/share/java/csv.jar:/usr/share/java/debug-disable.jar:/usr/share/java/itext.jar
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
+%:
+	dh $@ 
+# dh $@ --with javahelper 
+
+override_dh_auto_configure:
+	dh_auto_configure -- \
+	      -DCMAKE_LIBRARY_ARCHITECTURE="$(DEB_TARGET_MULTIARCH)" \
+		  -DBUILD_TESTING=OFF
diff --git a/extras/packaging/gnu-linux/debian/source/format b/extras/packaging/gnu-linux/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/extras/packaging/gnu-linux/debian/source/local-options b/extras/packaging/gnu-linux/debian/source/local-options
new file mode 100644
index 0000000..00131ee
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/source/local-options
@@ -0,0 +1,2 @@
+#abort-on-upstream-changes
+#unapply-patches
diff --git a/extras/packaging/gnu-linux/debian/tests/control b/extras/packaging/gnu-linux/debian/tests/control
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/tests/control
diff --git a/extras/packaging/gnu-linux/debian/watch b/extras/packaging/gnu-linux/debian/watch
new file mode 100644
index 0000000..9e7c0da
--- /dev/null
+++ b/extras/packaging/gnu-linux/debian/watch
@@ -0,0 +1 @@
+version=3
diff --git a/extras/packaging/gnu-linux/ubuntu-22.Dockerfile b/extras/packaging/gnu-linux/ubuntu-22.Dockerfile
new file mode 100644
index 0000000..4bbbaf3
--- /dev/null
+++ b/extras/packaging/gnu-linux/ubuntu-22.Dockerfile
@@ -0,0 +1,34 @@
+FROM ubuntu:22.04
+
+WORKDIR /build
+ARG PKG_NAME
+
+ENV EMAIL="contact@savoirfairelinux.com"
+ENV DEBFULLNAME="Savoir-faire Linux"
+
+RUN apt-get update && \
+    echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
+    apt-get install -y \
+        dialog apt-utils make devscripts build-essential debmake lintian \
+    && apt-get clean && \
+    mkdir -p /build/debs
+
+RUN apt-get update && apt-get install -y \
+        build-essential pkg-config cmake dpkg-dev gcc g++ git wget \
+        libtool autotools-dev autoconf automake sbuild autopkgtest debhelper debhelper-compat \
+        cython3 python3-dev python3-setuptools python3-build python3-virtualenv \
+        libncurses5-dev libreadline-dev nettle-dev libcppunit-dev \
+        libgnutls28-dev libuv1-dev libjsoncpp-dev libargon2-dev libunistring-dev \
+        libssl-dev libfmt-dev libasio-dev libmsgpack-dev libyaml-cpp-dev \
+        systemd \
+    && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/*
+
+COPY ${PKG_NAME}.tar.gz /build/
+
+CMD tar -xzf ${PKG_NAME}.tar.gz && \
+    cd ${PKG_NAME} && \
+    debmake -b "dhtnet:bin" -y && \
+    debuild && \
+    cd .. && \
+    rm -Rf ${PKG_NAME} ${PKG_NAME}.tar.gz && \
+    cp /build/*.deb /build/debs/
diff --git a/extras/packaging/gnu-linux/ubuntu-24.Dockerfile b/extras/packaging/gnu-linux/ubuntu-24.Dockerfile
new file mode 100644
index 0000000..b79a327
--- /dev/null
+++ b/extras/packaging/gnu-linux/ubuntu-24.Dockerfile
@@ -0,0 +1,34 @@
+FROM ubuntu:24.04
+
+WORKDIR /build
+ARG PKG_NAME
+
+ENV EMAIL="contact@savoirfairelinux.com"
+ENV DEBFULLNAME="Savoir-faire Linux"
+
+RUN apt-get update && \
+    echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
+    apt-get install -y \
+        dialog apt-utils make devscripts build-essential debmake lintian \
+    && apt-get clean && \
+    mkdir -p /build/debs
+
+RUN apt-get update && apt-get install -y \
+        build-essential pkg-config cmake dpkg-dev gcc g++ git wget \
+        libtool autotools-dev autoconf automake sbuild autopkgtest debhelper debhelper-compat \
+        cython3 python3-dev python3-setuptools python3-build python3-virtualenv \
+        libncurses5-dev libreadline-dev nettle-dev libcppunit-dev \
+        libgnutls28-dev libuv1-dev libjsoncpp-dev libargon2-dev libunistring-dev \
+        libssl-dev libfmt-dev libasio-dev libmsgpack-dev libyaml-cpp-dev \
+        systemd \
+    && apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/*
+
+COPY ${PKG_NAME}.tar.gz /build/
+
+CMD tar -xzf ${PKG_NAME}.tar.gz && \
+    cd ${PKG_NAME} && \
+    debmake -b "dhtnet:bin" -y && \
+    debuild && \
+    cd .. && \
+    rm -Rf ${PKG_NAME} ${PKG_NAME}.tar.gz && \
+    cp /build/*.deb /build/debs/