├── .clang-format ├── .gitattributes ├── .gitconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── docker │ └── debian │ │ ├── bookworm │ │ ├── amd64 │ │ │ ├── public.release.Dockerfile │ │ │ └── public.unstable.Dockerfile │ │ ├── arm32v7 │ │ │ ├── public.release.Dockerfile │ │ │ └── public.unstable.Dockerfile │ │ └── arm64v8 │ │ │ ├── public.release.Dockerfile │ │ │ └── public.unstable.Dockerfile │ │ └── bullseye │ │ ├── amd64 │ │ ├── public.release.Dockerfile │ │ └── public.unstable.Dockerfile │ │ ├── arm32v7 │ │ ├── public.release.Dockerfile │ │ └── public.unstable.Dockerfile │ │ └── arm64v8 │ │ ├── public.release.Dockerfile │ │ └── public.unstable.Dockerfile └── workflows │ ├── build.yml │ ├── ci.yml │ └── unit-test.yml ├── .gitignore ├── .mailmap ├── Freeswitch.2017.sln ├── Freeswitch.2017.sln.bat ├── INSTALL ├── LICENSE ├── Makefile.am ├── README.md ├── SECURITY.md ├── acinclude.m4 ├── bootstrap.sh ├── cc.sh ├── clients └── flex │ ├── Sound_of_phone_ringing2.mp3 │ ├── build.sh │ ├── com │ └── adobe │ │ ├── air │ │ ├── crypto │ │ │ └── EncryptionKeyGenerator.as │ │ ├── filesystem │ │ │ ├── FileMonitor.as │ │ │ ├── FileUtil.as │ │ │ ├── VolumeMonitor.as │ │ │ └── events │ │ │ │ └── FileMonitorEvent.as │ │ ├── logging │ │ │ └── FileTarget.as │ │ └── net │ │ │ ├── ResourceCache.as │ │ │ └── events │ │ │ └── ResourceCacheEvent.as │ │ ├── crypto │ │ ├── HMAC.as │ │ ├── IntUtil.as │ │ ├── MD5.as │ │ ├── MD5Stream.as │ │ ├── SHA1.as │ │ ├── SHA224.as │ │ ├── SHA256.as │ │ └── WSSEUsernameToken.as │ │ ├── errors │ │ └── IllegalStateError.as │ │ ├── fileformats │ │ └── vcard │ │ │ ├── Address.as │ │ │ ├── Email.as │ │ │ ├── Phone.as │ │ │ ├── VCard.as │ │ │ └── VCardParser.as │ │ ├── images │ │ ├── BitString.as │ │ ├── JPGEncoder.as │ │ └── PNGEncoder.as │ │ ├── net │ │ ├── DynamicURLLoader.as │ │ ├── IURIResolver.as │ │ ├── MimeTypeMap.as │ │ ├── URI.as │ │ ├── URIEncodingBitmap.as │ │ └── proxies │ │ │ └── RFC2817Socket.as │ │ ├── protocols │ │ └── dict │ │ │ ├── Database.as │ │ │ ├── Definition.as │ │ │ ├── Dict.as │ │ │ ├── DictionaryServer.as │ │ │ ├── MatchStrategy.as │ │ │ ├── Response.as │ │ │ ├── events │ │ │ ├── ConnectedEvent.as │ │ │ ├── DatabaseEvent.as │ │ │ ├── DefinitionEvent.as │ │ │ ├── DefinitionHeaderEvent.as │ │ │ ├── DictionaryServerEvent.as │ │ │ ├── DisconnectedEvent.as │ │ │ ├── ErrorEvent.as │ │ │ ├── MatchEvent.as │ │ │ ├── MatchStrategiesEvent.as │ │ │ └── NoMatchEvent.as │ │ │ └── util │ │ │ ├── CompleteResponseEvent.as │ │ │ └── SocketHelper.as │ │ ├── serialization │ │ └── json │ │ │ ├── JSON.as │ │ │ ├── JSONDecoder.as │ │ │ ├── JSONEncoder.as │ │ │ ├── JSONParseError.as │ │ │ ├── JSONToken.as │ │ │ ├── JSONTokenType.as │ │ │ └── JSONTokenizer.as │ │ ├── utils │ │ ├── ArrayUtil.as │ │ ├── DateUtil.as │ │ ├── DictionaryUtil.as │ │ ├── IntUtil.as │ │ ├── NumberFormatter.as │ │ ├── StringUtil.as │ │ └── XMLUtil.as │ │ └── webapis │ │ ├── ServiceBase.as │ │ ├── URLLoaderBase.as │ │ └── events │ │ └── ServiceEvent.as │ ├── freeswitch-h264.swf │ ├── freeswitch-video.html │ ├── freeswitch.html │ ├── freeswitch.mxml │ ├── freeswitch.swf │ ├── jquery-1.4.2.js │ ├── jquery.min.js │ ├── jquery.query-2.1.7.js │ ├── jquery.tmpl.js │ ├── swfobject.js │ └── warning-icon.png ├── cluecon.tmpl ├── cluecon2.tmpl ├── cluecon2_small.tmpl ├── cluecon_small.tmpl ├── cmake_modules ├── FindAPR.cmake └── FindSndfile.cmake ├── conf ├── FreeMono.ttf ├── curl │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── alsa.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── dialplan_directory.conf.xml │ │ ├── enum.conf.xml │ │ ├── event_multicast.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── fax.conf.xml │ │ ├── fifo.conf.xml │ │ ├── iax.conf.xml │ │ ├── ivr.conf.xml │ │ ├── java.conf.xml │ │ ├── limit.conf.xml │ │ ├── local_stream.conf.xml │ │ ├── logfile.conf.xml │ │ ├── lua.conf.xml │ │ ├── modules.conf.xml │ │ ├── opal.conf.xml │ │ ├── openmrcp.conf.xml │ │ ├── perl.conf.xml │ │ ├── pocketsphinx.conf.xml │ │ ├── portaudio.conf.xml │ │ ├── post_load_modules.conf.xml │ │ ├── python.conf.xml │ │ ├── rss.conf.xml │ │ ├── shout.conf.xml │ │ ├── sofia.conf.xml │ │ ├── switch.conf.xml │ │ ├── syslog.conf.xml │ │ ├── timezones.conf.xml │ │ ├── v8.conf.xml │ │ ├── voicemail.conf.xml │ │ ├── xml_cdr.conf.xml │ │ ├── xml_curl.conf.xml │ │ ├── xml_rpc.conf.xml │ │ └── zeroconf.conf.xml │ ├── freeswitch.xml │ └── mime.types ├── freeswitch.xml ├── insideout │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── alsa.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── dialplan_directory.conf.xml │ │ ├── enum.conf.xml │ │ ├── event_multicast.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── fax.conf.xml │ │ ├── fifo.conf.xml │ │ ├── iax.conf.xml │ │ ├── ivr.conf.xml │ │ ├── java.conf.xml │ │ ├── limit.conf.xml │ │ ├── local_stream.conf.xml │ │ ├── logfile.conf.xml │ │ ├── lua.conf.xml │ │ ├── modules.conf.xml │ │ ├── opal.conf.xml │ │ ├── perl.conf.xml │ │ ├── pocketsphinx.conf.xml │ │ ├── portaudio.conf.xml │ │ ├── post_load_modules.conf.xml │ │ ├── python.conf.xml │ │ ├── rss.conf.xml │ │ ├── shout.conf.xml │ │ ├── sofia.conf.xml │ │ ├── switch.conf.xml │ │ ├── syslog.conf.xml │ │ ├── timezones.conf.xml │ │ ├── translate.conf.xml │ │ ├── v8.conf.xml │ │ ├── voicemail.conf.xml │ │ ├── xml_cdr.conf.xml │ │ ├── xml_curl.conf.xml │ │ ├── xml_rpc.conf.xml │ │ └── zeroconf.conf.xml │ ├── dialplan │ │ ├── default.xml │ │ ├── default │ │ │ ├── 00_pizza_demo.xml │ │ │ ├── 01_example.com.xml │ │ │ ├── 02_conferences.xml │ │ │ └── 99999_enum.xml │ │ ├── features.xml │ │ ├── public.xml │ │ └── public │ │ │ └── 00_inbound_did.xml │ ├── directory │ │ ├── default.xml │ │ └── default │ │ │ ├── 1000.xml │ │ │ ├── 1001.xml │ │ │ ├── 1002.xml │ │ │ ├── 1003.xml │ │ │ ├── 1004.xml │ │ │ ├── 1005.xml │ │ │ ├── 1006.xml │ │ │ ├── 1007.xml │ │ │ ├── 1008.xml │ │ │ ├── 1009.xml │ │ │ ├── 1010.xml │ │ │ ├── 1011.xml │ │ │ ├── 1012.xml │ │ │ ├── 1013.xml │ │ │ ├── 1014.xml │ │ │ ├── 1015.xml │ │ │ ├── 1016.xml │ │ │ ├── 1017.xml │ │ │ ├── 1018.xml │ │ │ ├── 1019.xml │ │ │ ├── brian.xml │ │ │ ├── default.xml │ │ │ └── example.com.xml │ ├── extensions.conf │ ├── freeswitch.xml │ ├── fur_elise.ttml │ ├── lang │ │ ├── de │ │ │ ├── de.xml │ │ │ ├── demo │ │ │ │ └── demo.xml │ │ │ └── vm │ │ │ │ └── tts.xml │ │ ├── en │ │ │ ├── demo │ │ │ │ ├── demo-ivr.xml │ │ │ │ └── demo.xml │ │ │ ├── en.xml │ │ │ └── vm │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ └── fr │ │ │ ├── demo │ │ │ └── demo.xml │ │ │ ├── fr.xml │ │ │ └── vm │ │ │ └── sounds.xml │ ├── mime.types │ ├── notify-voicemail.tpl │ ├── openzap.conf │ ├── sip_profiles │ │ ├── external.xml │ │ ├── external │ │ │ └── example.xml │ │ ├── internal-ipv6.xml │ │ ├── internal.xml │ │ └── internal │ │ │ └── example.xml │ ├── tetris.ttml │ ├── tones.conf │ ├── vars.xml │ ├── voicemail.tpl │ └── web-vm.tpl ├── minimal │ ├── README.md │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── db.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── logfile.conf.xml │ │ ├── modules.conf.xml │ │ ├── sofia.conf.xml │ │ ├── switch.conf.xml │ │ ├── timezones.conf.xml │ │ └── xml_rpc.conf.xml │ ├── dialplan │ │ ├── default.xml │ │ ├── public.xml │ │ └── public │ │ │ └── 00_stub.xml │ ├── freeswitch.xml │ ├── modules.conf │ ├── sip_profiles │ │ ├── external.xml │ │ ├── external │ │ │ └── stub.xml │ │ └── internal.xml │ └── vars.xml ├── rayo │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── http_cache.conf.xml │ │ ├── local_stream.conf.xml │ │ ├── logfile.conf.xml │ │ ├── modules.conf.xml │ │ ├── pocketsphinx.conf.xml │ │ ├── post_load_modules.conf.xml │ │ ├── pre_load_modules.conf.xml │ │ ├── presence_map.conf.xml │ │ ├── rayo.conf.xml │ │ ├── shout.conf.xml │ │ ├── sofia.conf.xml │ │ ├── spandsp.conf.xml │ │ ├── ssml.conf.xml │ │ ├── switch.conf.xml │ │ └── timezones.conf.xml │ ├── cacert.pem │ ├── dialplan │ │ └── public.xml │ ├── directory │ │ ├── default.xml │ │ └── default │ │ │ ├── usera.xml │ │ │ ├── userb.xml │ │ │ ├── userc.xml │ │ │ └── userd.xml │ ├── freeswitch.xml │ ├── lang │ │ ├── de │ │ │ ├── de.xml │ │ │ ├── demo │ │ │ │ └── demo.xml │ │ │ └── vm │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ ├── en │ │ │ ├── demo │ │ │ │ ├── demo-ivr.xml │ │ │ │ ├── demo.xml │ │ │ │ ├── funnies.xml │ │ │ │ └── new-demo-ivr.xml │ │ │ ├── dir │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ │ ├── en.xml │ │ │ ├── ivr │ │ │ │ └── sounds.xml │ │ │ └── vm │ │ │ │ ├── sounds.xml │ │ │ │ ├── tts.xml │ │ │ │ └── voicemail_ivr.xml │ │ ├── es │ │ │ ├── demo │ │ │ │ ├── demo-es-ES.xml │ │ │ │ ├── demo-es-MX.xml │ │ │ │ ├── demo-ivr-es-ES.xml │ │ │ │ └── demo-ivr-es-MX.xml │ │ │ ├── dir │ │ │ │ ├── sounds-es-ES.xml │ │ │ │ ├── sounds-es-MX.xml │ │ │ │ ├── tts-es-ES.xml │ │ │ │ └── tts-es-MX.xml │ │ │ ├── es_ES.xml │ │ │ ├── es_MX.xml │ │ │ └── vm │ │ │ │ ├── sounds-es-ES.xml │ │ │ │ ├── sounds-es-MX.xml │ │ │ │ ├── tts-es-ES.xml │ │ │ │ └── tts-es-MX.xml │ │ ├── fr │ │ │ ├── demo │ │ │ │ └── demo.xml │ │ │ ├── dir │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ │ ├── fr.xml │ │ │ └── vm │ │ │ │ └── sounds.xml │ │ ├── he │ │ │ ├── demo │ │ │ │ ├── demo-ivr.xml │ │ │ │ └── demo.xml │ │ │ ├── dir │ │ │ │ └── sounds.xml │ │ │ ├── he.xml │ │ │ └── vm │ │ │ │ └── sounds.xml │ │ ├── pt │ │ │ ├── demo │ │ │ │ ├── demo-ivr-pt-BR.xml │ │ │ │ ├── demo-ivr-pt-PT.xml │ │ │ │ ├── demo-pt-BR.xml │ │ │ │ └── demo-pt-PT.xml │ │ │ ├── dir │ │ │ │ ├── sounds-pt-BR.xml │ │ │ │ ├── sounds-pt-PT.xml │ │ │ │ ├── tts-pt-BR.xml │ │ │ │ └── tts-pt-PT.xml │ │ │ ├── pt_BR.xml │ │ │ ├── pt_PT.xml │ │ │ └── vm │ │ │ │ ├── sounds-pt-BR.xml │ │ │ │ ├── sounds-pt-PT.xml │ │ │ │ ├── tts-pt-BR.xml │ │ │ │ └── tts-pt-PT.xml │ │ ├── ru │ │ │ ├── demo │ │ │ │ ├── demo-ivr.xml │ │ │ │ └── demo.xml │ │ │ ├── dir │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ │ ├── ru.xml │ │ │ └── vm │ │ │ │ ├── sounds.xml │ │ │ │ └── tts.xml │ │ └── sv │ │ │ ├── sv.xml │ │ │ └── vm │ │ │ └── sounds.xml │ ├── mime.types │ ├── sip_profiles │ │ ├── external.xml │ │ └── external │ │ │ └── example.xml │ └── vars.xml ├── sbc │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── console.conf.xml │ │ ├── enum.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── limit.conf.xml │ │ ├── logfile.conf.xml │ │ ├── modules.conf.xml │ │ ├── post_load_modules.conf.xml │ │ ├── sofia.conf.xml │ │ ├── switch.conf.xml │ │ ├── syslog.conf.xml │ │ ├── timezones.conf.xml │ │ ├── translate.conf.xml │ │ ├── xml_cdr.conf.xml │ │ └── xml_rpc.conf.xml │ ├── dialplan │ │ ├── default.xml │ │ ├── default │ │ │ ├── 00_pizza_demo.xml │ │ │ ├── 01_example.com.xml │ │ │ └── 99999_enum.xml │ │ ├── features.xml │ │ ├── public.xml │ │ └── public │ │ │ └── 00_inbound_did.xml │ ├── freeswitch.xml │ ├── mime.types │ ├── sbc_profiles │ │ ├── external.xml │ │ ├── external │ │ │ └── example.xml │ │ ├── internal-ipv6.xml │ │ ├── internal.xml │ │ └── internal │ │ │ └── example.xml │ └── vars.xml ├── softphone │ ├── accounts │ │ └── example.xml │ └── freeswitch.xml ├── testing │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── amd.conf.xml │ │ ├── amr.conf.xml │ │ ├── amrwb.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── conference_layouts.conf.xml │ │ ├── console.conf.xml │ │ ├── directory.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── fifo.conf.xml │ │ ├── hash.conf.xml │ │ ├── local_stream.conf.xml │ │ ├── logfile.conf.xml │ │ ├── lua.conf.xml │ │ ├── modules.conf.xml │ │ ├── opus.conf.xml │ │ ├── post_load_modules.conf.xml │ │ ├── pre_load_modules.conf.xml │ │ ├── presence_map.conf.xml │ │ ├── shout.conf.xml │ │ ├── sndfile.conf.xml │ │ ├── sofia.conf.xml │ │ ├── spandsp.conf.xml │ │ ├── switch.conf.xml │ │ ├── timezones.conf.xml │ │ ├── verto.conf.xml │ │ ├── voicemail.conf.xml │ │ └── xml_curl.conf.xml │ ├── chatplan │ │ └── default.xml │ ├── dialplan │ │ ├── default.xml │ │ ├── default │ │ │ ├── 0000_local_extensions.xml │ │ │ ├── 0001_vmain.xml │ │ │ ├── 0002_leave_videomail.xml │ │ │ ├── 0004_record_video.xml │ │ │ ├── 0006_set_video_on_hold.xml │ │ │ ├── 0007_pre_answer.xml │ │ │ ├── 0008_eavesdrop.xml │ │ │ ├── 0009_condition_regex_all.xml │ │ │ ├── 0010_condition_xor.xml │ │ │ ├── 0011_play_video_local_stream.xml │ │ │ ├── 0012_play_audio_local_stream.xml │ │ │ ├── 0013_hangup_testing.xml │ │ │ ├── 0019_conf.xml │ │ │ ├── 0020_record_on_answer_video.xml │ │ │ ├── 0022_mod_com_amd_testing.xml │ │ │ ├── 0023_video_eavesdrop.xml │ │ │ ├── 0024_play_video.xml │ │ │ ├── 0026_fax.xml │ │ │ └── 9999_date_time_match.xml.noload │ │ ├── public.xml │ │ └── public │ │ │ ├── 000000.xml │ │ │ ├── 000001.xml │ │ │ └── 0000_local_extensions.xml │ ├── directory │ │ ├── default.xml │ │ └── default │ │ │ ├── 1000.xml │ │ │ ├── 1001.xml │ │ │ ├── 1002.xml │ │ │ ├── 1003.xml │ │ │ ├── 1004.xml │ │ │ ├── 1005.xml │ │ │ ├── 1006.xml │ │ │ ├── 1007.xml │ │ │ ├── 1008.xml │ │ │ ├── 1009.xml │ │ │ ├── 1010.xml │ │ │ ├── 1011.xml │ │ │ ├── 1012.xml │ │ │ ├── 1013.xml │ │ │ ├── 1014.xml │ │ │ ├── 1015.xml │ │ │ ├── 1016.xml │ │ │ ├── 1017.xml │ │ │ ├── 1018.xml │ │ │ ├── 1019.xml │ │ │ └── default.xml │ ├── freeswitch.xml │ ├── lang │ │ └── en │ │ │ ├── demo │ │ │ ├── demo-ivr.xml │ │ │ ├── demo.xml │ │ │ ├── funnies.xml │ │ │ └── new-demo-ivr.xml │ │ │ ├── dir │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ │ │ ├── en.xml │ │ │ ├── ivr │ │ │ └── sounds.xml │ │ │ └── vm │ │ │ ├── sounds.xml │ │ │ ├── tts.xml │ │ │ └── voicemail_ivr.xml │ ├── sip_profiles │ │ ├── external-ipv6.xml │ │ ├── external.xml │ │ ├── internal-ipv6.xml │ │ └── internal.xml │ └── vars.xml └── vanilla │ ├── README_IMPORTANT.txt │ ├── autoload_configs │ ├── abstraction.conf.xml │ ├── acl.conf.xml │ ├── alsa.conf.xml │ ├── amqp.conf.xml │ ├── amr.conf.xml │ ├── amrwb.conf.xml │ ├── av.conf.xml │ ├── avmd.conf.xml │ ├── blacklist.conf.xml │ ├── callcenter.conf.xml │ ├── cdr_csv.conf.xml │ ├── cdr_mongodb.conf.xml │ ├── cdr_pg_csv.conf.xml │ ├── cdr_sqlite.conf.xml │ ├── cepstral.conf.xml │ ├── cidlookup.conf.xml │ ├── conference.conf.xml │ ├── conference_layouts.conf.xml │ ├── console.conf.xml │ ├── curl.conf.xml │ ├── db.conf.xml │ ├── dialplan_directory.conf.xml │ ├── directory.conf.xml │ ├── distributor.conf.xml │ ├── easyroute.conf.xml │ ├── enum.conf.xml │ ├── erlang_event.conf.xml │ ├── event_multicast.conf.xml │ ├── event_socket.conf.xml │ ├── fax.conf.xml │ ├── fifo.conf.xml │ ├── format_cdr.conf.xml │ ├── graylog2.conf.xml │ ├── hash.conf.xml │ ├── hiredis.conf.xml │ ├── httapi.conf.xml │ ├── http_cache.conf.xml │ ├── ivr.conf.xml │ ├── java.conf.xml │ ├── lcr.conf.xml │ ├── local_stream.conf.xml │ ├── logfile.conf.xml │ ├── lua.conf.xml │ ├── memcache.conf.xml │ ├── modules.conf.xml │ ├── mongo.conf.xml │ ├── msrp.conf.xml │ ├── nibblebill.conf.xml │ ├── opal.conf.xml │ ├── opus.conf.xml │ ├── oreka.conf.xml │ ├── osp.conf.xml │ ├── perl.conf.xml │ ├── pocketsphinx.conf.xml │ ├── portaudio.conf.xml │ ├── post_load_modules.conf.xml │ ├── pre_load_modules.conf.xml │ ├── presence_map.conf.xml │ ├── python.conf.xml │ ├── redis.conf.xml │ ├── rss.conf.xml │ ├── rtmp.conf.xml │ ├── sangoma_codec.conf.xml │ ├── shout.conf.xml │ ├── signalwire.conf.xml │ ├── skinny.conf.xml │ ├── smpp.conf.xml │ ├── sms_flowroute.conf.xml │ ├── sndfile.conf.xml │ ├── sofia.conf.xml │ ├── spandsp.conf.xml │ ├── switch.conf.xml │ ├── syslog.conf.xml │ ├── timezones.conf.xml │ ├── translate.conf.xml │ ├── tts_commandline.conf.xml │ ├── unicall.conf.xml │ ├── v8.conf.xml │ ├── verto.conf.xml │ ├── voicemail.conf.xml │ ├── voicemail_ivr.conf.xml │ ├── vpx.conf.xml │ ├── xml_cdr.conf.xml │ ├── xml_curl.conf.xml │ ├── xml_rpc.conf.xml │ ├── xml_scgi.conf.xml │ └── zeroconf.conf.xml │ ├── chatplan │ └── default.xml │ ├── config.FS0 │ ├── dialplan │ ├── default.xml │ ├── default │ │ ├── 00_ladspa.xml │ │ ├── 00_pizza_demo.xml │ │ ├── 01_Talking_Clock.xml │ │ ├── 01_example.com.xml │ │ ├── ideasip.com.noload │ │ ├── pulver.com.noload │ │ ├── sipbroker.com.noload │ │ ├── sipphone.com.noload │ │ └── tollfreegateway.com.noload │ ├── features.xml │ ├── public.xml │ ├── public │ │ └── 00_inbound_did.xml │ ├── skinny-patterns.xml │ └── skinny-patterns │ │ ├── 20-Demo.xml │ │ ├── 20-Local_extension.xml │ │ ├── 90-External.xml │ │ └── 99-Default_Drop.xml │ ├── directory │ ├── default.xml │ └── default │ │ ├── 1000.xml │ │ ├── 1001.xml │ │ ├── 1002.xml │ │ ├── 1003.xml │ │ ├── 1004.xml │ │ ├── 1005.xml │ │ ├── 1006.xml │ │ ├── 1007.xml │ │ ├── 1008.xml │ │ ├── 1009.xml │ │ ├── 1010.xml │ │ ├── 1011.xml │ │ ├── 1012.xml │ │ ├── 1013.xml │ │ ├── 1014.xml │ │ ├── 1015.xml │ │ ├── 1016.xml │ │ ├── 1017.xml │ │ ├── 1018.xml │ │ ├── 1019.xml │ │ ├── brian.xml │ │ ├── default.xml │ │ ├── example.com.xml │ │ └── skinny-example.xml │ ├── extensions.conf │ ├── freeswitch.xml │ ├── fur_elise.ttml │ ├── ivr_menus │ ├── demo_ivr.xml │ └── new_demo_ivr.xml │ ├── lang │ ├── de │ │ ├── de.xml │ │ ├── demo │ │ │ └── demo.xml │ │ └── vm │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ ├── en │ │ ├── demo │ │ │ ├── demo-ivr.xml │ │ │ ├── demo.xml │ │ │ ├── funnies.xml │ │ │ └── new-demo-ivr.xml │ │ ├── dir │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ │ ├── en.xml │ │ ├── ivr │ │ │ └── sounds.xml │ │ └── vm │ │ │ ├── sounds.xml │ │ │ ├── tts.xml │ │ │ └── voicemail_ivr.xml │ ├── es │ │ ├── demo │ │ │ ├── demo-es-ES.xml │ │ │ ├── demo-es-MX.xml │ │ │ ├── demo-ivr-es-ES.xml │ │ │ └── demo-ivr-es-MX.xml │ │ ├── dir │ │ │ ├── sounds-es-ES.xml │ │ │ ├── sounds-es-MX.xml │ │ │ ├── tts-es-ES.xml │ │ │ └── tts-es-MX.xml │ │ ├── es_ES.xml │ │ ├── es_MX.xml │ │ └── vm │ │ │ ├── sounds-es-ES.xml │ │ │ ├── sounds-es-MX.xml │ │ │ ├── tts-es-ES.xml │ │ │ └── tts-es-MX.xml │ ├── fr │ │ ├── demo │ │ │ └── demo.xml │ │ ├── dir │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ │ ├── fr.xml │ │ └── vm │ │ │ └── sounds.xml │ ├── he │ │ ├── demo │ │ │ ├── demo-ivr.xml │ │ │ └── demo.xml │ │ ├── dir │ │ │ └── sounds.xml │ │ ├── he.xml │ │ └── vm │ │ │ └── sounds.xml │ ├── pt │ │ ├── demo │ │ │ ├── demo-ivr-pt-BR.xml │ │ │ ├── demo-ivr-pt-PT.xml │ │ │ ├── demo-pt-BR.xml │ │ │ └── demo-pt-PT.xml │ │ ├── dir │ │ │ ├── sounds-pt-BR.xml │ │ │ ├── sounds-pt-PT.xml │ │ │ ├── tts-pt-BR.xml │ │ │ └── tts-pt-PT.xml │ │ ├── pt_BR.xml │ │ ├── pt_PT.xml │ │ └── vm │ │ │ ├── sounds-pt-BR.xml │ │ │ ├── sounds-pt-PT.xml │ │ │ ├── tts-pt-BR.xml │ │ │ └── tts-pt-PT.xml │ ├── ru │ │ ├── demo │ │ │ ├── demo-ivr.xml │ │ │ └── demo.xml │ │ ├── dir │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ │ ├── ru.xml │ │ └── vm │ │ │ ├── sounds.xml │ │ │ └── tts.xml │ └── sv │ │ ├── sv.xml │ │ └── vm │ │ └── sounds.xml │ ├── mime.types │ ├── notify-voicemail.tpl │ ├── sip_profiles │ ├── external-ipv6.xml │ ├── external-ipv6 │ │ └── example.xml │ ├── external.xml │ ├── external │ │ └── example.xml │ ├── internal-ipv6.xml │ └── internal.xml │ ├── skinny_profiles │ └── internal.xml │ ├── tetris.ttml │ ├── vars.xml │ ├── voicemail.tpl │ ├── web-vm.tpl │ └── yaml │ ├── extensions.yaml │ └── mod_yaml.yaml ├── configure.ac ├── debian ├── .gitignore ├── AUTHORS ├── README.Debian ├── README.source ├── apt_sources.list ├── bootstrap.sh ├── changelog ├── compat ├── control-modules ├── copyright ├── docs ├── freeswitch-doc.docs ├── freeswitch-doc.install ├── freeswitch-mod-java.install.tmpl ├── freeswitch-mod-managed.install.tmpl ├── freeswitch-mod-perl.install.tmpl ├── freeswitch-mod-pocketsphinx.install.tmpl ├── freeswitch-mod-python.install.tmpl ├── freeswitch-mod-python3.install.tmpl ├── freeswitch-systemd.freeswitch.service ├── freeswitch-systemd.freeswitch.tmpfile ├── freeswitch-sysvinit.freeswitch.default ├── freeswitch-sysvinit.freeswitch.init ├── freeswitch-timezones.install ├── freeswitch.dirs ├── freeswitch.install ├── freeswitch.postinst ├── freeswitch.postrm ├── freeswitch.preinst ├── freeswitch.prerm ├── gbp.conf ├── libfreeswitch-dev.install ├── libfreeswitch1.install ├── license-reconcile.yml ├── python-esl.install ├── rules ├── source │ └── format ├── util.sh └── version-omit_revision.pl ├── devel-bootstrap.sh ├── docker ├── README.md ├── base_image │ ├── Dockerfile │ ├── README.md │ ├── docker-entrypoint.sh │ ├── freeswitch-config.patch │ ├── healthcheck.sh │ ├── make_min_archive.sh │ └── sounds_version.txt ├── examples │ ├── Debian11 │ │ └── Dockerfile │ └── README.md ├── master │ ├── Dockerfile │ ├── build │ │ └── freeswitch.limits.conf │ └── docker-entrypoint.sh └── release │ ├── Dockerfile │ ├── build │ └── freeswitch.limits.conf │ └── docker-entrypoint.sh ├── docs ├── AUTHORS ├── COPYING ├── COPYING.rtf ├── ChangeLog ├── Debugging ├── Doxygen.conf ├── GivingBack ├── JavaScript.txt ├── OPENH264_BINARY_LICENSE.txt ├── SubmittingPatches ├── how_to_make_your_own_ca_correctly.txt ├── man │ ├── .gitignore │ └── freeswitch.1.ronn ├── phrase │ ├── README.TXT │ ├── make_checks.sh │ ├── make_checks.xslt │ ├── phrase.pl │ ├── phrase_de.xml │ ├── phrase_en.xml │ ├── phrase_es.xml │ ├── phrase_es_ES.xml │ ├── phrase_es_MX.xml │ ├── phrase_fr.xml │ ├── phrase_nl.xml │ ├── phrase_pt_BR.xml │ ├── phrase_pt_PT.xml │ ├── phrase_ru.xml │ ├── phrase_zh_CN.xml │ └── phrase_zh_HK.xml └── zrtp_agpl-3.0.txt ├── dtd └── freeswitch_dialplan.dtd ├── fonts ├── FreeMono.ttf ├── FreeMonoBold.ttf ├── FreeMonoBoldOblique.ttf ├── FreeMonoOblique.ttf ├── FreeSans.ttf ├── FreeSansBold.ttf ├── FreeSansBoldOblique.ttf ├── FreeSansOblique.ttf ├── FreeSerif.ttf ├── FreeSerifBold.ttf ├── FreeSerifBoldItalic.ttf ├── FreeSerifItalic.ttf ├── OFL.txt └── README.fonts ├── freeswitch-config-rayo.spec ├── freeswitch-sounds-en-ca-june.spec ├── freeswitch-sounds-en-us-allison.spec ├── freeswitch-sounds-en-us-callie.spec ├── freeswitch-sounds-fr-ca-june.spec ├── freeswitch-sounds-music.spec ├── freeswitch-sounds-pt-BR-karina.spec ├── freeswitch-sounds-ru-RU-elena.spec ├── freeswitch-sounds-sv-se-jakob.spec ├── freeswitch.spec ├── fscomm ├── .gitignore ├── FSComm.2008.vcproj ├── FSComm.pro ├── MakeVcProj.cmd ├── account.cpp ├── account.h ├── accountmanager.cpp ├── accountmanager.h ├── call.cpp ├── call.h ├── channel.cpp ├── channel.h ├── conf │ ├── accounts │ │ └── example.xml │ └── freeswitch.xml ├── debugtools │ ├── consolewindow.cpp │ ├── consolewindow.h │ ├── consolewindow.ui │ ├── sortfilterproxymodel.cpp │ ├── sortfilterproxymodel.h │ ├── statedebugdialog.cpp │ ├── statedebugdialog.h │ └── statedebugdialog.ui ├── fscomm.h ├── fshost.cpp ├── fshost.h ├── isettings.cpp ├── isettings.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── preferences │ ├── accountdialog.cpp │ ├── accountdialog.h │ ├── accountdialog.ui │ ├── prefaccounts.cpp │ ├── prefaccounts.h │ ├── prefdialog.cpp │ ├── prefdialog.h │ ├── prefdialog.ui │ ├── prefportaudio.cpp │ ├── prefportaudio.h │ ├── prefsofia.cpp │ └── prefsofia.h ├── resources.qrc ├── resources │ ├── pref_accounts.jpg │ ├── pref_audio.gif │ ├── pref_general.jpg │ ├── pref_sip.png │ ├── splash.png │ ├── taskbar_icon.png │ └── test.wav └── widgets │ ├── codecwidget.cpp │ ├── codecwidget.h │ └── codecwidget.ui ├── htdocs ├── license.txt ├── portal │ ├── LICENCE │ ├── README.md │ ├── assets │ │ ├── bootstrap-3.1.1 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── bs_for_ember │ │ │ ├── css │ │ │ │ └── bs-growl-notifications.min.css │ │ │ └── js │ │ │ │ ├── bs-alert.min.js │ │ │ │ ├── bs-badge.min.js │ │ │ │ ├── bs-basic.min.js │ │ │ │ ├── bs-button.min.js │ │ │ │ ├── bs-core.min.js │ │ │ │ ├── bs-growl-notifications.min.js │ │ │ │ ├── bs-items-action-bar.min.js │ │ │ │ ├── bs-label.min.js │ │ │ │ ├── bs-list-group.min.js │ │ │ │ ├── bs-modal.min.js │ │ │ │ ├── bs-nav.min.js │ │ │ │ ├── bs-notifications.min.js │ │ │ │ ├── bs-progressbar.min.js │ │ │ │ └── bs-wizard.min.js │ │ └── js │ │ │ ├── ember-1.0.0-rc.1.js │ │ │ ├── ember-1.0.0-rc.1.min.js │ │ │ ├── ember-data.js │ │ │ ├── ember-data.min.js │ │ │ ├── ember.js │ │ │ ├── ember.min.js │ │ │ ├── fsportal.js │ │ │ ├── handlebars.js │ │ │ ├── handlebars.min.js │ │ │ ├── ie-console.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ └── jquery.min.js │ └── index.html ├── slim.swf └── slimtest.htm ├── images ├── cluecon.jpg ├── cluecon.png ├── default-avatar.png └── default-mute.png ├── libs ├── .gitignore ├── apr │ ├── .update │ ├── CHANGES │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile.in │ ├── NOTICE │ ├── NWGNUmakefile │ ├── README.dev │ ├── apr-config.in │ ├── apr.dsp │ ├── apr.dsw │ ├── apr.pc.in │ ├── apr.spec │ ├── atomic │ │ ├── netware │ │ │ └── fspr_atomic.c │ │ ├── os390 │ │ │ └── atomic.c │ │ ├── unix │ │ │ └── fspr_atomic.c │ │ └── win32 │ │ │ └── fspr_atomic.c │ ├── build-outputs.mk │ ├── build.conf │ ├── build │ │ ├── MakeEtags │ │ ├── NWGNUenvironment.inc │ │ ├── NWGNUhead.inc │ │ ├── NWGNUmakefile │ │ ├── NWGNUtail.inc │ │ ├── PrintPath │ │ ├── aplibtool.c │ │ ├── apr_app.dsp │ │ ├── apr_common.m4 │ │ ├── apr_hints.m4 │ │ ├── apr_network.m4 │ │ ├── apr_rules.mk.in │ │ ├── apr_threads.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── buildcheck.sh │ │ ├── cvtdsp.pl │ │ ├── find_apr.m4 │ │ ├── fixwin32mak.pl │ │ ├── gen-build.py │ │ ├── get-version.sh │ │ ├── install.sh │ │ ├── jlibtool.c │ │ ├── libapr_app.dsp │ │ ├── lineends.pl │ │ ├── make_exports.awk │ │ ├── make_nw_export.awk │ │ ├── make_var_export.awk │ │ ├── mkdir.sh │ │ ├── nw_export.inc │ │ ├── nw_ver.awk │ │ ├── pkg │ │ │ ├── README │ │ │ ├── buildpkg.sh │ │ │ └── pkginfo.in │ │ ├── prebuildNW.bat │ │ ├── rpm │ │ │ └── apr.spec.in │ │ ├── run-gcov.sh │ │ └── win32ver.awk │ ├── buildconf │ ├── config.layout │ ├── configure.ac │ ├── configure.gnu │ ├── docs │ │ ├── APRDesign.html │ │ ├── canonical_filenames.html │ │ ├── doxygen.conf │ │ ├── incomplete_types │ │ ├── non_apr_programs │ │ ├── pool-design.html │ │ └── win32_builds.html │ ├── dso │ │ ├── aix │ │ │ └── dso.c │ │ ├── beos │ │ │ └── dso.c │ │ ├── netware │ │ │ └── dso.c │ │ ├── os2 │ │ │ └── dso.c │ │ ├── os390 │ │ │ └── dso.c │ │ ├── unix │ │ │ └── dso.c │ │ └── win32 │ │ │ └── dso.c │ ├── emacs-mode │ ├── file_io │ │ ├── netware │ │ │ ├── filepath.c │ │ │ ├── filestat.c │ │ │ ├── filesys.c │ │ │ ├── flock.c │ │ │ ├── mktemp.c │ │ │ └── pipe.c │ │ ├── os2 │ │ │ ├── copy.c │ │ │ ├── dir.c │ │ │ ├── dir_make_recurse.c │ │ │ ├── fileacc.c │ │ │ ├── filedup.c │ │ │ ├── filepath.c │ │ │ ├── filepath_util.c │ │ │ ├── filestat.c │ │ │ ├── filesys.c │ │ │ ├── flock.c │ │ │ ├── fullrw.c │ │ │ ├── maperrorcode.c │ │ │ ├── mktemp.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── readwrite.c │ │ │ ├── seek.c │ │ │ └── tempdir.c │ │ ├── unix │ │ │ ├── copy.c │ │ │ ├── dir.c │ │ │ ├── fileacc.c │ │ │ ├── filedup.c │ │ │ ├── filepath.c │ │ │ ├── filepath_util.c │ │ │ ├── filestat.c │ │ │ ├── flock.c │ │ │ ├── fullrw.c │ │ │ ├── mktemp.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── readwrite.c │ │ │ ├── seek.c │ │ │ └── tempdir.c │ │ └── win32 │ │ │ ├── dir.c │ │ │ ├── filedup.c │ │ │ ├── filepath.c │ │ │ ├── filestat.c │ │ │ ├── filesys.c │ │ │ ├── flock.c │ │ │ ├── open.c │ │ │ ├── pipe.c │ │ │ ├── readwrite.c │ │ │ └── seek.c │ ├── helpers │ │ └── apr_rename.pl │ ├── images │ │ ├── ScanDocBig.jpg │ │ ├── ScanDocSmall.jpg │ │ ├── ball1.gif │ │ ├── ball1.png │ │ ├── ball2.gif │ │ ├── ball2.png │ │ ├── bug.gif │ │ ├── bug.png │ │ ├── caution.gif │ │ ├── caution.png │ │ ├── master.gif │ │ ├── master.png │ │ ├── tip.gif │ │ ├── tip.png │ │ ├── warning.gif │ │ └── warning.png │ ├── include │ │ ├── arch │ │ │ ├── aix │ │ │ │ └── fspr_arch_dso.h │ │ │ ├── beos │ │ │ │ ├── fspr_arch_dso.h │ │ │ │ ├── fspr_arch_proc_mutex.h │ │ │ │ ├── fspr_arch_thread_cond.h │ │ │ │ ├── fspr_arch_thread_mutex.h │ │ │ │ ├── fspr_arch_thread_rwlock.h │ │ │ │ └── fspr_arch_threadproc.h │ │ │ ├── fspr_private_common.h │ │ │ ├── netware │ │ │ │ ├── fspr_arch_dso.h │ │ │ │ ├── fspr_arch_file_io.h │ │ │ │ ├── fspr_arch_global_mutex.h │ │ │ │ ├── fspr_arch_internal_time.h │ │ │ │ ├── fspr_arch_networkio.h │ │ │ │ ├── fspr_arch_pre_nw.h │ │ │ │ ├── fspr_arch_proc_mutex.h │ │ │ │ ├── fspr_arch_thread_cond.h │ │ │ │ ├── fspr_arch_thread_mutex.h │ │ │ │ ├── fspr_arch_thread_rwlock.h │ │ │ │ ├── fspr_arch_threadproc.h │ │ │ │ └── fspr_private.h │ │ │ ├── os2 │ │ │ │ ├── fspr_arch_dso.h │ │ │ │ ├── fspr_arch_file_io.h │ │ │ │ ├── fspr_arch_networkio.h │ │ │ │ ├── fspr_arch_os2calls.h │ │ │ │ ├── fspr_arch_proc_mutex.h │ │ │ │ ├── fspr_arch_thread_cond.h │ │ │ │ ├── fspr_arch_thread_mutex.h │ │ │ │ ├── fspr_arch_thread_rwlock.h │ │ │ │ └── fspr_arch_threadproc.h │ │ │ ├── os390 │ │ │ │ └── fspr_arch_dso.h │ │ │ ├── unix │ │ │ │ ├── fspr_arch_dso.h │ │ │ │ ├── fspr_arch_file_io.h │ │ │ │ ├── fspr_arch_global_mutex.h │ │ │ │ ├── fspr_arch_inherit.h │ │ │ │ ├── fspr_arch_internal_time.h │ │ │ │ ├── fspr_arch_misc.h │ │ │ │ ├── fspr_arch_networkio.h │ │ │ │ ├── fspr_arch_poll_private.h │ │ │ │ ├── fspr_arch_proc_mutex.h │ │ │ │ ├── fspr_arch_shm.h │ │ │ │ ├── fspr_arch_thread_cond.h │ │ │ │ ├── fspr_arch_thread_mutex.h │ │ │ │ ├── fspr_arch_thread_rwlock.h │ │ │ │ └── fspr_arch_threadproc.h │ │ │ └── win32 │ │ │ │ ├── fspr_arch_atime.h │ │ │ │ ├── fspr_arch_dso.h │ │ │ │ ├── fspr_arch_file_io.h │ │ │ │ ├── fspr_arch_inherit.h │ │ │ │ ├── fspr_arch_misc.h │ │ │ │ ├── fspr_arch_networkio.h │ │ │ │ ├── fspr_arch_proc_mutex.h │ │ │ │ ├── fspr_arch_thread_cond.h │ │ │ │ ├── fspr_arch_thread_mutex.h │ │ │ │ ├── fspr_arch_thread_rwlock.h │ │ │ │ ├── fspr_arch_threadproc.h │ │ │ │ ├── fspr_arch_utf8.h │ │ │ │ ├── fspr_dbg_win32_handles.h │ │ │ │ └── fspr_private.h │ │ ├── fspr.h.in │ │ ├── fspr.hnw │ │ ├── fspr.hw │ │ ├── fspr_allocator.h │ │ ├── fspr_atomic.h │ │ ├── fspr_dso.h │ │ ├── fspr_env.h │ │ ├── fspr_errno.h │ │ ├── fspr_file_info.h │ │ ├── fspr_file_io.h │ │ ├── fspr_fnmatch.h │ │ ├── fspr_general.h │ │ ├── fspr_getopt.h │ │ ├── fspr_global_mutex.h │ │ ├── fspr_hash.h │ │ ├── fspr_inherit.h │ │ ├── fspr_lib.h │ │ ├── fspr_mmap.h │ │ ├── fspr_network_io.h │ │ ├── fspr_poll.h │ │ ├── fspr_pools.h │ │ ├── fspr_portable.h │ │ ├── fspr_proc_mutex.h │ │ ├── fspr_random.h │ │ ├── fspr_ring.h │ │ ├── fspr_shm.h │ │ ├── fspr_signal.h │ │ ├── fspr_strings.h │ │ ├── fspr_support.h │ │ ├── fspr_tables.h │ │ ├── fspr_thread_cond.h │ │ ├── fspr_thread_mutex.h │ │ ├── fspr_thread_proc.h │ │ ├── fspr_thread_rwlock.h │ │ ├── fspr_time.h │ │ ├── fspr_user.h │ │ ├── fspr_version.h │ │ └── fspr_want.h │ ├── libapr.dsp │ ├── libapr.rc │ ├── libaprnw.mcp.zip │ ├── locks │ │ ├── beos │ │ │ ├── proc_mutex.c │ │ │ ├── thread_cond.c │ │ │ ├── thread_mutex.c │ │ │ └── thread_rwlock.c │ │ ├── netware │ │ │ ├── proc_mutex.c │ │ │ ├── thread_cond.c │ │ │ ├── thread_mutex.c │ │ │ └── thread_rwlock.c │ │ ├── os2 │ │ │ ├── proc_mutex.c │ │ │ ├── thread_cond.c │ │ │ ├── thread_mutex.c │ │ │ └── thread_rwlock.c │ │ ├── unix │ │ │ ├── global_mutex.c │ │ │ ├── proc_mutex.c │ │ │ ├── thread_cond.c │ │ │ ├── thread_mutex.c │ │ │ └── thread_rwlock.c │ │ └── win32 │ │ │ ├── proc_mutex.c │ │ │ ├── thread_cond.c │ │ │ ├── thread_mutex.c │ │ │ └── thread_rwlock.c │ ├── memory │ │ └── unix │ │ │ └── fspr_pools.c │ ├── misc │ │ ├── netware │ │ │ ├── apr.xdc │ │ │ ├── aprlib.def │ │ │ ├── charset.c │ │ │ ├── libprews.c │ │ │ ├── rand.c │ │ │ └── start.c │ │ ├── unix │ │ │ ├── charset.c │ │ │ ├── env.c │ │ │ ├── errorcodes.c │ │ │ ├── getopt.c │ │ │ ├── otherchild.c │ │ │ ├── rand.c │ │ │ ├── randbyte_os2.inc │ │ │ ├── start.c │ │ │ └── version.c │ │ └── win32 │ │ │ ├── charset.c │ │ │ ├── env.c │ │ │ ├── fspr_app.c │ │ │ ├── internal.c │ │ │ ├── misc.c │ │ │ ├── rand.c │ │ │ ├── start.c │ │ │ └── utf8.c │ ├── mmap │ │ ├── unix │ │ │ ├── common.c │ │ │ └── mmap.c │ │ └── win32 │ │ │ └── mmap.c │ ├── network_io │ │ ├── beos │ │ │ ├── sendrecv.c │ │ │ └── socketcommon.c │ │ ├── os2 │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── os2calls.c │ │ │ ├── sendrecv.c │ │ │ ├── sendrecv_udp.c │ │ │ ├── sockaddr.c │ │ │ ├── sockets.c │ │ │ └── sockopt.c │ │ ├── unix │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── multicast.c │ │ │ ├── sendrecv.c │ │ │ ├── sockaddr.c │ │ │ ├── sockets.c │ │ │ └── sockopt.c │ │ └── win32 │ │ │ ├── sendrecv.c │ │ │ ├── sockets.c │ │ │ └── sockopt.c │ ├── passwd │ │ └── fspr_getpass.c │ ├── poll │ │ ├── os2 │ │ │ ├── poll.c │ │ │ └── pollset.c │ │ └── unix │ │ │ ├── epoll.c │ │ │ ├── kqueue.c │ │ │ ├── poll.c │ │ │ ├── port.c │ │ │ └── select.c │ ├── random │ │ └── unix │ │ │ ├── fspr_random.c │ │ │ ├── sha2.c │ │ │ ├── sha2.h │ │ │ └── sha2_glue.c │ ├── renames_pending │ ├── shmem │ │ ├── beos │ │ │ └── shm.c │ │ ├── os2 │ │ │ └── shm.c │ │ ├── unix │ │ │ └── shm.c │ │ └── win32 │ │ │ └── shm.c │ ├── strings │ │ ├── fspr_cpystrn.c │ │ ├── fspr_fnmatch.c │ │ ├── fspr_snprintf.c │ │ ├── fspr_strings.c │ │ ├── fspr_strnatcmp.c │ │ └── fspr_strtok.c │ ├── support │ │ └── unix │ │ │ └── waitio.c │ ├── tables │ │ ├── fspr_hash.c │ │ └── fspr_tables.c │ ├── test │ │ ├── Makefile.in │ │ ├── Makefile.win │ │ ├── NWGNUmakefile │ │ ├── README │ │ ├── abts.c │ │ ├── abts.h │ │ ├── abts_tests.h │ │ ├── aprtest.def │ │ ├── aprtest.dsp │ │ ├── aprtest.win │ │ ├── data │ │ │ ├── file_datafile.txt │ │ │ └── mmap_datafile.txt │ │ ├── globalmutexchild.c │ │ ├── internal │ │ │ ├── Makefile.in │ │ │ ├── testregex.c │ │ │ └── testucs.c │ │ ├── mod_test.c │ │ ├── nw_misc.c │ │ ├── nwgnuaprtest │ │ ├── nwgnuglobalmutexchild │ │ ├── nwgnumod_test │ │ ├── nwgnuproc_child │ │ ├── nwgnureadchild │ │ ├── nwgnusockchild │ │ ├── nwgnutestatmc │ │ ├── nwgnutryread │ │ ├── occhild.c │ │ ├── proc_child.c │ │ ├── readchild.c │ │ ├── sendfile.c │ │ ├── sockchild.c │ │ ├── testall.dsp │ │ ├── testall.dsw │ │ ├── testapp.c │ │ ├── testapp.dsp │ │ ├── testappnt.dsp │ │ ├── testargs.c │ │ ├── testatomic.c │ │ ├── testdir.c │ │ ├── testdso.c │ │ ├── testdup.c │ │ ├── testenv.c │ │ ├── testfile.c │ │ ├── testfilecopy.c │ │ ├── testfileinfo.c │ │ ├── testflock.c │ │ ├── testflock.h │ │ ├── testfmt.c │ │ ├── testfnmatch.c │ │ ├── testglobalmutex.c │ │ ├── testglobalmutex.h │ │ ├── testhash.c │ │ ├── testipsub.c │ │ ├── testlfs.c │ │ ├── testlock.c │ │ ├── testlockperf.c │ │ ├── testmmap.c │ │ ├── testmutexscope.c │ │ ├── testnames.c │ │ ├── testoc.c │ │ ├── testpath.c │ │ ├── testpipe.c │ │ ├── testpoll.c │ │ ├── testpools.c │ │ ├── testproc.c │ │ ├── testprocmutex.c │ │ ├── testrand.c │ │ ├── testrand2.c │ │ ├── testshm.c │ │ ├── testshm.h │ │ ├── testshmconsumer.c │ │ ├── testshmproducer.c │ │ ├── testsleep.c │ │ ├── testsock.c │ │ ├── testsock.h │ │ ├── testsockets.c │ │ ├── testsockopt.c │ │ ├── teststr.c │ │ ├── teststrnatcmp.c │ │ ├── testtable.c │ │ ├── testtemp.c │ │ ├── testthread.c │ │ ├── testtime.c │ │ ├── testud.c │ │ ├── testuser.c │ │ ├── testutil.c │ │ ├── testutil.h │ │ ├── testvsn.c │ │ └── tryread.c │ ├── threadproc │ │ ├── beos │ │ │ ├── fspr_proc_stub.c │ │ │ ├── proc.c │ │ │ ├── thread.c │ │ │ ├── threadpriv.c │ │ │ └── threadproc_common.c │ │ ├── netware │ │ │ ├── proc.c │ │ │ ├── procsup.c │ │ │ ├── signals.c │ │ │ ├── thread.c │ │ │ └── threadpriv.c │ │ ├── os2 │ │ │ ├── proc.c │ │ │ ├── signals.c │ │ │ ├── thread.c │ │ │ └── threadpriv.c │ │ ├── unix │ │ │ ├── proc.c │ │ │ ├── procsup.c │ │ │ ├── signals.c │ │ │ ├── thread.c │ │ │ └── threadpriv.c │ │ └── win32 │ │ │ ├── proc.c │ │ │ ├── signals.c │ │ │ ├── thread.c │ │ │ └── threadpriv.c │ ├── time │ │ ├── unix │ │ │ ├── time.c │ │ │ └── timestr.c │ │ └── win32 │ │ │ ├── access.c │ │ │ ├── time.c │ │ │ └── timestr.c │ └── user │ │ ├── netware │ │ ├── groupinfo.c │ │ └── userinfo.c │ │ ├── unix │ │ ├── groupinfo.c │ │ └── userinfo.c │ │ └── win32 │ │ ├── groupinfo.c │ │ └── userinfo.c ├── esl │ ├── .gitignore │ ├── ESL.i │ ├── Makefile.am │ ├── eslmake.rules.in │ ├── fs_cli.2017.vcxproj │ ├── fs_cli.c │ ├── fs_cli.conf │ ├── fs_cli.rc │ ├── getopt │ │ ├── getopt.h │ │ └── getopt_long.c │ ├── ivrd.c │ ├── java │ │ ├── Makefile │ │ ├── classes │ │ │ └── .empty │ │ ├── esl_wrap.cpp │ │ └── org │ │ │ └── freeswitch │ │ │ └── esl │ │ │ ├── ESLconnection.java │ │ │ ├── ESLevent.java │ │ │ ├── SWIGTYPE_p_esl_event_t.java │ │ │ ├── SWIGTYPE_p_esl_priority_t.java │ │ │ ├── esl.java │ │ │ └── eslJNI.java │ ├── lua │ │ ├── Makefile │ │ ├── esl_lua.2008.sln │ │ ├── esl_lua.2010.sln │ │ ├── esl_lua.2010.vcxproj.filters │ │ ├── esl_wrap.cpp │ │ └── single_command.lua │ ├── managed │ │ ├── .gitignore │ │ ├── ESL.cs │ │ ├── ESLPINVOKE.2017.cs │ │ ├── ESLPINVOKE.cs │ │ ├── ESLconnection.2017.cs │ │ ├── ESLconnection.cs │ │ ├── ESLevent.2017.cs │ │ ├── ESLevent.cs │ │ ├── Makefile │ │ ├── ManagedEsl.2017.csproj │ │ ├── ManagedEsl.2017.sln │ │ ├── ManagedEslTest │ │ │ ├── .gitignore │ │ │ ├── ManagedEslTest.2017.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SWIGTYPE_p_esl_event_t.2017.cs │ │ ├── SWIGTYPE_p_esl_event_t.cs │ │ ├── SWIGTYPE_p_esl_priority_t.2017.cs │ │ ├── SWIGTYPE_p_esl_priority_t.cs │ │ ├── esl.2017.cs │ │ ├── esl.2017.vcxproj │ │ ├── esl_wrap.2017.cpp │ │ ├── esl_wrap.cpp │ │ └── runswig.2017.cmd │ ├── perl │ │ ├── ESL.pm │ │ ├── ESL │ │ │ ├── Dispatch.pm │ │ │ └── IVR.pm │ │ ├── Makefile.Darwin │ │ ├── Makefile.am │ │ ├── dispatch.pl │ │ ├── dump_events.pl │ │ ├── esl_wrap.cpp │ │ ├── events.pl │ │ ├── info.pl │ │ ├── logger.pl │ │ ├── perlxsi.c │ │ ├── send_info.pl │ │ ├── send_notify.pl │ │ ├── sendevent.pl │ │ ├── server.pl │ │ ├── server2.pl │ │ ├── server3.pl │ │ └── single_command.pl │ ├── php │ │ ├── ESL.php │ │ ├── Makefile.am │ │ ├── esl_wrap.cpp │ │ ├── php_ESL.h │ │ ├── single_command.php │ │ └── test.php │ ├── python │ │ ├── ESL.py │ │ ├── Makefile │ │ ├── esl_wrap.cpp │ │ ├── events.py │ │ ├── python-config │ │ ├── server.py │ │ └── single_command.py │ ├── python3 │ │ ├── ESL.py │ │ ├── Makefile │ │ ├── esl_wrap.cpp │ │ ├── events.py │ │ ├── python-config │ │ ├── server.py │ │ └── single_command.py │ ├── ruby │ │ ├── Makefile │ │ ├── cflags.rb │ │ ├── esl_wrap.cpp │ │ ├── server3.rb │ │ └── single_command.rb │ ├── src │ │ ├── cJSON.c │ │ ├── cJSON_Utils.c │ │ ├── esl.c │ │ ├── esl_buffer.c │ │ ├── esl_config.c │ │ ├── esl_event.c │ │ ├── esl_json.c │ │ ├── esl_oop.cpp │ │ ├── esl_threadmutex.c │ │ ├── include │ │ │ ├── cc.h │ │ │ ├── esl.h │ │ │ ├── esl_buffer.h │ │ │ ├── esl_cJSON.h │ │ │ ├── esl_cJSON_Utils.h │ │ │ ├── esl_config.h │ │ │ ├── esl_config_auto.h.in │ │ │ ├── esl_event.h │ │ │ ├── esl_json.h │ │ │ ├── esl_oop.h │ │ │ └── esl_threadmutex.h │ │ └── libesl.2017.vcxproj │ ├── switch_version.rc2 │ ├── tcl │ │ ├── Makefile │ │ ├── esl_wrap.cpp │ │ ├── pkgIndex.tcl │ │ └── single_command.tcl │ ├── test.pl │ ├── testclient.c │ ├── testserver.c │ └── testserver_fork.c ├── iksemel │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── HACKING │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── TODO │ ├── acinclude.m4 │ ├── acsite.m4 │ ├── build │ │ └── libgnutls.m4 │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── Makefile.am │ │ └── iksemel.texi │ ├── iksemel.pc.in │ ├── include │ │ ├── Makefile.am │ │ ├── common.h │ │ ├── finetune.h │ │ ├── iksemel.h │ │ └── stamp-h.in │ ├── ltmain.sh │ ├── openssl.m4 │ ├── src │ │ ├── Makefile.am │ │ ├── base64.c │ │ ├── dom.c │ │ ├── filter.c │ │ ├── iks.c │ │ ├── ikstack.c │ │ ├── io-posix.c │ │ ├── jabber.c │ │ ├── md5.c │ │ ├── sax.c │ │ ├── sha.c │ │ ├── stream.c │ │ └── utility.c │ ├── test │ │ ├── Makefile.am │ │ ├── tst-dom.c │ │ ├── tst-filter.c │ │ ├── tst-iks.c │ │ ├── tst-ikstack.c │ │ ├── tst-jid.c │ │ ├── tst-md5.c │ │ ├── tst-sax.c │ │ └── tst-sha.c │ └── tools │ │ ├── Makefile.am │ │ ├── hash.c │ │ ├── ikslint.c │ │ ├── iksperf.c │ │ ├── iksroster.c │ │ ├── perf.c │ │ └── perf.h ├── libnatpmp │ ├── Changelog.txt │ ├── LICENCE │ ├── Makefile │ ├── build.bat │ ├── declspec.h │ ├── getgateway.c │ ├── getgateway.h │ ├── natpmp.c │ ├── natpmp.def │ ├── natpmp.h │ ├── natpmpc.c │ ├── testgetgateway.c │ └── wingettimeofday.c ├── libscgi │ ├── FSSCGI.i │ ├── Makefile │ ├── perl │ │ ├── FSSCGI.pm │ │ ├── Makefile │ │ ├── esl_wrap.cpp │ │ ├── perlxsi.c │ │ ├── scgi_wrap.cpp │ │ ├── testclient.pl │ │ └── testserver.pl │ ├── protocol.txt │ ├── src │ │ ├── include │ │ │ ├── scgi.h │ │ │ └── scgi_oop.h │ │ ├── scgi.c │ │ └── scgi_oop.cpp │ ├── testclient.c │ └── testserver.c ├── libsndfile │ └── doc │ │ └── libsndfile.jpg ├── libteletone │ ├── .update │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── acsite.m4 │ ├── build │ │ └── config │ │ │ ├── ac_cflags_gcc_option.m4 │ │ │ ├── ac_cflags_sun_option.m4 │ │ │ ├── ac_gcc_archflag.m4 │ │ │ ├── ac_gcc_x86_cpuid.m4 │ │ │ ├── ac_prog_gzip.m4 │ │ │ ├── ac_prog_wget.m4 │ │ │ ├── ax_cc_maxopt.m4 │ │ │ ├── ax_cflags_warn_all_ansi.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ └── ax_compiler_vendor.m4 │ ├── configure.ac │ ├── configure.gnu │ ├── libteletone.2008.vcproj │ ├── libteletone.2010.vcxproj.filters │ ├── libteletone.2017.vcxproj │ ├── libteletone.vcproj │ ├── src │ │ ├── libteletone.h │ │ ├── libteletone_detect.c │ │ ├── libteletone_detect.h │ │ ├── libteletone_generate.c │ │ └── libteletone_generate.h │ └── teletone.def ├── libvpx │ ├── .gitignore │ ├── .update │ ├── AUTHORS │ ├── CHANGELOG │ ├── LICENSE │ ├── PATENTS │ ├── README │ ├── args.c │ ├── args.h │ ├── build │ │ └── make │ │ │ ├── Android.mk │ │ │ ├── Makefile │ │ │ ├── ads2armasm_ms.pl │ │ │ ├── ads2gas.pl │ │ │ ├── ads2gas_apple.pl │ │ │ ├── armlink_adapter.sh │ │ │ ├── configure.sh │ │ │ ├── gen_asm_deps.sh │ │ │ ├── gen_msvs_def.sh │ │ │ ├── gen_msvs_sln.sh │ │ │ ├── gen_msvs_vcxproj.sh │ │ │ ├── ios-Info.plist │ │ │ ├── iosbuild.sh │ │ │ ├── msvs_common.sh │ │ │ ├── rtcd.pl │ │ │ ├── thumb.pm │ │ │ └── version.sh │ ├── codereview.settings │ ├── configure │ ├── docs.mk │ ├── examples.mk │ ├── examples │ │ ├── decode_to_md5.c │ │ ├── decode_with_drops.c │ │ ├── postproc.c │ │ ├── resize_util.c │ │ ├── set_maps.c │ │ ├── simple_decoder.c │ │ ├── simple_encoder.c │ │ ├── svc_context.h │ │ ├── svc_encodeframe.c │ │ ├── twopass_encoder.c │ │ ├── vp8_multi_resolution_encoder.c │ │ ├── vp8cx_set_ref.c │ │ ├── vp9_lossless_encoder.c │ │ ├── vp9_spatial_svc_encoder.c │ │ ├── vp9cx_set_ref.c │ │ ├── vpx_dec_fuzzer.cc │ │ └── vpx_temporal_svc_encoder.c │ ├── ivfdec.c │ ├── ivfdec.h │ ├── ivfenc.c │ ├── ivfenc.h │ ├── keywords.dox │ ├── libs.doxy_template │ ├── libs.mk │ ├── mainpage.dox │ ├── md5_utils.c │ ├── md5_utils.h │ ├── rate_hist.c │ ├── rate_hist.h │ ├── solution.mk │ ├── test │ │ ├── acm_random.h │ │ ├── active_map_refresh_test.cc │ │ ├── active_map_test.cc │ │ ├── add_noise_test.cc │ │ ├── alt_ref_aq_segment_test.cc │ │ ├── altref_test.cc │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── README │ │ │ ├── get_files.py │ │ │ └── scrape_gtest_log.py │ │ ├── aq_segment_test.cc │ │ ├── avg_test.cc │ │ ├── bench.cc │ │ ├── bench.h │ │ ├── blockiness_test.cc │ │ ├── borders_test.cc │ │ ├── buffer.h │ │ ├── byte_alignment_test.cc │ │ ├── clear_system_state.h │ │ ├── codec_factory.h │ │ ├── comp_avg_pred_test.cc │ │ ├── config_test.cc │ │ ├── consistency_test.cc │ │ ├── convolve_test.cc │ │ ├── cpu_speed_test.cc │ │ ├── cq_test.cc │ │ ├── cx_set_ref.sh │ │ ├── dct16x16_test.cc │ │ ├── dct32x32_test.cc │ │ ├── dct_partial_test.cc │ │ ├── dct_test.cc │ │ ├── decode_api_test.cc │ │ ├── decode_corrupted.cc │ │ ├── decode_perf_test.cc │ │ ├── decode_svc_test.cc │ │ ├── decode_test_driver.cc │ │ ├── decode_test_driver.h │ │ ├── decode_to_md5.sh │ │ ├── decode_with_drops.sh │ │ ├── encode_api_test.cc │ │ ├── encode_perf_test.cc │ │ ├── encode_test_driver.cc │ │ ├── encode_test_driver.h │ │ ├── error_resilience_test.cc │ │ ├── examples.sh │ │ ├── external_frame_buffer_test.cc │ │ ├── fdct8x8_test.cc │ │ ├── frame_size_tests.cc │ │ ├── hadamard_test.cc │ │ ├── i420_video_source.h │ │ ├── idct8x8_test.cc │ │ ├── idct_test.cc │ │ ├── invalid_file_test.cc │ │ ├── ivf_video_source.h │ │ ├── keyframe_test.cc │ │ ├── level_test.cc │ │ ├── lpf_test.cc │ │ ├── md5_helper.h │ │ ├── minmax_test.cc │ │ ├── partial_idct_test.cc │ │ ├── postproc.sh │ │ ├── pp_filter_test.cc │ │ ├── predict_test.cc │ │ ├── quantize_test.cc │ │ ├── realtime_test.cc │ │ ├── register_state_check.h │ │ ├── resize_test.cc │ │ ├── resize_util.sh │ │ ├── sad_test.cc │ │ ├── set_maps.sh │ │ ├── set_roi.cc │ │ ├── simple_decoder.sh │ │ ├── simple_encoder.sh │ │ ├── stress.sh │ │ ├── sum_squares_test.cc │ │ ├── superframe_test.cc │ │ ├── svc_datarate_test.cc │ │ ├── svc_end_to_end_test.cc │ │ ├── svc_test.cc │ │ ├── svc_test.h │ │ ├── test-data.mk │ │ ├── test-data.sha1 │ │ ├── test.mk │ │ ├── test_intra_pred_speed.cc │ │ ├── test_libvpx.cc │ │ ├── test_vector_test.cc │ │ ├── test_vectors.cc │ │ ├── test_vectors.h │ │ ├── tile_independence_test.cc │ │ ├── timestamp_test.cc │ │ ├── tools_common.sh │ │ ├── twopass_encoder.sh │ │ ├── user_priv_test.cc │ │ ├── util.h │ │ ├── variance_test.cc │ │ ├── video_source.h │ │ ├── vp8_boolcoder_test.cc │ │ ├── vp8_datarate_test.cc │ │ ├── vp8_decrypt_test.cc │ │ ├── vp8_denoiser_sse2_test.cc │ │ ├── vp8_fdct4x4_test.cc │ │ ├── vp8_fragments_test.cc │ │ ├── vp8_multi_resolution_encoder.sh │ │ ├── vp9_arf_freq_test.cc │ │ ├── vp9_block_error_test.cc │ │ ├── vp9_boolcoder_test.cc │ │ ├── vp9_datarate_test.cc │ │ ├── vp9_decrypt_test.cc │ │ ├── vp9_denoiser_test.cc │ │ ├── vp9_encoder_parms_get_to_decoder.cc │ │ ├── vp9_end_to_end_test.cc │ │ ├── vp9_ethread_test.cc │ │ ├── vp9_intrapred_test.cc │ │ ├── vp9_lossless_test.cc │ │ ├── vp9_motion_vector_test.cc │ │ ├── vp9_quantize_test.cc │ │ ├── vp9_scale_test.cc │ │ ├── vp9_skip_loopfilter_test.cc │ │ ├── vp9_subtract_test.cc │ │ ├── vp9_thread_test.cc │ │ ├── vpx_scale_test.cc │ │ ├── vpx_scale_test.h │ │ ├── vpx_temporal_svc_encoder.sh │ │ ├── vpxdec.sh │ │ ├── vpxenc.sh │ │ ├── webm_video_source.h │ │ ├── y4m_test.cc │ │ ├── y4m_video_source.h │ │ ├── yuv_temporal_filter_test.cc │ │ └── yuv_video_source.h │ ├── third_party │ │ ├── googletest │ │ │ ├── README.libvpx │ │ │ ├── gtest.mk │ │ │ └── src │ │ │ │ ├── CHANGES │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ │ └── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ ├── libwebm │ │ │ ├── AUTHORS.TXT │ │ │ ├── Android.mk │ │ │ ├── LICENSE.TXT │ │ │ ├── PATENTS.TXT │ │ │ ├── README.libvpx │ │ │ ├── common │ │ │ │ ├── file_util.cc │ │ │ │ ├── file_util.h │ │ │ │ ├── hdr_util.cc │ │ │ │ ├── hdr_util.h │ │ │ │ └── webmids.h │ │ │ ├── mkvmuxer │ │ │ │ ├── mkvmuxer.cc │ │ │ │ ├── mkvmuxer.h │ │ │ │ ├── mkvmuxertypes.h │ │ │ │ ├── mkvmuxerutil.cc │ │ │ │ ├── mkvmuxerutil.h │ │ │ │ ├── mkvwriter.cc │ │ │ │ └── mkvwriter.h │ │ │ └── mkvparser │ │ │ │ ├── mkvparser.cc │ │ │ │ ├── mkvparser.h │ │ │ │ ├── mkvreader.cc │ │ │ │ └── mkvreader.h │ │ ├── libyuv │ │ │ ├── LICENSE │ │ │ ├── README.libvpx │ │ │ ├── include │ │ │ │ └── libyuv │ │ │ │ │ ├── basic_types.h │ │ │ │ │ ├── compare.h │ │ │ │ │ ├── convert.h │ │ │ │ │ ├── convert_argb.h │ │ │ │ │ ├── convert_from.h │ │ │ │ │ ├── convert_from_argb.h │ │ │ │ │ ├── cpu_id.h │ │ │ │ │ ├── macros_msa.h │ │ │ │ │ ├── mjpeg_decoder.h │ │ │ │ │ ├── planar_functions.h │ │ │ │ │ ├── rotate.h │ │ │ │ │ ├── rotate_argb.h │ │ │ │ │ ├── rotate_row.h │ │ │ │ │ ├── row.h │ │ │ │ │ ├── scale.h │ │ │ │ │ ├── scale_argb.h │ │ │ │ │ ├── scale_row.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── video_common.h │ │ │ └── source │ │ │ │ ├── compare.cc │ │ │ │ ├── compare_common.cc │ │ │ │ ├── compare_gcc.cc │ │ │ │ ├── compare_msa.cc │ │ │ │ ├── compare_neon.cc │ │ │ │ ├── compare_neon64.cc │ │ │ │ ├── compare_win.cc │ │ │ │ ├── convert.cc │ │ │ │ ├── convert_argb.cc │ │ │ │ ├── convert_from.cc │ │ │ │ ├── convert_from_argb.cc │ │ │ │ ├── convert_jpeg.cc │ │ │ │ ├── convert_to_argb.cc │ │ │ │ ├── convert_to_i420.cc │ │ │ │ ├── cpu_id.cc │ │ │ │ ├── mjpeg_decoder.cc │ │ │ │ ├── mjpeg_validate.cc │ │ │ │ ├── planar_functions.cc │ │ │ │ ├── rotate.cc │ │ │ │ ├── rotate_any.cc │ │ │ │ ├── rotate_argb.cc │ │ │ │ ├── rotate_common.cc │ │ │ │ ├── rotate_gcc.cc │ │ │ │ ├── rotate_msa.cc │ │ │ │ ├── rotate_neon.cc │ │ │ │ ├── rotate_neon64.cc │ │ │ │ ├── rotate_win.cc │ │ │ │ ├── row_any.cc │ │ │ │ ├── row_common.cc │ │ │ │ ├── row_gcc.cc │ │ │ │ ├── row_msa.cc │ │ │ │ ├── row_neon.cc │ │ │ │ ├── row_neon64.cc │ │ │ │ ├── row_win.cc │ │ │ │ ├── scale.cc │ │ │ │ ├── scale_any.cc │ │ │ │ ├── scale_argb.cc │ │ │ │ ├── scale_common.cc │ │ │ │ ├── scale_gcc.cc │ │ │ │ ├── scale_msa.cc │ │ │ │ ├── scale_neon.cc │ │ │ │ ├── scale_neon64.cc │ │ │ │ ├── scale_win.cc │ │ │ │ └── video_common.cc │ │ └── x86inc │ │ │ ├── LICENSE │ │ │ ├── README.libvpx │ │ │ └── x86inc.asm │ ├── tools.mk │ ├── tools │ │ ├── 3D-Reconstruction │ │ │ ├── genY4M │ │ │ │ └── genY4M.py │ │ │ └── sketch_3D_reconstruction │ │ │ │ ├── BVH.pde │ │ │ │ ├── Camera.pde │ │ │ │ ├── MotionField.pde │ │ │ │ ├── PointCloud.pde │ │ │ │ ├── Ray_Tracing.pde │ │ │ │ ├── Scene.pde │ │ │ │ ├── Transform.pde │ │ │ │ ├── Util.pde │ │ │ │ └── sketch_3D_reconstruction.pde │ │ ├── cpplint.py │ │ ├── diff.py │ │ ├── gen_authors.sh │ │ ├── intersect-diffs.py │ │ ├── lint-hunks.py │ │ ├── non_greedy_mv │ │ │ └── non_greedy_mv.py │ │ ├── set_analyzer_env.sh │ │ ├── tiny_ssim.c │ │ └── wrap-commit-msg.py │ ├── tools_common.c │ ├── tools_common.h │ ├── usage.dox │ ├── usage_cx.dox │ ├── usage_dx.dox │ ├── video_common.h │ ├── video_reader.c │ ├── video_reader.h │ ├── video_writer.c │ ├── video_writer.h │ ├── vp8 │ │ ├── common │ │ │ ├── alloccommon.c │ │ │ ├── alloccommon.h │ │ │ ├── arm │ │ │ │ ├── loopfilter_arm.c │ │ │ │ ├── loopfilter_arm.h │ │ │ │ └── neon │ │ │ │ │ ├── bilinearpredict_neon.c │ │ │ │ │ ├── copymem_neon.c │ │ │ │ │ ├── dc_only_idct_add_neon.c │ │ │ │ │ ├── dequant_idct_neon.c │ │ │ │ │ ├── dequantizeb_neon.c │ │ │ │ │ ├── idct_blk_neon.c │ │ │ │ │ ├── iwalsh_neon.c │ │ │ │ │ ├── loopfiltersimplehorizontaledge_neon.c │ │ │ │ │ ├── loopfiltersimpleverticaledge_neon.c │ │ │ │ │ ├── mbloopfilter_neon.c │ │ │ │ │ ├── shortidct4x4llm_neon.c │ │ │ │ │ ├── sixtappredict_neon.c │ │ │ │ │ └── vp8_loopfilter_neon.c │ │ │ ├── blockd.c │ │ │ ├── blockd.h │ │ │ ├── coefupdateprobs.h │ │ │ ├── common.h │ │ │ ├── context.c │ │ │ ├── debugmodes.c │ │ │ ├── default_coef_probs.h │ │ │ ├── dequantize.c │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── entropymode.c │ │ │ ├── entropymode.h │ │ │ ├── entropymv.c │ │ │ ├── entropymv.h │ │ │ ├── extend.c │ │ │ ├── extend.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── findnearmv.c │ │ │ ├── findnearmv.h │ │ │ ├── generic │ │ │ │ └── systemdependent.c │ │ │ ├── header.h │ │ │ ├── idct_blk.c │ │ │ ├── idctllm.c │ │ │ ├── invtrans.h │ │ │ ├── loopfilter.h │ │ │ ├── loopfilter_filters.c │ │ │ ├── mbpitch.c │ │ │ ├── mfqe.c │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── dequantize_dspr2.c │ │ │ │ │ ├── filter_dspr2.c │ │ │ │ │ ├── idct_blk_dspr2.c │ │ │ │ │ ├── idctllm_dspr2.c │ │ │ │ │ ├── reconinter_dspr2.c │ │ │ │ │ └── vp8_loopfilter_filters_dspr2.c │ │ │ │ ├── mmi │ │ │ │ │ ├── copymem_mmi.c │ │ │ │ │ ├── dequantize_mmi.c │ │ │ │ │ ├── idct_blk_mmi.c │ │ │ │ │ ├── idctllm_mmi.c │ │ │ │ │ ├── loopfilter_filters_mmi.c │ │ │ │ │ └── sixtap_filter_mmi.c │ │ │ │ └── msa │ │ │ │ │ ├── bilinear_filter_msa.c │ │ │ │ │ ├── copymem_msa.c │ │ │ │ │ ├── idct_msa.c │ │ │ │ │ ├── loopfilter_filters_msa.c │ │ │ │ │ ├── mfqe_msa.c │ │ │ │ │ ├── sixtap_filter_msa.c │ │ │ │ │ └── vp8_macros_msa.h │ │ │ ├── modecont.c │ │ │ ├── modecont.h │ │ │ ├── mv.h │ │ │ ├── onyx.h │ │ │ ├── onyxc_int.h │ │ │ ├── onyxd.h │ │ │ ├── postproc.c │ │ │ ├── postproc.h │ │ │ ├── ppflags.h │ │ │ ├── quant_common.c │ │ │ ├── quant_common.h │ │ │ ├── reconinter.c │ │ │ ├── reconinter.h │ │ │ ├── reconintra.c │ │ │ ├── reconintra.h │ │ │ ├── reconintra4x4.c │ │ │ ├── reconintra4x4.h │ │ │ ├── rtcd.c │ │ │ ├── rtcd_defs.pl │ │ │ ├── setupintrarecon.c │ │ │ ├── setupintrarecon.h │ │ │ ├── swapyv12buffer.c │ │ │ ├── swapyv12buffer.h │ │ │ ├── systemdependent.h │ │ │ ├── threading.h │ │ │ ├── treecoder.c │ │ │ ├── treecoder.h │ │ │ ├── vp8_entropymodedata.h │ │ │ ├── vp8_loopfilter.c │ │ │ ├── vp8_skin_detection.c │ │ │ ├── vp8_skin_detection.h │ │ │ └── x86 │ │ │ │ ├── bilinear_filter_sse2.c │ │ │ │ ├── dequantize_mmx.asm │ │ │ │ ├── idct_blk_mmx.c │ │ │ │ ├── idct_blk_sse2.c │ │ │ │ ├── idctllm_mmx.asm │ │ │ │ ├── idctllm_sse2.asm │ │ │ │ ├── iwalsh_sse2.asm │ │ │ │ ├── loopfilter_block_sse2_x86_64.asm │ │ │ │ ├── loopfilter_sse2.asm │ │ │ │ ├── loopfilter_x86.c │ │ │ │ ├── mfqe_sse2.asm │ │ │ │ ├── recon_mmx.asm │ │ │ │ ├── recon_sse2.asm │ │ │ │ ├── subpixel_mmx.asm │ │ │ │ ├── subpixel_sse2.asm │ │ │ │ ├── subpixel_ssse3.asm │ │ │ │ └── vp8_asm_stubs.c │ │ ├── decoder │ │ │ ├── dboolhuff.c │ │ │ ├── dboolhuff.h │ │ │ ├── decodeframe.c │ │ │ ├── decodemv.c │ │ │ ├── decodemv.h │ │ │ ├── decoderthreading.h │ │ │ ├── detokenize.c │ │ │ ├── detokenize.h │ │ │ ├── ec_types.h │ │ │ ├── error_concealment.c │ │ │ ├── error_concealment.h │ │ │ ├── onyxd_if.c │ │ │ ├── onyxd_int.h │ │ │ ├── threading.c │ │ │ └── treereader.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── denoising_neon.c │ │ │ │ │ ├── fastquantizeb_neon.c │ │ │ │ │ ├── shortfdct_neon.c │ │ │ │ │ └── vp8_shortwalsh4x4_neon.c │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── block.h │ │ │ ├── boolhuff.c │ │ │ ├── boolhuff.h │ │ │ ├── copy_c.c │ │ │ ├── dct.c │ │ │ ├── dct_value_cost.h │ │ │ ├── dct_value_tokens.h │ │ │ ├── defaultcoefcounts.h │ │ │ ├── denoising.c │ │ │ ├── denoising.h │ │ │ ├── encodeframe.c │ │ │ ├── encodeframe.h │ │ │ ├── encodeintra.c │ │ │ ├── encodeintra.h │ │ │ ├── encodemb.c │ │ │ ├── encodemb.h │ │ │ ├── encodemv.c │ │ │ ├── encodemv.h │ │ │ ├── ethreading.c │ │ │ ├── ethreading.h │ │ │ ├── firstpass.c │ │ │ ├── firstpass.h │ │ │ ├── lookahead.c │ │ │ ├── lookahead.h │ │ │ ├── mcomp.c │ │ │ ├── mcomp.h │ │ │ ├── mips │ │ │ │ ├── mmi │ │ │ │ │ ├── dct_mmi.c │ │ │ │ │ └── vp8_quantize_mmi.c │ │ │ │ └── msa │ │ │ │ │ ├── dct_msa.c │ │ │ │ │ ├── denoising_msa.c │ │ │ │ │ ├── encodeopt_msa.c │ │ │ │ │ ├── quantize_msa.c │ │ │ │ │ └── temporal_filter_msa.c │ │ │ ├── modecosts.c │ │ │ ├── modecosts.h │ │ │ ├── mr_dissim.c │ │ │ ├── mr_dissim.h │ │ │ ├── onyx_if.c │ │ │ ├── onyx_int.h │ │ │ ├── pickinter.c │ │ │ ├── pickinter.h │ │ │ ├── picklpf.c │ │ │ ├── picklpf.h │ │ │ ├── quantize.h │ │ │ ├── ratectrl.c │ │ │ ├── ratectrl.h │ │ │ ├── rdopt.c │ │ │ ├── rdopt.h │ │ │ ├── segmentation.c │ │ │ ├── segmentation.h │ │ │ ├── temporal_filter.c │ │ │ ├── temporal_filter.h │ │ │ ├── tokenize.c │ │ │ ├── tokenize.h │ │ │ ├── treewriter.c │ │ │ ├── treewriter.h │ │ │ ├── vp8_quantize.c │ │ │ └── x86 │ │ │ │ ├── block_error_sse2.asm │ │ │ │ ├── copy_sse2.asm │ │ │ │ ├── copy_sse3.asm │ │ │ │ ├── dct_sse2.asm │ │ │ │ ├── denoising_sse2.c │ │ │ │ ├── fwalsh_sse2.asm │ │ │ │ ├── quantize_sse4.c │ │ │ │ ├── temporal_filter_apply_sse2.asm │ │ │ │ ├── vp8_enc_stubs_sse2.c │ │ │ │ ├── vp8_quantize_sse2.c │ │ │ │ └── vp8_quantize_ssse3.c │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── vp8_common.mk │ │ ├── vp8_cx_iface.c │ │ ├── vp8_dx_iface.c │ │ ├── vp8cx.mk │ │ └── vp8dx.mk │ ├── vp9 │ │ ├── common │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_highbd_iht16x16_add_neon.c │ │ │ │ │ ├── vp9_highbd_iht4x4_add_neon.c │ │ │ │ │ ├── vp9_highbd_iht8x8_add_neon.c │ │ │ │ │ ├── vp9_iht16x16_add_neon.c │ │ │ │ │ ├── vp9_iht4x4_add_neon.c │ │ │ │ │ ├── vp9_iht8x8_add_neon.c │ │ │ │ │ └── vp9_iht_neon.h │ │ │ ├── mips │ │ │ │ ├── dspr2 │ │ │ │ │ ├── vp9_itrans16_dspr2.c │ │ │ │ │ ├── vp9_itrans4_dspr2.c │ │ │ │ │ └── vp9_itrans8_dspr2.c │ │ │ │ └── msa │ │ │ │ │ ├── vp9_idct16x16_msa.c │ │ │ │ │ ├── vp9_idct4x4_msa.c │ │ │ │ │ ├── vp9_idct8x8_msa.c │ │ │ │ │ └── vp9_mfqe_msa.c │ │ │ ├── ppc │ │ │ │ └── vp9_idct_vsx.c │ │ │ ├── vp9_alloccommon.c │ │ │ ├── vp9_alloccommon.h │ │ │ ├── vp9_blockd.c │ │ │ ├── vp9_blockd.h │ │ │ ├── vp9_common.h │ │ │ ├── vp9_common_data.c │ │ │ ├── vp9_common_data.h │ │ │ ├── vp9_debugmodes.c │ │ │ ├── vp9_entropy.c │ │ │ ├── vp9_entropy.h │ │ │ ├── vp9_entropymode.c │ │ │ ├── vp9_entropymode.h │ │ │ ├── vp9_entropymv.c │ │ │ ├── vp9_entropymv.h │ │ │ ├── vp9_enums.h │ │ │ ├── vp9_filter.c │ │ │ ├── vp9_filter.h │ │ │ ├── vp9_frame_buffers.c │ │ │ ├── vp9_frame_buffers.h │ │ │ ├── vp9_idct.c │ │ │ ├── vp9_idct.h │ │ │ ├── vp9_loopfilter.c │ │ │ ├── vp9_loopfilter.h │ │ │ ├── vp9_mfqe.c │ │ │ ├── vp9_mfqe.h │ │ │ ├── vp9_mv.h │ │ │ ├── vp9_mvref_common.c │ │ │ ├── vp9_mvref_common.h │ │ │ ├── vp9_onyxc_int.h │ │ │ ├── vp9_postproc.c │ │ │ ├── vp9_postproc.h │ │ │ ├── vp9_ppflags.h │ │ │ ├── vp9_pred_common.c │ │ │ ├── vp9_pred_common.h │ │ │ ├── vp9_quant_common.c │ │ │ ├── vp9_quant_common.h │ │ │ ├── vp9_reconinter.c │ │ │ ├── vp9_reconinter.h │ │ │ ├── vp9_reconintra.c │ │ │ ├── vp9_reconintra.h │ │ │ ├── vp9_rtcd.c │ │ │ ├── vp9_rtcd_defs.pl │ │ │ ├── vp9_scale.c │ │ │ ├── vp9_scale.h │ │ │ ├── vp9_scan.c │ │ │ ├── vp9_scan.h │ │ │ ├── vp9_seg_common.c │ │ │ ├── vp9_seg_common.h │ │ │ ├── vp9_thread_common.c │ │ │ ├── vp9_thread_common.h │ │ │ ├── vp9_tile_common.c │ │ │ ├── vp9_tile_common.h │ │ │ └── x86 │ │ │ │ ├── vp9_highbd_iht16x16_add_sse4.c │ │ │ │ ├── vp9_highbd_iht4x4_add_sse4.c │ │ │ │ ├── vp9_highbd_iht8x8_add_sse4.c │ │ │ │ ├── vp9_idct_intrin_sse2.c │ │ │ │ └── vp9_mfqe_sse2.asm │ │ ├── decoder │ │ │ ├── vp9_decodeframe.c │ │ │ ├── vp9_decodeframe.h │ │ │ ├── vp9_decodemv.c │ │ │ ├── vp9_decodemv.h │ │ │ ├── vp9_decoder.c │ │ │ ├── vp9_decoder.h │ │ │ ├── vp9_detokenize.c │ │ │ ├── vp9_detokenize.h │ │ │ ├── vp9_dsubexp.c │ │ │ ├── vp9_dsubexp.h │ │ │ ├── vp9_job_queue.c │ │ │ └── vp9_job_queue.h │ │ ├── encoder │ │ │ ├── arm │ │ │ │ └── neon │ │ │ │ │ ├── vp9_denoiser_neon.c │ │ │ │ │ ├── vp9_error_neon.c │ │ │ │ │ ├── vp9_frame_scale_neon.c │ │ │ │ │ └── vp9_quantize_neon.c │ │ │ ├── mips │ │ │ │ └── msa │ │ │ │ │ ├── vp9_error_msa.c │ │ │ │ │ ├── vp9_fdct16x16_msa.c │ │ │ │ │ ├── vp9_fdct4x4_msa.c │ │ │ │ │ ├── vp9_fdct8x8_msa.c │ │ │ │ │ └── vp9_fdct_msa.h │ │ │ ├── ppc │ │ │ │ └── vp9_quantize_vsx.c │ │ │ ├── vp9_alt_ref_aq.c │ │ │ ├── vp9_alt_ref_aq.h │ │ │ ├── vp9_aq_360.c │ │ │ ├── vp9_aq_360.h │ │ │ ├── vp9_aq_complexity.c │ │ │ ├── vp9_aq_complexity.h │ │ │ ├── vp9_aq_cyclicrefresh.c │ │ │ ├── vp9_aq_cyclicrefresh.h │ │ │ ├── vp9_aq_variance.c │ │ │ ├── vp9_aq_variance.h │ │ │ ├── vp9_bitstream.c │ │ │ ├── vp9_bitstream.h │ │ │ ├── vp9_block.h │ │ │ ├── vp9_blockiness.c │ │ │ ├── vp9_blockiness.h │ │ │ ├── vp9_context_tree.c │ │ │ ├── vp9_context_tree.h │ │ │ ├── vp9_cost.c │ │ │ ├── vp9_cost.h │ │ │ ├── vp9_dct.c │ │ │ ├── vp9_denoiser.c │ │ │ ├── vp9_denoiser.h │ │ │ ├── vp9_encodeframe.c │ │ │ ├── vp9_encodeframe.h │ │ │ ├── vp9_encodemb.c │ │ │ ├── vp9_encodemb.h │ │ │ ├── vp9_encodemv.c │ │ │ ├── vp9_encodemv.h │ │ │ ├── vp9_encoder.c │ │ │ ├── vp9_encoder.h │ │ │ ├── vp9_ethread.c │ │ │ ├── vp9_ethread.h │ │ │ ├── vp9_extend.c │ │ │ ├── vp9_extend.h │ │ │ ├── vp9_firstpass.c │ │ │ ├── vp9_firstpass.h │ │ │ ├── vp9_frame_scale.c │ │ │ ├── vp9_job_queue.h │ │ │ ├── vp9_lookahead.c │ │ │ ├── vp9_lookahead.h │ │ │ ├── vp9_mbgraph.c │ │ │ ├── vp9_mbgraph.h │ │ │ ├── vp9_mcomp.c │ │ │ ├── vp9_mcomp.h │ │ │ ├── vp9_multi_thread.c │ │ │ ├── vp9_multi_thread.h │ │ │ ├── vp9_noise_estimate.c │ │ │ ├── vp9_noise_estimate.h │ │ │ ├── vp9_partition_models.h │ │ │ ├── vp9_picklpf.c │ │ │ ├── vp9_picklpf.h │ │ │ ├── vp9_pickmode.c │ │ │ ├── vp9_pickmode.h │ │ │ ├── vp9_quantize.c │ │ │ ├── vp9_quantize.h │ │ │ ├── vp9_ratectrl.c │ │ │ ├── vp9_ratectrl.h │ │ │ ├── vp9_rd.c │ │ │ ├── vp9_rd.h │ │ │ ├── vp9_rdopt.c │ │ │ ├── vp9_rdopt.h │ │ │ ├── vp9_resize.c │ │ │ ├── vp9_resize.h │ │ │ ├── vp9_segmentation.c │ │ │ ├── vp9_segmentation.h │ │ │ ├── vp9_skin_detection.c │ │ │ ├── vp9_skin_detection.h │ │ │ ├── vp9_speed_features.c │ │ │ ├── vp9_speed_features.h │ │ │ ├── vp9_subexp.c │ │ │ ├── vp9_subexp.h │ │ │ ├── vp9_svc_layercontext.c │ │ │ ├── vp9_svc_layercontext.h │ │ │ ├── vp9_temporal_filter.c │ │ │ ├── vp9_temporal_filter.h │ │ │ ├── vp9_tokenize.c │ │ │ ├── vp9_tokenize.h │ │ │ ├── vp9_treewriter.c │ │ │ ├── vp9_treewriter.h │ │ │ └── x86 │ │ │ │ ├── highbd_temporal_filter_sse4.c │ │ │ │ ├── temporal_filter_constants.h │ │ │ │ ├── temporal_filter_sse4.c │ │ │ │ ├── vp9_dct_intrin_sse2.c │ │ │ │ ├── vp9_dct_sse2.asm │ │ │ │ ├── vp9_denoiser_sse2.c │ │ │ │ ├── vp9_diamond_search_sad_avx.c │ │ │ │ ├── vp9_error_avx2.c │ │ │ │ ├── vp9_error_sse2.asm │ │ │ │ ├── vp9_frame_scale_ssse3.c │ │ │ │ ├── vp9_highbd_block_error_intrin_sse2.c │ │ │ │ ├── vp9_quantize_avx2.c │ │ │ │ ├── vp9_quantize_sse2.c │ │ │ │ └── vp9_quantize_ssse3_x86_64.asm │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── vp9_common.mk │ │ ├── vp9_cx_iface.c │ │ ├── vp9_dx_iface.c │ │ ├── vp9_dx_iface.h │ │ ├── vp9_iface_common.h │ │ ├── vp9cx.mk │ │ └── vp9dx.mk │ ├── vpx │ │ ├── exports_com │ │ ├── exports_dec │ │ ├── exports_enc │ │ ├── internal │ │ │ └── vpx_codec_internal.h │ │ ├── src │ │ │ ├── vpx_codec.c │ │ │ ├── vpx_decoder.c │ │ │ ├── vpx_encoder.c │ │ │ └── vpx_image.c │ │ ├── vp8.h │ │ ├── vp8cx.h │ │ ├── vp8dx.h │ │ ├── vpx_codec.h │ │ ├── vpx_codec.mk │ │ ├── vpx_decoder.h │ │ ├── vpx_encoder.h │ │ ├── vpx_frame_buffer.h │ │ ├── vpx_image.h │ │ └── vpx_integer.h │ ├── vpx_dsp │ │ ├── add_noise.c │ │ ├── arm │ │ │ ├── avg_neon.c │ │ │ ├── avg_pred_neon.c │ │ │ ├── deblock_neon.c │ │ │ ├── fdct16x16_neon.c │ │ │ ├── fdct32x32_neon.c │ │ │ ├── fdct_neon.c │ │ │ ├── fdct_partial_neon.c │ │ │ ├── fwd_txfm_neon.c │ │ │ ├── hadamard_neon.c │ │ │ ├── highbd_idct16x16_add_neon.c │ │ │ ├── highbd_idct32x32_1024_add_neon.c │ │ │ ├── highbd_idct32x32_135_add_neon.c │ │ │ ├── highbd_idct32x32_34_add_neon.c │ │ │ ├── highbd_idct32x32_add_neon.c │ │ │ ├── highbd_idct4x4_add_neon.c │ │ │ ├── highbd_idct8x8_add_neon.c │ │ │ ├── highbd_idct_neon.h │ │ │ ├── highbd_intrapred_neon.c │ │ │ ├── highbd_loopfilter_neon.c │ │ │ ├── highbd_vpx_convolve8_neon.c │ │ │ ├── highbd_vpx_convolve_avg_neon.c │ │ │ ├── highbd_vpx_convolve_copy_neon.c │ │ │ ├── highbd_vpx_convolve_neon.c │ │ │ ├── idct16x16_1_add_neon.c │ │ │ ├── idct16x16_add_neon.c │ │ │ ├── idct32x32_135_add_neon.c │ │ │ ├── idct32x32_1_add_neon.c │ │ │ ├── idct32x32_34_add_neon.c │ │ │ ├── idct32x32_add_neon.c │ │ │ ├── idct4x4_1_add_neon.asm │ │ │ ├── idct4x4_1_add_neon.c │ │ │ ├── idct4x4_add_neon.asm │ │ │ ├── idct4x4_add_neon.c │ │ │ ├── idct8x8_1_add_neon.c │ │ │ ├── idct8x8_add_neon.c │ │ │ ├── idct_neon.asm │ │ │ ├── idct_neon.h │ │ │ ├── intrapred_neon.c │ │ │ ├── intrapred_neon_asm.asm │ │ │ ├── loopfilter_16_neon.asm │ │ │ ├── loopfilter_4_neon.asm │ │ │ ├── loopfilter_8_neon.asm │ │ │ ├── loopfilter_neon.c │ │ │ ├── mem_neon.h │ │ │ ├── quantize_neon.c │ │ │ ├── sad4d_neon.c │ │ │ ├── sad_neon.c │ │ │ ├── save_reg_neon.asm │ │ │ ├── subpel_variance_neon.c │ │ │ ├── subtract_neon.c │ │ │ ├── sum_neon.h │ │ │ ├── sum_squares_neon.c │ │ │ ├── transpose_neon.h │ │ │ ├── variance_neon.c │ │ │ ├── vpx_convolve8_avg_horiz_filter_type1_neon.asm │ │ │ ├── vpx_convolve8_avg_horiz_filter_type2_neon.asm │ │ │ ├── vpx_convolve8_avg_vert_filter_type1_neon.asm │ │ │ ├── vpx_convolve8_avg_vert_filter_type2_neon.asm │ │ │ ├── vpx_convolve8_horiz_filter_type1_neon.asm │ │ │ ├── vpx_convolve8_horiz_filter_type2_neon.asm │ │ │ ├── vpx_convolve8_neon.c │ │ │ ├── vpx_convolve8_neon.h │ │ │ ├── vpx_convolve8_neon_asm.c │ │ │ ├── vpx_convolve8_neon_asm.h │ │ │ ├── vpx_convolve8_vert_filter_type1_neon.asm │ │ │ ├── vpx_convolve8_vert_filter_type2_neon.asm │ │ │ ├── vpx_convolve_avg_neon.c │ │ │ ├── vpx_convolve_avg_neon_asm.asm │ │ │ ├── vpx_convolve_copy_neon.c │ │ │ ├── vpx_convolve_copy_neon_asm.asm │ │ │ ├── vpx_convolve_neon.c │ │ │ └── vpx_scaled_convolve8_neon.c │ │ ├── avg.c │ │ ├── bitreader.c │ │ ├── bitreader.h │ │ ├── bitreader_buffer.c │ │ ├── bitreader_buffer.h │ │ ├── bitwriter.c │ │ ├── bitwriter.h │ │ ├── bitwriter_buffer.c │ │ ├── bitwriter_buffer.h │ │ ├── deblock.c │ │ ├── fastssim.c │ │ ├── fwd_txfm.c │ │ ├── fwd_txfm.h │ │ ├── intrapred.c │ │ ├── inv_txfm.c │ │ ├── inv_txfm.h │ │ ├── loopfilter.c │ │ ├── mips │ │ │ ├── add_noise_msa.c │ │ │ ├── avg_msa.c │ │ │ ├── common_dspr2.c │ │ │ ├── common_dspr2.h │ │ │ ├── convolve2_avg_dspr2.c │ │ │ ├── convolve2_avg_horiz_dspr2.c │ │ │ ├── convolve2_dspr2.c │ │ │ ├── convolve2_horiz_dspr2.c │ │ │ ├── convolve2_vert_dspr2.c │ │ │ ├── convolve8_avg_dspr2.c │ │ │ ├── convolve8_avg_horiz_dspr2.c │ │ │ ├── convolve8_dspr2.c │ │ │ ├── convolve8_horiz_dspr2.c │ │ │ ├── convolve8_vert_dspr2.c │ │ │ ├── convolve_common_dspr2.h │ │ │ ├── deblock_msa.c │ │ │ ├── fwd_dct32x32_msa.c │ │ │ ├── fwd_txfm_msa.c │ │ │ ├── fwd_txfm_msa.h │ │ │ ├── idct16x16_msa.c │ │ │ ├── idct32x32_msa.c │ │ │ ├── idct4x4_msa.c │ │ │ ├── idct8x8_msa.c │ │ │ ├── intrapred16_dspr2.c │ │ │ ├── intrapred4_dspr2.c │ │ │ ├── intrapred8_dspr2.c │ │ │ ├── intrapred_msa.c │ │ │ ├── inv_txfm_dspr2.h │ │ │ ├── inv_txfm_msa.h │ │ │ ├── itrans16_dspr2.c │ │ │ ├── itrans32_cols_dspr2.c │ │ │ ├── itrans32_dspr2.c │ │ │ ├── itrans4_dspr2.c │ │ │ ├── itrans8_dspr2.c │ │ │ ├── loopfilter_16_msa.c │ │ │ ├── loopfilter_4_msa.c │ │ │ ├── loopfilter_8_msa.c │ │ │ ├── loopfilter_filters_dspr2.c │ │ │ ├── loopfilter_filters_dspr2.h │ │ │ ├── loopfilter_macros_dspr2.h │ │ │ ├── loopfilter_masks_dspr2.h │ │ │ ├── loopfilter_mb_dspr2.c │ │ │ ├── loopfilter_mb_horiz_dspr2.c │ │ │ ├── loopfilter_mb_vert_dspr2.c │ │ │ ├── loopfilter_msa.h │ │ │ ├── macros_msa.h │ │ │ ├── sad_mmi.c │ │ │ ├── sad_msa.c │ │ │ ├── sub_pixel_variance_msa.c │ │ │ ├── subtract_mmi.c │ │ │ ├── subtract_msa.c │ │ │ ├── sum_squares_msa.c │ │ │ ├── txfm_macros_msa.h │ │ │ ├── variance_mmi.c │ │ │ ├── variance_msa.c │ │ │ ├── vpx_convolve8_avg_horiz_msa.c │ │ │ ├── vpx_convolve8_avg_msa.c │ │ │ ├── vpx_convolve8_avg_vert_msa.c │ │ │ ├── vpx_convolve8_horiz_msa.c │ │ │ ├── vpx_convolve8_mmi.c │ │ │ ├── vpx_convolve8_msa.c │ │ │ ├── vpx_convolve8_vert_msa.c │ │ │ ├── vpx_convolve_avg_msa.c │ │ │ ├── vpx_convolve_copy_msa.c │ │ │ └── vpx_convolve_msa.h │ │ ├── postproc.h │ │ ├── ppc │ │ │ ├── bitdepth_conversion_vsx.h │ │ │ ├── deblock_vsx.c │ │ │ ├── fdct32x32_vsx.c │ │ │ ├── hadamard_vsx.c │ │ │ ├── intrapred_vsx.c │ │ │ ├── inv_txfm_vsx.c │ │ │ ├── inv_txfm_vsx.h │ │ │ ├── quantize_vsx.c │ │ │ ├── sad_vsx.c │ │ │ ├── subtract_vsx.c │ │ │ ├── transpose_vsx.h │ │ │ ├── txfm_common_vsx.h │ │ │ ├── types_vsx.h │ │ │ ├── variance_vsx.c │ │ │ └── vpx_convolve_vsx.c │ │ ├── prob.c │ │ ├── prob.h │ │ ├── psnr.c │ │ ├── psnr.h │ │ ├── psnrhvs.c │ │ ├── quantize.c │ │ ├── quantize.h │ │ ├── sad.c │ │ ├── skin_detection.c │ │ ├── skin_detection.h │ │ ├── ssim.c │ │ ├── ssim.h │ │ ├── subtract.c │ │ ├── sum_squares.c │ │ ├── txfm_common.h │ │ ├── variance.c │ │ ├── variance.h │ │ ├── vpx_convolve.c │ │ ├── vpx_convolve.h │ │ ├── vpx_dsp.mk │ │ ├── vpx_dsp_common.h │ │ ├── vpx_dsp_rtcd.c │ │ ├── vpx_dsp_rtcd_defs.pl │ │ ├── vpx_filter.h │ │ └── x86 │ │ │ ├── add_noise_sse2.asm │ │ │ ├── avg_intrin_avx2.c │ │ │ ├── avg_intrin_sse2.c │ │ │ ├── avg_pred_sse2.c │ │ │ ├── avg_ssse3_x86_64.asm │ │ │ ├── bitdepth_conversion_avx2.h │ │ │ ├── bitdepth_conversion_sse2.asm │ │ │ ├── bitdepth_conversion_sse2.h │ │ │ ├── convolve.h │ │ │ ├── convolve_avx2.h │ │ │ ├── convolve_sse2.h │ │ │ ├── convolve_ssse3.h │ │ │ ├── deblock_sse2.asm │ │ │ ├── fwd_dct32x32_impl_avx2.h │ │ │ ├── fwd_dct32x32_impl_sse2.h │ │ │ ├── fwd_txfm_avx2.c │ │ │ ├── fwd_txfm_impl_sse2.h │ │ │ ├── fwd_txfm_sse2.c │ │ │ ├── fwd_txfm_sse2.h │ │ │ ├── fwd_txfm_ssse3_x86_64.asm │ │ │ ├── highbd_convolve_avx2.c │ │ │ ├── highbd_idct16x16_add_sse2.c │ │ │ ├── highbd_idct16x16_add_sse4.c │ │ │ ├── highbd_idct32x32_add_sse2.c │ │ │ ├── highbd_idct32x32_add_sse4.c │ │ │ ├── highbd_idct4x4_add_sse2.c │ │ │ ├── highbd_idct4x4_add_sse4.c │ │ │ ├── highbd_idct8x8_add_sse2.c │ │ │ ├── highbd_idct8x8_add_sse4.c │ │ │ ├── highbd_intrapred_intrin_sse2.c │ │ │ ├── highbd_intrapred_intrin_ssse3.c │ │ │ ├── highbd_intrapred_sse2.asm │ │ │ ├── highbd_inv_txfm_sse2.h │ │ │ ├── highbd_inv_txfm_sse4.h │ │ │ ├── highbd_loopfilter_sse2.c │ │ │ ├── highbd_quantize_intrin_sse2.c │ │ │ ├── highbd_sad4d_sse2.asm │ │ │ ├── highbd_sad_sse2.asm │ │ │ ├── highbd_subpel_variance_impl_sse2.asm │ │ │ ├── highbd_variance_impl_sse2.asm │ │ │ ├── highbd_variance_sse2.c │ │ │ ├── intrapred_sse2.asm │ │ │ ├── intrapred_ssse3.asm │ │ │ ├── inv_txfm_sse2.c │ │ │ ├── inv_txfm_sse2.h │ │ │ ├── inv_txfm_ssse3.c │ │ │ ├── inv_txfm_ssse3.h │ │ │ ├── inv_wht_sse2.asm │ │ │ ├── loopfilter_avx2.c │ │ │ ├── loopfilter_sse2.c │ │ │ ├── mem_sse2.h │ │ │ ├── post_proc_sse2.c │ │ │ ├── quantize_avx.c │ │ │ ├── quantize_sse2.c │ │ │ ├── quantize_sse2.h │ │ │ ├── quantize_ssse3.c │ │ │ ├── quantize_ssse3.h │ │ │ ├── sad4d_avx2.c │ │ │ ├── sad4d_avx512.c │ │ │ ├── sad4d_sse2.asm │ │ │ ├── sad_avx2.c │ │ │ ├── sad_sse2.asm │ │ │ ├── sad_sse3.asm │ │ │ ├── sad_sse4.asm │ │ │ ├── sad_ssse3.asm │ │ │ ├── ssim_opt_x86_64.asm │ │ │ ├── subpel_variance_sse2.asm │ │ │ ├── subtract_sse2.asm │ │ │ ├── sum_squares_sse2.c │ │ │ ├── transpose_sse2.h │ │ │ ├── txfm_common_sse2.h │ │ │ ├── variance_avx2.c │ │ │ ├── variance_sse2.c │ │ │ ├── vpx_convolve_copy_sse2.asm │ │ │ ├── vpx_high_subpixel_8t_sse2.asm │ │ │ ├── vpx_high_subpixel_bilinear_sse2.asm │ │ │ ├── vpx_subpixel_4t_intrin_sse2.c │ │ │ ├── vpx_subpixel_8t_intrin_avx2.c │ │ │ ├── vpx_subpixel_8t_intrin_ssse3.c │ │ │ ├── vpx_subpixel_8t_sse2.asm │ │ │ ├── vpx_subpixel_8t_ssse3.asm │ │ │ ├── vpx_subpixel_bilinear_sse2.asm │ │ │ └── vpx_subpixel_bilinear_ssse3.asm │ ├── vpx_mem │ │ ├── include │ │ │ └── vpx_mem_intrnl.h │ │ ├── vpx_mem.c │ │ ├── vpx_mem.h │ │ └── vpx_mem.mk │ ├── vpx_ports │ │ ├── arm.h │ │ ├── arm_cpudetect.c │ │ ├── asmdefs_mmi.h │ │ ├── bitops.h │ │ ├── emmintrin_compat.h │ │ ├── emms_mmx.asm │ │ ├── emms_mmx.c │ │ ├── float_control_word.asm │ │ ├── mem.h │ │ ├── mem_ops.h │ │ ├── mem_ops_aligned.h │ │ ├── msvc.h │ │ ├── ppc.h │ │ ├── ppc_cpudetect.c │ │ ├── system_state.h │ │ ├── vpx_once.h │ │ ├── vpx_ports.mk │ │ ├── vpx_timer.h │ │ ├── x86.h │ │ └── x86_abi_support.asm │ ├── vpx_scale │ │ ├── generic │ │ │ ├── gen_scalers.c │ │ │ ├── vpx_scale.c │ │ │ ├── yv12config.c │ │ │ └── yv12extend.c │ │ ├── mips │ │ │ └── dspr2 │ │ │ │ └── yv12extend_dspr2.c │ │ ├── vpx_scale.h │ │ ├── vpx_scale.mk │ │ ├── vpx_scale_rtcd.c │ │ ├── vpx_scale_rtcd.pl │ │ └── yv12config.h │ ├── vpx_util │ │ ├── endian_inl.h │ │ ├── vpx_atomics.h │ │ ├── vpx_debug_util.c │ │ ├── vpx_debug_util.h │ │ ├── vpx_thread.c │ │ ├── vpx_thread.h │ │ ├── vpx_timestamp.h │ │ ├── vpx_util.mk │ │ ├── vpx_write_yuv_frame.c │ │ └── vpx_write_yuv_frame.h │ ├── vpxdec.c │ ├── vpxenc.c │ ├── vpxenc.h │ ├── vpxstats.c │ ├── vpxstats.h │ ├── warnings.c │ ├── warnings.h │ ├── webmdec.cc │ ├── webmdec.h │ ├── webmenc.cc │ ├── webmenc.h │ ├── y4menc.c │ ├── y4menc.h │ ├── y4minput.c │ └── y4minput.h ├── libyuv │ ├── AUTHORS │ ├── Android.bp │ ├── Android.mk │ ├── BUILD.gn │ ├── CM_linux_packages.cmake │ ├── CMakeLists.txt │ ├── DEPS │ ├── LICENSE │ ├── OWNERS │ ├── PATENTS │ ├── PRESUBMIT.py │ ├── README.chromium │ ├── README.md │ ├── build_overrides │ │ ├── build.gni │ │ └── gtest.gni │ ├── cleanup_links.py │ ├── codereview.settings │ ├── docs │ │ ├── deprecated_builds.md │ │ ├── environment_variables.md │ │ ├── filtering.md │ │ ├── formats.md │ │ ├── getting_started.md │ │ └── rotation.md │ ├── download_vs_toolchain.py │ ├── include │ │ ├── libyuv.h │ │ └── libyuv │ │ │ ├── basic_types.h │ │ │ ├── compare.h │ │ │ ├── compare_row.h │ │ │ ├── convert.h │ │ │ ├── convert_argb.h │ │ │ ├── convert_from.h │ │ │ ├── convert_from_argb.h │ │ │ ├── cpu_id.h │ │ │ ├── macros_msa.h │ │ │ ├── mjpeg_decoder.h │ │ │ ├── planar_functions.h │ │ │ ├── rotate.h │ │ │ ├── rotate_argb.h │ │ │ ├── rotate_row.h │ │ │ ├── row.h │ │ │ ├── scale.h │ │ │ ├── scale_argb.h │ │ │ ├── scale_row.h │ │ │ ├── version.h │ │ │ └── video_common.h │ ├── libyuv.gni │ ├── linux.mk │ ├── public.mk │ ├── pylintrc │ ├── source │ │ ├── compare.cc │ │ ├── compare_common.cc │ │ ├── compare_gcc.cc │ │ ├── compare_mmi.cc │ │ ├── compare_msa.cc │ │ ├── compare_neon.cc │ │ ├── compare_neon64.cc │ │ ├── compare_win.cc │ │ ├── convert.cc │ │ ├── convert_argb.cc │ │ ├── convert_from.cc │ │ ├── convert_from_argb.cc │ │ ├── convert_jpeg.cc │ │ ├── convert_to_argb.cc │ │ ├── convert_to_i420.cc │ │ ├── cpu_id.cc │ │ ├── mjpeg_decoder.cc │ │ ├── mjpeg_validate.cc │ │ ├── planar_functions.cc │ │ ├── rotate.cc │ │ ├── rotate_any.cc │ │ ├── rotate_argb.cc │ │ ├── rotate_common.cc │ │ ├── rotate_gcc.cc │ │ ├── rotate_mmi.cc │ │ ├── rotate_msa.cc │ │ ├── rotate_neon.cc │ │ ├── rotate_neon64.cc │ │ ├── rotate_win.cc │ │ ├── row_any.cc │ │ ├── row_common.cc │ │ ├── row_gcc.cc │ │ ├── row_mmi.cc │ │ ├── row_msa.cc │ │ ├── row_neon.cc │ │ ├── row_neon64.cc │ │ ├── row_win.cc │ │ ├── scale.cc │ │ ├── scale_any.cc │ │ ├── scale_argb.cc │ │ ├── scale_common.cc │ │ ├── scale_gcc.cc │ │ ├── scale_mmi.cc │ │ ├── scale_msa.cc │ │ ├── scale_neon.cc │ │ ├── scale_neon64.cc │ │ ├── scale_win.cc │ │ └── video_common.cc │ ├── tools_libyuv │ │ ├── OWNERS │ │ ├── autoroller │ │ │ ├── roll_deps.py │ │ │ └── unittests │ │ │ │ ├── .DS_Store │ │ │ │ ├── roll_deps_test.py │ │ │ │ └── testdata │ │ │ │ ├── DEPS │ │ │ │ ├── DEPS.chromium.new │ │ │ │ └── DEPS.chromium.old │ │ ├── get_landmines.py │ │ ├── msan │ │ │ ├── OWNERS │ │ │ └── blacklist.txt │ │ ├── ubsan │ │ │ ├── OWNERS │ │ │ ├── blacklist.txt │ │ │ └── vptr_blacklist.txt │ │ └── valgrind │ │ │ ├── chrome_tests.bat │ │ │ ├── chrome_tests.py │ │ │ ├── chrome_tests.sh │ │ │ ├── common.py │ │ │ ├── gdb_helper.py │ │ │ ├── libyuv_tests.bat │ │ │ ├── libyuv_tests.py │ │ │ ├── libyuv_tests.sh │ │ │ ├── locate_valgrind.sh │ │ │ ├── memcheck │ │ │ ├── OWNERS │ │ │ ├── PRESUBMIT.py │ │ │ ├── suppressions.txt │ │ │ ├── suppressions_mac.txt │ │ │ └── suppressions_win32.txt │ │ │ ├── memcheck_analyze.py │ │ │ ├── valgrind.sh │ │ │ └── valgrind_test.py │ ├── unit_test │ │ ├── basictypes_test.cc │ │ ├── color_test.cc │ │ ├── compare_test.cc │ │ ├── convert_test.cc │ │ ├── cpu_test.cc │ │ ├── cpu_thread_test.cc │ │ ├── math_test.cc │ │ ├── planar_test.cc │ │ ├── rotate_argb_test.cc │ │ ├── rotate_test.cc │ │ ├── scale_argb_test.cc │ │ ├── scale_test.cc │ │ ├── testdata │ │ │ ├── arm_v7.txt │ │ │ ├── juno.txt │ │ │ ├── tegra3.txt │ │ │ ├── test0.jpg │ │ │ ├── test1.jpg │ │ │ ├── test2.jpg │ │ │ ├── test3.jpg │ │ │ └── test4.jpg │ │ ├── unit_test.cc │ │ ├── unit_test.h │ │ └── video_common_test.cc │ ├── util │ │ ├── Makefile │ │ ├── compare.cc │ │ ├── cpuid.c │ │ ├── psnr.cc │ │ ├── psnr.h │ │ ├── psnr_main.cc │ │ ├── ssim.cc │ │ ├── ssim.h │ │ └── yuvconvert.cc │ └── winarm.mk ├── miniupnpc │ ├── Changelog.txt │ ├── LICENCE │ ├── Makefile │ ├── Makefile.mingw │ ├── README │ ├── bsdqueue.h │ ├── codelength.h │ ├── declspec.h │ ├── igd_desc_parse.c │ ├── igd_desc_parse.h │ ├── man3 │ │ └── miniupnpc.3 │ ├── mingw32make.bat │ ├── minisoap.c │ ├── minisoap.h │ ├── minissdpc.c │ ├── minissdpc.h │ ├── miniupnpc.c │ ├── miniupnpc.def │ ├── miniupnpc.h │ ├── miniupnpcmodule.c │ ├── miniupnpcstrings.h │ ├── miniwget.c │ ├── miniwget.h │ ├── minixml.c │ ├── minixml.h │ ├── minixmlvalid.c │ ├── pymoduletest.py │ ├── setup.py │ ├── setupmingw32.py │ ├── testigddescparse.c │ ├── testminixml.c │ ├── testupnpigd.py │ ├── testupnpreplyparse.c │ ├── updateminiupnpcstrings.sh │ ├── upnpc.c │ ├── upnpcommands.c │ ├── upnpcommands.h │ ├── upnperrors.c │ ├── upnperrors.h │ ├── upnpreplyparse.c │ └── upnpreplyparse.h ├── srtp │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── .update │ ├── AUTHORS │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CODEOWNERS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.md │ ├── build │ │ └── config │ │ │ ├── ac_cflags_gcc_option.m4 │ │ │ ├── ac_cflags_sun_option.m4 │ │ │ ├── ac_gcc_archflag.m4 │ │ │ ├── ac_gcc_x86_cpuid.m4 │ │ │ ├── ac_prog_gzip.m4 │ │ │ ├── ac_prog_wget.m4 │ │ │ ├── ax_cc_maxopt.m4 │ │ │ ├── ax_cflags_warn_all_ansi.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ └── ax_compiler_vendor.m4 │ ├── cmake │ │ ├── FindMbedTLS.cmake │ │ └── FindNSS.cmake │ ├── config.hw │ ├── config_in_cmake.h │ ├── configure.ac │ ├── configure.gnu │ ├── crypto │ │ ├── Makefile.in │ │ ├── cipher │ │ │ ├── aes.c │ │ │ ├── aes_gcm_mbedtls.c │ │ │ ├── aes_gcm_nss.c │ │ │ ├── aes_gcm_ossl.c │ │ │ ├── aes_icm.c │ │ │ ├── aes_icm_mbedtls.c │ │ │ ├── aes_icm_nss.c │ │ │ ├── aes_icm_ossl.c │ │ │ ├── cipher.c │ │ │ ├── cipher_test_cases.c │ │ │ ├── cipher_test_cases.h │ │ │ └── null_cipher.c │ │ ├── hash │ │ │ ├── auth.c │ │ │ ├── auth_test_cases.c │ │ │ ├── auth_test_cases.h │ │ │ ├── hmac.c │ │ │ ├── hmac_mbedtls.c │ │ │ ├── hmac_nss.c │ │ │ ├── hmac_ossl.c │ │ │ ├── null_auth.c │ │ │ └── sha1.c │ │ ├── include │ │ │ ├── aes.h │ │ │ ├── aes_gcm.h │ │ │ ├── aes_icm.h │ │ │ ├── aes_icm_ext.h │ │ │ ├── alloc.h │ │ │ ├── auth.h │ │ │ ├── cipher.h │ │ │ ├── cipher_priv.h │ │ │ ├── cipher_types.h │ │ │ ├── crypto_kernel.h │ │ │ ├── crypto_types.h │ │ │ ├── datatypes.h │ │ │ ├── err.h │ │ │ ├── hmac.h │ │ │ ├── integers.h │ │ │ ├── key.h │ │ │ ├── null_auth.h │ │ │ ├── null_cipher.h │ │ │ ├── rdb.h │ │ │ ├── rdbx.h │ │ │ └── sha1.h │ │ ├── kernel │ │ │ ├── alloc.c │ │ │ ├── crypto_kernel.c │ │ │ ├── err.c │ │ │ └── key.c │ │ ├── math │ │ │ └── datatypes.c │ │ ├── replay │ │ │ ├── rdb.c │ │ │ └── rdbx.c │ │ └── test │ │ │ ├── aes_calc.c │ │ │ ├── cipher_driver.c │ │ │ ├── datatypes_driver.c │ │ │ ├── env.c │ │ │ ├── kernel_driver.c │ │ │ ├── meson.build │ │ │ └── sha1_driver.c │ ├── doc │ │ ├── Doxyfile.in │ │ ├── Makefile.in │ │ ├── crypto_kernel.txt │ │ ├── docs.css │ │ └── meson.build │ ├── format.sh │ ├── include │ │ ├── srtp.h │ │ ├── srtp2 │ │ │ └── meson.build │ │ └── srtp_priv.h │ ├── libsrtp.2017.vcxproj │ ├── libsrtp2.pc.in │ ├── meson.build │ ├── meson_options.txt │ ├── srtp.def │ ├── srtp.sln │ ├── srtp │ │ └── srtp.c │ ├── srtp2.vcxproj │ ├── srtp2.vcxproj.filters │ ├── test │ │ ├── cutest.h │ │ ├── getopt_s.c │ │ ├── getopt_s.h │ │ ├── meson.build │ │ ├── rdbx_driver.c │ │ ├── replay_driver.c │ │ ├── roc_driver.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtp_decoder.c │ │ ├── rtp_decoder.h │ │ ├── rtpw.c │ │ ├── rtpw_test.sh │ │ ├── rtpw_test_gcm.sh │ │ ├── srtp_driver.c │ │ ├── test_srtp.c │ │ ├── ut_sim.c │ │ ├── ut_sim.h │ │ ├── util.c │ │ ├── util.h │ │ └── words.txt │ ├── timing │ └── update.sh ├── stb │ ├── stb_image.h │ └── stb_image_write.h ├── win32 │ ├── Sound_Files │ │ ├── 16khz.2017.vcxproj │ │ ├── 16khzmusic.2017.vcxproj │ │ ├── 32khz.2017.vcxproj │ │ ├── 32khzmusic.2017.vcxproj │ │ ├── 48khz.2017.vcxproj │ │ ├── 48khzmusic.2017.vcxproj │ │ ├── 8khz.2017.vcxproj │ │ └── 8khzmusic.2017.vcxproj │ ├── apr │ │ ├── cleancount │ │ ├── fspr.hw │ │ └── libapr.2017.vcxproj │ ├── broadvoice │ │ └── libbroadvoice.2017.vcxproj │ ├── celt │ │ ├── config.h │ │ ├── float_cast.h │ │ └── libcelt.2017.vcxproj │ ├── civetweb │ │ ├── duktape_lib.vcxproj │ │ └── lua_lib.vcxproj │ ├── cleancount │ ├── ffmpeg │ │ └── ffmpeg.2017.vcxproj │ ├── freetype │ │ └── freetype.2017.vcxproj │ ├── iksemel │ │ ├── cleancount │ │ ├── config.h │ │ └── iksemel.2017.vcxproj │ ├── ilbc │ │ └── libilbc.2017.vcxproj │ ├── ldns │ │ └── ldns-lib │ │ │ ├── config.h │ │ │ ├── ldns-lib.2017.vcxproj │ │ │ ├── net.h │ │ │ └── util.h │ ├── libav │ │ ├── cleancount │ │ └── libav.2017.vcxproj │ ├── libcbt │ │ └── libcbt.2017.vcxproj │ ├── libcodec2 │ │ ├── generate.bat │ │ ├── generated │ │ │ ├── codebook.c │ │ │ ├── codebookd.c │ │ │ ├── codebookdt.c │ │ │ ├── codebookge.c │ │ │ ├── codebookjnd.c │ │ │ ├── codebookjvm.c │ │ │ ├── codebookvq.c │ │ │ └── codebookvqanssi.c │ │ └── libcodec2.2017.vcxproj │ ├── libg722_1 │ │ └── libg722_1.2017.vcxproj │ ├── libjpeg │ │ └── libjpeg.2017.vcxproj │ ├── libmp3lame │ │ ├── config.h │ │ └── libmp3lame.2017.vcxproj │ ├── libogg │ │ └── libogg.2017.vcxproj │ ├── libpng │ │ ├── cleancount │ │ └── libpng.2017.vcxproj │ ├── libresample │ │ └── cleancount │ ├── libshout │ │ ├── compat.h │ │ ├── libshout.2017.vcxproj │ │ └── shout │ │ │ └── shout.h │ ├── libsilk │ │ └── Silk_FIX.2017.vcxproj │ ├── libtiff │ │ └── libtiff.2017.vcxproj │ ├── libvpx │ │ ├── cleancount │ │ ├── include_x64 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_config.asm │ │ │ ├── vpx_config.c │ │ │ ├── vpx_config.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ │ ├── include_x86 │ │ │ ├── vp8_rtcd.h │ │ │ ├── vp9_rtcd.h │ │ │ ├── vpx_config.asm │ │ │ ├── vpx_config.c │ │ │ ├── vpx_config.h │ │ │ ├── vpx_dsp_rtcd.h │ │ │ └── vpx_scale_rtcd.h │ │ ├── libvpx.2017.vcxproj │ │ └── vpx_version.h │ ├── libx264 │ │ ├── libx264.2017.vcxproj │ │ ├── libx264.2017.vcxproj.filters │ │ ├── vsyasm.props │ │ ├── vsyasm.targets │ │ └── vsyasm.xml │ ├── libyuv │ │ └── libyuv.2017.vcxproj │ ├── mpg123 │ │ ├── libmpg123.2017.vcxproj │ │ └── libmpg123 │ │ │ ├── config.h │ │ │ └── mpg123.h │ ├── opus │ │ ├── opus.2017.vcxproj │ │ ├── opus.celt.2017.vcxproj │ │ ├── opus.silk_common.2017.vcxproj │ │ ├── opus.silk_fixed.2017.vcxproj │ │ └── opus.silk_float.2017.vcxproj │ ├── pocketsphinx │ │ └── pocketsphinx.2017.vcxproj │ ├── portaudio │ │ └── portaudio.2017.vcxproj │ ├── pthread │ │ ├── cleancount │ │ └── pthread.2017.vcxproj │ ├── sofia │ │ ├── cleancount │ │ └── libsofia_sip_ua_static.2017.vcxproj │ ├── spandsp │ │ ├── libspandsp.2017.vcxproj │ │ ├── make_at_dictionary.2017.vcxproj │ │ ├── make_cielab_luts.2017.vcxproj │ │ ├── make_math_fixed_tables.2017.vcxproj │ │ ├── make_modem_filter.2017.vcxproj │ │ └── make_t43_gray_code_tables.2017.vcxproj │ ├── speex │ │ ├── cleancount │ │ ├── config.h │ │ ├── libspeex.2017.vcxproj │ │ └── libspeexdsp.2017.vcxproj │ ├── sphinxbase │ │ └── sphinxbase.2017.vcxproj │ ├── sqlite │ │ ├── cleancount │ │ └── sqlite.2017.vcxproj │ ├── udns │ │ └── libudns.2017.vcxproj │ └── xmlrpc-c │ │ ├── abyss.2017.vcxproj │ │ ├── gennmtab.2017.vcxproj │ │ ├── xmlparse.2017.vcxproj │ │ ├── xmlrpc.2017.vcxproj │ │ └── xmltok.2017.vcxproj └── xmlrpc-c │ ├── GNUmakefile │ ├── Makefile │ ├── Makefile.depend │ ├── README │ ├── Windows │ ├── CleanAll.bat │ ├── CleanWin32.bat │ ├── ConfigureWin32.bat │ ├── ReadMeOld.txt │ ├── ReadMeWin32.txt │ ├── UsingCURLinWin32.txt │ ├── UsingProxyDSP.txt │ ├── abyss.dsp │ ├── abyss.vcproj │ ├── configwin32.dsp │ ├── cpptest.dsp │ ├── curllink.h │ ├── delsln.bat │ ├── diffcfg.bat │ ├── dll │ │ ├── cpptest.vcproj │ │ ├── gennmtab.vcproj │ │ ├── rpctest.vcproj │ │ ├── sample_add_asynch_client.vcproj │ │ ├── sample_add_server.vcproj │ │ ├── sample_add_server_w32httpsys.vcproj │ │ ├── sample_add_sync_client.vcproj │ │ ├── sample_auth_client.vcproj │ │ ├── tool_xmlrpc-transport.vcproj │ │ ├── tool_xmlrpc.vcproj │ │ ├── xmlrpc.sln │ │ ├── xmlrpc.vcproj │ │ ├── xmlrpc__.vcproj │ │ ├── xmlrpc_abyss.vcproj │ │ ├── xmlrpc_client.vcproj │ │ ├── xmlrpc_server.vcproj │ │ ├── xmlrpc_server_abyss.vcproj │ │ ├── xmlrpc_server_cgi.vcproj │ │ ├── xmlrpc_server_w32httpsys.vcproj │ │ ├── xmlrpc_util.vcproj │ │ ├── xmlrpc_xmlparse.vcproj │ │ └── xmlrpc_xmltok.vcproj │ ├── gennmtab.dsp │ ├── gennmtab.vcproj │ ├── mkvers.bat │ ├── mkvers1.bat │ ├── rpctest.dsp │ ├── socketpair.cpp │ ├── transport_config_win32.h │ ├── updcfg.bat │ ├── win32_config.h │ ├── xmlhttpsys.dsp │ ├── xmlparse.dsp │ ├── xmlparse.vcproj │ ├── xmlrpc.dsp │ ├── xmlrpc.dsw │ ├── xmlrpc.vcproj │ ├── xmlrpc_cpp_proxy.dsp │ ├── xmlrpc_misc.dsp │ ├── xmlrpc_sample_add_asynch_client.dsp │ ├── xmlrpc_sample_add_server.dsp │ ├── xmlrpc_sample_add_server_w32httpsys.dsp │ ├── xmlrpc_sample_add_sync_client.dsp │ ├── xmlrpc_sample_auth_client.dsp │ ├── xmlrpc_win32_config.h │ ├── xmlrpcclient.dsp │ ├── xmlrpccpp.dsp │ ├── xmltok.dsp │ └── xmltok.vcproj │ ├── common.mk │ ├── conf │ └── abyss_root │ │ └── htdocs │ │ └── pwrabyss.gif │ ├── config.mk.in │ ├── configure.ac │ ├── configure.gnu │ ├── dll-common.mk │ ├── doc │ ├── COPYING │ ├── CREDITS │ ├── DEVELOPING │ ├── HISTORY │ ├── INSTALL │ ├── SECURITY │ ├── TESTING │ ├── TODO │ └── configure_doc │ ├── dylib-common.mk │ ├── examples │ ├── Makefile │ ├── README │ ├── auth_client.c │ ├── compound_value_client.c │ ├── compound_value_server.c │ ├── cpp │ │ ├── Makefile │ │ ├── asynch_client.cpp │ │ ├── callinfo_abyss_server.cpp │ │ ├── pstream_client.cpp │ │ ├── pstream_inetd_server.cpp │ │ ├── pstream_serial_server.cpp │ │ ├── sample_add_client_complex.cpp │ │ ├── xmlrpc_inetd_server.cpp │ │ ├── xmlrpc_loop_server.cpp │ │ ├── xmlrpc_sample_add_client.cpp │ │ ├── xmlrpc_sample_add_server.cpp │ │ └── xmlrpc_sample_add_server_cgi.cpp │ ├── gen_sample_add_xml.c │ ├── interrupted_client.c │ ├── interrupted_server.c │ ├── json.c │ ├── synch_client.c │ ├── xmlrpc_asynch_client.c │ ├── xmlrpc_inetd_server.c │ ├── xmlrpc_loop_server.c │ ├── xmlrpc_sample_add_client.c │ ├── xmlrpc_sample_add_server.c │ ├── xmlrpc_sample_add_server_cgi.c │ ├── xmlrpc_sample_add_server_w32httpsys.c │ ├── xmlrpc_server_validatee.c │ └── xmlrpc_socket_server.c │ ├── include │ ├── Makefile │ └── xmlrpc-c │ │ ├── abyss.h │ │ ├── abyss_opensslsock.h │ │ ├── abyss_unixsock.h │ │ ├── abyss_winsock.h │ │ ├── base.h │ │ ├── base.hpp │ │ ├── base64.hpp │ │ ├── base64_int.h │ │ ├── base_int.h │ │ ├── c_util.h │ │ ├── client.h │ │ ├── client.hpp │ │ ├── client_global.h │ │ ├── client_int.h │ │ ├── client_simple.hpp │ │ ├── client_transport.hpp │ │ ├── config.h.in │ │ ├── girerr.hpp │ │ ├── girmem.hpp │ │ ├── inttypes.h │ │ ├── json.h │ │ ├── oldcppwrapper.hpp │ │ ├── oldxmlrpc.h │ │ ├── packetsocket.hpp │ │ ├── registry.hpp │ │ ├── select_int.h │ │ ├── server.h │ │ ├── server_abyss.h │ │ ├── server_abyss.hpp │ │ ├── server_cgi.h │ │ ├── server_cgi.hpp │ │ ├── server_pstream.hpp │ │ ├── server_w32httpsys.h │ │ ├── sleep_int.h │ │ ├── string_int.h │ │ ├── string_number.h │ │ ├── time_int.h │ │ ├── timeout.hpp │ │ ├── transport.h │ │ ├── util.h │ │ ├── util_int.h │ │ ├── xml.hpp │ │ └── xmlparser.h │ ├── install-sh │ ├── irix-common.mk │ ├── lib │ ├── Makefile │ ├── Makefile.depend │ ├── abyss │ │ ├── .cvsignore │ │ ├── HISTORY │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── README │ │ ├── conf │ │ │ ├── abyss.conf │ │ │ └── mime.types │ │ ├── example │ │ │ ├── conf │ │ │ │ ├── abyss.conf │ │ │ │ └── mime.types │ │ │ └── htdocs │ │ │ │ ├── index.htm │ │ │ │ └── pwrabyss.gif │ │ ├── htdocs │ │ │ └── pwrabyss.gif │ │ ├── license.txt │ │ └── src │ │ │ ├── .cvsignore │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── abyss_info.h │ │ │ ├── channel.c │ │ │ ├── channel.h │ │ │ ├── chanswitch.c │ │ │ ├── chanswitch.h │ │ │ ├── conf.c │ │ │ ├── conn.c │ │ │ ├── conn.h │ │ │ ├── data.c │ │ │ ├── data.h │ │ │ ├── date.c │ │ │ ├── date.h │ │ │ ├── file.c │ │ │ ├── file.h │ │ │ ├── handler.c │ │ │ ├── handler.h │ │ │ ├── http.c │ │ │ ├── http.h │ │ │ ├── init.c │ │ │ ├── main.c │ │ │ ├── response.c │ │ │ ├── server.c │ │ │ ├── server.h │ │ │ ├── session.c │ │ │ ├── session.h │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── socket_openssl.c │ │ │ ├── socket_unix.c │ │ │ ├── socket_unix.h │ │ │ ├── socket_win.c │ │ │ ├── socket_win.h │ │ │ ├── thread.h │ │ │ ├── thread_fork.c │ │ │ ├── thread_pthread.c │ │ │ ├── thread_windows.c │ │ │ ├── token.c │ │ │ ├── token.h │ │ │ ├── trace.c │ │ │ └── trace.h │ ├── curl_transport │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── curlmulti.c │ │ ├── curlmulti.h │ │ ├── curltransaction.c │ │ ├── curltransaction.h │ │ ├── curlversion.h │ │ ├── lock.h │ │ ├── lock_pthread.c │ │ ├── lock_pthread.h │ │ └── xmlrpc_curl_transport.c │ ├── expat │ │ ├── Makefile │ │ ├── expat.html │ │ ├── gennmtab │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ └── gennmtab.c │ │ ├── xmlparse │ │ │ ├── Makefile │ │ │ ├── xmlparse.c │ │ │ └── xmlparse.h │ │ ├── xmltok │ │ │ ├── Makefile │ │ │ ├── Makefile.depend │ │ │ ├── ascii.h │ │ │ ├── asciitab.h │ │ │ ├── dllmain.c │ │ │ ├── iasciitab.h │ │ │ ├── latin1tab.h │ │ │ ├── nametab.h │ │ │ ├── utf8tab.h │ │ │ ├── xmldef.h │ │ │ ├── xmlrole.c │ │ │ ├── xmlrole.h │ │ │ ├── xmltok.c │ │ │ ├── xmltok.h │ │ │ ├── xmltok_impl.c │ │ │ ├── xmltok_impl.h │ │ │ └── xmltok_ns.c │ │ └── xmlwf │ │ │ ├── Makefile.in │ │ │ ├── codepage.c │ │ │ ├── codepage.h │ │ │ ├── filemap.h │ │ │ ├── readfilemap.c │ │ │ ├── unixfilemap.c │ │ │ ├── win32filemap.c │ │ │ ├── xmlfile.c │ │ │ ├── xmlfile.h │ │ │ ├── xmltchar.h │ │ │ ├── xmlwf.c │ │ │ └── xmlwf.dsp │ ├── libutil │ │ ├── Makefile │ │ ├── asprintf.c │ │ ├── base64.c │ │ ├── error.c │ │ ├── make_printable.c │ │ ├── memblock.c │ │ ├── select.c │ │ ├── sleep.c │ │ ├── string_number.c │ │ ├── time.c │ │ └── utf8.c │ ├── libwww_transport │ │ ├── Makefile │ │ ├── Makefile.depend │ │ └── xmlrpc_libwww_transport.c │ ├── util │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── casprintf.c │ │ ├── cmdline_parser.c │ │ ├── cmdline_parser_cpp.cpp │ │ ├── getoptx.c │ │ ├── getoptx.h │ │ ├── include │ │ │ ├── assertx.hpp │ │ │ ├── bool.h │ │ │ ├── c_util.h │ │ │ ├── casprintf.h │ │ │ ├── cmdline_parser.h │ │ │ ├── cmdline_parser.hpp │ │ │ ├── girmath.h │ │ │ ├── girstring.h │ │ │ ├── inline.h │ │ │ ├── int.h │ │ │ ├── linklist.h │ │ │ ├── mallocvar.h │ │ │ ├── pthreadx.h │ │ │ ├── stdargx.h │ │ │ ├── string_parser.h │ │ │ └── unistdx.h │ │ ├── pthreadx_win32.c │ │ ├── string_parser.c │ │ └── stripcaseeq.c │ └── wininet_transport │ │ ├── Makefile │ │ └── xmlrpc_wininet_transport.c │ ├── missing │ ├── mkinstalldirs │ ├── src │ ├── Makefile │ ├── Makefile.depend │ ├── cpp │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── XmlRpcCpp.cpp │ │ ├── base64.cpp │ │ ├── client.cpp │ │ ├── client_simple.cpp │ │ ├── curl.cpp │ │ ├── env_wrap.cpp │ │ ├── env_wrap.hpp │ │ ├── fault.cpp │ │ ├── girerr.cpp │ │ ├── girmem.cpp │ │ ├── libwww.cpp │ │ ├── outcome.cpp │ │ ├── packetsocket.cpp │ │ ├── param_list.cpp │ │ ├── pstream.cpp │ │ ├── registry.cpp │ │ ├── server_abyss.cpp │ │ ├── server_cgi.cpp │ │ ├── server_pstream.cpp │ │ ├── server_pstream_conn.cpp │ │ ├── test │ │ │ ├── Makefile │ │ │ ├── base64.cpp │ │ │ ├── base64.hpp │ │ │ ├── registry.cpp │ │ │ ├── registry.hpp │ │ │ ├── server_abyss.cpp │ │ │ ├── server_abyss.hpp │ │ │ ├── server_pstream.cpp │ │ │ ├── server_pstream.hpp │ │ │ ├── test.cpp │ │ │ ├── testclient.cpp │ │ │ ├── testclient.hpp │ │ │ ├── testclient_dummy.cpp │ │ │ ├── tools.cpp │ │ │ ├── tools.hpp │ │ │ ├── value.cpp │ │ │ ├── value.hpp │ │ │ ├── xml.cpp │ │ │ └── xml.hpp │ │ ├── value.cpp │ │ ├── wininet.cpp │ │ └── xml.cpp │ ├── double.c │ ├── double.h │ ├── json.c │ ├── method.c │ ├── method.h │ ├── parse_datetime.c │ ├── parse_datetime.h │ ├── parse_value.c │ ├── parse_value.h │ ├── registry.c │ ├── registry.h │ ├── resource.c │ ├── system_method.c │ ├── system_method.h │ ├── test │ │ ├── Makefile │ │ ├── abyss.c │ │ ├── abyss.h │ │ ├── cgi.c │ │ ├── cgi.h │ │ ├── cgitest1.c │ │ ├── client.c │ │ ├── client.h │ │ ├── client_dummy.c │ │ ├── data │ │ │ ├── req_no_params.xml │ │ │ ├── req_out_of_order.xml │ │ │ ├── req_value_name.xml │ │ │ └── sample_add_call.xml │ │ ├── eftest_wrapper.sh │ │ ├── http-req-simple.txt │ │ ├── method_registry.c │ │ ├── method_registry.h │ │ ├── parse_xml.c │ │ ├── parse_xml.h │ │ ├── req_no_params.xml │ │ ├── serialize.c │ │ ├── serialize.h │ │ ├── serialize_value.c │ │ ├── serialize_value.h │ │ ├── server_abyss.c │ │ ├── server_abyss.h │ │ ├── test.c │ │ ├── testtool.c │ │ ├── testtool.h │ │ ├── value.c │ │ ├── value.h │ │ ├── value_datetime.c │ │ ├── value_datetime.h │ │ ├── xml_data.c │ │ └── xml_data.h │ ├── version.c │ ├── xml_trace.c │ ├── xmlrpc_array.c │ ├── xmlrpc_authcookie.c │ ├── xmlrpc_base64.c │ ├── xmlrpc_build.c │ ├── xmlrpc_client.c │ ├── xmlrpc_client_global.c │ ├── xmlrpc_data.c │ ├── xmlrpc_datetime.c │ ├── xmlrpc_decompose.c │ ├── xmlrpc_expat.c │ ├── xmlrpc_libxml2.c │ ├── xmlrpc_parse.c │ ├── xmlrpc_serialize.c │ ├── xmlrpc_server_abyss.c │ ├── xmlrpc_server_cgi.c │ ├── xmlrpc_server_info.c │ ├── xmlrpc_server_w32httpsys.c │ ├── xmlrpc_string.c │ └── xmlrpc_struct.c │ ├── srcdir.mk.in │ ├── stamp-h.in │ ├── tools │ ├── Makefile │ ├── binmode-rpc-kit │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── binmode-rpc-rfc.txt │ │ ├── binmode-rpc2xml-rpc │ │ ├── examples │ │ │ ├── good-1.binmode │ │ │ ├── good-1.xml │ │ │ ├── good-2.binmode │ │ │ ├── good-2.xml │ │ │ ├── good-3.binmode │ │ │ ├── good-3.xml │ │ │ ├── good-4.binmode │ │ │ ├── good-4.xml │ │ │ ├── good-5.binmode │ │ │ ├── good-5.xml │ │ │ ├── good-6.binmode │ │ │ ├── good-6.xml │ │ │ ├── invalid-1.binmode │ │ │ ├── invalid-2.binmode │ │ │ ├── invalid-3.binmode │ │ │ ├── invalid-4.binmode │ │ │ └── invalid-5.binmode │ │ └── oct2bin │ ├── common.mk │ ├── interop-server │ │ └── interop-cgi.c │ ├── lib │ │ ├── Makefile │ │ ├── dumpvalue.c │ │ └── include │ │ │ └── dumpvalue.h │ ├── perl_packetsocket │ │ └── PacketSocket.pm │ ├── turbocharger │ │ ├── Makefile │ │ ├── README │ │ ├── mod_gzip.c │ │ └── mod_gzip.c.diff │ ├── xml-rpc-api2cpp │ │ ├── DataType.cpp │ │ ├── DataType.hpp │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── SystemProxy.cpp │ │ ├── SystemProxy.hpp │ │ ├── XmlRpcClass.cpp │ │ ├── XmlRpcClass.hpp │ │ ├── XmlRpcFunction.cpp │ │ ├── XmlRpcFunction.hpp │ │ ├── xml-rpc-api2cpp.1 │ │ └── xml-rpc-api2cpp.cpp │ ├── xmlrpc │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── xmlrpc.c │ │ └── xmlrpc.html │ ├── xmlrpc_cpp_proxy │ │ ├── Makefile │ │ ├── proxyClass.cpp │ │ ├── proxyClass.hpp │ │ ├── systemProxy.cpp │ │ ├── systemProxy.hpp │ │ ├── xmlrpcMethod.cpp │ │ ├── xmlrpcMethod.hpp │ │ ├── xmlrpcType.cpp │ │ ├── xmlrpcType.hpp │ │ └── xmlrpc_cpp_proxy.cpp │ ├── xmlrpc_pstream │ │ ├── Makefile │ │ ├── test │ │ ├── xmlrpc_pstream.cpp │ │ └── xmlrpc_pstream.html │ └── xmlrpc_transport │ │ ├── Makefile │ │ ├── Makefile.depend │ │ ├── xmlrpc_transport.c │ │ └── xmlrpc_transport.html │ ├── transport_config.mk │ ├── unix-common.mk │ ├── version.h │ ├── version.mk │ ├── xmlrpc-c-config.main │ ├── xmlrpc-c-config.test.main │ ├── xmlrpc_amconfig.h.in │ └── xmlrpc_config.h.in ├── msbuild.cmd ├── scan_build.sh ├── scripts ├── FreeSWITCH-debian-raspbian-installer.sh ├── applescript │ └── FreeSWITCH Dialer.scpt ├── backtrace-from-core ├── basic │ └── hello.bas ├── bisect ├── c │ └── socket2me │ │ ├── Makefile │ │ ├── README │ │ └── socket2me.c ├── check-gitignore.sh ├── ci │ ├── build-requirements.sh │ ├── common.sh │ ├── config-rayo.sh │ ├── erlang-rpm.sh │ ├── extras │ │ ├── erlang.spec │ │ ├── erlangbuilder.sh │ │ └── otp-R14B-00-0001-Do-not-format-man-pages.patch │ ├── get_extra_sources.sh │ ├── mk-sounds-rpms.sh │ ├── rpmbuilder.sh │ ├── sounds-en-us-callie.sh │ ├── sounds-fr-ca-june.sh │ ├── sounds-music.sh │ ├── sounds-ru-ru-elena.sh │ ├── src_tarball.sh │ └── test_build.sh ├── dailys.sh ├── debian_min_build.sh ├── debug_sofia.sh ├── freeswitch-gcore ├── freeswitch-reporter ├── freeswitch.pkg_deps.sh ├── freeswitch.sh ├── fsxs.in ├── gentls_cert.in ├── javascript │ ├── aadir │ │ ├── README │ │ └── aadir.js │ ├── api.js │ ├── dtmftest.js │ ├── js_modules │ │ └── SpeechTools.jm │ ├── pizza.js │ └── ps_pizza.js ├── lua │ ├── api.lua │ ├── callback.lua │ ├── directory.gram │ ├── directory.lua │ ├── hangup_jitterbuffer_metrics.lua │ ├── helloworld.lua │ ├── lua_ivr.lua │ ├── mwi_event.lua │ ├── originate.lua │ ├── portal │ │ ├── create_gateway.lua │ │ └── create_user.lua │ ├── sound_test.lua │ ├── tdd_echo.lua │ └── test_cond_api.lua ├── m4a-to-wav.sh ├── mk_fs_fhs.sh ├── perl │ ├── FreeSWITCH │ │ ├── ChangeLog │ │ ├── Client.pm │ │ ├── Makefile.PL │ │ ├── README │ │ └── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ └── rules │ ├── POE-Filter-FSSocket │ │ ├── CHANGES │ │ ├── INSTALL │ │ ├── LICENSE │ │ ├── Makefile.PL │ │ ├── README │ │ ├── TODO │ │ ├── examples │ │ │ ├── fsconsole.pl │ │ │ └── poetest.pl │ │ ├── lib │ │ │ └── POE │ │ │ │ └── Filter │ │ │ │ └── FSSocket.pm │ │ └── t │ │ │ └── 01_basic.t │ ├── add_user │ ├── analyze-debug-alloc.pl │ ├── blacklist.pl │ ├── call.cgi │ ├── cnam.cgi │ ├── combineconf.pl │ ├── dhcp-inform.pl │ ├── extract_log_range.pl │ ├── f-off-friendly-scanner.pl │ ├── fax.cgi │ ├── fs.pl │ ├── fsconsole.pl │ ├── fslog │ ├── ftc_dnc_register.pl │ ├── g729_activate │ ├── honeypot.pl │ ├── mkgws.pl │ ├── multicast │ │ ├── recv.pl │ │ └── send.pl │ ├── mwi_event.pl │ ├── originate.pl │ ├── perltidyrc │ ├── puppet.cgi │ ├── randomize-passwords.pl │ ├── rpc.cgi │ ├── sendmail │ ├── snom-pnpd.pl │ ├── sock.pl │ ├── tag.pl │ ├── timezones │ │ ├── build-zonedata.pl │ │ ├── data │ │ │ └── .gitignore │ │ ├── fix-tzstr.pl │ │ ├── tests.pl │ │ └── timezone-gen.pl │ ├── tonegen │ │ └── rtttl2tgml.pl │ └── wplookup.cgi ├── php │ └── call.php ├── py_modules │ ├── __init__.py │ └── speechtools.py ├── python │ ├── freepy │ │ ├── INSTALL │ │ ├── README │ │ ├── __init__.py │ │ ├── apirequest.sm │ │ ├── apirequest_sm.py │ │ ├── bgapirequest.sm │ │ ├── bgapirequest_sm.py │ │ ├── fseventlistener.py │ │ ├── fshelper.py │ │ ├── globals.py │ │ ├── loginrequest.sm │ │ ├── loginrequest_sm.py │ │ ├── models.py │ │ └── request.py │ ├── mytest.py │ └── recipewizard.py ├── rss │ ├── rss2ivr.pl │ └── syncrss.pl ├── setup-git.sh ├── sql │ ├── cdr.sql │ └── easyroute_mysql.sql ├── tagscript.sh ├── trace │ └── sipgrep └── yes_no.gram ├── src ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── cJSON.c ├── cJSON_Utils.c ├── fs_encode.c ├── fs_tts.c ├── g711.c ├── include │ ├── SimpleGlob.h │ ├── cc.h │ ├── g711.h │ ├── private │ │ ├── switch_apr_pvt.h │ │ ├── switch_core_pvt.h │ │ └── switch_hashtable_private.h │ ├── switch.h │ ├── switch_am_config.h.in │ ├── switch_apr.h │ ├── switch_bitpack.h │ ├── switch_buffer.h │ ├── switch_cJSON.h │ ├── switch_cJSON_Utils.h │ ├── switch_caller.h │ ├── switch_channel.h │ ├── switch_config.h │ ├── switch_console.h │ ├── switch_core.h │ ├── switch_core_db.h │ ├── switch_core_event_hook.h │ ├── switch_core_media.h │ ├── switch_core_video.h │ ├── switch_cpp.h │ ├── switch_curl.h │ ├── switch_dso.h │ ├── switch_estimators.h │ ├── switch_event.h │ ├── switch_frame.h │ ├── switch_hashtable.h │ ├── switch_image.h │ ├── switch_ivr.h │ ├── switch_jitterbuffer.h │ ├── switch_json.h │ ├── switch_limit.h │ ├── switch_loadable_module.h │ ├── switch_log.h │ ├── switch_module_interfaces.h │ ├── switch_mprintf.h │ ├── switch_msrp.h │ ├── switch_nat.h │ ├── switch_odbc.h │ ├── switch_packetizer.h │ ├── switch_platform.h │ ├── switch_private.h.cmake │ ├── switch_profile.h │ ├── switch_regex.h │ ├── switch_resample.h │ ├── switch_rtcp_frame.h │ ├── switch_rtp.h │ ├── switch_scheduler.h │ ├── switch_spandsp.h │ ├── switch_ssl.h │ ├── switch_stun.h │ ├── switch_types.h │ ├── switch_utf8.h │ ├── switch_utils.h │ ├── switch_vad.h │ ├── switch_version.h.cmake │ ├── switch_version.h.template │ ├── switch_vpx.h │ ├── switch_xml.h │ ├── switch_xml_config.h │ ├── test │ │ ├── switch_fct.h │ │ └── switch_test.h │ └── xswitch.h ├── inet_pton.c ├── mod │ ├── .gitignore │ ├── Makefile.am │ ├── applications │ │ ├── .gitignore │ │ ├── mod_abstraction │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── abstraction.conf.xml │ │ │ ├── mod_abstraction.2017.vcxproj │ │ │ └── mod_abstraction.c │ │ ├── mod_av │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── autoload_configs │ │ │ │ └── av.conf.xml │ │ │ ├── avcodec.c │ │ │ ├── avformat.c │ │ │ ├── mod_av.2017.vcxproj │ │ │ ├── mod_av.c │ │ │ ├── mod_av.h │ │ │ └── test │ │ │ │ ├── cluecon.png │ │ │ │ ├── conf │ │ │ │ ├── av.conf.xml │ │ │ │ ├── freeswitch.xml │ │ │ │ └── old_av.conf.xml │ │ │ │ ├── test_avformat.c │ │ │ │ ├── test_mod_av.2017.vcxproj │ │ │ │ └── test_mod_av.c │ │ ├── mod_avmd │ │ │ ├── Makefile.am │ │ │ ├── avmd_amplitude.c │ │ │ ├── avmd_amplitude.h │ │ │ ├── avmd_buffer.c │ │ │ ├── avmd_buffer.h │ │ │ ├── avmd_desa2.c │ │ │ ├── avmd_desa2.h │ │ │ ├── avmd_desa2_tweaked.c │ │ │ ├── avmd_desa2_tweaked.h │ │ │ ├── avmd_fast_acosf.c │ │ │ ├── avmd_fast_acosf.h │ │ │ ├── avmd_fir.h │ │ │ ├── avmd_goertzel.c │ │ │ ├── avmd_goertzel.h │ │ │ ├── avmd_options.h │ │ │ ├── avmd_psi.h │ │ │ ├── avmd_sma_buf.h │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── avmd.conf.xml │ │ │ │ └── avmd_test_dialplan.xml │ │ │ ├── mod_avmd.2017.vcxproj │ │ │ ├── mod_avmd.c │ │ │ └── scripts │ │ │ │ ├── avmd_get_events.pl │ │ │ │ ├── avmd_originate.pl │ │ │ │ ├── avmd_originate_multiple.pl │ │ │ │ ├── avmd_originate_multiple_loopback.pl │ │ │ │ ├── avmd_test.pl │ │ │ │ └── test.txt │ │ ├── mod_bert │ │ │ ├── Makefile.am │ │ │ └── mod_bert.c │ │ ├── mod_blacklist │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── blacklist.conf.xml │ │ │ ├── mod_blacklist.2017.vcxproj │ │ │ └── mod_blacklist.c │ │ ├── mod_callcenter │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── callcenter.conf.xml │ │ │ ├── mod_callcenter.2017.vcxproj │ │ │ └── mod_callcenter.c │ │ ├── mod_cidlookup │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cidlookup.conf.xml │ │ │ ├── mod_cidlookup.2017.vcxproj │ │ │ └── mod_cidlookup.c │ │ ├── mod_cluechoo │ │ │ ├── Makefile.am │ │ │ ├── mod_cluechoo.c │ │ │ └── sl.h │ │ ├── mod_commands │ │ │ ├── Makefile.am │ │ │ ├── mod_commands.2017.vcxproj │ │ │ ├── mod_commands.c │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── conf │ │ │ │ └── freeswitch.xml │ │ │ │ └── test_mod_commands.c │ │ ├── mod_conference │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── TODO │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── conference.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── conference_dialplan.xml │ │ │ ├── conference_al.c │ │ │ ├── conference_api.c │ │ │ ├── conference_cdr.c │ │ │ ├── conference_event.c │ │ │ ├── conference_file.c │ │ │ ├── conference_loop.c │ │ │ ├── conference_member.c │ │ │ ├── conference_record.c │ │ │ ├── conference_utils.c │ │ │ ├── conference_video.c │ │ │ ├── mod_conference.2017.vcxproj │ │ │ ├── mod_conference.c │ │ │ ├── mod_conference.h │ │ │ └── test │ │ │ │ ├── conf │ │ │ │ ├── font │ │ │ │ │ └── AEH.ttf │ │ │ │ └── freeswitch.xml │ │ │ │ ├── images │ │ │ │ └── signalwire.png │ │ │ │ ├── test_image.c │ │ │ │ └── test_member.c │ │ ├── mod_curl │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── curl.conf.xml │ │ │ ├── mod_curl.2017.vcxproj │ │ │ └── mod_curl.c │ │ ├── mod_cv │ │ │ ├── Makefile.am │ │ │ ├── Makefile.hint │ │ │ ├── mod_cv.2017.vcxproj │ │ │ └── mod_cv.cpp │ │ ├── mod_db │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── db.conf.xml │ │ │ ├── mod_db.2017.vcxproj │ │ │ └── mod_db.c │ │ ├── mod_directory │ │ │ ├── Makefile.am │ │ │ ├── mod_directory.2017.vcxproj │ │ │ └── mod_directory.c │ │ ├── mod_distributor │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── distributor.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── distributor.xml │ │ │ ├── mod_distributor.2017.vcxproj │ │ │ └── mod_distributor.c │ │ ├── mod_dptools │ │ │ ├── Makefile.am │ │ │ ├── mod_dptools.2017.vcxproj │ │ │ └── mod_dptools.c │ │ ├── mod_easyroute │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── easyroute.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── easyroute.xml │ │ │ ├── mod_easyroute.2017.vcxproj │ │ │ └── mod_easyroute.c │ │ ├── mod_enum │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── enum.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── 99999_enum.xml │ │ │ ├── mod_enum.2017.vcxproj │ │ │ └── mod_enum.c │ │ ├── mod_esf │ │ │ ├── Makefile.am │ │ │ ├── mod_esf.2017.vcxproj │ │ │ └── mod_esf.c │ │ ├── mod_esl │ │ │ ├── Makefile.am │ │ │ └── mod_esl.c │ │ ├── mod_expr │ │ │ ├── Makefile.am │ │ │ ├── conio.h │ │ │ ├── exprconf.h │ │ │ ├── expreval.c │ │ │ ├── expreval.h │ │ │ ├── expreval.html │ │ │ ├── exprfunc.c │ │ │ ├── exprilfs.h │ │ │ ├── exprincl.h │ │ │ ├── exprinit.c │ │ │ ├── exprmem.c │ │ │ ├── exprmem.h │ │ │ ├── exprobj.c │ │ │ ├── exprpars.c │ │ │ ├── exprpriv.h │ │ │ ├── exprtmpl.html │ │ │ ├── exprutil.c │ │ │ ├── exprval.c │ │ │ ├── license.txt │ │ │ ├── mod_expr.2017.vcxproj │ │ │ ├── mod_expr.c │ │ │ └── readme.txt │ │ ├── mod_fifo │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── fifo.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── fifo.xml │ │ │ ├── mod_fifo.2017.vcxproj │ │ │ └── mod_fifo.c │ │ ├── mod_fsk │ │ │ ├── Makefile.am │ │ │ ├── fsk.c │ │ │ ├── fsk.h │ │ │ ├── fsk_callerid.c │ │ │ ├── fsk_callerid.h │ │ │ ├── mod_fsk.c │ │ │ ├── uart.c │ │ │ └── uart.h │ │ ├── mod_fsv │ │ │ ├── Makefile.am │ │ │ ├── freeswitch-1080p.yuv │ │ │ ├── freeswitch-4k.yuv │ │ │ ├── freeswitch-720p.yuv │ │ │ ├── freeswitch-cif.yuv │ │ │ ├── mod_fsv.2017.vcxproj │ │ │ └── mod_fsv.c │ │ ├── mod_hash │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── hash.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── hash.xml │ │ │ ├── mod_hash.2017.vcxproj │ │ │ └── mod_hash.c │ │ ├── mod_hiredis │ │ │ ├── Makefile.am │ │ │ ├── TODO │ │ │ ├── hiredis_pipeline.c │ │ │ ├── hiredis_profile.c │ │ │ ├── hiredis_utils.c │ │ │ ├── mod_hiredis.c │ │ │ └── mod_hiredis.h │ │ ├── mod_httapi │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── httapi.conf.xml │ │ │ ├── docs │ │ │ │ └── mod_httapi_doc.txt │ │ │ ├── examples │ │ │ │ ├── PHP │ │ │ │ │ ├── dialer.php │ │ │ │ │ ├── ext_pin.php │ │ │ │ │ ├── record_name.php │ │ │ │ │ └── speech.php │ │ │ │ └── perl │ │ │ │ │ ├── apps.cgi │ │ │ │ │ ├── dialer.cgi │ │ │ │ │ ├── ext_pin.cgi │ │ │ │ │ ├── record_name.cgi │ │ │ │ │ └── speech.cgi │ │ │ ├── mod_httapi.2017.vcxproj │ │ │ └── mod_httapi.c │ │ ├── mod_http_cache │ │ │ ├── Makefile.am │ │ │ ├── aws.c │ │ │ ├── aws.h │ │ │ ├── azure.c │ │ │ ├── azure.h │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── http_cache.conf.xml │ │ │ │ ├── cacert.pem │ │ │ │ └── dialplan │ │ │ │ │ └── http_cache.xml │ │ │ ├── mod_http_cache.2017.vcxproj │ │ │ ├── mod_http_cache.c │ │ │ └── test │ │ │ │ ├── s3_auth.py │ │ │ │ ├── test_aws.c │ │ │ │ └── test_aws_http_cache.conf.xml │ │ ├── mod_ladspa │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── 00_ladspa.xml │ │ │ ├── docs │ │ │ │ └── README │ │ │ ├── load.c │ │ │ ├── mod_ladspa.c │ │ │ └── utils.h │ │ ├── mod_lcr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── lcr.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── lcr.xml │ │ │ ├── mod_lcr.2017.vcxproj │ │ │ ├── mod_lcr.c │ │ │ └── sql │ │ │ │ ├── mysql-5.0.sql │ │ │ │ └── postgres-8.3.sql │ │ ├── mod_limit │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── limit.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── limit.xml │ │ │ └── mod_limit.c │ │ ├── mod_memcache │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── memcache.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── memcache.xml │ │ │ ├── mod_memcache.c │ │ │ └── mod_memcache_stress.rb │ │ ├── mod_mongo │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── mongo.conf.xml │ │ │ └── mod_mongo.c │ │ ├── mod_mp4 │ │ │ ├── Makefile.am │ │ │ ├── exception.hpp │ │ │ ├── mod_mp4.cpp │ │ │ ├── mp4_helper.cpp │ │ │ └── mp4_helper.hpp │ │ ├── mod_mp4v2 │ │ │ ├── Makefile.am │ │ │ └── mod_mp4v2.c │ │ ├── mod_nibblebill │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── nibblebill.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── nibblebill.xml │ │ │ ├── mod_nibblebill.2017.vcxproj │ │ │ └── mod_nibblebill.c │ │ ├── mod_oreka │ │ │ ├── Makefile.am │ │ │ └── mod_oreka.c │ │ ├── mod_osp │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── osp.conf.xml │ │ │ ├── docs │ │ │ │ └── mod_osp.txt │ │ │ └── mod_osp.c │ │ ├── mod_prefix │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── prefix.conf.xml │ │ │ ├── mod_prefix.c │ │ │ ├── trie.c │ │ │ └── trie.h │ │ ├── mod_rad_auth │ │ │ ├── Makefile.am │ │ │ └── mod_rad_auth.c │ │ ├── mod_random │ │ │ ├── Makefile.am │ │ │ └── mod_random.c │ │ ├── mod_redis │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── redis.conf.xml │ │ │ ├── credis.c │ │ │ ├── credis.h │ │ │ ├── mod_redis.2017.vcxproj │ │ │ └── mod_redis.c │ │ ├── mod_rss │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── rss.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── rss.xml │ │ │ ├── mod_rss.2017.vcxproj │ │ │ ├── mod_rss.c │ │ │ └── script │ │ │ │ └── news.js │ │ ├── mod_signalwire │ │ │ ├── Makefile.am │ │ │ ├── cacert.cpp │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── signalwire.conf.xml │ │ │ ├── mod_signalwire.2017.vcxproj │ │ │ └── mod_signalwire.c │ │ ├── mod_skel │ │ │ ├── Makefile.am │ │ │ ├── mod_skel.2017.vcxproj │ │ │ └── mod_skel.c │ │ ├── mod_sms │ │ │ ├── Makefile.am │ │ │ ├── mod_sms.2017.vcxproj │ │ │ └── mod_sms.c │ │ ├── mod_sms_flowroute │ │ │ ├── Makefile.am │ │ │ ├── TODO.txt │ │ │ ├── mod_sms_flowroute.c │ │ │ └── mod_sms_flowroute.h │ │ ├── mod_snapshot │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── mod_snapshot.c │ │ ├── mod_snom │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── snom_demo.xml │ │ │ ├── mod_snom.2017.vcxproj │ │ │ └── mod_snom.c │ │ ├── mod_sonar │ │ │ ├── Makefile.am │ │ │ └── mod_sonar.c │ │ ├── mod_soundtouch │ │ │ ├── Makefile.am │ │ │ └── mod_soundtouch.cpp │ │ ├── mod_spandsp │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── spandsp.conf.xml │ │ │ │ ├── config.FS0 │ │ │ │ └── dialplan │ │ │ │ │ └── spandsp.xml │ │ │ ├── mod_spandsp.2017.vcxproj │ │ │ ├── mod_spandsp.c │ │ │ ├── mod_spandsp.h │ │ │ ├── mod_spandsp_codecs.c │ │ │ ├── mod_spandsp_dsp.c │ │ │ ├── mod_spandsp_fax.c │ │ │ ├── mod_spandsp_modem.c │ │ │ ├── mod_spandsp_modem.h │ │ │ ├── udptl.c │ │ │ └── udptl.h │ │ ├── mod_spy │ │ │ ├── Makefile.am │ │ │ ├── mod_spy.2017.vcxproj │ │ │ └── mod_spy.c │ │ ├── mod_stress │ │ │ ├── FFTReal.cpp │ │ │ ├── FFTReal.h │ │ │ ├── Makefile.am │ │ │ └── mod_stress.cpp │ │ ├── mod_test │ │ │ ├── Makefile.am │ │ │ ├── mod_test.c │ │ │ └── test │ │ │ │ ├── freeswitch.xml │ │ │ │ ├── sounds │ │ │ │ ├── agent.wav │ │ │ │ ├── hi.wav │ │ │ │ ├── ivr-please_state_your_name_and_reason_for_calling.wav │ │ │ │ ├── test.wav │ │ │ │ └── test_agent.wav │ │ │ │ ├── test_asr.c │ │ │ │ └── test_tts.c │ │ ├── mod_translate │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── translate.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── default │ │ │ │ │ └── translate.xml │ │ │ └── mod_translate.c │ │ ├── mod_valet_parking │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── valet_parking.xml │ │ │ ├── mod_valet_parking.2017.vcxproj │ │ │ └── mod_valet_parking.c │ │ ├── mod_video_filter │ │ │ ├── Makefile.am │ │ │ └── mod_video_filter.c │ │ ├── mod_vmd │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── vmd.xml │ │ │ ├── mod_vmd.2017.vcxproj │ │ │ ├── mod_vmd.c │ │ │ └── scripts │ │ │ │ ├── vmd.js │ │ │ │ └── vmd.lua │ │ ├── mod_voicemail │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── voicemail.conf.xml │ │ │ │ ├── dialplan │ │ │ │ │ └── voicemail.xml │ │ │ │ ├── notify-voicemail.tpl │ │ │ │ └── voicemail.tpl │ │ │ ├── mod_voicemail.2017.vcxproj │ │ │ └── mod_voicemail.c │ │ └── mod_voicemail_ivr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── voicemail_ivr.conf.xml │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── ivr.c │ │ │ ├── ivr.h │ │ │ ├── menu.c │ │ │ ├── menu.h │ │ │ ├── mod_voicemail_ivr.c │ │ │ ├── utils.c │ │ │ └── utils.h │ ├── asr_tts │ │ ├── mod_cepstral │ │ │ ├── Makefile.am │ │ │ ├── WinReadme.txt │ │ │ ├── conf │ │ │ │ └── cepstral.conf.xml │ │ │ ├── mod_cepstral.2017.vcxproj │ │ │ └── mod_cepstral.c │ │ ├── mod_flite │ │ │ ├── Makefile.am │ │ │ ├── mod_flite.2017.vcxproj │ │ │ └── mod_flite.c │ │ ├── mod_pocketsphinx │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── mod_pocketsphinx.2017.vcxproj │ │ │ └── mod_pocketsphinx.c │ │ └── mod_tts_commandline │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── mod_tts_commandline.c │ ├── codecs │ │ ├── mod_amr │ │ │ ├── LEGAL │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── amr_be.c │ │ │ ├── amr_be.h │ │ │ ├── bitshift.c │ │ │ ├── bitshift.h │ │ │ ├── mod_amr.2017.vcxproj │ │ │ ├── mod_amr.c │ │ │ └── test │ │ │ │ ├── freeswitch.xml │ │ │ │ └── test_amr.c │ │ ├── mod_amrwb │ │ │ ├── LEGAL │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── amrwb_be.c │ │ │ ├── amrwb_be.h │ │ │ ├── bitshift.c │ │ │ ├── bitshift.h │ │ │ ├── mod_amrwb.c │ │ │ └── test │ │ │ │ ├── freeswitch.xml │ │ │ │ └── test_amrwb.c │ │ ├── mod_b64 │ │ │ ├── Makefile.am │ │ │ └── mod_b64.c │ │ ├── mod_bv │ │ │ ├── Makefile.am │ │ │ ├── mod_bv.2017.vcxproj │ │ │ └── mod_bv.c │ │ ├── mod_clearmode │ │ │ ├── Makefile.am │ │ │ └── mod_clearmode.c │ │ ├── mod_codec2 │ │ │ ├── Makefile.am │ │ │ ├── mod_codec2.2017.vcxproj │ │ │ └── mod_codec2.c │ │ ├── mod_com_g729 │ │ │ └── Makefile.am │ │ ├── mod_dahdi_codec │ │ │ ├── Makefile.am │ │ │ └── mod_dahdi_codec.c │ │ ├── mod_g723_1 │ │ │ ├── Makefile.am │ │ │ ├── mod_g723_1.2017.vcxproj │ │ │ └── mod_g723_1.c │ │ ├── mod_g729 │ │ │ ├── Makefile.am │ │ │ ├── mod_g729.2017.vcxproj │ │ │ └── mod_g729.c │ │ ├── mod_h26x │ │ │ ├── Makefile.am │ │ │ ├── mod_h26x.2017.vcxproj │ │ │ └── mod_h26x.c │ │ ├── mod_ilbc │ │ │ ├── Makefile.am │ │ │ ├── mod_ilbc.2017.vcxproj │ │ │ └── mod_ilbc.c │ │ ├── mod_isac │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── PATENTS │ │ │ ├── arith_routines.c │ │ │ ├── arith_routines.h │ │ │ ├── arith_routines_hist.c │ │ │ ├── arith_routines_logist.c │ │ │ ├── auto_corr_to_refl_coef.c │ │ │ ├── auto_correlation.c │ │ │ ├── bandwidth_estimator.c │ │ │ ├── bandwidth_estimator.h │ │ │ ├── codec.h │ │ │ ├── complex_bit_reverse.c │ │ │ ├── complex_fft.c │ │ │ ├── copy_set_operations.c │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── cross_correlation.c │ │ │ ├── decode.c │ │ │ ├── decode_bwe.c │ │ │ ├── division_operations.c │ │ │ ├── dot_product_with_scale.c │ │ │ ├── downsample_fast.c │ │ │ ├── encode.c │ │ │ ├── encode_lpc_swb.c │ │ │ ├── encode_lpc_swb.h │ │ │ ├── energy.c │ │ │ ├── entropy_coding.c │ │ │ ├── entropy_coding.h │ │ │ ├── fft.c │ │ │ ├── fft.h │ │ │ ├── filter_ar.c │ │ │ ├── filter_ar_fast_q12.c │ │ │ ├── filter_functions.c │ │ │ ├── filter_ma_fast_q12.c │ │ │ ├── filterbank_tables.c │ │ │ ├── filterbank_tables.h │ │ │ ├── filterbanks.c │ │ │ ├── get_hanning_window.c │ │ │ ├── get_scaling_square.c │ │ │ ├── ilbc_specific_functions.c │ │ │ ├── intialize.c │ │ │ ├── isac.c │ │ │ ├── isac.gypi │ │ │ ├── isac.h │ │ │ ├── lattice.c │ │ │ ├── levinson_durbin.c │ │ │ ├── lpc_analysis.c │ │ │ ├── lpc_analysis.h │ │ │ ├── lpc_gain_swb_tables.c │ │ │ ├── lpc_gain_swb_tables.h │ │ │ ├── lpc_shape_swb12_tables.c │ │ │ ├── lpc_shape_swb12_tables.h │ │ │ ├── lpc_shape_swb16_tables.c │ │ │ ├── lpc_shape_swb16_tables.h │ │ │ ├── lpc_tables.c │ │ │ ├── lpc_tables.h │ │ │ ├── lpc_to_refl_coef.c │ │ │ ├── min_max_operations.c │ │ │ ├── min_max_operations_neon.c │ │ │ ├── mod_iSAC.2017.vcxproj │ │ │ ├── mod_isac.c │ │ │ ├── os_specific_inline.h │ │ │ ├── pitch_estimator.c │ │ │ ├── pitch_estimator.h │ │ │ ├── pitch_filter.c │ │ │ ├── pitch_gain_tables.c │ │ │ ├── pitch_gain_tables.h │ │ │ ├── pitch_lag_tables.c │ │ │ ├── pitch_lag_tables.h │ │ │ ├── randomization_functions.c │ │ │ ├── refl_coef_to_lpc.c │ │ │ ├── resample.c │ │ │ ├── resample_48khz.c │ │ │ ├── resample_by_2.c │ │ │ ├── resample_by_2_internal.c │ │ │ ├── resample_by_2_internal.h │ │ │ ├── resample_fractional.c │ │ │ ├── settings.h │ │ │ ├── signal_processing_library.h │ │ │ ├── spectrum_ar_model_tables.c │ │ │ ├── spectrum_ar_model_tables.h │ │ │ ├── spl_inl.h │ │ │ ├── spl_inl_armv7.h │ │ │ ├── spl_sqrt.c │ │ │ ├── spl_sqrt_floor.c │ │ │ ├── spl_version.c │ │ │ ├── splitting_filter.c │ │ │ ├── sqrt_of_one_minus_x_squared.c │ │ │ ├── structs.h │ │ │ ├── transform.c │ │ │ ├── typedefs.h │ │ │ ├── vector_scaling_operations.c │ │ │ ├── webrtc_fft_t_1024_8.c │ │ │ └── webrtc_fft_t_rad.c │ │ ├── mod_mp4v │ │ │ ├── Makefile.am │ │ │ └── mod_mp4v.c │ │ ├── mod_openh264 │ │ │ ├── Makefile.am │ │ │ ├── mod_openh264.cpp │ │ │ └── test │ │ │ │ ├── conf │ │ │ │ └── freeswitch.xml │ │ │ │ ├── data │ │ │ │ ├── case1.packet1.264 │ │ │ │ ├── case1.packet2.264 │ │ │ │ ├── case1.packet3.264 │ │ │ │ ├── case1.packet4.264 │ │ │ │ ├── case1.packet5.264 │ │ │ │ ├── case2.packet1.264 │ │ │ │ ├── case2.packet2.264 │ │ │ │ ├── case2.packet3.264 │ │ │ │ └── case2.packet4.264 │ │ │ │ └── test_mod_openh264.cpp │ │ ├── mod_opus │ │ │ ├── Makefile.am │ │ │ ├── mod_opus.2017.vcxproj │ │ │ ├── mod_opus.c │ │ │ ├── opus_parse.c │ │ │ └── opus_parse.h │ │ ├── mod_sangoma_codec │ │ │ ├── Makefile.am │ │ │ └── mod_sangoma_codec.c │ │ ├── mod_silk │ │ │ ├── Makefile.am │ │ │ ├── mod_silk.2017.vcxproj │ │ │ └── mod_silk.c │ │ ├── mod_siren │ │ │ ├── Makefile.am │ │ │ ├── mod_siren.2017.vcxproj │ │ │ └── mod_siren.c │ │ ├── mod_skel_codec │ │ │ ├── Makefile.am │ │ │ └── mod_skel_codec.c │ │ ├── mod_theora │ │ │ ├── Makefile.am │ │ │ └── mod_theora.c │ │ └── mod_yuv │ │ │ ├── Makefile │ │ │ └── mod_yuv.c │ ├── databases │ │ ├── mod_mariadb │ │ │ ├── Makefile.am │ │ │ ├── mariadb_dsn.cpp │ │ │ ├── mariadb_dsn.hpp │ │ │ ├── mod_mariadb.2017.vcxproj │ │ │ └── mod_mariadb.c │ │ └── mod_pgsql │ │ │ ├── Makefile.am │ │ │ ├── mod_pgsql.2017.vcxproj │ │ │ └── mod_pgsql.c │ ├── dialplans │ │ ├── mod_dialplan_asterisk │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── extensions.conf │ │ │ ├── mod_dialplan_asterisk.2017.vcxproj │ │ │ └── mod_dialplan_asterisk.c │ │ ├── mod_dialplan_directory │ │ │ ├── Makefile.am │ │ │ ├── mod_dialplan_directory.2017.vcxproj │ │ │ └── mod_dialplan_directory.c │ │ └── mod_dialplan_xml │ │ │ ├── Makefile.am │ │ │ ├── mod_dialplan_xml.2017.vcxproj │ │ │ └── mod_dialplan_xml.c │ ├── directories │ │ └── mod_ldap │ │ │ ├── Makefile.am │ │ │ ├── mod_ldap.2017.vcxproj │ │ │ └── mod_ldap.c │ ├── endpoints │ │ ├── mod_alsa │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── alsa.conf.xml │ │ │ └── mod_alsa.c │ │ ├── mod_gsmopen │ │ │ ├── .gitignore │ │ │ ├── FREEBSD_README.txt │ │ │ ├── FREEBSD_patch.diff │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── alsa_nogsmlib_nocplusplus │ │ │ │ └── mod_gsmopen │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── configs │ │ │ │ │ ├── asound.conf │ │ │ │ │ ├── gsmopen.conf.xml │ │ │ │ │ ├── gsmopen.conf.xml.motorola │ │ │ │ │ └── setmixers │ │ │ │ │ ├── gsmopen.h │ │ │ │ │ ├── gsmopen_protocol.c │ │ │ │ │ ├── mod_gsmopen.c │ │ │ │ │ └── usb-cm-108-2.txt │ │ │ ├── asterisk │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── asound.conf │ │ │ │ ├── celliax.conf │ │ │ │ ├── celliax.h │ │ │ │ ├── celliax_additional.c │ │ │ │ ├── celliax_libcsv.c │ │ │ │ ├── celliax_libcsv.h │ │ │ │ ├── celliax_spandsp.c │ │ │ │ ├── celliax_spandsp.h │ │ │ │ ├── chan_celliax.c │ │ │ │ └── ciapalo │ │ │ ├── configs │ │ │ │ └── gsmopen.conf.xml │ │ │ ├── driver_usb_dongle │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── main.c │ │ │ ├── gsmlib │ │ │ │ ├── README │ │ │ │ └── gsmlib-1.10-patched-13ubuntu │ │ │ │ │ ├── ABOUT-NLS │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── INSTALL │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── NEWS │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── acconfig.h │ │ │ │ │ ├── acinclude.m4 │ │ │ │ │ ├── aclocal.m4 │ │ │ │ │ ├── apps │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── gsmctl.cc │ │ │ │ │ ├── gsmpb.cc │ │ │ │ │ ├── gsmsendsms.cc │ │ │ │ │ ├── gsmsmsd.cc │ │ │ │ │ └── gsmsmsstore.cc │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.in │ │ │ │ │ ├── contrib │ │ │ │ │ ├── gsm-utils.cron.d │ │ │ │ │ ├── gsm-utils.default │ │ │ │ │ ├── gsm-utils.init │ │ │ │ │ ├── gsmsmsrequeue │ │ │ │ │ └── gsmsmsspool │ │ │ │ │ ├── debian │ │ │ │ │ ├── changelog │ │ │ │ │ ├── compat │ │ │ │ │ ├── control │ │ │ │ │ ├── copyright │ │ │ │ │ ├── dirs │ │ │ │ │ ├── gsm-utils.cron.d │ │ │ │ │ ├── gsm-utils.default │ │ │ │ │ ├── gsm-utils.dirs │ │ │ │ │ ├── gsm-utils.docs │ │ │ │ │ ├── gsm-utils.examples │ │ │ │ │ ├── gsm-utils.init │ │ │ │ │ ├── gsm-utils.postinst │ │ │ │ │ ├── gsm-utils.postrm │ │ │ │ │ ├── gsmsiexfer.1 │ │ │ │ │ ├── libgsmme-dev.docs │ │ │ │ │ ├── rules │ │ │ │ │ └── watch │ │ │ │ │ ├── doc │ │ │ │ │ ├── FAQ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.NLS │ │ │ │ │ ├── README.developers │ │ │ │ │ ├── gsmctl.man │ │ │ │ │ ├── gsminfo.man │ │ │ │ │ ├── gsmlib.lsm │ │ │ │ │ ├── gsmpb.man │ │ │ │ │ ├── gsmsendsms.man │ │ │ │ │ ├── gsmsmsd.man │ │ │ │ │ └── gsmsmsstore.man │ │ │ │ │ ├── ext │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.sieme │ │ │ │ │ ├── gsm_sie_me.cc │ │ │ │ │ ├── gsm_sie_me.h │ │ │ │ │ ├── gsmsiectl.cc │ │ │ │ │ └── gsmsiexfer.cc │ │ │ │ │ ├── g41.patch │ │ │ │ │ ├── gsm_config.h.in │ │ │ │ │ ├── gsmlib-1.10.debmg │ │ │ │ │ └── debian │ │ │ │ │ │ ├── gsm-utils.dirs │ │ │ │ │ │ ├── gsm-utils.postinst │ │ │ │ │ │ ├── gsm-utils.prerm │ │ │ │ │ │ └── gsm-utils.undocumented │ │ │ │ │ ├── gsmlib.spec │ │ │ │ │ ├── gsmlib │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── gsm_at.cc │ │ │ │ │ ├── gsm_at.h │ │ │ │ │ ├── gsm_cb.cc │ │ │ │ │ ├── gsm_cb.h │ │ │ │ │ ├── gsm_error.cc │ │ │ │ │ ├── gsm_error.h │ │ │ │ │ ├── gsm_event.cc │ │ │ │ │ ├── gsm_event.h │ │ │ │ │ ├── gsm_map_key.h │ │ │ │ │ ├── gsm_me_ta.cc │ │ │ │ │ ├── gsm_me_ta.h │ │ │ │ │ ├── gsm_nls.cc │ │ │ │ │ ├── gsm_nls.h │ │ │ │ │ ├── gsm_parser.cc │ │ │ │ │ ├── gsm_parser.h │ │ │ │ │ ├── gsm_phonebook.cc │ │ │ │ │ ├── gsm_phonebook.h │ │ │ │ │ ├── gsm_port.h │ │ │ │ │ ├── gsm_sms.cc │ │ │ │ │ ├── gsm_sms.h │ │ │ │ │ ├── gsm_sms_codec.cc │ │ │ │ │ ├── gsm_sms_codec.h │ │ │ │ │ ├── gsm_sms_store.cc │ │ │ │ │ ├── gsm_sms_store.h │ │ │ │ │ ├── gsm_sorted_phonebook.cc │ │ │ │ │ ├── gsm_sorted_phonebook.h │ │ │ │ │ ├── gsm_sorted_phonebook_base.cc │ │ │ │ │ ├── gsm_sorted_phonebook_base.h │ │ │ │ │ ├── gsm_sorted_sms_store.cc │ │ │ │ │ ├── gsm_sorted_sms_store.h │ │ │ │ │ ├── gsm_sysdep.h │ │ │ │ │ ├── gsm_unix_serial.cc │ │ │ │ │ ├── gsm_unix_serial.h │ │ │ │ │ ├── gsm_util.cc │ │ │ │ │ ├── gsm_util.h │ │ │ │ │ ├── gsm_win32_serial.cc │ │ │ │ │ └── gsm_win32_serial.h │ │ │ │ │ ├── intl │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── VERSION │ │ │ │ │ ├── bindtextdom.c │ │ │ │ │ ├── cat-compat.c │ │ │ │ │ ├── dcgettext.c │ │ │ │ │ ├── dgettext.c │ │ │ │ │ ├── explodename.c │ │ │ │ │ ├── finddomain.c │ │ │ │ │ ├── gettext.c │ │ │ │ │ ├── gettext.h │ │ │ │ │ ├── gettextP.h │ │ │ │ │ ├── hash-string.h │ │ │ │ │ ├── intl-compat.c │ │ │ │ │ ├── l10nflist.c │ │ │ │ │ ├── libgettext.h │ │ │ │ │ ├── linux-msg.sed │ │ │ │ │ ├── loadinfo.h │ │ │ │ │ ├── loadmsgcat.c │ │ │ │ │ ├── localealias.c │ │ │ │ │ ├── po2tbl.sed.in │ │ │ │ │ ├── textdomain.c │ │ │ │ │ └── xopen-msg.sed │ │ │ │ │ ├── po │ │ │ │ │ ├── Makefile.in.in │ │ │ │ │ ├── POTFILES.in │ │ │ │ │ ├── cat-id-tbl.c │ │ │ │ │ ├── de.gmo │ │ │ │ │ ├── de.po │ │ │ │ │ ├── gsmlib.pot │ │ │ │ │ └── stamp-cat-id │ │ │ │ │ ├── scripts │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.rpath │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── debugconfig.sh │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltconfig │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── mkinstalldirs │ │ │ │ │ ├── stamp-h.in │ │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── runparser.sh │ │ │ │ │ ├── runsms.sh │ │ │ │ │ ├── runspb.sh │ │ │ │ │ ├── runspb2.sh │ │ │ │ │ ├── runspbi.sh │ │ │ │ │ ├── runssms.sh │ │ │ │ │ ├── spb.pb │ │ │ │ │ ├── spb2.pb │ │ │ │ │ ├── spbi1.pb │ │ │ │ │ ├── spbi2-orig.pb │ │ │ │ │ ├── testcb.cc │ │ │ │ │ ├── testgsmlib.cc │ │ │ │ │ ├── testparser-output.txt │ │ │ │ │ ├── testparser.cc │ │ │ │ │ ├── testpb.cc │ │ │ │ │ ├── testpb2.cc │ │ │ │ │ ├── testsms-output.txt │ │ │ │ │ ├── testsms.cc │ │ │ │ │ ├── testsms2.cc │ │ │ │ │ ├── testspb-output.txt │ │ │ │ │ ├── testspb.cc │ │ │ │ │ ├── testspb2-output.txt │ │ │ │ │ ├── testspbi-output.txt │ │ │ │ │ ├── testssms-output.txt │ │ │ │ │ └── testssms.cc │ │ │ │ │ └── win32 │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.win │ │ │ │ │ ├── getopt.c │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── gsm_config.h │ │ │ │ │ ├── gsmctl.dsp │ │ │ │ │ ├── gsmlib.2017.vcxproj │ │ │ │ │ ├── gsmlib.dsp │ │ │ │ │ ├── gsmlib.dsw │ │ │ │ │ ├── gsmlib.sln │ │ │ │ │ ├── gsmpb.dsp │ │ │ │ │ ├── gsmsendsms.dsp │ │ │ │ │ ├── gsmsmsd.dsp │ │ │ │ │ ├── gsmsmsstore.dsp │ │ │ │ │ ├── testgsmlib.dsp │ │ │ │ │ ├── testsms.dsp │ │ │ │ │ └── testsms2.dsp │ │ │ ├── gsmopen.h │ │ │ ├── gsmopen_protocol.cpp │ │ │ ├── libctb-0.16 │ │ │ │ ├── build │ │ │ │ │ ├── COPYRIGHT │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ ├── README │ │ │ │ │ ├── libctb.bkl │ │ │ │ │ ├── makefile.bcc │ │ │ │ │ ├── makefile.gcc │ │ │ │ │ ├── makefile.vc │ │ │ │ │ └── makefile.wat │ │ │ │ ├── include │ │ │ │ │ └── ctb-0.16 │ │ │ │ │ │ ├── ctb.h │ │ │ │ │ │ ├── fifo.h │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── gpib.h │ │ │ │ │ │ ├── iobase.h │ │ │ │ │ │ ├── kbhit.h │ │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── serport.h │ │ │ │ │ │ └── timer.h │ │ │ │ │ │ ├── portscan.h │ │ │ │ │ │ ├── serport.h │ │ │ │ │ │ ├── serportx.h │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── getopt.h │ │ │ │ │ │ ├── gpib-32.h │ │ │ │ │ │ ├── serport.h │ │ │ │ │ │ └── timer.h │ │ │ │ ├── lib │ │ │ │ │ └── EMPTY │ │ │ │ ├── manual │ │ │ │ │ └── refman.pdf │ │ │ │ ├── python │ │ │ │ │ ├── module │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── ctb.py │ │ │ │ │ │ │ └── wxctb.py │ │ │ │ │ ├── samples │ │ │ │ │ │ ├── parity.py │ │ │ │ │ │ ├── protocol.py │ │ │ │ │ │ └── rtsdtr.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── ctb.html │ │ │ │ │ │ ├── ctb.py │ │ │ │ │ │ ├── gpib.i │ │ │ │ │ │ ├── iobase.i │ │ │ │ │ │ ├── kbhit.i │ │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── makepy.sh │ │ │ │ │ │ ├── serport.i │ │ │ │ │ │ ├── timer.i │ │ │ │ │ │ ├── wxctb.i │ │ │ │ │ │ ├── wxctb.py │ │ │ │ │ │ └── wxctb_wrap.cxx │ │ │ │ │ │ ├── serportx.i │ │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── makepy.bat │ │ │ │ │ │ ├── serport.i │ │ │ │ │ │ ├── timer.i │ │ │ │ │ │ └── wxctb.i │ │ │ │ ├── samples │ │ │ │ │ └── ctbtest.cpp │ │ │ │ └── src │ │ │ │ │ ├── fifo.cpp │ │ │ │ │ ├── getopt.cpp │ │ │ │ │ ├── gpib.cpp │ │ │ │ │ ├── iobase.cpp │ │ │ │ │ ├── kbhit.cpp │ │ │ │ │ ├── linux │ │ │ │ │ ├── serport.cpp │ │ │ │ │ └── timer.cpp │ │ │ │ │ ├── portscan.cpp │ │ │ │ │ ├── serportx.cpp │ │ │ │ │ └── win32 │ │ │ │ │ ├── getopt.cpp │ │ │ │ │ ├── serport.cpp │ │ │ │ │ └── timer.cpp │ │ │ ├── mod_gsmopen.2017.vcxproj │ │ │ ├── mod_gsmopen.cpp │ │ │ ├── win_iconv.c │ │ │ └── win_iconv │ │ │ │ ├── Makefile │ │ │ │ ├── iconv.def │ │ │ │ ├── iconv.h │ │ │ │ ├── mlang.def │ │ │ │ ├── mlang.h │ │ │ │ ├── readme.txt │ │ │ │ ├── win_iconv.c │ │ │ │ └── win_iconv_test.c │ │ ├── mod_h323 │ │ │ ├── Makefile.am │ │ │ ├── bugs │ │ │ ├── changes.txt │ │ │ ├── compiling.txt │ │ │ ├── h323.conf.xml │ │ │ ├── mod_h323.2017.vcxproj │ │ │ ├── mod_h323.cpp │ │ │ └── mod_h323.h │ │ ├── mod_khomp │ │ │ ├── Install │ │ │ │ └── files │ │ │ │ │ └── khomp.conf.xml │ │ │ ├── Makefile.am │ │ │ ├── commons │ │ │ │ ├── base │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── config_commons.hpp │ │ │ │ │ ├── config_options.cpp │ │ │ │ │ ├── config_options.hpp │ │ │ │ │ ├── configurator │ │ │ │ │ │ ├── configfile.cpp │ │ │ │ │ │ ├── configfile.hpp │ │ │ │ │ │ ├── option.cpp │ │ │ │ │ │ ├── option.hpp │ │ │ │ │ │ ├── restriction.cpp │ │ │ │ │ │ ├── restriction.hpp │ │ │ │ │ │ ├── section.cpp │ │ │ │ │ │ └── section.hpp │ │ │ │ │ ├── const_this.hpp │ │ │ │ │ ├── flagger.hpp │ │ │ │ │ ├── format.cpp │ │ │ │ │ ├── format.hpp │ │ │ │ │ ├── function.hpp │ │ │ │ │ ├── initializer.hpp │ │ │ │ │ ├── k3lapi.cpp │ │ │ │ │ ├── k3lapi.hpp │ │ │ │ │ ├── k3lutil.cpp │ │ │ │ │ ├── k3lutil.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ ├── noncopyable.hpp │ │ │ │ │ ├── refcounter.hpp │ │ │ │ │ ├── regex.cpp │ │ │ │ │ ├── regex.hpp │ │ │ │ │ ├── ringbuffer.cpp │ │ │ │ │ ├── ringbuffer.hpp │ │ │ │ │ ├── saved_condition.cpp │ │ │ │ │ ├── saved_condition.hpp │ │ │ │ │ ├── scoped_lock.hpp │ │ │ │ │ ├── simple_lock.hpp │ │ │ │ │ ├── strings.cpp │ │ │ │ │ ├── strings.hpp │ │ │ │ │ ├── system │ │ │ │ │ │ └── freeswitch │ │ │ │ │ │ │ ├── saved_condition.cpp │ │ │ │ │ │ │ ├── saved_condition.hpp │ │ │ │ │ │ │ ├── simple_lock.hpp │ │ │ │ │ │ │ └── thread.hpp │ │ │ │ │ ├── tagged_union.hpp │ │ │ │ │ ├── thread.hpp │ │ │ │ │ ├── timer.cpp │ │ │ │ │ ├── timer.hpp │ │ │ │ │ ├── types.hpp │ │ │ │ │ ├── variable.hpp │ │ │ │ │ ├── verbose.cpp │ │ │ │ │ └── verbose.hpp │ │ │ │ └── tools │ │ │ │ │ └── generate-verbose-headers.sh │ │ │ ├── docs │ │ │ │ ├── Manual.html │ │ │ │ ├── Manual.pdf │ │ │ │ ├── README.html │ │ │ │ ├── README.pdf │ │ │ │ ├── README_en.html │ │ │ │ ├── README_en.pdf │ │ │ │ ├── User_Guide.html │ │ │ │ └── User_Guide.pdf │ │ │ ├── examples │ │ │ │ ├── intercept.xml │ │ │ │ └── transfer.xml │ │ │ ├── include │ │ │ │ ├── applications.h │ │ │ │ ├── cli.h │ │ │ │ ├── defs.h │ │ │ │ ├── frame.h │ │ │ │ ├── globals.h │ │ │ │ ├── k3l.h │ │ │ │ ├── khomp_pvt.h │ │ │ │ ├── khomp_pvt_fxo.h │ │ │ │ ├── khomp_pvt_gsm.h │ │ │ │ ├── khomp_pvt_kxe1.h │ │ │ │ ├── khomp_pvt_passive.h │ │ │ │ ├── lock.h │ │ │ │ ├── logger.h │ │ │ │ ├── opt.h │ │ │ │ ├── revision.h │ │ │ │ ├── spec.h │ │ │ │ └── utils.h │ │ │ ├── mod_khomp.cpp │ │ │ ├── src │ │ │ │ ├── applications.cpp │ │ │ │ ├── cli.cpp │ │ │ │ ├── frame.cpp │ │ │ │ ├── globals.cpp │ │ │ │ ├── khomp_pvt.cpp │ │ │ │ ├── khomp_pvt_fxo.cpp │ │ │ │ ├── khomp_pvt_gsm.cpp │ │ │ │ ├── khomp_pvt_kxe1.cpp │ │ │ │ ├── khomp_pvt_passive.cpp │ │ │ │ ├── lock.cpp │ │ │ │ ├── logger.cpp │ │ │ │ ├── opt.cpp │ │ │ │ ├── spec.cpp │ │ │ │ └── utils.cpp │ │ │ ├── support │ │ │ │ ├── config_defaults.cpp │ │ │ │ ├── config_defaults.hpp │ │ │ │ ├── klog-config.cpp │ │ │ │ ├── klog-config.hpp │ │ │ │ ├── klog-options.cpp │ │ │ │ └── klog-options.hpp │ │ │ └── tools │ │ │ │ ├── getk3l.sh │ │ │ │ └── getversion.sh │ │ ├── mod_loopback │ │ │ ├── Makefile.am │ │ │ ├── mod_loopback.2017.vcxproj │ │ │ └── mod_loopback.c │ │ ├── mod_opal │ │ │ ├── Makefile.am │ │ │ ├── mod_opal.2017.vcxproj │ │ │ ├── mod_opal.cpp │ │ │ ├── mod_opal.h │ │ │ └── mod_opal_2010.vcxproj │ │ ├── mod_portaudio │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── portaudio.conf.xml │ │ │ ├── mod_PortAudio.2017.vcxproj │ │ │ ├── mod_portaudio.c │ │ │ ├── pa_ringbuffer.c │ │ │ ├── pa_ringbuffer.h │ │ │ ├── pablio.c │ │ │ └── pablio.h │ │ ├── mod_reference │ │ │ ├── Makefile.am │ │ │ └── mod_reference.c │ │ ├── mod_rtc │ │ │ ├── Makefile.am │ │ │ ├── mod_rtc.2017.vcxproj │ │ │ └── mod_rtc.c │ │ ├── mod_rtmp │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── rtmp.conf.xml │ │ │ ├── handshake.h │ │ │ ├── libamf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── amf-cmake.h.in │ │ │ │ ├── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── amf.h │ │ │ │ │ ├── amf0.b │ │ │ │ │ ├── amf0.c │ │ │ │ │ ├── amf0.h │ │ │ │ │ ├── amf3.h │ │ │ │ │ ├── amf_list.c │ │ │ │ │ ├── amf_list.h │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── io.c │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ptrarray.c │ │ │ │ │ ├── ptrarray.h │ │ │ │ │ ├── types.c │ │ │ │ │ └── types.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── amf0 │ │ │ │ │ └── amf0_demo.c │ │ │ ├── mod_rtmp.2017.vcxproj │ │ │ ├── mod_rtmp.c │ │ │ ├── mod_rtmp.h │ │ │ ├── mod_rtmp_2010.vcxproj │ │ │ ├── rtmp.c │ │ │ ├── rtmp_sig.c │ │ │ ├── rtmp_tcp.c │ │ │ ├── rtmp_video.c │ │ │ └── rtmp_video.h │ │ ├── mod_skinny │ │ │ ├── Makefile.am │ │ │ ├── Net │ │ │ │ ├── Skinny.pm │ │ │ │ └── Skinny │ │ │ │ │ ├── Client.pm │ │ │ │ │ ├── Message.pm │ │ │ │ │ └── Protocol.pm │ │ │ ├── README.IPv6 │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── skinny.conf.xml │ │ │ │ ├── dialplan │ │ │ │ │ ├── skinny-patterns.xml │ │ │ │ │ └── skinny-patterns │ │ │ │ │ │ ├── 20-Demo.xml │ │ │ │ │ │ ├── 20-Local_extension.xml │ │ │ │ │ │ ├── 90-External.xml │ │ │ │ │ │ └── 99-Default_Drop.xml │ │ │ │ ├── directory │ │ │ │ │ └── default │ │ │ │ │ │ └── skinny-example.xml │ │ │ │ └── skinny_profiles │ │ │ │ │ └── internal.xml │ │ │ ├── mod_skinny.2017.vcxproj │ │ │ ├── mod_skinny.c │ │ │ ├── mod_skinny.h │ │ │ ├── mod_skinny_2010.vcxproj │ │ │ ├── skinny_api.c │ │ │ ├── skinny_api.h │ │ │ ├── skinny_protocol.c │ │ │ ├── skinny_protocol.h │ │ │ ├── skinny_server.c │ │ │ ├── skinny_server.h │ │ │ ├── skinny_tables.c │ │ │ ├── skinny_tables.h │ │ │ └── test-skinny.pl │ │ ├── mod_skypopen │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── configs │ │ │ │ ├── client.c │ │ │ │ ├── old-stuff │ │ │ │ │ ├── README.skypopen_auth │ │ │ │ │ ├── copy │ │ │ │ │ ├── create │ │ │ │ │ ├── multiple-instance-same-skype-username │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── multi.sh │ │ │ │ │ │ └── skypopen.conf.xml │ │ │ │ │ ├── skypopen_auth.c │ │ │ │ │ └── startskype.sh │ │ │ │ ├── skype-client-configuration-dir-template │ │ │ │ │ ├── skypeclient00 │ │ │ │ │ │ ├── shared.lck │ │ │ │ │ │ ├── shared.xml │ │ │ │ │ │ ├── skypenameA │ │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ │ ├── index2.dat │ │ │ │ │ │ │ └── main.lock │ │ │ │ │ │ └── skypenameB │ │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ │ ├── index2.dat │ │ │ │ │ │ │ └── main.lock │ │ │ │ │ └── skypeclient01 │ │ │ │ │ │ ├── shared.lck │ │ │ │ │ │ ├── shared.xml │ │ │ │ │ │ ├── skypenameA │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ ├── index2.dat │ │ │ │ │ │ └── main.lock │ │ │ │ │ │ ├── skypenameB │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ ├── index2.dat │ │ │ │ │ │ └── main.lock │ │ │ │ │ │ └── skypenameC │ │ │ │ │ │ ├── config.lck │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── httpfe │ │ │ │ │ │ └── cookies.dat │ │ │ │ │ │ ├── index2.dat │ │ │ │ │ │ └── main.lock │ │ │ │ ├── skypopen.conf.xml │ │ │ │ ├── startskype.bat │ │ │ │ ├── wait.bat │ │ │ │ └── windows-service │ │ │ │ │ ├── startskype.cmd │ │ │ │ │ └── wait.cmd │ │ │ ├── install │ │ │ │ └── install.pl │ │ │ ├── mod_skypopen.2015.vcxproj │ │ │ ├── mod_skypopen.c │ │ │ ├── old-stuff │ │ │ │ ├── asterisk │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── chan_skypiax.c │ │ │ │ │ ├── cyg_no_pthread_kill.c │ │ │ │ │ ├── skypiax.conf │ │ │ │ │ └── skypiax.h │ │ │ │ ├── dummy.c │ │ │ │ ├── pcm_lib.c │ │ │ │ └── pcm_native.c │ │ │ ├── oss │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ └── skypopen.h │ │ │ ├── skypopen.h │ │ │ └── skypopen_protocol.c │ │ ├── mod_sofia │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── sofia.conf.xml │ │ │ ├── mod_sofia.2017.vcxproj │ │ │ ├── mod_sofia.c │ │ │ ├── mod_sofia.h │ │ │ ├── rtp.c │ │ │ ├── sip-dig.c │ │ │ ├── sip-dig.h │ │ │ ├── sofia.c │ │ │ ├── sofia_glue.c │ │ │ ├── sofia_json_api.c │ │ │ ├── sofia_media.c │ │ │ ├── sofia_presence.c │ │ │ ├── sofia_reg.c │ │ │ └── test │ │ │ │ ├── conf-nuafail │ │ │ │ └── freeswitch.xml │ │ │ │ ├── conf-sipp │ │ │ │ └── freeswitch.xml │ │ │ │ ├── conf │ │ │ │ └── freeswitch.xml │ │ │ │ ├── sipp-based-tests.c │ │ │ │ ├── sipp-scenarios │ │ │ │ ├── uac_407_subscriber.xml │ │ │ │ ├── uac_digest_leak-ipv6.xml │ │ │ │ ├── uac_digest_leak-tcp.xml │ │ │ │ ├── uac_digest_leak.xml │ │ │ │ ├── uac_savp_check.xml │ │ │ │ ├── uac_subscriber.xml │ │ │ │ ├── uac_telephone_event.xml │ │ │ │ ├── uas_407.xml │ │ │ │ ├── uas_register.xml │ │ │ │ ├── uas_register_403.xml │ │ │ │ └── uas_register_no_challange.xml │ │ │ │ ├── stir-shaken │ │ │ │ ├── priv.pem │ │ │ │ ├── pub.pem │ │ │ │ └── www │ │ │ │ │ ├── cert.pem │ │ │ │ │ └── pub.pem │ │ │ │ ├── test_nuafail.c │ │ │ │ ├── test_run_sipp.sh │ │ │ │ ├── test_sofia_funcs.c │ │ │ │ ├── test_sofia_funcs.sh │ │ │ │ └── voicemail │ │ │ │ ├── vm-goodbye.wav │ │ │ │ ├── vm-not_available.wav │ │ │ │ ├── vm-person.wav │ │ │ │ ├── vm-record_message.wav │ │ │ │ └── vm-too-small.wav │ │ ├── mod_srs │ │ │ └── README.md │ │ ├── mod_unicall │ │ │ ├── Makefile.am │ │ │ └── mod_unicall.c │ │ └── mod_verto │ │ │ ├── Makefile.am │ │ │ ├── mcast │ │ │ ├── .gitignore │ │ │ ├── MCAST.i │ │ │ ├── MCAST.pm │ │ │ ├── hack.diff │ │ │ ├── mcast.c │ │ │ ├── mcast.h │ │ │ ├── mcast_cpp.cpp │ │ │ ├── mcast_cpp.h │ │ │ ├── mcast_wrap.cpp │ │ │ ├── perlxsi.c │ │ │ ├── test.c │ │ │ ├── test.pl │ │ │ └── test2.pl │ │ │ ├── mod_verto.2017.vcxproj │ │ │ ├── mod_verto.c │ │ │ └── mod_verto.h │ ├── event_handlers │ │ ├── mod_amqp │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── mod_amqp.2017.vcxproj │ │ │ ├── mod_amqp.c │ │ │ ├── mod_amqp.h │ │ │ ├── mod_amqp_command.c │ │ │ ├── mod_amqp_connection.c │ │ │ ├── mod_amqp_logging.c │ │ │ ├── mod_amqp_producer.c │ │ │ └── mod_amqp_utils.c │ │ ├── mod_cdr_csv │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_csv.conf.xml │ │ │ ├── mod_cdr_csv.2017.vcxproj │ │ │ └── mod_cdr_csv.c │ │ ├── mod_cdr_mongodb │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_mongodb.conf.xml │ │ │ ├── driver │ │ │ │ ├── APACHE-2.0.txt │ │ │ │ ├── HISTORY.md │ │ │ │ ├── README.md │ │ │ │ └── src │ │ │ │ │ ├── bson.c │ │ │ │ │ ├── bson.h │ │ │ │ │ ├── encoding.c │ │ │ │ │ ├── encoding.h │ │ │ │ │ ├── env.h │ │ │ │ │ ├── env_posix.c │ │ │ │ │ ├── env_standard.c │ │ │ │ │ ├── env_win32.c │ │ │ │ │ ├── gridfs.c │ │ │ │ │ ├── gridfs.h │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mongo.c │ │ │ │ │ ├── mongo.h │ │ │ │ │ └── numbers.c │ │ │ ├── mod_cdr_mongodb.2017.vcxproj │ │ │ └── mod_cdr_mongodb.c │ │ ├── mod_cdr_pg_csv │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_pg_csv.conf.xml │ │ │ ├── mod_cdr_pg_csv.2017.vcxproj │ │ │ ├── mod_cdr_pg_csv.c │ │ │ └── scripts │ │ │ │ └── create.sql │ │ ├── mod_cdr_sqlite │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_sqlite.conf.xml │ │ │ ├── mod_cdr_sqlite.2017.vcxproj │ │ │ └── mod_cdr_sqlite.c │ │ ├── mod_erlang_event │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── erlang_event.conf.xml │ │ │ ├── ei_helpers.c │ │ │ ├── freeswitch.erl │ │ │ ├── handle_msg.c │ │ │ ├── mod_erlang_event.c │ │ │ └── mod_erlang_event.h │ │ ├── mod_event_multicast │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── event_multicast.conf.xml │ │ │ ├── mod_event_multicast.2017.vcxproj │ │ │ └── mod_event_multicast.c │ │ ├── mod_event_socket │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── event_socket.conf.xml │ │ │ ├── mod_event_socket.2017.vcxproj │ │ │ └── mod_event_socket.c │ │ ├── mod_event_test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── mod_event_test.c │ │ ├── mod_event_zmq │ │ │ ├── Makefile.am │ │ │ ├── mod_event_zmq.cpp │ │ │ └── mod_event_zmq.h │ │ ├── mod_fail2ban │ │ │ ├── Makefile.am │ │ │ ├── fail2ban.conf.xml │ │ │ └── mod_fail2ban.c │ │ ├── mod_format_cdr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── format_cdr.conf.xml │ │ │ └── mod_format_cdr.c │ │ ├── mod_json_cdr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── json_cdr.conf.xml │ │ │ └── mod_json_cdr.c │ │ ├── mod_odbc_cdr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── odbc_cdr.conf.xml │ │ │ ├── mod_odbc_cdr.2017.vcxproj │ │ │ └── mod_odbc_cdr.c │ │ ├── mod_radius_cdr │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── mod_radius_cdr.c │ │ │ ├── mod_radius_cdr.conf.xml │ │ │ ├── mod_radius_cdr.h │ │ │ └── radius │ │ │ │ └── dictionary │ │ ├── mod_rayo │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── rayo.conf.xml │ │ │ ├── gateway │ │ │ │ ├── README │ │ │ │ └── mod_rayo_gateway.erl │ │ │ ├── iks_helpers.c │ │ │ ├── iks_helpers.h │ │ │ ├── mod_rayo.c │ │ │ ├── mod_rayo.h │ │ │ ├── nlsml.c │ │ │ ├── nlsml.h │ │ │ ├── rayo_components.c │ │ │ ├── rayo_components.h │ │ │ ├── rayo_cpa_component.c │ │ │ ├── rayo_cpa_component.h │ │ │ ├── rayo_cpa_detector.c │ │ │ ├── rayo_cpa_detector.h │ │ │ ├── rayo_elements.c │ │ │ ├── rayo_elements.h │ │ │ ├── rayo_exec_component.c │ │ │ ├── rayo_fax_components.c │ │ │ ├── rayo_input_component.c │ │ │ ├── rayo_output_component.c │ │ │ ├── rayo_prompt_component.c │ │ │ ├── rayo_record_component.c │ │ │ ├── sasl.c │ │ │ ├── sasl.h │ │ │ ├── srgs.c │ │ │ ├── srgs.h │ │ │ ├── test │ │ │ │ ├── test_iks.c │ │ │ │ ├── test_nlsml.c │ │ │ │ └── test_srgs.c │ │ │ ├── xmpp_errors.def │ │ │ ├── xmpp_streams.c │ │ │ └── xmpp_streams.h │ │ ├── mod_smpp │ │ │ ├── Makefile.am │ │ │ ├── TODO │ │ │ ├── chatplan.conf.xml │ │ │ ├── mod_smpp.c │ │ │ ├── mod_smpp.h │ │ │ ├── mod_smpp_gateway.c │ │ │ ├── mod_smpp_message.c │ │ │ └── mod_smpp_utils.c │ │ └── mod_snmp │ │ │ ├── FREESWITCH-MIB │ │ │ ├── Makefile.am │ │ │ ├── mod_snmp.c │ │ │ ├── subagent.c │ │ │ └── subagent.h │ ├── formats │ │ ├── mod_imagick │ │ │ ├── Makefile.am │ │ │ ├── Makefile.hint │ │ │ └── mod_imagick.c │ │ ├── mod_local_stream │ │ │ ├── Makefile.am │ │ │ ├── mod_local_stream.2017.vcxproj │ │ │ └── mod_local_stream.c │ │ ├── mod_native_file │ │ │ ├── Makefile.am │ │ │ ├── mod_native_file.2017.vcxproj │ │ │ └── mod_native_file.c │ │ ├── mod_opusfile │ │ │ ├── Makefile.am │ │ │ ├── mod_opusfile.c │ │ │ └── test │ │ │ │ ├── freeswitch.xml │ │ │ │ ├── sounds │ │ │ │ ├── audiocheck.net_sin_1000Hz_-3dBFS_6s.opus │ │ │ │ ├── audiocheck.net_sin_1000Hz_-3dBFS_6s.wav │ │ │ │ ├── hi.opus │ │ │ │ └── opusfile-test-ogg.bitstream │ │ │ │ └── test_opusfile.c │ │ ├── mod_png │ │ │ ├── Makefile.am │ │ │ ├── mod_png.2017.vcxproj │ │ │ └── mod_png.c │ │ ├── mod_portaudio_stream │ │ │ ├── Makefile.am │ │ │ └── mod_portaudio_stream.c │ │ ├── mod_shell_stream │ │ │ ├── Makefile.am │ │ │ └── mod_shell_stream.c │ │ ├── mod_shout │ │ │ ├── MPGLIB_README │ │ │ ├── MPGLIB_TODO │ │ │ ├── Makefile.am │ │ │ ├── hack_out_ogg.diff │ │ │ ├── mod_shout.2017.vcxproj │ │ │ └── mod_shout.c │ │ ├── mod_sndfile │ │ │ ├── Makefile.am │ │ │ ├── mod_sndfile.2017.vcxproj │ │ │ ├── mod_sndfile.c │ │ │ └── test │ │ │ │ ├── sounds │ │ │ │ ├── hello_stereo.wav │ │ │ │ └── hi.wav │ │ │ │ ├── test_conf │ │ │ │ ├── freeswitch.xml │ │ │ │ └── freeswitch.xml.fsxml │ │ │ │ ├── test_formats_and_muxing │ │ │ │ └── freeswitch.xml │ │ │ │ ├── test_sndfile.c │ │ │ │ └── test_sndfile_conf.c │ │ ├── mod_ssml │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── ssml.conf.xml │ │ │ ├── mod_ssml.c │ │ │ └── test │ │ │ │ ├── freeswitch.xml │ │ │ │ └── test_tts_format.c │ │ ├── mod_tone_stream │ │ │ ├── Makefile.am │ │ │ ├── mod_tone_stream.2017.vcxproj │ │ │ └── mod_tone_stream.c │ │ ├── mod_vlc │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ └── mod_vlc.c │ │ └── mod_webm │ │ │ ├── mod_vorbis.c │ │ │ ├── mod_webm.cpp │ │ │ └── mod_webm.h │ ├── languages │ │ ├── mod_basic │ │ │ ├── Makefile.am │ │ │ ├── mod_basic.c │ │ │ ├── my_basic.c │ │ │ └── my_basic.h │ │ ├── mod_java │ │ │ ├── .gitattributes │ │ │ ├── Makefile.am │ │ │ ├── freeswitch_java.cpp │ │ │ ├── freeswitch_java.h │ │ │ ├── mod_java.cpp │ │ │ ├── mod_java.i │ │ │ ├── modjava.c │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── freeswitch │ │ │ │ │ ├── ApplicationLauncher.java │ │ │ │ │ ├── DTMFCallback.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── FreeswitchScript.java │ │ │ │ │ ├── HangupHook.java │ │ │ │ │ ├── Launcher.java │ │ │ │ │ ├── OriginateStateHandler.java │ │ │ │ │ ├── StateHandler.java │ │ │ │ │ └── swig │ │ │ │ │ ├── API.java │ │ │ │ │ ├── CoreSession.java │ │ │ │ │ ├── DTMF.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── EventConsumer.java │ │ │ │ │ ├── IVRMenu.java │ │ │ │ │ ├── JavaSession.java │ │ │ │ │ ├── SWIGTYPE_p_CoreSession.java │ │ │ │ │ ├── SWIGTYPE_p_JavaVM.java │ │ │ │ │ ├── SWIGTYPE_p_SWITCH_DECLARE_CLASS.java │ │ │ │ │ ├── SWIGTYPE_p_int.java │ │ │ │ │ ├── SWIGTYPE_p_p_switch_event_node_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_call_cause_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_channel_state_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_channel_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_core_session_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_event_node_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_event_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_event_types_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_input_args_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_input_type_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_priority_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_queue_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_size_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_state_handler_table_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_status_t.java │ │ │ │ │ ├── SWIGTYPE_p_switch_stream_handle_t.java │ │ │ │ │ ├── SWIGTYPE_p_uint32_t.java │ │ │ │ │ ├── SWIGTYPE_p_void.java │ │ │ │ │ ├── Stream.java │ │ │ │ │ ├── freeswitch.java │ │ │ │ │ ├── freeswitchJNI.java │ │ │ │ │ ├── input_callback_state_t.java │ │ │ │ │ └── session_flag_t.java │ │ │ └── switch_swig_wrap.cpp │ │ ├── mod_lua │ │ │ ├── .gitattributes │ │ │ ├── Makefile.am │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch_lua.cpp │ │ │ ├── freeswitch_lua.h │ │ │ ├── hack.diff │ │ │ ├── lua-mode.el │ │ │ ├── mod_lua.2017.vcxproj │ │ │ ├── mod_lua.cpp │ │ │ ├── mod_lua_extra.c │ │ │ ├── mod_lua_extra.h │ │ │ ├── mod_lua_wrap.cpp │ │ │ ├── my_swigable_cpp.h │ │ │ └── test │ │ │ │ ├── conf │ │ │ │ └── freeswitch.xml │ │ │ │ ├── test_json.lua │ │ │ │ └── test_mod_lua.c │ │ ├── mod_managed │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch_managed.cpp │ │ │ ├── freeswitch_managed.h │ │ │ ├── freeswitch_wrap.cxx │ │ │ ├── managed │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChannelVariables.cs │ │ │ │ ├── Demo.csx │ │ │ │ ├── EventBinding.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── FreeSWITCH.Managed.2017.csproj │ │ │ │ ├── FreeSWITCH.Managed.csproj │ │ │ │ ├── Loader.cs │ │ │ │ ├── Log.cs │ │ │ │ ├── Makefile │ │ │ │ ├── ManagedSession.cs │ │ │ │ ├── PluginInterfaces.cs │ │ │ │ ├── PluginManager.cs │ │ │ │ ├── ScriptPluginManager.cs │ │ │ │ ├── Util.cs │ │ │ │ ├── XmlSearchBinding.cs │ │ │ │ ├── examples │ │ │ │ │ ├── easyroute │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ ├── EasyRoute.fsproj │ │ │ │ │ │ ├── EasyRoute.sln │ │ │ │ │ │ └── easyroute.fs │ │ │ │ │ └── winFailToBan │ │ │ │ │ │ ├── BanTracker.cs │ │ │ │ │ │ ├── EventLoop.cs │ │ │ │ │ │ ├── Fail2Ban.cs │ │ │ │ │ │ ├── Internal │ │ │ │ │ │ ├── ConfigHandler.cs │ │ │ │ │ │ └── ConfigHelper.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── skel.cs │ │ │ │ │ │ └── winFailToBan.csproj │ │ │ │ └── swig.cs │ │ │ ├── mod_managed.2017.vcxproj │ │ │ ├── mod_managed.cpp │ │ │ ├── mono.def │ │ │ ├── mono28.patch │ │ │ ├── monolibx86.cmd │ │ │ ├── runswig.2010.cmd │ │ │ ├── runswig.cmd │ │ │ └── switch_platform.i │ │ ├── mod_perl │ │ │ ├── .gitattributes │ │ │ ├── Makefile.am │ │ │ ├── compiler.opts │ │ │ ├── compiler.opts.in │ │ │ ├── foo.diff │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch.pm │ │ │ ├── freeswitch_perl.cpp │ │ │ ├── freeswitch_perl.h │ │ │ ├── hack.diff │ │ │ ├── mod_perl.c │ │ │ ├── mod_perl_extra.c │ │ │ ├── mod_perl_extra.h │ │ │ ├── mod_perl_wrap.cpp │ │ │ ├── perlibs.h │ │ │ ├── perlibs.h.in │ │ │ └── perlxsi.c │ │ ├── mod_python │ │ │ ├── .gitattributes │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── freeswitch.py │ │ │ ├── freeswitch_python.cpp │ │ │ ├── freeswitch_python.h │ │ │ ├── hack.diff │ │ │ ├── mod_python.c │ │ │ ├── mod_python.i │ │ │ ├── mod_python_extra.c │ │ │ ├── mod_python_extra.h │ │ │ ├── mod_python_wrap.cpp │ │ │ └── python_example.py │ │ ├── mod_python3 │ │ │ ├── .gitattributes │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── freeswitch.py │ │ │ ├── freeswitch_python.cpp │ │ │ ├── freeswitch_python.h │ │ │ ├── hack.diff │ │ │ ├── mod_python.i │ │ │ ├── mod_python3.c │ │ │ ├── mod_python_extra.c │ │ │ ├── mod_python_extra.h │ │ │ ├── mod_python_wrap.cpp │ │ │ └── python_example.py │ │ ├── mod_v8 │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── v8.conf.xml │ │ │ ├── include │ │ │ │ ├── fscoredb.hpp │ │ │ │ ├── fscurl.hpp │ │ │ │ ├── fsdbh.hpp │ │ │ │ ├── fsdtmf.hpp │ │ │ │ ├── fsevent.hpp │ │ │ │ ├── fseventhandler.hpp │ │ │ │ ├── fsfile.hpp │ │ │ │ ├── fsfileio.hpp │ │ │ │ ├── fsglobal.hpp │ │ │ │ ├── fsodbc.hpp │ │ │ │ ├── fspcre.hpp │ │ │ │ ├── fsrequest.hpp │ │ │ │ ├── fssession.hpp │ │ │ │ ├── fssocket.hpp │ │ │ │ ├── fsteletone.hpp │ │ │ │ ├── fsxml.hpp │ │ │ │ └── javascript.hpp │ │ │ ├── mod_v8.2017.vcxproj │ │ │ ├── mod_v8.cpp │ │ │ ├── mod_v8.h │ │ │ ├── mod_v8_skel.2017.vcxproj │ │ │ ├── mod_v8_skel.cpp │ │ │ └── src │ │ │ │ ├── fscoredb.cpp │ │ │ │ ├── fscurl.cpp │ │ │ │ ├── fsdbh.cpp │ │ │ │ ├── fsdtmf.cpp │ │ │ │ ├── fsevent.cpp │ │ │ │ ├── fseventhandler.cpp │ │ │ │ ├── fsfile.cpp │ │ │ │ ├── fsfileio.cpp │ │ │ │ ├── fsglobal.cpp │ │ │ │ ├── fsodbc.cpp │ │ │ │ ├── fspcre.cpp │ │ │ │ ├── fsrequest.cpp │ │ │ │ ├── fssession.cpp │ │ │ │ ├── fssocket.cpp │ │ │ │ ├── fsteletone.cpp │ │ │ │ ├── fsxml.cpp │ │ │ │ ├── jsbase.cpp │ │ │ │ └── jsmain.cpp │ │ └── mod_yaml │ │ │ ├── Makefile.am │ │ │ └── mod_yaml.c │ ├── loggers │ │ ├── mod_console │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── console.conf.xml │ │ │ ├── mod_console.2017.vcxproj │ │ │ └── mod_console.c │ │ ├── mod_graylog2 │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── graylog2.conf.xml │ │ │ └── mod_graylog2.c │ │ ├── mod_logfile │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── logfile.conf.xml │ │ │ ├── mod_logfile.2017.vcxproj │ │ │ └── mod_logfile.c │ │ ├── mod_raven │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── raven.conf.xml │ │ │ └── mod_raven.c │ │ └── mod_syslog │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── syslog.conf.xml │ │ │ └── mod_syslog.c │ ├── say │ │ ├── mod_say_de │ │ │ ├── Makefile.am │ │ │ ├── mod_say_de.2017.vcxproj │ │ │ └── mod_say_de.c │ │ ├── mod_say_en │ │ │ ├── Makefile.am │ │ │ ├── mod_say_en.2017.vcxproj │ │ │ └── mod_say_en.c │ │ ├── mod_say_es │ │ │ ├── Makefile.am │ │ │ ├── mod_say_es.2017.vcxproj │ │ │ └── mod_say_es.c │ │ ├── mod_say_es_ar │ │ │ ├── Makefile.am │ │ │ ├── mod_say_es_ar.2017.vcxproj │ │ │ └── mod_say_es_ar.c │ │ ├── mod_say_fa │ │ │ ├── Makefile.am │ │ │ ├── mod_say_fa.2017.vcxproj │ │ │ └── mod_say_fa.c │ │ ├── mod_say_fr │ │ │ ├── Makefile.am │ │ │ ├── mod_say_fr.2017.vcxproj │ │ │ └── mod_say_fr.c │ │ ├── mod_say_he │ │ │ ├── Makefile.am │ │ │ ├── mod_say_he.2017.vcxproj │ │ │ └── mod_say_he.c │ │ ├── mod_say_hr │ │ │ ├── Makefile.am │ │ │ ├── mod_say_hr.2017.vcxproj │ │ │ └── mod_say_hr.c │ │ ├── mod_say_hu │ │ │ ├── Makefile.am │ │ │ ├── mod_say_hu.2017.vcxproj │ │ │ └── mod_say_hu.c │ │ ├── mod_say_it │ │ │ ├── Makefile.am │ │ │ ├── mod_say_it.2017.vcxproj │ │ │ └── mod_say_it.c │ │ ├── mod_say_ja │ │ │ ├── Makefile.am │ │ │ ├── mod_say_ja.2017.vcxproj │ │ │ └── mod_say_ja.c │ │ ├── mod_say_nl │ │ │ ├── Makefile.am │ │ │ ├── mod_say_nl.2017.vcxproj │ │ │ └── mod_say_nl.c │ │ ├── mod_say_pl │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── conf │ │ │ │ ├── dialplan │ │ │ │ │ └── default │ │ │ │ │ │ └── test_say_pl.xml │ │ │ │ └── lang │ │ │ │ │ └── pl │ │ │ │ │ └── pl.xml │ │ │ ├── create_sound_files.sh │ │ │ ├── mod_say_pl.2017.vcxproj │ │ │ └── mod_say_pl.c │ │ ├── mod_say_pt │ │ │ ├── Makefile.am │ │ │ ├── mod_say_pt.2017.vcxproj │ │ │ └── mod_say_pt.c │ │ ├── mod_say_ru │ │ │ ├── Makefile.am │ │ │ ├── mod_say_ru.2017.vcxproj │ │ │ ├── mod_say_ru.c │ │ │ └── mod_say_ru.h │ │ ├── mod_say_sv │ │ │ ├── Makefile.am │ │ │ ├── mod_say_sv.2017.vcxproj │ │ │ └── mod_say_sv.c │ │ ├── mod_say_th │ │ │ ├── Makefile.am │ │ │ ├── mod_say_th.2017.vcxproj │ │ │ └── mod_say_th.c │ │ └── mod_say_zh │ │ │ ├── Makefile.am │ │ │ ├── mod_say_zh.2017.vcxproj │ │ │ └── mod_say_zh.c │ ├── sdk │ │ └── autotools │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── m4 │ │ │ └── ax_compiler_vendor.m4 │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ └── mod_example.c │ ├── timers │ │ ├── mod_posix_timer │ │ │ ├── Makefile.am │ │ │ ├── mod_posix_timer.c │ │ │ └── test │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── main.c │ │ │ │ ├── switch.c │ │ │ │ └── switch.h │ │ └── mod_timerfd │ │ │ ├── Makefile.am │ │ │ └── mod_timerfd.c │ └── xml_int │ │ ├── mod_xml_cdr │ │ ├── Makefile.am │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── xml_cdr.conf.xml │ │ ├── mod_xml_cdr.2017.vcxproj │ │ └── mod_xml_cdr.c │ │ ├── mod_xml_curl │ │ ├── Makefile.am │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── xml_curl.conf.xml │ │ ├── mod_xml_curl.2017.vcxproj │ │ └── mod_xml_curl.c │ │ ├── mod_xml_ldap │ │ ├── Makefile.am │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── xml_ldap.conf.xml │ │ ├── fsaccount.schema │ │ ├── fsv2.schema │ │ ├── lutil_ldap.h │ │ ├── mod_xml_ldap.c │ │ └── reallyconfusingslapcat │ │ ├── mod_xml_radius │ │ ├── .gitignore │ │ ├── 00_dialplan_auth.xml │ │ ├── Makefile.am │ │ ├── config.c.diff │ │ ├── dictionaries │ │ │ ├── dictionary │ │ │ ├── dictionary.cisco │ │ │ └── dictionary.rfc5090 │ │ ├── mod_xml_radius.c │ │ └── xml_radius.conf.xml │ │ ├── mod_xml_rpc │ │ ├── Makefile.am │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── xml_rpc.conf.xml │ │ ├── mod_xml_rpc.2017.vcxproj │ │ ├── mod_xml_rpc.c │ │ ├── ws.c │ │ └── ws.h │ │ └── mod_xml_scgi │ │ ├── Makefile.am │ │ ├── conf │ │ └── autoload_configs │ │ │ └── xml_scgi.conf.xml │ │ ├── mod_xml_scgi.c │ │ └── xml_scgi_server.pl ├── switch.c ├── switch_apr.c ├── switch_apr_queue.c ├── switch_buffer.c ├── switch_caller.c ├── switch_channel.c ├── switch_config.c ├── switch_console.c ├── switch_core.c ├── switch_core_asr.c ├── switch_core_cert.c ├── switch_core_codec.c ├── switch_core_db.c ├── switch_core_directory.c ├── switch_core_event_hook.c ├── switch_core_file.c ├── switch_core_hash.c ├── switch_core_io.c ├── switch_core_media.c ├── switch_core_media_bug.c ├── switch_core_memory.c ├── switch_core_port_allocator.c ├── switch_core_rwlock.c ├── switch_core_session.c ├── switch_core_speech.c ├── switch_core_sqldb.c ├── switch_core_state_machine.c ├── switch_core_timer.c ├── switch_core_video.c ├── switch_cpp.cpp ├── switch_curl.c ├── switch_dso.c ├── switch_estimators.c ├── switch_event.c ├── switch_hashtable.c ├── switch_ivr.c ├── switch_ivr_async.c ├── switch_ivr_bridge.c ├── switch_ivr_menu.c ├── switch_ivr_originate.c ├── switch_ivr_play_say.c ├── switch_ivr_say.c ├── switch_jitterbuffer.c ├── switch_json.c ├── switch_limit.c ├── switch_loadable_module.c ├── switch_log.c ├── switch_mprintf.c ├── switch_msrp.c ├── switch_nat.c ├── switch_odbc.c ├── switch_packetizer.c ├── switch_pcm.c ├── switch_profile.c ├── switch_regex.c ├── switch_resample.c ├── switch_rtp.c ├── switch_scheduler.c ├── switch_sdp.c ├── switch_spandsp.c ├── switch_speex.c ├── switch_stun.c ├── switch_swig.c ├── switch_swig.i ├── switch_time.c ├── switch_utf8.c ├── switch_utils.c ├── switch_vad.c ├── switch_version.c ├── switch_vpx.c ├── switch_xml.c ├── switch_xml_config.c ├── tone2wav.c └── xswitch.c ├── support-d ├── .bashrc ├── .emacs ├── .gdbinit ├── .screenrc ├── aliases.sql ├── c3p0.pub ├── freeswitch.pub ├── fscore_pb ├── gdb │ ├── README.md │ └── deadlock.py ├── git-completion.bash ├── git-prompt.sh ├── install-cc-mode.sh ├── prereq.sh ├── rbfs ├── shinzon.pub └── utils │ ├── bt.sh │ ├── btgrep │ ├── filebug.pl │ ├── fixbug.pl │ ├── gl │ ├── hashfinder │ ├── pcap-extract.sh │ ├── rwlock.pl │ └── speedtest-cli ├── swig_common.i ├── tests └── unit │ ├── .gitignore │ ├── Makefile.am │ ├── README │ ├── collect-test-logs.sh │ ├── conf │ ├── FreeMono.ttf │ ├── freeswitch.xml │ └── vpx.conf.xml │ ├── conf_async │ └── freeswitch.xml │ ├── conf_eavesdrop │ ├── freeswitch.xml │ └── gw │ │ └── eavestest.xml │ ├── conf_playsay │ └── freeswitch.xml │ ├── conf_rtp │ └── freeswitch.xml │ ├── conf_sip │ └── freeswitch.xml │ ├── conf_sofia │ └── freeswitch.xml │ ├── conf_test │ ├── freeswitch.xml │ └── gw │ │ └── test_gateway.xml │ ├── images │ ├── banner.png │ └── signalwire.png │ ├── pcap │ ├── milliwatt.long.pcmu.rtp.pcap │ └── milliwatt.pcmu.rtp.pcap │ ├── run-tests.mk │ ├── run-tests.sh │ ├── switch_console.c │ ├── switch_core.c │ ├── switch_core_asr.c │ ├── switch_core_codec.c │ ├── switch_core_db.c │ ├── switch_core_file.c │ ├── switch_core_session.c │ ├── switch_core_video.c │ ├── switch_eavesdrop.c │ ├── switch_event.c │ ├── switch_hash.c │ ├── switch_hold.c │ ├── switch_ivr_async.c │ ├── switch_ivr_originate.c │ ├── switch_ivr_play_say.c │ ├── switch_log.c │ ├── switch_packetizer.c │ ├── switch_rtp.c │ ├── switch_rtp_pcap.c │ ├── switch_sip.c │ ├── switch_utils.c │ ├── switch_vad.c │ ├── switch_vpx.c │ ├── switch_xml.c │ ├── test.sh │ ├── test_sofia.c │ ├── test_switch_core.2017.vcxproj │ ├── test_switch_core_codec.2017.vcxproj │ ├── test_switch_core_db.2017.vcxproj │ └── test_switch_ivr_originate.2017.vcxproj ├── w32 ├── Console │ ├── FreeSwitchConsole.2010.vcxproj.filters │ ├── FreeSwitchConsole.2017.vcxproj │ ├── FreeSwitchConsole.rc │ ├── FreeSwitchConsole.vcproj.user │ └── switch_version.rc2 ├── Library │ ├── FreeSwitchCore.2010.vcxproj.filters │ ├── FreeSwitchCore.2017.vcxproj │ ├── FreeSwitchCoreLib.rc │ ├── switch_version.inc.template │ └── switch_version.rc2 ├── Setup │ ├── CustomActions │ │ └── Setup.CA.DownloadOpenH264 │ │ │ ├── .gitignore │ │ │ ├── CustomAction.config │ │ │ ├── CustomAction.cs │ │ │ ├── LICENSE.txt │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── Setup.CA.DownloadOpenH264.csproj │ ├── FreeSWITCHConsole.wxs │ ├── FullVersion.cmd │ ├── GitInfo │ │ ├── GitInfo.cache.pp │ │ ├── GitInfo.cs.pp │ │ ├── GitInfo.targets │ │ ├── GitInfo.vb.pp │ │ ├── wslpath.cmd │ │ └── wslrun.cmd │ ├── Product.2017.wxs │ ├── Setup.2017.wixproj │ ├── Sounds │ │ ├── .gitignore │ │ ├── Product.wxs │ │ ├── Setup.Sounds.2017.sln │ │ ├── Setup.Sounds.2017.wixproj │ │ └── build_sounds.cmd │ ├── filter.xslt │ └── inno_setup │ │ ├── FreePBX.url │ │ ├── FusionPBX.url │ │ ├── create_freepbx.bat │ │ ├── create_freepbx.sql │ │ ├── create_fusionpbx.bat │ │ ├── create_fusionpbx.sql │ │ ├── expsound.bat │ │ ├── freepbx.ico │ │ ├── freeswitch.ico │ │ ├── freeswitch_1.0.4.iss │ │ ├── freeswitch_freepbx.iss │ │ ├── freeswitch_fusionpbx.iss │ │ ├── fscomm.iss │ │ ├── fsgui.iss │ │ ├── vcredist_x64.exe │ │ └── vcredist_x86.exe ├── apr.props ├── basedir.props ├── broadvoice-version.props ├── broadvoice.props ├── curl-version.props ├── curl.props ├── download_LAME.props ├── download_LDNS.props ├── download_OGG.props ├── download_broadvoice.props ├── download_celt.props ├── download_ffmpeg.props ├── download_freetype.props ├── download_g722_1.props ├── download_iLBC.props ├── download_libav.props ├── download_libcodec2.props ├── download_libjpeg.props ├── download_libpng.props ├── download_libshout.props ├── download_libsilk.props ├── download_libx264.props ├── download_mpg123.props ├── download_openh264.props ├── download_opus.props ├── download_pocketsphinx.props ├── download_portaudio.props ├── download_pthreads.props ├── download_sharpziplib.props ├── download_sofia-sip.props ├── download_sounds.props ├── download_spandsp.props ├── download_speex.props ├── download_sphinxbase.props ├── download_sphinxmodel.props ├── download_sqlite.props ├── download_tiff.props ├── downloadpackage.task ├── extdll.props ├── extlib.props ├── ffmpeg-version.props ├── ffmpeg.props ├── flite-version.props ├── flite.props ├── freetype.props ├── g722_1-version.props ├── g722_1.props ├── gawk.props ├── ilbc-version.props ├── ilbc.props ├── libav.props ├── libcodec2-version.props ├── libcodec2.props ├── libks-version.props ├── libks.props ├── libpng.props ├── libpq-version.props ├── libpq.props ├── libsilk-version.props ├── libsilk.props ├── libsndfile-version.props ├── libsndfile.props ├── libx264.props ├── lua-version.props ├── lua.props ├── mariadb-connector-c-version.props ├── mariadb-connector-c.props ├── module_debug.props ├── module_release.props ├── modules.props ├── opencv-version.props ├── opencv.props ├── openssl-version.props ├── openssl.props ├── pcre-version.props ├── pcre.props ├── rabbitmq-c-version.props ├── rabbitmq-c.props ├── signalwire-client-c-version.props ├── signalwire-client-c.props ├── sofia-sip-version.props ├── sofia-sip.props ├── solution_configuration.props ├── sound_tools.props ├── spandsp-version.props ├── spandsp.props ├── switch_version.props ├── tiff-version.props ├── tiff.props ├── v8-version.props ├── v8.props ├── vsyasm.props ├── winlibs.props ├── xmlrpc.props ├── yasm.props ├── zlib-version.props └── zlib.props ├── web ├── etc │ └── .empty └── planet │ └── .empty └── yum ├── GPL ├── RPM-GPG-KEY-FREESWITCH ├── freeswitch-release.spec ├── freeswitch-testing.repo ├── freeswitch.repo └── rpmbuilder.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.gitconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/.mailmap -------------------------------------------------------------------------------- /Freeswitch.2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/Freeswitch.2017.sln -------------------------------------------------------------------------------- /Freeswitch.2017.sln.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/Freeswitch.2017.sln.bat -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/cc.sh -------------------------------------------------------------------------------- /clients/flex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/build.sh -------------------------------------------------------------------------------- /clients/flex/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/jquery.min.js -------------------------------------------------------------------------------- /clients/flex/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/clients/flex/swfobject.js -------------------------------------------------------------------------------- /cluecon.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/cluecon.tmpl -------------------------------------------------------------------------------- /cluecon2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/cluecon2.tmpl -------------------------------------------------------------------------------- /cluecon2_small.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/cluecon2_small.tmpl -------------------------------------------------------------------------------- /cluecon_small.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/cluecon_small.tmpl -------------------------------------------------------------------------------- /conf/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/FreeMono.ttf -------------------------------------------------------------------------------- /conf/curl/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/curl/freeswitch.xml -------------------------------------------------------------------------------- /conf/curl/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/curl/mime.types -------------------------------------------------------------------------------- /conf/freeswitch.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /conf/insideout/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/mime.types -------------------------------------------------------------------------------- /conf/insideout/tetris.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/tetris.ttml -------------------------------------------------------------------------------- /conf/insideout/tones.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/tones.conf -------------------------------------------------------------------------------- /conf/insideout/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/vars.xml -------------------------------------------------------------------------------- /conf/insideout/web-vm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/insideout/web-vm.tpl -------------------------------------------------------------------------------- /conf/minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/minimal/README.md -------------------------------------------------------------------------------- /conf/minimal/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/minimal/modules.conf -------------------------------------------------------------------------------- /conf/minimal/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/minimal/vars.xml -------------------------------------------------------------------------------- /conf/rayo/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/cacert.pem -------------------------------------------------------------------------------- /conf/rayo/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/freeswitch.xml -------------------------------------------------------------------------------- /conf/rayo/lang/de/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/de/de.xml -------------------------------------------------------------------------------- /conf/rayo/lang/en/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/en/en.xml -------------------------------------------------------------------------------- /conf/rayo/lang/fr/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/fr/fr.xml -------------------------------------------------------------------------------- /conf/rayo/lang/he/he.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/he/he.xml -------------------------------------------------------------------------------- /conf/rayo/lang/ru/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/ru/ru.xml -------------------------------------------------------------------------------- /conf/rayo/lang/sv/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/lang/sv/sv.xml -------------------------------------------------------------------------------- /conf/rayo/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/mime.types -------------------------------------------------------------------------------- /conf/rayo/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/rayo/vars.xml -------------------------------------------------------------------------------- /conf/sbc/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/sbc/freeswitch.xml -------------------------------------------------------------------------------- /conf/sbc/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/sbc/mime.types -------------------------------------------------------------------------------- /conf/sbc/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/sbc/vars.xml -------------------------------------------------------------------------------- /conf/testing/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/testing/vars.xml -------------------------------------------------------------------------------- /conf/vanilla/config.FS0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/config.FS0 -------------------------------------------------------------------------------- /conf/vanilla/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/mime.types -------------------------------------------------------------------------------- /conf/vanilla/tetris.ttml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/tetris.ttml -------------------------------------------------------------------------------- /conf/vanilla/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/vars.xml -------------------------------------------------------------------------------- /conf/vanilla/voicemail.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/voicemail.tpl -------------------------------------------------------------------------------- /conf/vanilla/web-vm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/conf/vanilla/web-vm.tpl -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/AUTHORS -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/apt_sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/apt_sources.list -------------------------------------------------------------------------------- /debian/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/bootstrap.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/control-modules -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/freeswitch-doc.docs: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/freeswitch-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-managed.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/freeswitch/mod/FreeSWITCH.Managed.dll 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-pocketsphinx.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/share/freeswitch/grammar 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-python.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/python2*/*-packages/freeswitch.py 2 | -------------------------------------------------------------------------------- /debian/freeswitch-mod-python3.install.tmpl: -------------------------------------------------------------------------------- 1 | /usr/lib/python3*/*-packages/freeswitch.py 2 | -------------------------------------------------------------------------------- /debian/freeswitch.dirs: -------------------------------------------------------------------------------- 1 | usr/share/freeswitch/fonts -------------------------------------------------------------------------------- /debian/freeswitch.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/freeswitch.install -------------------------------------------------------------------------------- /debian/freeswitch.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/freeswitch.postinst -------------------------------------------------------------------------------- /debian/freeswitch.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/freeswitch.postrm -------------------------------------------------------------------------------- /debian/freeswitch.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/freeswitch.preinst -------------------------------------------------------------------------------- /debian/freeswitch.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/freeswitch.prerm -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/python-esl.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/python-esl.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/debian/util.sh -------------------------------------------------------------------------------- /devel-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/devel-bootstrap.sh -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docker/examples/README.md -------------------------------------------------------------------------------- /docker/master/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docker/master/Dockerfile -------------------------------------------------------------------------------- /docker/release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docker/release/Dockerfile -------------------------------------------------------------------------------- /docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/AUTHORS -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/COPYING.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/COPYING.rtf -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/Debugging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/Debugging -------------------------------------------------------------------------------- /docs/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/Doxygen.conf -------------------------------------------------------------------------------- /docs/GivingBack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/GivingBack -------------------------------------------------------------------------------- /docs/JavaScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/JavaScript.txt -------------------------------------------------------------------------------- /docs/SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/SubmittingPatches -------------------------------------------------------------------------------- /docs/man/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | *.html 3 | -------------------------------------------------------------------------------- /docs/man/freeswitch.1.ronn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/man/freeswitch.1.ronn -------------------------------------------------------------------------------- /docs/phrase/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/README.TXT -------------------------------------------------------------------------------- /docs/phrase/make_checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/make_checks.sh -------------------------------------------------------------------------------- /docs/phrase/phrase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase.pl -------------------------------------------------------------------------------- /docs/phrase/phrase_de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_de.xml -------------------------------------------------------------------------------- /docs/phrase/phrase_en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_en.xml -------------------------------------------------------------------------------- /docs/phrase/phrase_es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_es.xml -------------------------------------------------------------------------------- /docs/phrase/phrase_fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_fr.xml -------------------------------------------------------------------------------- /docs/phrase/phrase_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_nl.xml -------------------------------------------------------------------------------- /docs/phrase/phrase_ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/phrase/phrase_ru.xml -------------------------------------------------------------------------------- /docs/zrtp_agpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/docs/zrtp_agpl-3.0.txt -------------------------------------------------------------------------------- /fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /fonts/FreeMonoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMonoBold.ttf -------------------------------------------------------------------------------- /fonts/FreeMonoOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeMonoOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSans.ttf -------------------------------------------------------------------------------- /fonts/FreeSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSansBold.ttf -------------------------------------------------------------------------------- /fonts/FreeSansOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSansOblique.ttf -------------------------------------------------------------------------------- /fonts/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerif.ttf -------------------------------------------------------------------------------- /fonts/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerifBold.ttf -------------------------------------------------------------------------------- /fonts/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /fonts/README.fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fonts/README.fonts -------------------------------------------------------------------------------- /freeswitch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/freeswitch.spec -------------------------------------------------------------------------------- /fscomm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/.gitignore -------------------------------------------------------------------------------- /fscomm/FSComm.2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/FSComm.2008.vcproj -------------------------------------------------------------------------------- /fscomm/FSComm.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/FSComm.pro -------------------------------------------------------------------------------- /fscomm/MakeVcProj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/MakeVcProj.cmd -------------------------------------------------------------------------------- /fscomm/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/account.cpp -------------------------------------------------------------------------------- /fscomm/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/account.h -------------------------------------------------------------------------------- /fscomm/accountmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/accountmanager.cpp -------------------------------------------------------------------------------- /fscomm/accountmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/accountmanager.h -------------------------------------------------------------------------------- /fscomm/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/call.cpp -------------------------------------------------------------------------------- /fscomm/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/call.h -------------------------------------------------------------------------------- /fscomm/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/channel.cpp -------------------------------------------------------------------------------- /fscomm/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/channel.h -------------------------------------------------------------------------------- /fscomm/conf/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/conf/freeswitch.xml -------------------------------------------------------------------------------- /fscomm/fscomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/fscomm.h -------------------------------------------------------------------------------- /fscomm/fshost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/fshost.cpp -------------------------------------------------------------------------------- /fscomm/fshost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/fshost.h -------------------------------------------------------------------------------- /fscomm/isettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/isettings.cpp -------------------------------------------------------------------------------- /fscomm/isettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/isettings.h -------------------------------------------------------------------------------- /fscomm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/main.cpp -------------------------------------------------------------------------------- /fscomm/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/mainwindow.cpp -------------------------------------------------------------------------------- /fscomm/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/mainwindow.h -------------------------------------------------------------------------------- /fscomm/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/mainwindow.ui -------------------------------------------------------------------------------- /fscomm/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources.qrc -------------------------------------------------------------------------------- /fscomm/resources/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/fscomm/resources/test.wav -------------------------------------------------------------------------------- /htdocs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/license.txt -------------------------------------------------------------------------------- /htdocs/portal/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/LICENCE -------------------------------------------------------------------------------- /htdocs/portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/README.md -------------------------------------------------------------------------------- /htdocs/portal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/portal/index.html -------------------------------------------------------------------------------- /htdocs/slim.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/slim.swf -------------------------------------------------------------------------------- /htdocs/slimtest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/htdocs/slimtest.htm -------------------------------------------------------------------------------- /images/cluecon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/cluecon.jpg -------------------------------------------------------------------------------- /images/cluecon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/cluecon.png -------------------------------------------------------------------------------- /images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/default-avatar.png -------------------------------------------------------------------------------- /images/default-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/images/default-mute.png -------------------------------------------------------------------------------- /libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/.gitignore -------------------------------------------------------------------------------- /libs/apr/.update: -------------------------------------------------------------------------------- 1 | Wed Sep 25 15:25:12 EDT 2019 2 | -------------------------------------------------------------------------------- /libs/apr/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/CHANGES -------------------------------------------------------------------------------- /libs/apr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/CMakeLists.txt -------------------------------------------------------------------------------- /libs/apr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/LICENSE -------------------------------------------------------------------------------- /libs/apr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/Makefile.in -------------------------------------------------------------------------------- /libs/apr/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/NOTICE -------------------------------------------------------------------------------- /libs/apr/NWGNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/NWGNUmakefile -------------------------------------------------------------------------------- /libs/apr/README.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/README.dev -------------------------------------------------------------------------------- /libs/apr/apr-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/apr-config.in -------------------------------------------------------------------------------- /libs/apr/apr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/apr.dsp -------------------------------------------------------------------------------- /libs/apr/apr.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/apr.dsw -------------------------------------------------------------------------------- /libs/apr/apr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/apr.pc.in -------------------------------------------------------------------------------- /libs/apr/apr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/apr.spec -------------------------------------------------------------------------------- /libs/apr/build-outputs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build-outputs.mk -------------------------------------------------------------------------------- /libs/apr/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build.conf -------------------------------------------------------------------------------- /libs/apr/build/MakeEtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/MakeEtags -------------------------------------------------------------------------------- /libs/apr/build/PrintPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/PrintPath -------------------------------------------------------------------------------- /libs/apr/build/aplibtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/aplibtool.c -------------------------------------------------------------------------------- /libs/apr/build/apr_app.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/apr_app.dsp -------------------------------------------------------------------------------- /libs/apr/build/cvtdsp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/cvtdsp.pl -------------------------------------------------------------------------------- /libs/apr/build/find_apr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/find_apr.m4 -------------------------------------------------------------------------------- /libs/apr/build/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/install.sh -------------------------------------------------------------------------------- /libs/apr/build/jlibtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/jlibtool.c -------------------------------------------------------------------------------- /libs/apr/build/lineends.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/lineends.pl -------------------------------------------------------------------------------- /libs/apr/build/mkdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/mkdir.sh -------------------------------------------------------------------------------- /libs/apr/build/nw_ver.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/nw_ver.awk -------------------------------------------------------------------------------- /libs/apr/build/pkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/pkg/README -------------------------------------------------------------------------------- /libs/apr/build/run-gcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/build/run-gcov.sh -------------------------------------------------------------------------------- /libs/apr/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/buildconf -------------------------------------------------------------------------------- /libs/apr/config.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/config.layout -------------------------------------------------------------------------------- /libs/apr/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/configure.ac -------------------------------------------------------------------------------- /libs/apr/configure.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/configure.gnu -------------------------------------------------------------------------------- /libs/apr/docs/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/docs/doxygen.conf -------------------------------------------------------------------------------- /libs/apr/dso/aix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/aix/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/beos/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/beos/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/netware/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/netware/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/os2/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/os2/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/os390/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/os390/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/unix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/unix/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/win32/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/dso/win32/dso.c -------------------------------------------------------------------------------- /libs/apr/emacs-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/emacs-mode -------------------------------------------------------------------------------- /libs/apr/file_io/os2/copy.c: -------------------------------------------------------------------------------- 1 | #include "../unix/copy.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/file_io/os2/dir.c -------------------------------------------------------------------------------- /libs/apr/file_io/os2/filepath_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/filepath_util.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/fullrw.c: -------------------------------------------------------------------------------- 1 | #include "../unix/fullrw.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/mktemp.c: -------------------------------------------------------------------------------- 1 | #include "../unix/mktemp.c" 2 | -------------------------------------------------------------------------------- /libs/apr/file_io/os2/tempdir.c: -------------------------------------------------------------------------------- 1 | #include "../unix/tempdir.c" 2 | -------------------------------------------------------------------------------- /libs/apr/images/ball1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball1.gif -------------------------------------------------------------------------------- /libs/apr/images/ball1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball1.png -------------------------------------------------------------------------------- /libs/apr/images/ball2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball2.gif -------------------------------------------------------------------------------- /libs/apr/images/ball2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/ball2.png -------------------------------------------------------------------------------- /libs/apr/images/bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/bug.gif -------------------------------------------------------------------------------- /libs/apr/images/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/bug.png -------------------------------------------------------------------------------- /libs/apr/images/master.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/master.gif -------------------------------------------------------------------------------- /libs/apr/images/master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/master.png -------------------------------------------------------------------------------- /libs/apr/images/tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/tip.gif -------------------------------------------------------------------------------- /libs/apr/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/images/tip.png -------------------------------------------------------------------------------- /libs/apr/include/fspr.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/include/fspr.h.in -------------------------------------------------------------------------------- /libs/apr/include/fspr.hnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/include/fspr.hnw -------------------------------------------------------------------------------- /libs/apr/include/fspr.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/include/fspr.hw -------------------------------------------------------------------------------- /libs/apr/libapr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/libapr.dsp -------------------------------------------------------------------------------- /libs/apr/libapr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/libapr.rc -------------------------------------------------------------------------------- /libs/apr/libaprnw.mcp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/libaprnw.mcp.zip -------------------------------------------------------------------------------- /libs/apr/misc/unix/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/unix/env.c -------------------------------------------------------------------------------- /libs/apr/misc/unix/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/unix/rand.c -------------------------------------------------------------------------------- /libs/apr/misc/unix/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/unix/start.c -------------------------------------------------------------------------------- /libs/apr/misc/win32/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/win32/env.c -------------------------------------------------------------------------------- /libs/apr/misc/win32/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/win32/misc.c -------------------------------------------------------------------------------- /libs/apr/misc/win32/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/win32/rand.c -------------------------------------------------------------------------------- /libs/apr/misc/win32/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/misc/win32/utf8.c -------------------------------------------------------------------------------- /libs/apr/mmap/unix/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/mmap/unix/mmap.c -------------------------------------------------------------------------------- /libs/apr/mmap/win32/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/mmap/win32/mmap.c -------------------------------------------------------------------------------- /libs/apr/network_io/os2/inet_ntop.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_ntop.c" 2 | -------------------------------------------------------------------------------- /libs/apr/network_io/os2/inet_pton.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_pton.c" 2 | -------------------------------------------------------------------------------- /libs/apr/network_io/os2/sockaddr.c: -------------------------------------------------------------------------------- 1 | #include "../unix/sockaddr.c" 2 | -------------------------------------------------------------------------------- /libs/apr/poll/os2/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/poll/os2/poll.c -------------------------------------------------------------------------------- /libs/apr/poll/unix/epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/poll/unix/epoll.c -------------------------------------------------------------------------------- /libs/apr/poll/unix/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/poll/unix/poll.c -------------------------------------------------------------------------------- /libs/apr/poll/unix/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/poll/unix/port.c -------------------------------------------------------------------------------- /libs/apr/renames_pending: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/renames_pending -------------------------------------------------------------------------------- /libs/apr/shmem/beos/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/shmem/beos/shm.c -------------------------------------------------------------------------------- /libs/apr/shmem/os2/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/shmem/os2/shm.c -------------------------------------------------------------------------------- /libs/apr/shmem/unix/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/shmem/unix/shm.c -------------------------------------------------------------------------------- /libs/apr/shmem/win32/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/shmem/win32/shm.c -------------------------------------------------------------------------------- /libs/apr/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/Makefile.in -------------------------------------------------------------------------------- /libs/apr/test/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/Makefile.win -------------------------------------------------------------------------------- /libs/apr/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/README -------------------------------------------------------------------------------- /libs/apr/test/abts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/abts.c -------------------------------------------------------------------------------- /libs/apr/test/abts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/abts.h -------------------------------------------------------------------------------- /libs/apr/test/abts_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/abts_tests.h -------------------------------------------------------------------------------- /libs/apr/test/aprtest.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/aprtest.def -------------------------------------------------------------------------------- /libs/apr/test/aprtest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/aprtest.dsp -------------------------------------------------------------------------------- /libs/apr/test/aprtest.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/aprtest.win -------------------------------------------------------------------------------- /libs/apr/test/data/mmap_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the MMAP data file. 2 | -------------------------------------------------------------------------------- /libs/apr/test/mod_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/mod_test.c -------------------------------------------------------------------------------- /libs/apr/test/nw_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/nw_misc.c -------------------------------------------------------------------------------- /libs/apr/test/nwgnuaprtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/nwgnuaprtest -------------------------------------------------------------------------------- /libs/apr/test/nwgnutryread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/nwgnutryread -------------------------------------------------------------------------------- /libs/apr/test/occhild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/occhild.c -------------------------------------------------------------------------------- /libs/apr/test/proc_child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/proc_child.c -------------------------------------------------------------------------------- /libs/apr/test/readchild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/readchild.c -------------------------------------------------------------------------------- /libs/apr/test/sendfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/sendfile.c -------------------------------------------------------------------------------- /libs/apr/test/sockchild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/sockchild.c -------------------------------------------------------------------------------- /libs/apr/test/testall.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testall.dsp -------------------------------------------------------------------------------- /libs/apr/test/testall.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testall.dsw -------------------------------------------------------------------------------- /libs/apr/test/testapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testapp.c -------------------------------------------------------------------------------- /libs/apr/test/testapp.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testapp.dsp -------------------------------------------------------------------------------- /libs/apr/test/testargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testargs.c -------------------------------------------------------------------------------- /libs/apr/test/testatomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testatomic.c -------------------------------------------------------------------------------- /libs/apr/test/testdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testdir.c -------------------------------------------------------------------------------- /libs/apr/test/testdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testdso.c -------------------------------------------------------------------------------- /libs/apr/test/testdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testdup.c -------------------------------------------------------------------------------- /libs/apr/test/testenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testenv.c -------------------------------------------------------------------------------- /libs/apr/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testfile.c -------------------------------------------------------------------------------- /libs/apr/test/testflock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testflock.c -------------------------------------------------------------------------------- /libs/apr/test/testflock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testflock.h -------------------------------------------------------------------------------- /libs/apr/test/testfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testfmt.c -------------------------------------------------------------------------------- /libs/apr/test/testhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testhash.c -------------------------------------------------------------------------------- /libs/apr/test/testipsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testipsub.c -------------------------------------------------------------------------------- /libs/apr/test/testlfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testlfs.c -------------------------------------------------------------------------------- /libs/apr/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testlock.c -------------------------------------------------------------------------------- /libs/apr/test/testmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testmmap.c -------------------------------------------------------------------------------- /libs/apr/test/testnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testnames.c -------------------------------------------------------------------------------- /libs/apr/test/testoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testoc.c -------------------------------------------------------------------------------- /libs/apr/test/testpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testpath.c -------------------------------------------------------------------------------- /libs/apr/test/testpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testpipe.c -------------------------------------------------------------------------------- /libs/apr/test/testpoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testpoll.c -------------------------------------------------------------------------------- /libs/apr/test/testpools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testpools.c -------------------------------------------------------------------------------- /libs/apr/test/testproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testproc.c -------------------------------------------------------------------------------- /libs/apr/test/testrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testrand.c -------------------------------------------------------------------------------- /libs/apr/test/testrand2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testrand2.c -------------------------------------------------------------------------------- /libs/apr/test/testshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testshm.c -------------------------------------------------------------------------------- /libs/apr/test/testshm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testshm.h -------------------------------------------------------------------------------- /libs/apr/test/testsleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testsleep.c -------------------------------------------------------------------------------- /libs/apr/test/testsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testsock.c -------------------------------------------------------------------------------- /libs/apr/test/testsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testsock.h -------------------------------------------------------------------------------- /libs/apr/test/teststr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/teststr.c -------------------------------------------------------------------------------- /libs/apr/test/testtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testtable.c -------------------------------------------------------------------------------- /libs/apr/test/testtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testtemp.c -------------------------------------------------------------------------------- /libs/apr/test/testthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testthread.c -------------------------------------------------------------------------------- /libs/apr/test/testtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testtime.c -------------------------------------------------------------------------------- /libs/apr/test/testud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testud.c -------------------------------------------------------------------------------- /libs/apr/test/testuser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testuser.c -------------------------------------------------------------------------------- /libs/apr/test/testutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testutil.c -------------------------------------------------------------------------------- /libs/apr/test/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testutil.h -------------------------------------------------------------------------------- /libs/apr/test/testvsn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/testvsn.c -------------------------------------------------------------------------------- /libs/apr/test/tryread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/test/tryread.c -------------------------------------------------------------------------------- /libs/apr/threadproc/os2/signals.c: -------------------------------------------------------------------------------- 1 | #include "../unix/signals.c" 2 | -------------------------------------------------------------------------------- /libs/apr/time/unix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/time/unix/time.c -------------------------------------------------------------------------------- /libs/apr/time/win32/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/apr/time/win32/time.c -------------------------------------------------------------------------------- /libs/esl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/.gitignore -------------------------------------------------------------------------------- /libs/esl/ESL.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ESL.i -------------------------------------------------------------------------------- /libs/esl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/Makefile.am -------------------------------------------------------------------------------- /libs/esl/eslmake.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/eslmake.rules.in -------------------------------------------------------------------------------- /libs/esl/fs_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/fs_cli.c -------------------------------------------------------------------------------- /libs/esl/fs_cli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/fs_cli.conf -------------------------------------------------------------------------------- /libs/esl/fs_cli.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /libs/esl/getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/getopt/getopt.h -------------------------------------------------------------------------------- /libs/esl/ivrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ivrd.c -------------------------------------------------------------------------------- /libs/esl/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/java/Makefile -------------------------------------------------------------------------------- /libs/esl/java/classes/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/esl/java/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/java/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/lua/Makefile -------------------------------------------------------------------------------- /libs/esl/lua/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/lua/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/managed/ESL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/managed/ESL.cs -------------------------------------------------------------------------------- /libs/esl/managed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/managed/Makefile -------------------------------------------------------------------------------- /libs/esl/managed/ManagedEslTest/.gitignore: -------------------------------------------------------------------------------- 1 | app.config 2 | -------------------------------------------------------------------------------- /libs/esl/perl/ESL.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/ESL.pm -------------------------------------------------------------------------------- /libs/esl/perl/ESL/IVR.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/ESL/IVR.pm -------------------------------------------------------------------------------- /libs/esl/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/Makefile.am -------------------------------------------------------------------------------- /libs/esl/perl/dispatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/dispatch.pl -------------------------------------------------------------------------------- /libs/esl/perl/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/perl/events.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/events.pl -------------------------------------------------------------------------------- /libs/esl/perl/info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/info.pl -------------------------------------------------------------------------------- /libs/esl/perl/logger.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/logger.pl -------------------------------------------------------------------------------- /libs/esl/perl/perlxsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/perlxsi.c -------------------------------------------------------------------------------- /libs/esl/perl/send_info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/send_info.pl -------------------------------------------------------------------------------- /libs/esl/perl/sendevent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/sendevent.pl -------------------------------------------------------------------------------- /libs/esl/perl/server.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/server.pl -------------------------------------------------------------------------------- /libs/esl/perl/server2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/server2.pl -------------------------------------------------------------------------------- /libs/esl/perl/server3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/perl/server3.pl -------------------------------------------------------------------------------- /libs/esl/php/ESL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/php/ESL.php -------------------------------------------------------------------------------- /libs/esl/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/php/Makefile.am -------------------------------------------------------------------------------- /libs/esl/php/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/php/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/php/php_ESL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/php/php_ESL.h -------------------------------------------------------------------------------- /libs/esl/php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/php/test.php -------------------------------------------------------------------------------- /libs/esl/python/ESL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python/ESL.py -------------------------------------------------------------------------------- /libs/esl/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python/Makefile -------------------------------------------------------------------------------- /libs/esl/python/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python/events.py -------------------------------------------------------------------------------- /libs/esl/python/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python/server.py -------------------------------------------------------------------------------- /libs/esl/python3/ESL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python3/ESL.py -------------------------------------------------------------------------------- /libs/esl/python3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python3/Makefile -------------------------------------------------------------------------------- /libs/esl/python3/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python3/events.py -------------------------------------------------------------------------------- /libs/esl/python3/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/python3/server.py -------------------------------------------------------------------------------- /libs/esl/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ruby/Makefile -------------------------------------------------------------------------------- /libs/esl/ruby/cflags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ruby/cflags.rb -------------------------------------------------------------------------------- /libs/esl/ruby/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ruby/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/ruby/server3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/ruby/server3.rb -------------------------------------------------------------------------------- /libs/esl/src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/cJSON.c -------------------------------------------------------------------------------- /libs/esl/src/cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/cJSON_Utils.c -------------------------------------------------------------------------------- /libs/esl/src/esl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl.c -------------------------------------------------------------------------------- /libs/esl/src/esl_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl_buffer.c -------------------------------------------------------------------------------- /libs/esl/src/esl_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl_config.c -------------------------------------------------------------------------------- /libs/esl/src/esl_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl_event.c -------------------------------------------------------------------------------- /libs/esl/src/esl_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl_json.c -------------------------------------------------------------------------------- /libs/esl/src/esl_oop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/esl_oop.cpp -------------------------------------------------------------------------------- /libs/esl/src/include/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/include/cc.h -------------------------------------------------------------------------------- /libs/esl/src/include/esl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/src/include/esl.h -------------------------------------------------------------------------------- /libs/esl/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/tcl/Makefile -------------------------------------------------------------------------------- /libs/esl/tcl/esl_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/tcl/esl_wrap.cpp -------------------------------------------------------------------------------- /libs/esl/tcl/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/tcl/pkgIndex.tcl -------------------------------------------------------------------------------- /libs/esl/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/test.pl -------------------------------------------------------------------------------- /libs/esl/testclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/testclient.c -------------------------------------------------------------------------------- /libs/esl/testserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/testserver.c -------------------------------------------------------------------------------- /libs/esl/testserver_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/esl/testserver_fork.c -------------------------------------------------------------------------------- /libs/iksemel/.update: -------------------------------------------------------------------------------- 1 | Mon Jul 15 16:57:11 CDT 2013 2 | -------------------------------------------------------------------------------- /libs/iksemel/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/AUTHORS -------------------------------------------------------------------------------- /libs/iksemel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/COPYING -------------------------------------------------------------------------------- /libs/iksemel/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/ChangeLog -------------------------------------------------------------------------------- /libs/iksemel/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/HACKING -------------------------------------------------------------------------------- /libs/iksemel/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/INSTALL -------------------------------------------------------------------------------- /libs/iksemel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/Makefile.am -------------------------------------------------------------------------------- /libs/iksemel/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/NEWS -------------------------------------------------------------------------------- /libs/iksemel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/README -------------------------------------------------------------------------------- /libs/iksemel/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/TODO -------------------------------------------------------------------------------- /libs/iksemel/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/acinclude.m4 -------------------------------------------------------------------------------- /libs/iksemel/acsite.m4: -------------------------------------------------------------------------------- 1 | m4_include([build/libgnutls.m4]) 2 | 3 | -------------------------------------------------------------------------------- /libs/iksemel/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/configure.ac -------------------------------------------------------------------------------- /libs/iksemel/configure.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/configure.gnu -------------------------------------------------------------------------------- /libs/iksemel/iksemel.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/iksemel.pc.in -------------------------------------------------------------------------------- /libs/iksemel/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libs/iksemel/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/ltmain.sh -------------------------------------------------------------------------------- /libs/iksemel/openssl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/openssl.m4 -------------------------------------------------------------------------------- /libs/iksemel/src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/base64.c -------------------------------------------------------------------------------- /libs/iksemel/src/dom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/dom.c -------------------------------------------------------------------------------- /libs/iksemel/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/filter.c -------------------------------------------------------------------------------- /libs/iksemel/src/iks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/iks.c -------------------------------------------------------------------------------- /libs/iksemel/src/ikstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/ikstack.c -------------------------------------------------------------------------------- /libs/iksemel/src/jabber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/jabber.c -------------------------------------------------------------------------------- /libs/iksemel/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/md5.c -------------------------------------------------------------------------------- /libs/iksemel/src/sax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/sax.c -------------------------------------------------------------------------------- /libs/iksemel/src/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/sha.c -------------------------------------------------------------------------------- /libs/iksemel/src/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/stream.c -------------------------------------------------------------------------------- /libs/iksemel/src/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/src/utility.c -------------------------------------------------------------------------------- /libs/iksemel/tools/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/tools/hash.c -------------------------------------------------------------------------------- /libs/iksemel/tools/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/tools/perf.c -------------------------------------------------------------------------------- /libs/iksemel/tools/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/iksemel/tools/perf.h -------------------------------------------------------------------------------- /libs/libnatpmp/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/LICENCE -------------------------------------------------------------------------------- /libs/libnatpmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/Makefile -------------------------------------------------------------------------------- /libs/libnatpmp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/build.bat -------------------------------------------------------------------------------- /libs/libnatpmp/declspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/declspec.h -------------------------------------------------------------------------------- /libs/libnatpmp/natpmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/natpmp.c -------------------------------------------------------------------------------- /libs/libnatpmp/natpmp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/natpmp.def -------------------------------------------------------------------------------- /libs/libnatpmp/natpmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/natpmp.h -------------------------------------------------------------------------------- /libs/libnatpmp/natpmpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libnatpmp/natpmpc.c -------------------------------------------------------------------------------- /libs/libnatpmp/wingettimeofday.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libscgi/FSSCGI.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/FSSCGI.i -------------------------------------------------------------------------------- /libs/libscgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/Makefile -------------------------------------------------------------------------------- /libs/libscgi/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/perl/Makefile -------------------------------------------------------------------------------- /libs/libscgi/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/protocol.txt -------------------------------------------------------------------------------- /libs/libscgi/src/scgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/src/scgi.c -------------------------------------------------------------------------------- /libs/libscgi/testclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/testclient.c -------------------------------------------------------------------------------- /libs/libscgi/testserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libscgi/testserver.c -------------------------------------------------------------------------------- /libs/libteletone/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 16 17:18:25 EDT 2007 2 | -------------------------------------------------------------------------------- /libs/libteletone/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/AUTHORS -------------------------------------------------------------------------------- /libs/libteletone/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/COPYING -------------------------------------------------------------------------------- /libs/libteletone/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libteletone/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/INSTALL -------------------------------------------------------------------------------- /libs/libteletone/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/NEWS -------------------------------------------------------------------------------- /libs/libteletone/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/README -------------------------------------------------------------------------------- /libs/libteletone/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libteletone/acsite.m4 -------------------------------------------------------------------------------- /libs/libvpx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/.gitignore -------------------------------------------------------------------------------- /libs/libvpx/.update: -------------------------------------------------------------------------------- 1 | Thu Mar 19 03:08:11 UTC 2020 2 | -------------------------------------------------------------------------------- /libs/libvpx/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/AUTHORS -------------------------------------------------------------------------------- /libs/libvpx/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/CHANGELOG -------------------------------------------------------------------------------- /libs/libvpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/LICENSE -------------------------------------------------------------------------------- /libs/libvpx/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/PATENTS -------------------------------------------------------------------------------- /libs/libvpx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/README -------------------------------------------------------------------------------- /libs/libvpx/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/args.c -------------------------------------------------------------------------------- /libs/libvpx/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/args.h -------------------------------------------------------------------------------- /libs/libvpx/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/configure -------------------------------------------------------------------------------- /libs/libvpx/docs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/docs.mk -------------------------------------------------------------------------------- /libs/libvpx/examples.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/examples.mk -------------------------------------------------------------------------------- /libs/libvpx/ivfdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/ivfdec.c -------------------------------------------------------------------------------- /libs/libvpx/ivfdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/ivfdec.h -------------------------------------------------------------------------------- /libs/libvpx/ivfenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/ivfenc.c -------------------------------------------------------------------------------- /libs/libvpx/ivfenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/ivfenc.h -------------------------------------------------------------------------------- /libs/libvpx/keywords.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/keywords.dox -------------------------------------------------------------------------------- /libs/libvpx/libs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/libs.mk -------------------------------------------------------------------------------- /libs/libvpx/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/mainpage.dox -------------------------------------------------------------------------------- /libs/libvpx/md5_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/md5_utils.c -------------------------------------------------------------------------------- /libs/libvpx/md5_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/md5_utils.h -------------------------------------------------------------------------------- /libs/libvpx/rate_hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/rate_hist.c -------------------------------------------------------------------------------- /libs/libvpx/rate_hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/rate_hist.h -------------------------------------------------------------------------------- /libs/libvpx/solution.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/solution.mk -------------------------------------------------------------------------------- /libs/libvpx/test/bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/bench.cc -------------------------------------------------------------------------------- /libs/libvpx/test/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/bench.h -------------------------------------------------------------------------------- /libs/libvpx/test/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/buffer.h -------------------------------------------------------------------------------- /libs/libvpx/test/stress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/stress.sh -------------------------------------------------------------------------------- /libs/libvpx/test/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/test.mk -------------------------------------------------------------------------------- /libs/libvpx/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/util.h -------------------------------------------------------------------------------- /libs/libvpx/test/vpxdec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/vpxdec.sh -------------------------------------------------------------------------------- /libs/libvpx/test/vpxenc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/test/vpxenc.sh -------------------------------------------------------------------------------- /libs/libvpx/third_party/googletest/gtest.mk: -------------------------------------------------------------------------------- 1 | GTEST_SRCS-yes += src/gtest-all.cc 2 | -------------------------------------------------------------------------------- /libs/libvpx/tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/tools.mk -------------------------------------------------------------------------------- /libs/libvpx/tools/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/tools/diff.py -------------------------------------------------------------------------------- /libs/libvpx/tools_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/tools_common.c -------------------------------------------------------------------------------- /libs/libvpx/tools_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/tools_common.h -------------------------------------------------------------------------------- /libs/libvpx/usage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/usage.dox -------------------------------------------------------------------------------- /libs/libvpx/usage_cx.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/usage_cx.dox -------------------------------------------------------------------------------- /libs/libvpx/usage_dx.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/usage_dx.dox -------------------------------------------------------------------------------- /libs/libvpx/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/video_common.h -------------------------------------------------------------------------------- /libs/libvpx/video_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/video_reader.c -------------------------------------------------------------------------------- /libs/libvpx/video_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/video_reader.h -------------------------------------------------------------------------------- /libs/libvpx/video_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/video_writer.c -------------------------------------------------------------------------------- /libs/libvpx/video_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/video_writer.h -------------------------------------------------------------------------------- /libs/libvpx/vp8/vp8cx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vp8/vp8cx.mk -------------------------------------------------------------------------------- /libs/libvpx/vp8/vp8dx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vp8/vp8dx.mk -------------------------------------------------------------------------------- /libs/libvpx/vp9/vp9cx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vp9/vp9cx.mk -------------------------------------------------------------------------------- /libs/libvpx/vp9/vp9dx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vp9/vp9dx.mk -------------------------------------------------------------------------------- /libs/libvpx/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx/vp8.h -------------------------------------------------------------------------------- /libs/libvpx/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx/vp8cx.h -------------------------------------------------------------------------------- /libs/libvpx/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx/vp8dx.h -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/avg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/avg.c -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/prob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/prob.c -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/prob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/prob.h -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/psnr.c -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/psnr.h -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/sad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/sad.c -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/ssim.c -------------------------------------------------------------------------------- /libs/libvpx/vpx_dsp/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpx_dsp/ssim.h -------------------------------------------------------------------------------- /libs/libvpx/vpxdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpxdec.c -------------------------------------------------------------------------------- /libs/libvpx/vpxenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpxenc.c -------------------------------------------------------------------------------- /libs/libvpx/vpxenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpxenc.h -------------------------------------------------------------------------------- /libs/libvpx/vpxstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpxstats.c -------------------------------------------------------------------------------- /libs/libvpx/vpxstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/vpxstats.h -------------------------------------------------------------------------------- /libs/libvpx/warnings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/warnings.c -------------------------------------------------------------------------------- /libs/libvpx/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/warnings.h -------------------------------------------------------------------------------- /libs/libvpx/webmdec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/webmdec.cc -------------------------------------------------------------------------------- /libs/libvpx/webmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/webmdec.h -------------------------------------------------------------------------------- /libs/libvpx/webmenc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/webmenc.cc -------------------------------------------------------------------------------- /libs/libvpx/webmenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/webmenc.h -------------------------------------------------------------------------------- /libs/libvpx/y4menc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/y4menc.c -------------------------------------------------------------------------------- /libs/libvpx/y4menc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/y4menc.h -------------------------------------------------------------------------------- /libs/libvpx/y4minput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/y4minput.c -------------------------------------------------------------------------------- /libs/libvpx/y4minput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libvpx/y4minput.h -------------------------------------------------------------------------------- /libs/libyuv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/AUTHORS -------------------------------------------------------------------------------- /libs/libyuv/Android.bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/Android.bp -------------------------------------------------------------------------------- /libs/libyuv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/Android.mk -------------------------------------------------------------------------------- /libs/libyuv/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/BUILD.gn -------------------------------------------------------------------------------- /libs/libyuv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libyuv/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/DEPS -------------------------------------------------------------------------------- /libs/libyuv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/LICENSE -------------------------------------------------------------------------------- /libs/libyuv/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/OWNERS -------------------------------------------------------------------------------- /libs/libyuv/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/PATENTS -------------------------------------------------------------------------------- /libs/libyuv/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/PRESUBMIT.py -------------------------------------------------------------------------------- /libs/libyuv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/README.md -------------------------------------------------------------------------------- /libs/libyuv/libyuv.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/libyuv.gni -------------------------------------------------------------------------------- /libs/libyuv/linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/linux.mk -------------------------------------------------------------------------------- /libs/libyuv/public.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/public.mk -------------------------------------------------------------------------------- /libs/libyuv/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/pylintrc -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/OWNERS: -------------------------------------------------------------------------------- 1 | phoglund@chromium.org 2 | -------------------------------------------------------------------------------- /libs/libyuv/tools_libyuv/valgrind/memcheck/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /libs/libyuv/util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/Makefile -------------------------------------------------------------------------------- /libs/libyuv/util/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/cpuid.c -------------------------------------------------------------------------------- /libs/libyuv/util/psnr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/psnr.cc -------------------------------------------------------------------------------- /libs/libyuv/util/psnr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/psnr.h -------------------------------------------------------------------------------- /libs/libyuv/util/ssim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/ssim.cc -------------------------------------------------------------------------------- /libs/libyuv/util/ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/util/ssim.h -------------------------------------------------------------------------------- /libs/libyuv/winarm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/libyuv/winarm.mk -------------------------------------------------------------------------------- /libs/miniupnpc/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/LICENCE -------------------------------------------------------------------------------- /libs/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/Makefile -------------------------------------------------------------------------------- /libs/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/README -------------------------------------------------------------------------------- /libs/miniupnpc/bsdqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/bsdqueue.h -------------------------------------------------------------------------------- /libs/miniupnpc/declspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/declspec.h -------------------------------------------------------------------------------- /libs/miniupnpc/minisoap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minisoap.c -------------------------------------------------------------------------------- /libs/miniupnpc/minisoap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minisoap.h -------------------------------------------------------------------------------- /libs/miniupnpc/minissdpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minissdpc.c -------------------------------------------------------------------------------- /libs/miniupnpc/minissdpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minissdpc.h -------------------------------------------------------------------------------- /libs/miniupnpc/miniupnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/miniupnpc.c -------------------------------------------------------------------------------- /libs/miniupnpc/miniupnpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/miniupnpc.h -------------------------------------------------------------------------------- /libs/miniupnpc/miniwget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/miniwget.c -------------------------------------------------------------------------------- /libs/miniupnpc/miniwget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/miniwget.h -------------------------------------------------------------------------------- /libs/miniupnpc/minixml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minixml.c -------------------------------------------------------------------------------- /libs/miniupnpc/minixml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/minixml.h -------------------------------------------------------------------------------- /libs/miniupnpc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/setup.py -------------------------------------------------------------------------------- /libs/miniupnpc/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/miniupnpc/upnpc.c -------------------------------------------------------------------------------- /libs/srtp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/.clang-format -------------------------------------------------------------------------------- /libs/srtp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/.gitignore -------------------------------------------------------------------------------- /libs/srtp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/.travis.yml -------------------------------------------------------------------------------- /libs/srtp/.update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/.update -------------------------------------------------------------------------------- /libs/srtp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/AUTHORS -------------------------------------------------------------------------------- /libs/srtp/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/CHANGES -------------------------------------------------------------------------------- /libs/srtp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/srtp/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/CODEOWNERS -------------------------------------------------------------------------------- /libs/srtp/COPYING: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/LICENSE -------------------------------------------------------------------------------- /libs/srtp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/Makefile.am -------------------------------------------------------------------------------- /libs/srtp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/README -------------------------------------------------------------------------------- /libs/srtp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/README.md -------------------------------------------------------------------------------- /libs/srtp/config.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/config.hw -------------------------------------------------------------------------------- /libs/srtp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/configure.ac -------------------------------------------------------------------------------- /libs/srtp/configure.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/configure.gnu -------------------------------------------------------------------------------- /libs/srtp/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/doc/Doxyfile.in -------------------------------------------------------------------------------- /libs/srtp/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/doc/Makefile.in -------------------------------------------------------------------------------- /libs/srtp/doc/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/doc/docs.css -------------------------------------------------------------------------------- /libs/srtp/doc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/doc/meson.build -------------------------------------------------------------------------------- /libs/srtp/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/format.sh -------------------------------------------------------------------------------- /libs/srtp/include/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/include/srtp.h -------------------------------------------------------------------------------- /libs/srtp/libsrtp2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/libsrtp2.pc.in -------------------------------------------------------------------------------- /libs/srtp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/meson.build -------------------------------------------------------------------------------- /libs/srtp/srtp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/srtp.def -------------------------------------------------------------------------------- /libs/srtp/srtp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/srtp.sln -------------------------------------------------------------------------------- /libs/srtp/srtp/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/srtp/srtp.c -------------------------------------------------------------------------------- /libs/srtp/srtp2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/srtp2.vcxproj -------------------------------------------------------------------------------- /libs/srtp/test/cutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/cutest.h -------------------------------------------------------------------------------- /libs/srtp/test/getopt_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/getopt_s.c -------------------------------------------------------------------------------- /libs/srtp/test/getopt_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/getopt_s.h -------------------------------------------------------------------------------- /libs/srtp/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/meson.build -------------------------------------------------------------------------------- /libs/srtp/test/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/rtp.c -------------------------------------------------------------------------------- /libs/srtp/test/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/rtp.h -------------------------------------------------------------------------------- /libs/srtp/test/rtpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/rtpw.c -------------------------------------------------------------------------------- /libs/srtp/test/test_srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/test_srtp.c -------------------------------------------------------------------------------- /libs/srtp/test/ut_sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/ut_sim.c -------------------------------------------------------------------------------- /libs/srtp/test/ut_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/ut_sim.h -------------------------------------------------------------------------------- /libs/srtp/test/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/util.c -------------------------------------------------------------------------------- /libs/srtp/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/util.h -------------------------------------------------------------------------------- /libs/srtp/test/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/test/words.txt -------------------------------------------------------------------------------- /libs/srtp/timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/timing -------------------------------------------------------------------------------- /libs/srtp/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/srtp/update.sh -------------------------------------------------------------------------------- /libs/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/stb/stb_image.h -------------------------------------------------------------------------------- /libs/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/stb/stb_image_write.h -------------------------------------------------------------------------------- /libs/win32/apr/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/apr/fspr.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/win32/apr/fspr.hw -------------------------------------------------------------------------------- /libs/win32/celt/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/win32/celt/config.h -------------------------------------------------------------------------------- /libs/win32/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/iksemel/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libav/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libpng/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libresample/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libshout/compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/win32/libvpx/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/pthread/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/sofia/cleancount: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /libs/win32/speex/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/speex/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/win32/speex/config.h -------------------------------------------------------------------------------- /libs/win32/sqlite/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/xmlrpc-c/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/GNUmakefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/README -------------------------------------------------------------------------------- /libs/xmlrpc-c/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/common.mk -------------------------------------------------------------------------------- /libs/xmlrpc-c/config.mk.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/config.mk.in -------------------------------------------------------------------------------- /libs/xmlrpc-c/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/configure.ac -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/COPYING -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/CREDITS -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/HISTORY -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/INSTALL -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/SECURITY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/SECURITY -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/TESTING -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/doc/TODO -------------------------------------------------------------------------------- /libs/xmlrpc-c/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/install-sh -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/lib/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/.cvsignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/abyss/src/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/curl_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/gennmtab/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/expat/xmltok/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/libwww_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/lib/util/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/missing -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/double.c -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/double.h -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/json.c -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/method.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/method.c -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/src/method.h -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/abyss.h: -------------------------------------------------------------------------------- 1 | void 2 | test_abyss(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/cgi.h: -------------------------------------------------------------------------------- 1 | void 2 | test_server_cgi(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/client.h: -------------------------------------------------------------------------------- 1 | void 2 | test_client(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/parse_xml.h: -------------------------------------------------------------------------------- 1 | void 2 | test_parse_xml(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/serialize.h: -------------------------------------------------------------------------------- 1 | void 2 | test_serialize(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/server_abyss.h: -------------------------------------------------------------------------------- 1 | void 2 | test_server_abyss(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/test/value.h: -------------------------------------------------------------------------------- 1 | void 2 | test_value(void); 3 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/srcdir.mk.in: -------------------------------------------------------------------------------- 1 | SRCDIR=@abs_srcdir@ 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/good-3.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:RI -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-1.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc2:RI -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-2.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:ROUstringBxyz -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/binmode-rpc-kit/examples/invalid-3.binmode: -------------------------------------------------------------------------------- 1 | binmode-rpc:R< -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xml-rpc-api2cpp/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xmlrpc/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/tools/xmlrpc_transport/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/version.h -------------------------------------------------------------------------------- /libs/xmlrpc-c/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/libs/xmlrpc-c/version.mk -------------------------------------------------------------------------------- /msbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/msbuild.cmd -------------------------------------------------------------------------------- /scan_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scan_build.sh -------------------------------------------------------------------------------- /scripts/basic/hello.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/basic/hello.bas -------------------------------------------------------------------------------- /scripts/bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/bisect -------------------------------------------------------------------------------- /scripts/c/socket2me/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/c/socket2me/README -------------------------------------------------------------------------------- /scripts/check-gitignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/check-gitignore.sh -------------------------------------------------------------------------------- /scripts/ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/common.sh -------------------------------------------------------------------------------- /scripts/ci/config-rayo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/config-rayo.sh -------------------------------------------------------------------------------- /scripts/ci/erlang-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/erlang-rpm.sh -------------------------------------------------------------------------------- /scripts/ci/rpmbuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/rpmbuilder.sh -------------------------------------------------------------------------------- /scripts/ci/sounds-music.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/sounds-music.sh -------------------------------------------------------------------------------- /scripts/ci/src_tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/ci/src_tarball.sh -------------------------------------------------------------------------------- /scripts/ci/test_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./bootstrap.sh -j 3 | ./configure -C 4 | make 5 | -------------------------------------------------------------------------------- /scripts/dailys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/dailys.sh -------------------------------------------------------------------------------- /scripts/debug_sofia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/debug_sofia.sh -------------------------------------------------------------------------------- /scripts/freeswitch-gcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/freeswitch-gcore -------------------------------------------------------------------------------- /scripts/freeswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/freeswitch.sh -------------------------------------------------------------------------------- /scripts/fsxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/fsxs.in -------------------------------------------------------------------------------- /scripts/gentls_cert.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/gentls_cert.in -------------------------------------------------------------------------------- /scripts/javascript/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/javascript/api.js -------------------------------------------------------------------------------- /scripts/lua/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/api.lua -------------------------------------------------------------------------------- /scripts/lua/callback.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/callback.lua -------------------------------------------------------------------------------- /scripts/lua/directory.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/directory.gram -------------------------------------------------------------------------------- /scripts/lua/directory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/directory.lua -------------------------------------------------------------------------------- /scripts/lua/helloworld.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/helloworld.lua -------------------------------------------------------------------------------- /scripts/lua/lua_ivr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/lua_ivr.lua -------------------------------------------------------------------------------- /scripts/lua/mwi_event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/mwi_event.lua -------------------------------------------------------------------------------- /scripts/lua/originate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/originate.lua -------------------------------------------------------------------------------- /scripts/lua/sound_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/sound_test.lua -------------------------------------------------------------------------------- /scripts/lua/tdd_echo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/lua/tdd_echo.lua -------------------------------------------------------------------------------- /scripts/m4a-to-wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/m4a-to-wav.sh -------------------------------------------------------------------------------- /scripts/mk_fs_fhs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/mk_fs_fhs.sh -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/perl/FreeSWITCH/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /scripts/perl/add_user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/add_user -------------------------------------------------------------------------------- /scripts/perl/blacklist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/blacklist.pl -------------------------------------------------------------------------------- /scripts/perl/call.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/call.cgi -------------------------------------------------------------------------------- /scripts/perl/cnam.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/cnam.cgi -------------------------------------------------------------------------------- /scripts/perl/fax.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/fax.cgi -------------------------------------------------------------------------------- /scripts/perl/fs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/fs.pl -------------------------------------------------------------------------------- /scripts/perl/fsconsole.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/fsconsole.pl -------------------------------------------------------------------------------- /scripts/perl/fslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/fslog -------------------------------------------------------------------------------- /scripts/perl/g729_activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/g729_activate -------------------------------------------------------------------------------- /scripts/perl/honeypot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/honeypot.pl -------------------------------------------------------------------------------- /scripts/perl/mkgws.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/mkgws.pl -------------------------------------------------------------------------------- /scripts/perl/mwi_event.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/mwi_event.pl -------------------------------------------------------------------------------- /scripts/perl/originate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/originate.pl -------------------------------------------------------------------------------- /scripts/perl/perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/perltidyrc -------------------------------------------------------------------------------- /scripts/perl/puppet.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/puppet.cgi -------------------------------------------------------------------------------- /scripts/perl/rpc.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/rpc.cgi -------------------------------------------------------------------------------- /scripts/perl/sendmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/sendmail -------------------------------------------------------------------------------- /scripts/perl/snom-pnpd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/snom-pnpd.pl -------------------------------------------------------------------------------- /scripts/perl/sock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/sock.pl -------------------------------------------------------------------------------- /scripts/perl/tag.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/tag.pl -------------------------------------------------------------------------------- /scripts/perl/wplookup.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/perl/wplookup.cgi -------------------------------------------------------------------------------- /scripts/php/call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/php/call.php -------------------------------------------------------------------------------- /scripts/py_modules/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /scripts/python/mytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/python/mytest.py -------------------------------------------------------------------------------- /scripts/rss/rss2ivr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/rss/rss2ivr.pl -------------------------------------------------------------------------------- /scripts/rss/syncrss.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/rss/syncrss.pl -------------------------------------------------------------------------------- /scripts/setup-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/setup-git.sh -------------------------------------------------------------------------------- /scripts/sql/cdr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/sql/cdr.sql -------------------------------------------------------------------------------- /scripts/tagscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/tagscript.sh -------------------------------------------------------------------------------- /scripts/trace/sipgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/trace/sipgrep -------------------------------------------------------------------------------- /scripts/yes_no.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/scripts/yes_no.gram -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = mod 2 | -------------------------------------------------------------------------------- /src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/cJSON.c -------------------------------------------------------------------------------- /src/cJSON_Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/cJSON_Utils.c -------------------------------------------------------------------------------- /src/fs_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/fs_encode.c -------------------------------------------------------------------------------- /src/fs_tts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/fs_tts.c -------------------------------------------------------------------------------- /src/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/g711.c -------------------------------------------------------------------------------- /src/include/SimpleGlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/SimpleGlob.h -------------------------------------------------------------------------------- /src/include/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/cc.h -------------------------------------------------------------------------------- /src/include/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/g711.h -------------------------------------------------------------------------------- /src/include/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch.h -------------------------------------------------------------------------------- /src/include/switch_apr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_apr.h -------------------------------------------------------------------------------- /src/include/switch_cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_cJSON.h -------------------------------------------------------------------------------- /src/include/switch_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_core.h -------------------------------------------------------------------------------- /src/include/switch_cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_cpp.h -------------------------------------------------------------------------------- /src/include/switch_curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_curl.h -------------------------------------------------------------------------------- /src/include/switch_dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_dso.h -------------------------------------------------------------------------------- /src/include/switch_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_event.h -------------------------------------------------------------------------------- /src/include/switch_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_frame.h -------------------------------------------------------------------------------- /src/include/switch_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_image.h -------------------------------------------------------------------------------- /src/include/switch_ivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_ivr.h -------------------------------------------------------------------------------- /src/include/switch_json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_json.h -------------------------------------------------------------------------------- /src/include/switch_limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_limit.h -------------------------------------------------------------------------------- /src/include/switch_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_log.h -------------------------------------------------------------------------------- /src/include/switch_msrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_msrp.h -------------------------------------------------------------------------------- /src/include/switch_nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_nat.h -------------------------------------------------------------------------------- /src/include/switch_odbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_odbc.h -------------------------------------------------------------------------------- /src/include/switch_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_regex.h -------------------------------------------------------------------------------- /src/include/switch_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_rtp.h -------------------------------------------------------------------------------- /src/include/switch_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_ssl.h -------------------------------------------------------------------------------- /src/include/switch_stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_stun.h -------------------------------------------------------------------------------- /src/include/switch_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_types.h -------------------------------------------------------------------------------- /src/include/switch_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_utf8.h -------------------------------------------------------------------------------- /src/include/switch_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_utils.h -------------------------------------------------------------------------------- /src/include/switch_vad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_vad.h -------------------------------------------------------------------------------- /src/include/switch_vpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_vpx.h -------------------------------------------------------------------------------- /src/include/switch_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/switch_xml.h -------------------------------------------------------------------------------- /src/include/xswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/include/xswitch.h -------------------------------------------------------------------------------- /src/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/inet_pton.c -------------------------------------------------------------------------------- /src/mod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/.gitignore -------------------------------------------------------------------------------- /src/mod/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/mod/Makefile.am -------------------------------------------------------------------------------- /src/mod/applications/mod_distributor/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/applications/mod_snapshot/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/applications/mod_vmd/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/asr_tts/mod_pocketsphinx/.gitignore: -------------------------------------------------------------------------------- 1 | /Win32/ -------------------------------------------------------------------------------- /src/mod/asr_tts/mod_tts_commandline/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/acinclude.m4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/cat-id-tbl.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/gsmlib/gsmlib-1.10-patched-13ubuntu/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_gsmopen/libctb-0.16/lib/EMPTY: -------------------------------------------------------------------------------- 1 | ciao 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_h323/bugs: -------------------------------------------------------------------------------- 1 | seems none for now -------------------------------------------------------------------------------- /src/mod/endpoints/mod_khomp/include/revision.h: -------------------------------------------------------------------------------- 1 | #define MOD_KHOMP_VERSION "1.0 - (rev: 6034)" 2 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_rtmp/libamf/src/amf3.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_sofia/test/test_run_sipp.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | ./sipp-based-tests 3 | 4 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_verto/mcast/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /src/mod/event_handlers/mod_event_test/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /src/mod/formats/mod_shout/MPGLIB_TODO: -------------------------------------------------------------------------------- 1 | 2 | apply 'VBR' bugfix 3 | -------------------------------------------------------------------------------- /src/mod/languages/mod_java/mod_java.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/languages/mod_lua/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/languages/mod_managed/.gitignore: -------------------------------------------------------------------------------- 1 | /managed/obj/ -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/compiler.opts: -------------------------------------------------------------------------------- 1 | /IC:\perl\lib\CORE -------------------------------------------------------------------------------- /src/mod/languages/mod_perl/compiler.opts.in: -------------------------------------------------------------------------------- 1 | /I@PERL_INCLUDE@ -------------------------------------------------------------------------------- /src/mod/sdk/autotools/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | autoreconf -i -f 3 | -------------------------------------------------------------------------------- /src/mod/xml_int/mod_xml_radius/.gitignore: -------------------------------------------------------------------------------- 1 | freeradius-client* -------------------------------------------------------------------------------- /src/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch.c -------------------------------------------------------------------------------- /src/switch_apr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_apr.c -------------------------------------------------------------------------------- /src/switch_apr_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_apr_queue.c -------------------------------------------------------------------------------- /src/switch_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_buffer.c -------------------------------------------------------------------------------- /src/switch_caller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_caller.c -------------------------------------------------------------------------------- /src/switch_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_channel.c -------------------------------------------------------------------------------- /src/switch_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_config.c -------------------------------------------------------------------------------- /src/switch_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_console.c -------------------------------------------------------------------------------- /src/switch_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core.c -------------------------------------------------------------------------------- /src/switch_core_asr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_asr.c -------------------------------------------------------------------------------- /src/switch_core_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_cert.c -------------------------------------------------------------------------------- /src/switch_core_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_codec.c -------------------------------------------------------------------------------- /src/switch_core_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_db.c -------------------------------------------------------------------------------- /src/switch_core_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_file.c -------------------------------------------------------------------------------- /src/switch_core_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_hash.c -------------------------------------------------------------------------------- /src/switch_core_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_io.c -------------------------------------------------------------------------------- /src/switch_core_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_media.c -------------------------------------------------------------------------------- /src/switch_core_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_memory.c -------------------------------------------------------------------------------- /src/switch_core_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_rwlock.c -------------------------------------------------------------------------------- /src/switch_core_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_session.c -------------------------------------------------------------------------------- /src/switch_core_speech.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_speech.c -------------------------------------------------------------------------------- /src/switch_core_sqldb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_sqldb.c -------------------------------------------------------------------------------- /src/switch_core_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_timer.c -------------------------------------------------------------------------------- /src/switch_core_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_core_video.c -------------------------------------------------------------------------------- /src/switch_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_cpp.cpp -------------------------------------------------------------------------------- /src/switch_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_curl.c -------------------------------------------------------------------------------- /src/switch_dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_dso.c -------------------------------------------------------------------------------- /src/switch_estimators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_estimators.c -------------------------------------------------------------------------------- /src/switch_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_event.c -------------------------------------------------------------------------------- /src/switch_hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_hashtable.c -------------------------------------------------------------------------------- /src/switch_ivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr.c -------------------------------------------------------------------------------- /src/switch_ivr_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_async.c -------------------------------------------------------------------------------- /src/switch_ivr_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_bridge.c -------------------------------------------------------------------------------- /src/switch_ivr_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_menu.c -------------------------------------------------------------------------------- /src/switch_ivr_originate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_originate.c -------------------------------------------------------------------------------- /src/switch_ivr_play_say.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_play_say.c -------------------------------------------------------------------------------- /src/switch_ivr_say.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_ivr_say.c -------------------------------------------------------------------------------- /src/switch_jitterbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_jitterbuffer.c -------------------------------------------------------------------------------- /src/switch_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_json.c -------------------------------------------------------------------------------- /src/switch_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_limit.c -------------------------------------------------------------------------------- /src/switch_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_log.c -------------------------------------------------------------------------------- /src/switch_mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_mprintf.c -------------------------------------------------------------------------------- /src/switch_msrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_msrp.c -------------------------------------------------------------------------------- /src/switch_nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_nat.c -------------------------------------------------------------------------------- /src/switch_odbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_odbc.c -------------------------------------------------------------------------------- /src/switch_packetizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_packetizer.c -------------------------------------------------------------------------------- /src/switch_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_pcm.c -------------------------------------------------------------------------------- /src/switch_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_profile.c -------------------------------------------------------------------------------- /src/switch_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_regex.c -------------------------------------------------------------------------------- /src/switch_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_resample.c -------------------------------------------------------------------------------- /src/switch_rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_rtp.c -------------------------------------------------------------------------------- /src/switch_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_scheduler.c -------------------------------------------------------------------------------- /src/switch_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_sdp.c -------------------------------------------------------------------------------- /src/switch_spandsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_spandsp.c -------------------------------------------------------------------------------- /src/switch_speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_speex.c -------------------------------------------------------------------------------- /src/switch_stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_stun.c -------------------------------------------------------------------------------- /src/switch_swig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_swig.c -------------------------------------------------------------------------------- /src/switch_swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_swig.i -------------------------------------------------------------------------------- /src/switch_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_time.c -------------------------------------------------------------------------------- /src/switch_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_utf8.c -------------------------------------------------------------------------------- /src/switch_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_utils.c -------------------------------------------------------------------------------- /src/switch_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_vad.c -------------------------------------------------------------------------------- /src/switch_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_version.c -------------------------------------------------------------------------------- /src/switch_vpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_vpx.c -------------------------------------------------------------------------------- /src/switch_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_xml.c -------------------------------------------------------------------------------- /src/switch_xml_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/switch_xml_config.c -------------------------------------------------------------------------------- /src/tone2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/tone2wav.c -------------------------------------------------------------------------------- /src/xswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/src/xswitch.c -------------------------------------------------------------------------------- /support-d/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/.bashrc -------------------------------------------------------------------------------- /support-d/.emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/.emacs -------------------------------------------------------------------------------- /support-d/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/.gdbinit -------------------------------------------------------------------------------- /support-d/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/.screenrc -------------------------------------------------------------------------------- /support-d/aliases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/aliases.sql -------------------------------------------------------------------------------- /support-d/c3p0.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/c3p0.pub -------------------------------------------------------------------------------- /support-d/freeswitch.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/freeswitch.pub -------------------------------------------------------------------------------- /support-d/fscore_pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/fscore_pb -------------------------------------------------------------------------------- /support-d/gdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/gdb/README.md -------------------------------------------------------------------------------- /support-d/gdb/deadlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/gdb/deadlock.py -------------------------------------------------------------------------------- /support-d/git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/git-prompt.sh -------------------------------------------------------------------------------- /support-d/prereq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/prereq.sh -------------------------------------------------------------------------------- /support-d/rbfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/rbfs -------------------------------------------------------------------------------- /support-d/shinzon.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/shinzon.pub -------------------------------------------------------------------------------- /support-d/utils/bt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/bt.sh -------------------------------------------------------------------------------- /support-d/utils/btgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/btgrep -------------------------------------------------------------------------------- /support-d/utils/filebug.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/filebug.pl -------------------------------------------------------------------------------- /support-d/utils/fixbug.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/fixbug.pl -------------------------------------------------------------------------------- /support-d/utils/gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/gl -------------------------------------------------------------------------------- /support-d/utils/hashfinder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/hashfinder -------------------------------------------------------------------------------- /support-d/utils/rwlock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/support-d/utils/rwlock.pl -------------------------------------------------------------------------------- /swig_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/swig_common.i -------------------------------------------------------------------------------- /tests/unit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/.gitignore -------------------------------------------------------------------------------- /tests/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/Makefile.am -------------------------------------------------------------------------------- /tests/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/README -------------------------------------------------------------------------------- /tests/unit/run-tests.mk: -------------------------------------------------------------------------------- 1 | .DEFAULT: 2 | ./test.sh "$@" 3 | 4 | all: $(TEST_LIST) 5 | 6 | -------------------------------------------------------------------------------- /tests/unit/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/run-tests.sh -------------------------------------------------------------------------------- /tests/unit/switch_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_core.c -------------------------------------------------------------------------------- /tests/unit/switch_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_event.c -------------------------------------------------------------------------------- /tests/unit/switch_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_hash.c -------------------------------------------------------------------------------- /tests/unit/switch_hold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_hold.c -------------------------------------------------------------------------------- /tests/unit/switch_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_log.c -------------------------------------------------------------------------------- /tests/unit/switch_rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_rtp.c -------------------------------------------------------------------------------- /tests/unit/switch_sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_sip.c -------------------------------------------------------------------------------- /tests/unit/switch_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_utils.c -------------------------------------------------------------------------------- /tests/unit/switch_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_vad.c -------------------------------------------------------------------------------- /tests/unit/switch_vpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_vpx.c -------------------------------------------------------------------------------- /tests/unit/switch_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/switch_xml.c -------------------------------------------------------------------------------- /tests/unit/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/test.sh -------------------------------------------------------------------------------- /tests/unit/test_sofia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/tests/unit/test_sofia.c -------------------------------------------------------------------------------- /w32/Console/FreeSwitchConsole.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /w32/Library/FreeSwitchCoreLib.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /w32/Setup/FullVersion.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/FullVersion.cmd -------------------------------------------------------------------------------- /w32/Setup/Sounds/.gitignore: -------------------------------------------------------------------------------- 1 | Fragments 2 | bin 3 | obj 4 | -------------------------------------------------------------------------------- /w32/Setup/filter.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/Setup/filter.xslt -------------------------------------------------------------------------------- /w32/apr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/apr.props -------------------------------------------------------------------------------- /w32/basedir.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/basedir.props -------------------------------------------------------------------------------- /w32/broadvoice.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/broadvoice.props -------------------------------------------------------------------------------- /w32/curl-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/curl-version.props -------------------------------------------------------------------------------- /w32/curl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/curl.props -------------------------------------------------------------------------------- /w32/download_LAME.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_LAME.props -------------------------------------------------------------------------------- /w32/download_LDNS.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_LDNS.props -------------------------------------------------------------------------------- /w32/download_OGG.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_OGG.props -------------------------------------------------------------------------------- /w32/download_celt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_celt.props -------------------------------------------------------------------------------- /w32/download_iLBC.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_iLBC.props -------------------------------------------------------------------------------- /w32/download_opus.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_opus.props -------------------------------------------------------------------------------- /w32/download_tiff.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/download_tiff.props -------------------------------------------------------------------------------- /w32/extdll.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/extdll.props -------------------------------------------------------------------------------- /w32/extlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/extlib.props -------------------------------------------------------------------------------- /w32/ffmpeg.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/ffmpeg.props -------------------------------------------------------------------------------- /w32/flite-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/flite-version.props -------------------------------------------------------------------------------- /w32/flite.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/flite.props -------------------------------------------------------------------------------- /w32/freetype.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/freetype.props -------------------------------------------------------------------------------- /w32/g722_1.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/g722_1.props -------------------------------------------------------------------------------- /w32/gawk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/gawk.props -------------------------------------------------------------------------------- /w32/ilbc-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/ilbc-version.props -------------------------------------------------------------------------------- /w32/ilbc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/ilbc.props -------------------------------------------------------------------------------- /w32/libav.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libav.props -------------------------------------------------------------------------------- /w32/libcodec2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libcodec2.props -------------------------------------------------------------------------------- /w32/libks-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libks-version.props -------------------------------------------------------------------------------- /w32/libks.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libks.props -------------------------------------------------------------------------------- /w32/libpng.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libpng.props -------------------------------------------------------------------------------- /w32/libpq-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libpq-version.props -------------------------------------------------------------------------------- /w32/libpq.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libpq.props -------------------------------------------------------------------------------- /w32/libsilk.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libsilk.props -------------------------------------------------------------------------------- /w32/libsndfile.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libsndfile.props -------------------------------------------------------------------------------- /w32/libx264.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/libx264.props -------------------------------------------------------------------------------- /w32/lua-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/lua-version.props -------------------------------------------------------------------------------- /w32/lua.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/lua.props -------------------------------------------------------------------------------- /w32/module_debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/module_debug.props -------------------------------------------------------------------------------- /w32/modules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/modules.props -------------------------------------------------------------------------------- /w32/opencv.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/opencv.props -------------------------------------------------------------------------------- /w32/openssl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/openssl.props -------------------------------------------------------------------------------- /w32/pcre-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/pcre-version.props -------------------------------------------------------------------------------- /w32/pcre.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/pcre.props -------------------------------------------------------------------------------- /w32/rabbitmq-c.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/rabbitmq-c.props -------------------------------------------------------------------------------- /w32/sofia-sip.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/sofia-sip.props -------------------------------------------------------------------------------- /w32/sound_tools.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/sound_tools.props -------------------------------------------------------------------------------- /w32/spandsp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/spandsp.props -------------------------------------------------------------------------------- /w32/tiff-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/tiff-version.props -------------------------------------------------------------------------------- /w32/tiff.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/tiff.props -------------------------------------------------------------------------------- /w32/v8-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/v8-version.props -------------------------------------------------------------------------------- /w32/v8.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/v8.props -------------------------------------------------------------------------------- /w32/vsyasm.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/vsyasm.props -------------------------------------------------------------------------------- /w32/winlibs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/winlibs.props -------------------------------------------------------------------------------- /w32/xmlrpc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/xmlrpc.props -------------------------------------------------------------------------------- /w32/yasm.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/yasm.props -------------------------------------------------------------------------------- /w32/zlib-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/zlib-version.props -------------------------------------------------------------------------------- /w32/zlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/w32/zlib.props -------------------------------------------------------------------------------- /web/etc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/planet/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yum/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/yum/GPL -------------------------------------------------------------------------------- /yum/freeswitch.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/yum/freeswitch.repo -------------------------------------------------------------------------------- /yum/rpmbuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rts-cn/rts/HEAD/yum/rpmbuilder.sh --------------------------------------------------------------------------------