├── .gitattributes ├── .gitignore ├── Freeswitch.2005.unsupported.sln ├── Freeswitch.2008.express.unsupported.sln ├── Freeswitch.2008.sln.debug.bat ├── Freeswitch.2008.sln.release.bat ├── Freeswitch.2008.unsupported.sln ├── Freeswitch.2010.express.sln ├── Freeswitch.2010.sln ├── Freeswitch.2012.sln ├── Freeswitch.2012.sln.bat ├── INSTALL ├── Makefile.am ├── 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.html │ ├── freeswitch.mxml │ ├── freeswitch.swf │ ├── jquery-1.4.2.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 ├── FindAPRUtil.cmake ├── FindLibedit.cmake └── FindSndfile.cmake ├── conf ├── curl │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── alsa.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── dialplan_directory.conf.xml │ │ ├── dingaling.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 │ │ ├── openzap.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 │ │ ├── spidermonkey.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 │ │ ├── openzap.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 │ │ ├── spidermonkey.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 ├── 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 │ │ ├── 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 └── vanilla │ ├── README_IMPORTANT.txt │ ├── autoload_configs │ ├── abstraction.conf.xml │ ├── acl.conf.xml │ ├── alsa.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 │ ├── console.conf.xml │ ├── db.conf.xml │ ├── dialplan_directory.conf.xml │ ├── dingaling.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 │ ├── hash.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 │ ├── 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 │ ├── presence_map.conf.xml │ ├── python.conf.xml │ ├── redis.conf.xml │ ├── rss.conf.xml │ ├── rtmp.conf.xml │ ├── sangoma_codec.conf.xml │ ├── shout.conf.xml │ ├── skinny.conf.xml │ ├── sofia.conf.xml │ ├── spandsp.conf.xml │ ├── spidermonkey.conf.xml │ ├── switch.conf.xml │ ├── syslog.conf.xml │ ├── timezones.conf.xml │ ├── translate.conf.xml │ ├── tts_commandline.conf.xml │ ├── unicall.conf.xml │ ├── unimrcp.conf.xml │ ├── v8.conf.xml │ ├── voicemail.conf.xml │ ├── voicemail_ivr.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 │ ├── jingle_profiles │ ├── client.xml │ └── server.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 │ ├── mrcp_profiles │ ├── loquendo-7-mrcp-v2.xml │ ├── nuance-1.0.0-mrcp-v1.xml │ ├── nuance-5.0-mrcp-v1.xml │ ├── nuance-5.0-mrcp-v2.xml │ ├── unimrcpserver-mrcp-v1.xml │ ├── vestec-mrcp-v1.xml │ └── voxeo-prophecy-8.0-mrcp-v1.xml │ ├── notify-voicemail.tpl │ ├── sip_profiles │ ├── external.xml │ ├── external │ │ └── example.xml │ ├── internal-ipv6.xml │ ├── internal.xml │ └── internal │ │ └── example.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 ├── 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-spidermonkey.install.tmpl ├── freeswitch-systemd.freeswitch.service ├── freeswitch-systemd.install ├── freeswitch-sysvinit.freeswitch.default ├── freeswitch-sysvinit.freeswitch.init ├── freeswitch.install ├── freeswitch.postinst ├── freeswitch.postrm ├── freeswitch.preinst ├── freeswitch.prerm ├── gbp.conf ├── libfreeswitch-dev.install ├── libfreeswitch1.install ├── license-reconcile.yml ├── rules ├── source │ └── format └── util.sh ├── devel-bootstrap.sh ├── docs ├── AUTHORS ├── COPYING ├── ChangeLog ├── Debugging ├── Doxygen.conf ├── JavaScript.txt ├── SubmittingPatches ├── docs.2008.vcproj ├── docs.2010.vcxproj ├── docs.2012.vcxproj ├── docs.vcproj ├── man │ ├── .gitignore │ └── freeswitch.1.ronn ├── phrase │ ├── README.TXT │ ├── 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 ├── erlang.spec ├── freeswitch-config-rayo.spec ├── freeswitch-sounds-en-us-callie.spec ├── freeswitch-sounds-music.spec ├── freeswitch-sounds-ru-RU-elena.spec ├── freeswitch-sounds-sv-se-jakob.spec ├── freeswitch.spec ├── fscomm ├── .gitignore ├── FSComm.2008.vcproj ├── FSComm.2010.vcxproj ├── FSComm.2012.vcxproj ├── 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 ├── libs ├── .gitignore ├── apr-util │ ├── .update │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL.MySQL │ ├── LICENSE │ ├── Makefile.in │ ├── NOTICE │ ├── NWGNUmakefile │ ├── apr-util.pc.in │ ├── apr-util.spec │ ├── aprutil.dsp │ ├── aprutil.dsw │ ├── apu-config.in │ ├── buckets │ │ ├── apr_brigade.c │ │ ├── apr_buckets.c │ │ ├── apr_buckets_alloc.c │ │ ├── apr_buckets_eos.c │ │ ├── apr_buckets_file.c │ │ ├── apr_buckets_flush.c │ │ ├── apr_buckets_heap.c │ │ ├── apr_buckets_mmap.c │ │ ├── apr_buckets_pipe.c │ │ ├── apr_buckets_pool.c │ │ ├── apr_buckets_refcount.c │ │ ├── apr_buckets_simple.c │ │ └── apr_buckets_socket.c │ ├── build-outputs.mk │ ├── build.conf │ ├── build │ │ ├── apu-conf.m4 │ │ ├── apu-hints.m4 │ │ ├── apu-iconv.m4 │ │ ├── dbd.m4 │ │ ├── dbm.m4 │ │ ├── find_apu.m4 │ │ ├── mkdir.sh │ │ ├── pkg │ │ │ ├── README │ │ │ ├── buildpkg.sh │ │ │ └── pkginfo.in │ │ ├── rpm │ │ │ └── apr-util.spec.in │ │ └── w32locatedb.pl │ ├── buildconf │ ├── config.layout │ ├── configure.ac │ ├── configure.gnu │ ├── crypto │ │ ├── apr_md4.c │ │ ├── apr_md5.c │ │ ├── apr_sha1.c │ │ ├── getuuid.c │ │ └── uuid.c │ ├── dbd │ │ ├── apr_dbd.c │ │ ├── apr_dbd_pgsql.c │ │ ├── apr_dbd_sqlite2.c │ │ └── apr_dbd_sqlite3.c │ ├── dbm │ │ ├── apr_dbm.c │ │ ├── apr_dbm_berkeleydb.c │ │ ├── apr_dbm_gdbm.c │ │ ├── apr_dbm_ndbm.c │ │ ├── apr_dbm_sdbm.c │ │ └── sdbm │ │ │ ├── sdbm.c │ │ │ ├── sdbm_hash.c │ │ │ ├── sdbm_lock.c │ │ │ ├── sdbm_pair.c │ │ │ ├── sdbm_pair.h │ │ │ ├── sdbm_private.h │ │ │ └── sdbm_tune.h │ ├── docs │ │ └── doxygen.conf │ ├── encoding │ │ └── apr_base64.c │ ├── export_vars.sh.in │ ├── hooks │ │ └── apr_hooks.c │ ├── include │ │ ├── apr_anylock.h │ │ ├── apr_base64.h │ │ ├── apr_buckets.h │ │ ├── apr_date.h │ │ ├── apr_dbd.h │ │ ├── apr_dbm.h │ │ ├── apr_hooks.h │ │ ├── apr_ldap.h.in │ │ ├── apr_ldap.hnw │ │ ├── apr_ldap.hw │ │ ├── apr_ldap_init.h │ │ ├── apr_ldap_option.h │ │ ├── apr_ldap_url.h │ │ ├── apr_md4.h │ │ ├── apr_md5.h │ │ ├── apr_optional.h │ │ ├── apr_optional_hooks.h │ │ ├── apr_queue.h │ │ ├── apr_reslist.h │ │ ├── apr_rmm.h │ │ ├── apr_sdbm.h │ │ ├── apr_sha1.h │ │ ├── apr_strmatch.h │ │ ├── apr_uri.h │ │ ├── apr_uuid.h │ │ ├── apr_xlate.h │ │ ├── apr_xml.h │ │ ├── apu.h.in │ │ ├── apu.hnw │ │ ├── apu.hw │ │ ├── apu_version.h │ │ ├── apu_want.h.in │ │ ├── apu_want.hnw │ │ ├── apu_want.hw │ │ └── private │ │ │ ├── apr_dbd_internal.h │ │ │ ├── apr_dbm_private.h │ │ │ ├── apu_config.hw │ │ │ ├── apu_select_dbm.h.in │ │ │ └── apu_select_dbm.hw │ ├── ldap │ │ ├── NWGNUmakefile │ │ ├── apr_ldap_init.c │ │ ├── apr_ldap_option.c │ │ └── apr_ldap_url.c │ ├── libaprutil.dsp │ ├── libaprutil.rc │ ├── misc │ │ ├── apr_date.c │ │ ├── apr_queue.c │ │ ├── apr_reslist.c │ │ ├── apr_rmm.c │ │ └── apu_version.c │ ├── renames_pending │ ├── strmatch │ │ └── apr_strmatch.c │ ├── test │ │ ├── Makefile.in │ │ ├── Makefile.win │ │ ├── NWGNUmakefile │ │ ├── abts.c │ │ ├── abts.h │ │ ├── abts_tests.h │ │ ├── data │ │ │ └── .empty │ │ ├── dbd.c │ │ ├── nw_misc.c │ │ ├── nwgnuaputest │ │ ├── test_apu.h │ │ ├── testbuckets.c │ │ ├── testdate.c │ │ ├── testdbd.c │ │ ├── testdbm.c │ │ ├── testldap.c │ │ ├── testmd4.c │ │ ├── testmd5.c │ │ ├── testpass.c │ │ ├── testqueue.c │ │ ├── testreslist.c │ │ ├── testrmm.c │ │ ├── teststrmatch.c │ │ ├── testuri.c │ │ ├── testutil.c │ │ ├── testutil.h │ │ ├── testuuid.c │ │ ├── testxlate.c │ │ └── testxml.c │ ├── uri │ │ ├── NWGNUmakefile │ │ └── apr_uri.c │ ├── xlate │ │ └── xlate.c │ └── xml │ │ ├── NWGNUmakefile │ │ ├── apr_xml.c │ │ └── expat │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── README │ │ ├── buildconf.sh │ │ ├── configure.ac │ │ ├── conftools │ │ ├── PrintPath │ │ ├── config.guess │ │ ├── config.sub │ │ ├── install-sh │ │ ├── missing │ │ └── mkinstalldirs │ │ └── lib │ │ ├── Makefile.in │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── config.hnw │ │ ├── expat.dsp │ │ ├── expat.h.in │ │ ├── iasciitab.h │ │ ├── latin1tab.h │ │ ├── map_osd_ebcdic_df04_1.h │ │ ├── nametab.h │ │ ├── osd_ebcdic_df04_1.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xml.dsp │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c ├── 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 │ │ │ └── apr_atomic.c │ │ ├── os390 │ │ │ └── atomic.c │ │ ├── unix │ │ │ └── apr_atomic.c │ │ └── win32 │ │ │ └── apr_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 │ │ ├── apr.h.in │ │ ├── apr.hnw │ │ ├── apr.hw │ │ ├── apr_allocator.h │ │ ├── apr_atomic.h │ │ ├── apr_dso.h │ │ ├── apr_env.h │ │ ├── apr_errno.h │ │ ├── apr_file_info.h │ │ ├── apr_file_io.h │ │ ├── apr_fnmatch.h │ │ ├── apr_general.h │ │ ├── apr_getopt.h │ │ ├── apr_global_mutex.h │ │ ├── apr_hash.h │ │ ├── apr_inherit.h │ │ ├── apr_lib.h │ │ ├── apr_mmap.h │ │ ├── apr_network_io.h │ │ ├── apr_poll.h │ │ ├── apr_pools.h │ │ ├── apr_portable.h │ │ ├── apr_proc_mutex.h │ │ ├── apr_random.h │ │ ├── apr_ring.h │ │ ├── apr_shm.h │ │ ├── apr_signal.h │ │ ├── apr_strings.h │ │ ├── apr_support.h │ │ ├── apr_tables.h │ │ ├── apr_thread_cond.h │ │ ├── apr_thread_mutex.h │ │ ├── apr_thread_proc.h │ │ ├── apr_thread_rwlock.h │ │ ├── apr_time.h │ │ ├── apr_user.h │ │ ├── apr_version.h │ │ ├── apr_want.h │ │ └── arch │ │ │ ├── aix │ │ │ └── apr_arch_dso.h │ │ │ ├── apr_private_common.h │ │ │ ├── beos │ │ │ ├── apr_arch_dso.h │ │ │ ├── apr_arch_proc_mutex.h │ │ │ ├── apr_arch_thread_cond.h │ │ │ ├── apr_arch_thread_mutex.h │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ └── apr_arch_threadproc.h │ │ │ ├── netware │ │ │ ├── apr_arch_dso.h │ │ │ ├── apr_arch_file_io.h │ │ │ ├── apr_arch_global_mutex.h │ │ │ ├── apr_arch_internal_time.h │ │ │ ├── apr_arch_networkio.h │ │ │ ├── apr_arch_pre_nw.h │ │ │ ├── apr_arch_proc_mutex.h │ │ │ ├── apr_arch_thread_cond.h │ │ │ ├── apr_arch_thread_mutex.h │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ ├── apr_arch_threadproc.h │ │ │ └── apr_private.h │ │ │ ├── os2 │ │ │ ├── apr_arch_dso.h │ │ │ ├── apr_arch_file_io.h │ │ │ ├── apr_arch_networkio.h │ │ │ ├── apr_arch_os2calls.h │ │ │ ├── apr_arch_proc_mutex.h │ │ │ ├── apr_arch_thread_cond.h │ │ │ ├── apr_arch_thread_mutex.h │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ └── apr_arch_threadproc.h │ │ │ ├── os390 │ │ │ └── apr_arch_dso.h │ │ │ ├── unix │ │ │ ├── apr_arch_dso.h │ │ │ ├── apr_arch_file_io.h │ │ │ ├── apr_arch_global_mutex.h │ │ │ ├── apr_arch_inherit.h │ │ │ ├── apr_arch_internal_time.h │ │ │ ├── apr_arch_misc.h │ │ │ ├── apr_arch_networkio.h │ │ │ ├── apr_arch_poll_private.h │ │ │ ├── apr_arch_proc_mutex.h │ │ │ ├── apr_arch_shm.h │ │ │ ├── apr_arch_thread_cond.h │ │ │ ├── apr_arch_thread_mutex.h │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ └── apr_arch_threadproc.h │ │ │ └── win32 │ │ │ ├── apr_arch_atime.h │ │ │ ├── apr_arch_dso.h │ │ │ ├── apr_arch_file_io.h │ │ │ ├── apr_arch_inherit.h │ │ │ ├── apr_arch_misc.h │ │ │ ├── apr_arch_networkio.h │ │ │ ├── apr_arch_proc_mutex.h │ │ │ ├── apr_arch_thread_cond.h │ │ │ ├── apr_arch_thread_mutex.h │ │ │ ├── apr_arch_thread_rwlock.h │ │ │ ├── apr_arch_threadproc.h │ │ │ ├── apr_arch_utf8.h │ │ │ ├── apr_dbg_win32_handles.h │ │ │ └── apr_private.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 │ │ │ └── apr_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 │ │ │ ├── apr_app.c │ │ │ ├── charset.c │ │ │ ├── env.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 │ │ └── apr_getpass.c │ ├── poll │ │ ├── os2 │ │ │ ├── poll.c │ │ │ └── pollset.c │ │ └── unix │ │ │ ├── epoll.c │ │ │ ├── kqueue.c │ │ │ ├── poll.c │ │ │ ├── port.c │ │ │ └── select.c │ ├── random │ │ └── unix │ │ │ ├── apr_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 │ │ ├── apr_cpystrn.c │ │ ├── apr_fnmatch.c │ │ ├── apr_snprintf.c │ │ ├── apr_strings.c │ │ ├── apr_strnatcmp.c │ │ └── apr_strtok.c │ ├── support │ │ └── unix │ │ │ └── waitio.c │ ├── tables │ │ ├── apr_hash.c │ │ └── apr_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 │ │ │ ├── apr_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 ├── broadvoice │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── broadvoice.pc.in │ ├── broadvoice.spec.in │ ├── config │ │ ├── ax_c99_features.m4 │ │ ├── ax_check_export_capability.m4 │ │ ├── ax_check_real_file.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── ax_fixed_point_machine.m4 │ │ └── ax_misaligned_access_fails.m4 │ ├── configure.ac │ ├── configure.gnu │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libbroadvoice-dev.install │ │ ├── libbroadvoice-doc.install │ │ ├── libbroadvoice1.install │ │ ├── rules │ │ └── watch │ ├── doc │ │ ├── Makefile.am │ │ ├── broadvoice-doxygen │ │ ├── css.css │ │ └── wrapper.xsl │ ├── src │ │ ├── Makefile.am │ │ ├── bitpack16.c │ │ ├── bitpack16.h │ │ ├── bitpack32.c │ │ ├── bitpack32.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── broadvoice.dsp │ │ ├── broadvoice.h.in │ │ ├── broadvoice.sln │ │ ├── broadvoice.vcproj │ │ ├── broadvoice │ │ │ ├── broadvoice.h │ │ │ ├── private │ │ │ │ └── broadvoice.h │ │ │ ├── version.h │ │ │ └── version.h.in │ │ ├── floating │ │ │ ├── bv16 │ │ │ │ ├── bv16cnst.h │ │ │ │ ├── bv16coarse_pitch.c │ │ │ │ ├── bv16decoder.c │ │ │ │ ├── bv16encoder.c │ │ │ │ ├── bv16excdec.c │ │ │ │ ├── bv16excquan.c │ │ │ │ ├── bv16externs.h │ │ │ │ ├── bv16fine_pitch.c │ │ │ │ ├── bv16gaindec.c │ │ │ │ ├── bv16gainquan.c │ │ │ │ ├── bv16levelest.c │ │ │ │ ├── bv16lspdec.c │ │ │ │ ├── bv16lspquan.c │ │ │ │ ├── bv16plc.c │ │ │ │ ├── bv16postfilter.c │ │ │ │ ├── bv16postfilter.h │ │ │ │ ├── bv16ptdec.c │ │ │ │ ├── bv16ptquan.c │ │ │ │ ├── bv16strct.h │ │ │ │ └── bv16tables.c │ │ │ ├── bv32 │ │ │ │ ├── bv32cnst.h │ │ │ │ ├── bv32coarse_pitch.c │ │ │ │ ├── bv32decoder.c │ │ │ │ ├── bv32encoder.c │ │ │ │ ├── bv32excdec.c │ │ │ │ ├── bv32excquan.c │ │ │ │ ├── bv32externs.h │ │ │ │ ├── bv32fine_pitch.c │ │ │ │ ├── bv32gaindec.c │ │ │ │ ├── bv32gainquan.c │ │ │ │ ├── bv32levelest.c │ │ │ │ ├── bv32lspdec.c │ │ │ │ ├── bv32lspquan.c │ │ │ │ ├── bv32plc.c │ │ │ │ ├── bv32ptdec.c │ │ │ │ ├── bv32ptquan.c │ │ │ │ ├── bv32strct.h │ │ │ │ └── bv32tables.c │ │ │ └── common │ │ │ │ ├── a2lsp.c │ │ │ │ ├── allpole.c │ │ │ │ ├── allzero.c │ │ │ │ ├── autocor.c │ │ │ │ ├── bvcommon.h │ │ │ │ ├── cmtables.c │ │ │ │ ├── levdur.c │ │ │ │ ├── lsp2a.c │ │ │ │ ├── stblchck.c │ │ │ │ ├── stblzlsp.c │ │ │ │ ├── typedef.h │ │ │ │ ├── utility.c │ │ │ │ └── utility.h │ │ ├── libbroadvoice.2005.sln │ │ ├── libbroadvoice.2005.vcproj │ │ ├── libbroadvoice.2008.sln │ │ ├── libbroadvoice.2008.vcproj │ │ ├── libbroadvoice.2010.vcxproj │ │ ├── libbroadvoice.2010.vcxproj.filters │ │ ├── libbroadvoice.2012.vcxproj │ │ ├── libbroadvoice.2012.vcxproj.filters │ │ ├── libbroadvoice.dsp │ │ └── msvc │ │ │ ├── broadvoice.def │ │ │ ├── gettimeofday.c │ │ │ ├── inttypes.h │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── sys │ │ │ └── time.h │ │ │ ├── tgmath.h │ │ │ ├── unistd.h │ │ │ ├── vc8proj.foot │ │ │ ├── vc8proj.head │ │ │ ├── vc9proj.foot │ │ │ └── vc9proj.head │ ├── test-data │ │ ├── Makefile.am │ │ └── readme.txt │ ├── tests │ │ ├── Makefile.am │ │ ├── broadvoice_tests.c │ │ ├── bv16_fixed_tests.sh │ │ ├── bv16_floating_tests.sh │ │ ├── bv16_tests.c │ │ ├── bv32_fixed_tests.sh │ │ ├── bv32_floating_tests.sh │ │ ├── bv32_tests.c │ │ ├── g192_bit_stream.c │ │ ├── g192_bit_stream.h │ │ ├── regression_tests.sh.in │ │ └── timing.h │ └── wrapper.xsl ├── esl │ ├── .gitignore │ ├── ESL.i │ ├── Makefile.am │ ├── eslmake.rules.in │ ├── fs_cli.2008.vcproj │ ├── fs_cli.2010.vcxproj │ ├── fs_cli.2010.vcxproj.filters │ ├── fs_cli.2012.vcxproj │ ├── fs_cli.2012.vcxproj.filters │ ├── 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.2008.vcproj │ │ ├── esl_lua.2010.sln │ │ ├── esl_lua.2010.vcxproj │ │ ├── esl_lua.2010.vcxproj.filters │ │ ├── esl_lua.2012.vcxproj.filters │ │ ├── esl_wrap.cpp │ │ └── single_command.lua │ ├── managed │ │ ├── ESL.2010.vcxproj │ │ ├── ESL.2010.vcxproj.filters │ │ ├── ESL.2012.vcxproj │ │ ├── ESL.2012.vcxproj.filters │ │ ├── ESL.cs │ │ ├── ESL.vcproj │ │ ├── ESLPINVOKE.2010.cs │ │ ├── ESLPINVOKE.cs │ │ ├── ESLconnection.cs │ │ ├── ESLevent.2010.cs │ │ ├── ESLevent.cs │ │ ├── Makefile │ │ ├── ManagedEsl.2010.csproj │ │ ├── ManagedEsl.2012.csproj │ │ ├── ManagedEsl.csproj │ │ ├── ManagedEslTest │ │ │ ├── ManagedEslTest.2010.csproj │ │ │ ├── ManagedEslTest.2012.csproj │ │ │ ├── ManagedEslTest.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SWIGTYPE_p_esl_event_t.2010.cs │ │ ├── SWIGTYPE_p_esl_event_t.cs │ │ ├── SWIGTYPE_p_esl_priority_t.2010.cs │ │ ├── SWIGTYPE_p_esl_priority_t.cs │ │ ├── esl.2010.cs │ │ ├── esl_wrap.2010.cpp │ │ ├── esl_wrap.cpp │ │ ├── managed_esl.2008.sln │ │ ├── managed_esl.2010.sln │ │ ├── managed_esl.2012.sln │ │ └── runswig.2010.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 │ ├── ruby │ │ ├── Makefile │ │ ├── cflags.rb │ │ ├── esl_wrap.cpp │ │ ├── server3.rb │ │ └── single_command.rb │ ├── src │ │ ├── esl.2008.vcproj │ │ ├── esl.2010.vcxproj │ │ ├── esl.2010.vcxproj.filters │ │ ├── esl.2012.vcxproj │ │ ├── esl.2012.vcxproj.filters │ │ ├── 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_config.h │ │ │ ├── esl_event.h │ │ │ ├── esl_json.h │ │ │ ├── esl_oop.h │ │ │ └── esl_threadmutex.h │ ├── switch_version.rc2 │ ├── tcl │ │ ├── Makefile │ │ ├── esl_wrap.cpp │ │ ├── pkgIndex.tcl │ │ └── single_command.tcl │ ├── test.pl │ ├── testclient.c │ ├── testserver.c │ └── testserver_fork.c ├── freetdm │ ├── .gitignore │ ├── .update │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── TODO │ ├── acinclude.m4 │ ├── bootstrap │ ├── build │ │ ├── ax_compiler_vendor.m4 │ │ └── libpcap.m4 │ ├── conf │ │ ├── freetdm.conf │ │ ├── freetdm.conf.xml │ │ ├── pika.conf │ │ ├── tones.conf │ │ ├── wanpipe.conf │ │ └── zt.conf │ ├── configure.ac │ ├── configure.gnu │ ├── cyginstall.sh │ ├── docs │ │ ├── Doxygen.conf │ │ ├── PRI-BRI-Debug.pdf │ │ ├── async.txt │ │ ├── ftdm-open-issues.txt │ │ ├── glare.txt │ │ ├── io_modules.txt │ │ ├── locking.txt │ │ ├── sigstatus.txt │ │ ├── ss7-native-bridge.txt │ │ └── variables.txt │ ├── freetdm.2008.sln │ ├── freetdm.2010.sln │ ├── freetdm.2012.sln │ ├── freetdm.pc.in │ ├── mkrelease.sh │ ├── mod_freetdm │ │ ├── CMakeLists.txt │ │ ├── Makefile.in │ │ ├── clean.sh │ │ ├── mod_freetdm.2008.vcproj │ │ ├── mod_freetdm.2010.vcxproj │ │ ├── mod_freetdm.2010.vcxproj.filters │ │ ├── mod_freetdm.2012.vcxproj │ │ ├── mod_freetdm.2012.vcxproj.filters │ │ ├── mod_freetdm.c │ │ ├── mod_openzap.2005.vcproj │ │ └── tdm.c │ ├── msvc │ │ ├── freetdm.2008.vcproj │ │ ├── freetdm.2010.vcxproj │ │ ├── freetdm.2010.vcxproj.filters │ │ ├── freetdm.2012.vcxproj │ │ ├── freetdm.2012.vcxproj.filters │ │ ├── openzap.2005.vcproj │ │ ├── testanalog │ │ │ ├── testanalog.2005.vcproj │ │ │ ├── testanalog.2008.vcproj │ │ │ ├── testanalog.2010.vcxproj │ │ │ ├── testanalog.2010.vcxproj.filters │ │ │ ├── testanalog.2012.vcxproj │ │ │ └── testanalog.2012.vcxproj.filters │ │ ├── testboost │ │ │ ├── testboost.2008.vcproj │ │ │ ├── testboost.2010.vcxproj │ │ │ ├── testboost.2010.vcxproj.filters │ │ │ ├── testsangomaboost.2008.vcproj │ │ │ ├── testsangomaboost.2010.vcxproj │ │ │ └── testsangomaboost.2010.vcxproj.filters │ │ └── testisdn │ │ │ ├── testisdn.2005.vcproj │ │ │ ├── testisdn.2008.vcproj │ │ │ ├── testisdn.2010.vcxproj │ │ │ ├── testisdn.2010.vcxproj.filters │ │ │ ├── testisdn.2012.vcxproj │ │ │ └── testisdn.2012.vcxproj.filters │ ├── sample │ │ ├── CMakeLists.txt │ │ ├── dso │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── ftdmload.c │ │ └── sched │ │ │ ├── CMakeLists.txt │ │ │ └── ftdmsched.c │ └── src │ │ ├── detect_dtmf.c │ │ ├── detect_tones.c │ │ ├── fsk.c │ │ ├── ftdm_backtrace.c │ │ ├── ftdm_buffer.c │ │ ├── ftdm_call_utils.c │ │ ├── ftdm_callerid.c │ │ ├── ftdm_config.c │ │ ├── ftdm_cpu_monitor.c │ │ ├── ftdm_dso.c │ │ ├── ftdm_io.c │ │ ├── ftdm_queue.c │ │ ├── ftdm_sched.c │ │ ├── ftdm_state.c │ │ ├── ftdm_threadmutex.c │ │ ├── ftdm_variables.c │ │ ├── ftmod │ │ ├── ftmod_analog │ │ │ ├── ftdm_analog.h │ │ │ ├── ftmod_analog.2008.vcproj │ │ │ ├── ftmod_analog.2010.vcxproj │ │ │ ├── ftmod_analog.2010.vcxproj.filters │ │ │ ├── ftmod_analog.2012.vcxproj │ │ │ ├── ftmod_analog.2012.vcxproj.filters │ │ │ └── ftmod_analog.c │ │ ├── ftmod_analog_em │ │ │ ├── ftdm_analog_em.h │ │ │ ├── ftmod_analog_em.2008.vcproj │ │ │ ├── ftmod_analog_em.2010.vcxproj │ │ │ ├── ftmod_analog_em.2010.vcxproj.filters │ │ │ ├── ftmod_analog_em.2012.vcxproj │ │ │ ├── ftmod_analog_em.2012.vcxproj.filters │ │ │ └── ftmod_analog_em.c │ │ ├── ftmod_gsm │ │ │ └── ftmod_gsm.c │ │ ├── ftmod_isdn │ │ │ ├── ftmod_isdn.2008.vcproj │ │ │ ├── ftmod_isdn.2010.vcxproj │ │ │ ├── ftmod_isdn.2010.vcxproj.filters │ │ │ ├── ftmod_isdn.2012.vcxproj │ │ │ ├── ftmod_isdn.2012.vcxproj.filters │ │ │ ├── ftmod_isdn.c │ │ │ └── ftmod_isdn.h │ │ ├── ftmod_libpri │ │ │ ├── ftmod_libpri.c │ │ │ ├── ftmod_libpri.h │ │ │ ├── lpwrap_pri.c │ │ │ └── lpwrap_pri.h │ │ ├── ftmod_misdn │ │ │ └── ftmod_misdn.c │ │ ├── ftmod_pika │ │ │ ├── ftdm_pika.h │ │ │ ├── ftmod_pika.2008.vcproj │ │ │ ├── ftmod_pika.2010.vcxproj │ │ │ ├── ftmod_pika.2010.vcxproj.filters │ │ │ ├── ftmod_pika.2012.vcxproj │ │ │ ├── ftmod_pika.2012.vcxproj.filters │ │ │ ├── ftmod_pika.c │ │ │ └── ozmod_pika.2005.vcproj │ │ ├── ftmod_pritap │ │ │ └── ftmod_pritap.c │ │ ├── ftmod_r2 │ │ │ ├── ftmod_r2.2008.vcproj │ │ │ ├── ftmod_r2.2010.vcxproj │ │ │ ├── ftmod_r2.2010.vcxproj.filters │ │ │ ├── ftmod_r2.2012.vcxproj │ │ │ ├── ftmod_r2.2012.vcxproj.filters │ │ │ ├── ftmod_r2.c │ │ │ ├── ftmod_r2_io_mf_lib.c │ │ │ └── ftmod_r2_io_mf_lib.h │ │ ├── ftmod_sangoma_isdn │ │ │ ├── ftmod_sangoma_isdn.2008.vcproj │ │ │ ├── ftmod_sangoma_isdn.2010.vcxproj │ │ │ ├── ftmod_sangoma_isdn.2010.vcxproj.filters │ │ │ ├── ftmod_sangoma_isdn.2012.vcxproj │ │ │ ├── ftmod_sangoma_isdn.2012.vcxproj.filters │ │ │ ├── ftmod_sangoma_isdn.c │ │ │ ├── ftmod_sangoma_isdn.h │ │ │ ├── ftmod_sangoma_isdn_cfg.c │ │ │ ├── ftmod_sangoma_isdn_cntrl.c │ │ │ ├── ftmod_sangoma_isdn_stack_cfg.c │ │ │ ├── ftmod_sangoma_isdn_stack_cntrl.c │ │ │ ├── ftmod_sangoma_isdn_stack_hndl.c │ │ │ ├── ftmod_sangoma_isdn_stack_out.c │ │ │ ├── ftmod_sangoma_isdn_stack_rcv.c │ │ │ ├── ftmod_sangoma_isdn_support.c │ │ │ ├── ftmod_sangoma_isdn_trace.c │ │ │ ├── ftmod_sangoma_isdn_trace.h │ │ │ ├── ftmod_sangoma_isdn_transfer.c │ │ │ └── ftmod_sangoma_isdn_user.h │ │ ├── ftmod_sangoma_ss7 │ │ │ ├── ftmod_sangoma_ss7_cfg.c │ │ │ ├── ftmod_sangoma_ss7_cli.c │ │ │ ├── ftmod_sangoma_ss7_cntrl.c │ │ │ ├── ftmod_sangoma_ss7_handle.c │ │ │ ├── ftmod_sangoma_ss7_in.c │ │ │ ├── ftmod_sangoma_ss7_logger.c │ │ │ ├── ftmod_sangoma_ss7_m2ua.c │ │ │ ├── ftmod_sangoma_ss7_m2ua.h │ │ │ ├── ftmod_sangoma_ss7_m2ua_xml.c │ │ │ ├── ftmod_sangoma_ss7_main.c │ │ │ ├── ftmod_sangoma_ss7_main.h │ │ │ ├── ftmod_sangoma_ss7_out.c │ │ │ ├── ftmod_sangoma_ss7_relay.c │ │ │ ├── ftmod_sangoma_ss7_sta.c │ │ │ ├── ftmod_sangoma_ss7_sts.c │ │ │ ├── ftmod_sangoma_ss7_support.c │ │ │ ├── ftmod_sangoma_ss7_timers.c │ │ │ └── ftmod_sangoma_ss7_xml.c │ │ ├── ftmod_skel │ │ │ └── ftmod_skel.c │ │ ├── ftmod_wanpipe │ │ │ ├── ftmod_wanpipe.2008.vcproj │ │ │ ├── ftmod_wanpipe.2010.vcxproj │ │ │ ├── ftmod_wanpipe.2010.vcxproj.filters │ │ │ ├── ftmod_wanpipe.2012.vcxproj │ │ │ ├── ftmod_wanpipe.2012.vcxproj.filters │ │ │ └── ftmod_wanpipe.c │ │ └── ftmod_zt │ │ │ ├── ftmod_zt.c │ │ │ └── ftmod_zt.h │ │ ├── g711.c │ │ ├── hashtable.c │ │ ├── hashtable_itr.c │ │ ├── include │ │ ├── freetdm.h │ │ ├── ftdm_call_utils.h │ │ ├── ftdm_declare.h │ │ ├── ftdm_dso.h │ │ ├── ftdm_os.h │ │ ├── ftdm_threadmutex.h │ │ └── private │ │ │ ├── fsk.h │ │ │ ├── ftdm_buffer.h │ │ │ ├── ftdm_config.h │ │ │ ├── ftdm_core.h │ │ │ ├── ftdm_cpu_monitor.h │ │ │ ├── ftdm_sched.h │ │ │ ├── ftdm_state.h │ │ │ ├── ftdm_types.h │ │ │ ├── g711.h │ │ │ ├── hashtable.h │ │ │ ├── hashtable_itr.h │ │ │ ├── hashtable_private.h │ │ │ ├── libteletone.h │ │ │ ├── libteletone_detect.h │ │ │ ├── libteletone_generate.h │ │ │ ├── sangoma_tdm_api.h │ │ │ └── uart.h │ │ ├── isdn │ │ ├── 5ESSStateNT.c │ │ ├── 5ESSStateTE.c │ │ ├── 5ESSmes.c │ │ ├── DMSStateNT.c │ │ ├── DMSStateTE.c │ │ ├── DMSmes.c │ │ ├── EuroISDNStateNT.c │ │ ├── EuroISDNStateTE.c │ │ ├── Q921.c │ │ ├── Q931.c │ │ ├── Q931StateNT.c │ │ ├── Q931StateTE.c │ │ ├── Q931api.c │ │ ├── Q931ie.c │ │ ├── Q931mes.c │ │ ├── Q932mes.c │ │ ├── include │ │ │ ├── 5ESS.h │ │ │ ├── DMS.h │ │ │ ├── Q921.h │ │ │ ├── Q921priv.h │ │ │ ├── Q931.h │ │ │ ├── Q931ie.h │ │ │ ├── Q932.h │ │ │ ├── mfifo.h │ │ │ └── national.h │ │ ├── mfifo.c │ │ ├── nationalStateNT.c │ │ ├── nationalStateTE.c │ │ └── nationalmes.c │ │ ├── libteletone_detect.c │ │ ├── libteletone_generate.c │ │ ├── priserver.c │ │ ├── sangoma_pri.c │ │ ├── sangoma_pri.h │ │ ├── ss7 │ │ └── README │ │ ├── testanalog.c │ │ ├── testapp.c │ │ ├── testcid.c │ │ ├── testisdn.c │ │ ├── testpri.c │ │ ├── testr2.c │ │ ├── testtones.c │ │ └── uart.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 ├── ilbc │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── config │ │ └── .empty │ ├── configure.ac │ ├── configure.gnu │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libilbc-dev.install │ │ ├── libilbc-doc.install │ │ ├── libilbc.install │ │ ├── rules │ │ └── watch │ ├── doc │ │ ├── Makefile.am │ │ ├── css.css │ │ ├── libilbc-doxygen │ │ └── wrapper.xsl │ ├── gips_iLBClicense.pdf │ ├── ilbc.spec │ ├── ilbc.spec.in │ ├── libilbc.2008.vcproj │ ├── libilbc.2010.vcxproj │ ├── libilbc.2010.vcxproj.filters │ ├── libilbc.2012.vcxproj │ ├── libilbc.2012.vcxproj.filters │ ├── libilbc.vcproj │ ├── localtests │ │ ├── Makefile.am │ │ ├── clean.chn │ │ ├── iLBC.INP │ │ ├── iLBC_20ms.BIT │ │ ├── iLBC_20ms_clean.OUT │ │ ├── iLBC_20ms_tlm05.OUT │ │ ├── iLBC_30ms.BIT │ │ ├── iLBC_30ms_clean.OUT │ │ ├── iLBC_30ms_tlm05.OUT │ │ ├── iLBC_test.txt │ │ ├── short_nb_voice.wav │ │ └── tlm05.chn │ ├── src │ │ ├── FrameClassify.c │ │ ├── FrameClassify.h │ │ ├── LPCdecode.c │ │ ├── LPCdecode.h │ │ ├── LPCencode.c │ │ ├── LPCencode.h │ │ ├── Makefile.am │ │ ├── StateConstructW.c │ │ ├── StateConstructW.h │ │ ├── StateSearchW.c │ │ ├── StateSearchW.h │ │ ├── anaFilter.c │ │ ├── anaFilter.h │ │ ├── constants.c │ │ ├── constants.h │ │ ├── createCB.c │ │ ├── createCB.h │ │ ├── doCPLC.c │ │ ├── doCPLC.h │ │ ├── enhancer.c │ │ ├── enhancer.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── gainquant.c │ │ ├── gainquant.h │ │ ├── getCBvec.c │ │ ├── getCBvec.h │ │ ├── helpfun.c │ │ ├── helpfun.h │ │ ├── hpInput.c │ │ ├── hpInput.h │ │ ├── hpOutput.c │ │ ├── hpOutput.h │ │ ├── iCBConstruct.c │ │ ├── iCBConstruct.h │ │ ├── iCBSearch.c │ │ ├── iCBSearch.h │ │ ├── iLBC_decode.c │ │ ├── iLBC_define.h │ │ ├── iLBC_encode.c │ │ ├── ilbc.h.in │ │ ├── ilbc │ │ │ ├── ilbc.h │ │ │ ├── version.h │ │ │ └── version.h.in │ │ ├── libilbc.dsp │ │ ├── libilbc.sln │ │ ├── lsf.c │ │ ├── lsf.h │ │ ├── msvc │ │ │ ├── gettimeofday.c │ │ │ ├── ilbc.def │ │ │ ├── inttypes.h │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── sys │ │ │ │ └── time.h │ │ │ ├── tgmath.h │ │ │ ├── unistd.h │ │ │ ├── vc8proj.foot │ │ │ └── vc8proj.head │ │ ├── packing.c │ │ ├── packing.h │ │ ├── syntFilter.c │ │ └── syntFilter.h │ ├── tests │ │ ├── Makefile.am │ │ ├── ilbc_tests.c │ │ └── regression_tests.sh │ └── wrapper.xsl ├── js │ ├── .update │ ├── AUTHORS │ ├── ChangeLog │ ├── LINKS │ ├── Makefile.in │ ├── README │ ├── THANKS │ ├── TODO │ ├── VERSION │ ├── acsite.m4 │ ├── config.hw │ ├── configure.ac │ ├── configure.gnu │ ├── js-config.1 │ ├── js-config.sh.in │ ├── js.1 │ ├── js.3 │ ├── js.pc.in │ ├── jslint.js │ ├── libtool.m4 │ ├── nsprpub │ │ ├── .cvsignore │ │ ├── .update │ │ ├── Makefile.in │ │ ├── admin │ │ │ ├── explode.pl │ │ │ ├── makeTargetDirs.sh │ │ │ ├── repackage.sh │ │ │ └── symlinks.sh │ │ ├── build │ │ │ ├── autoconf │ │ │ │ └── .empty │ │ │ └── cygwin-wrapper │ │ ├── config │ │ │ ├── .cvsignore │ │ │ ├── Makefile.in │ │ │ ├── autoconf.mk.in │ │ │ ├── config.mk │ │ │ ├── gcc_hidden.h │ │ │ ├── libc_r.h │ │ │ ├── make-system-wrappers.pl │ │ │ ├── nfspwd.pl │ │ │ ├── now.c │ │ │ ├── nsinstall.c │ │ │ ├── nspr-config.in │ │ │ ├── nspr.m4 │ │ │ ├── nsprincl.mk.in │ │ │ ├── nsprincl.sh.in │ │ │ ├── pathsub.h │ │ │ ├── prdepend.h │ │ │ ├── prmkdir.bat │ │ │ ├── rules.mk │ │ │ └── system-headers │ │ ├── configure.gnu │ │ ├── configure.in │ │ ├── include │ │ │ └── .empty │ │ ├── lib │ │ │ ├── .cvsignore │ │ │ ├── Makefile.in │ │ │ ├── ds │ │ │ │ ├── .cvsignore │ │ │ │ ├── MANIFEST │ │ │ │ ├── Makefile.in │ │ │ │ ├── plarena.c │ │ │ │ ├── plarena.h │ │ │ │ ├── plarenas.h │ │ │ │ ├── plds.def │ │ │ │ ├── plds.rc │ │ │ │ ├── plds_symvec.opt │ │ │ │ ├── plhash.c │ │ │ │ ├── plhash.h │ │ │ │ └── plvrsion.c │ │ │ ├── libc │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── include │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── MANIFEST │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── plbase64.h │ │ │ │ │ ├── plerror.h │ │ │ │ │ ├── plgetopt.h │ │ │ │ │ ├── plresolv.h │ │ │ │ │ └── plstr.h │ │ │ │ └── src │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── plc.def │ │ │ │ │ ├── plc.rc │ │ │ │ │ ├── plc_symvec.opt │ │ │ │ │ ├── plerror.c │ │ │ │ │ ├── plgetopt.c │ │ │ │ │ ├── plvrsion.c │ │ │ │ │ ├── strcat.c │ │ │ │ │ ├── strccmp.c │ │ │ │ │ ├── strchr.c │ │ │ │ │ ├── strcmp.c │ │ │ │ │ ├── strcpy.c │ │ │ │ │ ├── strcstr.c │ │ │ │ │ ├── strdup.c │ │ │ │ │ ├── strlen.c │ │ │ │ │ ├── strpbrk.c │ │ │ │ │ ├── strstr.c │ │ │ │ │ └── strtok.c │ │ │ ├── msgc │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── include │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── MANIFEST │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── gcint.h │ │ │ │ │ └── prgc.h │ │ │ │ ├── src │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── macgc.c │ │ │ │ │ ├── os2gc.c │ │ │ │ │ ├── prgcapi.c │ │ │ │ │ ├── prmsgc.c │ │ │ │ │ ├── unixgc.c │ │ │ │ │ ├── win16gc.c │ │ │ │ │ └── win32gc.c │ │ │ │ └── tests │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── gc1.c │ │ │ │ │ └── thrashgc.c │ │ │ ├── prstreams │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── plvrsion.c │ │ │ │ ├── prstrms.cpp │ │ │ │ ├── prstrms.h │ │ │ │ ├── prstrms.rc │ │ │ │ └── tests │ │ │ │ │ └── testprstrm │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── testprstrm.cpp │ │ │ └── tests │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── arena.c │ │ │ │ ├── base64t.c │ │ │ │ ├── string.c │ │ │ │ └── windows │ │ │ │ ├── makefile │ │ │ │ ├── readme.1st │ │ │ │ └── winevent.c │ │ ├── macbuild │ │ │ └── .empty │ │ ├── pkg │ │ │ ├── Makefile.in │ │ │ ├── linux │ │ │ │ ├── Makefile.in │ │ │ │ └── sun-nspr.spec │ │ │ └── solaris │ │ │ │ ├── Makefile-devl.com │ │ │ │ ├── Makefile-devl.targ │ │ │ │ ├── Makefile.com │ │ │ │ ├── Makefile.in │ │ │ │ ├── Makefile.targ │ │ │ │ ├── SUNWnspr │ │ │ │ └── .empty │ │ │ │ ├── SUNWnsprx │ │ │ │ └── .empty │ │ │ │ ├── SUNWpr-devl │ │ │ │ └── .empty │ │ │ │ ├── SUNWpr │ │ │ │ ├── Makefile.in │ │ │ │ ├── depend │ │ │ │ ├── pkginfo.tmpl │ │ │ │ ├── prototype_com │ │ │ │ ├── prototype_i386 │ │ │ │ └── prototype_sparc │ │ │ │ ├── SUNWprd │ │ │ │ ├── Makefile.in │ │ │ │ ├── depend │ │ │ │ ├── pkginfo.tmpl │ │ │ │ └── prototype │ │ │ │ ├── SUNWprdx │ │ │ │ └── .empty │ │ │ │ ├── SUNWprx-devl │ │ │ │ └── .empty │ │ │ │ ├── SUNWprx │ │ │ │ └── .empty │ │ │ │ ├── bld_awk_pkginfo.ksh │ │ │ │ ├── common_files │ │ │ │ └── copyright │ │ │ │ └── proto64.mk │ │ ├── pr │ │ │ ├── .cvsignore │ │ │ ├── Makefile.in │ │ │ ├── include │ │ │ │ ├── .cvsignore │ │ │ │ ├── MANIFEST │ │ │ │ ├── Makefile.in │ │ │ │ ├── gencfg.c │ │ │ │ ├── md │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── _aix.h │ │ │ │ │ ├── _aix32.cfg │ │ │ │ │ ├── _aix64.cfg │ │ │ │ │ ├── _beos.cfg │ │ │ │ │ ├── _beos.h │ │ │ │ │ ├── _bsdi.cfg │ │ │ │ │ ├── _bsdi.h │ │ │ │ │ ├── _darwin.cfg │ │ │ │ │ ├── _darwin.h │ │ │ │ │ ├── _dgux.cfg │ │ │ │ │ ├── _dgux.h │ │ │ │ │ ├── _freebsd.cfg │ │ │ │ │ ├── _freebsd.h │ │ │ │ │ ├── _hpux.h │ │ │ │ │ ├── _hpux32.cfg │ │ │ │ │ ├── _hpux64.cfg │ │ │ │ │ ├── _irix.h │ │ │ │ │ ├── _irix32.cfg │ │ │ │ │ ├── _irix64.cfg │ │ │ │ │ ├── _linux.cfg │ │ │ │ │ ├── _linux.h │ │ │ │ │ ├── _macos.h │ │ │ │ │ ├── _ncr.cfg │ │ │ │ │ ├── _ncr.h │ │ │ │ │ ├── _nec.cfg │ │ │ │ │ ├── _nec.h │ │ │ │ │ ├── _netbsd.cfg │ │ │ │ │ ├── _netbsd.h │ │ │ │ │ ├── _nextstep.cfg │ │ │ │ │ ├── _nextstep.h │ │ │ │ │ ├── _nspr_pthread.h │ │ │ │ │ ├── _nto.cfg │ │ │ │ │ ├── _nto.h │ │ │ │ │ ├── _openbsd.cfg │ │ │ │ │ ├── _openbsd.h │ │ │ │ │ ├── _openvms.cfg │ │ │ │ │ ├── _openvms.h │ │ │ │ │ ├── _os2.cfg │ │ │ │ │ ├── _os2.h │ │ │ │ │ ├── _os2_errors.h │ │ │ │ │ ├── _osf1.cfg │ │ │ │ │ ├── _osf1.h │ │ │ │ │ ├── _pcos.h │ │ │ │ │ ├── _pth.h │ │ │ │ │ ├── _qnx.cfg │ │ │ │ │ ├── _qnx.h │ │ │ │ │ ├── _reliantunix.cfg │ │ │ │ │ ├── _reliantunix.h │ │ │ │ │ ├── _rhapsody.cfg │ │ │ │ │ ├── _rhapsody.h │ │ │ │ │ ├── _riscos.cfg │ │ │ │ │ ├── _riscos.h │ │ │ │ │ ├── _scoos.cfg │ │ │ │ │ ├── _scoos.h │ │ │ │ │ ├── _solaris.cfg │ │ │ │ │ ├── _solaris.h │ │ │ │ │ ├── _sony.cfg │ │ │ │ │ ├── _sony.h │ │ │ │ │ ├── _sunos4.cfg │ │ │ │ │ ├── _sunos4.h │ │ │ │ │ ├── _unix_errors.h │ │ │ │ │ ├── _unixos.h │ │ │ │ │ ├── _unixware.cfg │ │ │ │ │ ├── _unixware.h │ │ │ │ │ ├── _unixware7.cfg │ │ │ │ │ ├── _win16.cfg │ │ │ │ │ ├── _win16.h │ │ │ │ │ ├── _win32_errors.h │ │ │ │ │ ├── _win95.cfg │ │ │ │ │ ├── _win95.h │ │ │ │ │ ├── _winnt.cfg │ │ │ │ │ ├── _winnt.h │ │ │ │ │ ├── prosdep.h │ │ │ │ │ └── sunos4.h │ │ │ │ ├── nspr.h │ │ │ │ ├── obsolete │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── pralarm.h │ │ │ │ │ ├── probslet.h │ │ │ │ │ ├── protypes.h │ │ │ │ │ └── prsem.h │ │ │ │ ├── pratom.h │ │ │ │ ├── prbit.h │ │ │ │ ├── prclist.h │ │ │ │ ├── prcmon.h │ │ │ │ ├── prcountr.h │ │ │ │ ├── prcvar.h │ │ │ │ ├── prdtoa.h │ │ │ │ ├── prenv.h │ │ │ │ ├── prerr.h │ │ │ │ ├── prerror.h │ │ │ │ ├── prinet.h │ │ │ │ ├── prinit.h │ │ │ │ ├── prinrval.h │ │ │ │ ├── prio.h │ │ │ │ ├── pripcsem.h │ │ │ │ ├── private │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── pprio.h │ │ │ │ │ ├── pprmwait.h │ │ │ │ │ ├── pprthred.h │ │ │ │ │ ├── primpl.h │ │ │ │ │ └── prpriv.h │ │ │ │ ├── prlink.h │ │ │ │ ├── prlock.h │ │ │ │ ├── prlog.h │ │ │ │ ├── prlong.h │ │ │ │ ├── prmem.h │ │ │ │ ├── prmon.h │ │ │ │ ├── prmwait.h │ │ │ │ ├── prnetdb.h │ │ │ │ ├── prolock.h │ │ │ │ ├── prpdce.h │ │ │ │ ├── prprf.h │ │ │ │ ├── prproces.h │ │ │ │ ├── prrng.h │ │ │ │ ├── prrwlock.h │ │ │ │ ├── prshm.h │ │ │ │ ├── prshma.h │ │ │ │ ├── prsystem.h │ │ │ │ ├── prthread.h │ │ │ │ ├── prtime.h │ │ │ │ ├── prtpool.h │ │ │ │ ├── prtrace.h │ │ │ │ ├── prtypes.h │ │ │ │ ├── prvrsion.h │ │ │ │ └── prwin16.h │ │ │ ├── src │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── bthreads │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── bsrcs.mk │ │ │ │ │ ├── btcvar.c │ │ │ │ │ ├── btlocks.c │ │ │ │ │ ├── btmisc.c │ │ │ │ │ ├── btmon.c │ │ │ │ │ ├── btsem.c │ │ │ │ │ ├── btthread.c │ │ │ │ │ └── objs.mk │ │ │ │ ├── cplus │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── rcascii.h │ │ │ │ │ ├── rcbase.cpp │ │ │ │ │ ├── rcbase.h │ │ │ │ │ ├── rccv.cpp │ │ │ │ │ ├── rccv.h │ │ │ │ │ ├── rcfileio.cpp │ │ │ │ │ ├── rcfileio.h │ │ │ │ │ ├── rcinrval.cpp │ │ │ │ │ ├── rcinrval.h │ │ │ │ │ ├── rcio.cpp │ │ │ │ │ ├── rcio.h │ │ │ │ │ ├── rclock.cpp │ │ │ │ │ ├── rclock.h │ │ │ │ │ ├── rcmon.h │ │ │ │ │ ├── rcnetdb.cpp │ │ │ │ │ ├── rcnetdb.h │ │ │ │ │ ├── rcnetio.cpp │ │ │ │ │ ├── rcnetio.h │ │ │ │ │ ├── rcthread.cpp │ │ │ │ │ ├── rcthread.h │ │ │ │ │ ├── rctime.cpp │ │ │ │ │ ├── rctime.h │ │ │ │ │ └── tests │ │ │ │ │ │ ├── .cvsignore │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── fileio.cpp │ │ │ │ │ │ ├── interval.cpp │ │ │ │ │ │ ├── ranfile.cpp │ │ │ │ │ │ ├── switch.cpp │ │ │ │ │ │ ├── thread.cpp │ │ │ │ │ │ ├── time.cpp │ │ │ │ │ │ └── tpd.cpp │ │ │ │ ├── cthreads │ │ │ │ │ └── .empty │ │ │ │ ├── io │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── prdir.c │ │ │ │ │ ├── prfdcach.c │ │ │ │ │ ├── prfile.c │ │ │ │ │ ├── prio.c │ │ │ │ │ ├── priometh.c │ │ │ │ │ ├── pripv6.c │ │ │ │ │ ├── prlayer.c │ │ │ │ │ ├── prlog.c │ │ │ │ │ ├── prmapopt.c │ │ │ │ │ ├── prmmap.c │ │ │ │ │ ├── prmwait.c │ │ │ │ │ ├── prpolevt.c │ │ │ │ │ ├── prprf.c │ │ │ │ │ ├── prscanf.c │ │ │ │ │ ├── prsocket.c │ │ │ │ │ └── prstdio.c │ │ │ │ ├── linking │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── prlink.c │ │ │ │ ├── malloc │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── prmalloc.c │ │ │ │ │ └── prmem.c │ │ │ │ ├── md │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── beos │ │ │ │ │ │ ├── .cvsignore │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── bcpu.c │ │ │ │ │ │ ├── beos.c │ │ │ │ │ │ ├── beos_errors.c │ │ │ │ │ │ ├── bfile.c │ │ │ │ │ │ ├── bmemory.c │ │ │ │ │ │ ├── bmisc.c │ │ │ │ │ │ ├── bmmap.c │ │ │ │ │ │ ├── bnet.c │ │ │ │ │ │ ├── bproc.c │ │ │ │ │ │ ├── brng.c │ │ │ │ │ │ ├── bseg.c │ │ │ │ │ │ ├── bsrcs.mk │ │ │ │ │ │ ├── btime.c │ │ │ │ │ │ └── objs.mk │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── MANIFEST │ │ │ │ │ │ ├── MacErrorHandling.h │ │ │ │ │ │ ├── macdll.c │ │ │ │ │ │ ├── macdll.h │ │ │ │ │ │ ├── macio.c │ │ │ │ │ │ ├── macio.h │ │ │ │ │ │ ├── macrng.c │ │ │ │ │ │ ├── macsocket.h │ │ │ │ │ │ ├── macsockotpt.c │ │ │ │ │ │ ├── macthr.c │ │ │ │ │ │ ├── mactime.c │ │ │ │ │ │ ├── mactime.h │ │ │ │ │ │ ├── mdcriticalregion.c │ │ │ │ │ │ ├── mdcriticalregion.h │ │ │ │ │ │ ├── mdmac.c │ │ │ │ │ │ ├── mdmac.h │ │ │ │ │ │ └── prcpucfg.h │ │ │ │ │ ├── os2 │ │ │ │ │ │ ├── .cvsignore │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── objs.mk │ │ │ │ │ │ ├── os2_errors.c │ │ │ │ │ │ ├── os2cv.c │ │ │ │ │ │ ├── os2emx.s │ │ │ │ │ │ ├── os2gc.c │ │ │ │ │ │ ├── os2inrval.c │ │ │ │ │ │ ├── os2io.c │ │ │ │ │ │ ├── os2misc.c │ │ │ │ │ │ ├── os2poll.c │ │ │ │ │ │ ├── os2rng.c │ │ │ │ │ │ ├── os2sem.c │ │ │ │ │ │ ├── os2sock.c │ │ │ │ │ │ ├── os2thred.c │ │ │ │ │ │ ├── os2vaclegacy.s │ │ │ │ │ │ └── os2vacpp.asm │ │ │ │ │ ├── prosdep.c │ │ │ │ │ ├── unix │ │ │ │ │ │ ├── .cvsignore │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── aix.c │ │ │ │ │ │ ├── aixwrap.c │ │ │ │ │ │ ├── bsdi.c │ │ │ │ │ │ ├── darwin.c │ │ │ │ │ │ ├── dgux.c │ │ │ │ │ │ ├── freebsd.c │ │ │ │ │ │ ├── hpux.c │ │ │ │ │ │ ├── irix.c │ │ │ │ │ │ ├── linux.c │ │ │ │ │ │ ├── ncr.c │ │ │ │ │ │ ├── nec.c │ │ │ │ │ │ ├── netbsd.c │ │ │ │ │ │ ├── nextstep.c │ │ │ │ │ │ ├── nto.c │ │ │ │ │ │ ├── objs.mk │ │ │ │ │ │ ├── openbsd.c │ │ │ │ │ │ ├── openvms.c │ │ │ │ │ │ ├── os_AIX.s │ │ │ │ │ │ ├── os_BSD_386_2.s │ │ │ │ │ │ ├── os_Darwin_ppc.s │ │ │ │ │ │ ├── os_Darwin_x86.s │ │ │ │ │ │ ├── os_HPUX.s │ │ │ │ │ │ ├── os_HPUX_ia64.s │ │ │ │ │ │ ├── os_Irix.s │ │ │ │ │ │ ├── os_Linux_ia64.s │ │ │ │ │ │ ├── os_Linux_x86.s │ │ │ │ │ │ ├── os_Linux_x86_64.s │ │ │ │ │ │ ├── os_ReliantUNIX.s │ │ │ │ │ │ ├── os_SunOS.s │ │ │ │ │ │ ├── os_SunOS_sparcv9.s │ │ │ │ │ │ ├── os_SunOS_ultrasparc.s │ │ │ │ │ │ ├── os_SunOS_x86.s │ │ │ │ │ │ ├── os_SunOS_x86_64.s │ │ │ │ │ │ ├── osf1.c │ │ │ │ │ │ ├── pthreads_user.c │ │ │ │ │ │ ├── qnx.c │ │ │ │ │ │ ├── reliantunix.c │ │ │ │ │ │ ├── rhapsody.c │ │ │ │ │ │ ├── riscos.c │ │ │ │ │ │ ├── scoos.c │ │ │ │ │ │ ├── solaris.c │ │ │ │ │ │ ├── sony.c │ │ │ │ │ │ ├── sunos4.c │ │ │ │ │ │ ├── unix.c │ │ │ │ │ │ ├── unix_errors.c │ │ │ │ │ │ ├── unixware.c │ │ │ │ │ │ ├── uxpoll.c │ │ │ │ │ │ ├── uxproces.c │ │ │ │ │ │ ├── uxrng.c │ │ │ │ │ │ ├── uxshm.c │ │ │ │ │ │ └── uxwrap.c │ │ │ │ │ └── windows │ │ │ │ │ │ ├── .cvsignore │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ ├── ntdllmn.c │ │ │ │ │ │ ├── ntgc.c │ │ │ │ │ │ ├── ntinrval.c │ │ │ │ │ │ ├── ntio.c │ │ │ │ │ │ ├── ntmisc.c │ │ │ │ │ │ ├── ntsec.c │ │ │ │ │ │ ├── ntsem.c │ │ │ │ │ │ ├── ntthread.c │ │ │ │ │ │ ├── objs.mk │ │ │ │ │ │ ├── w16callb.c │ │ │ │ │ │ ├── w16error.c │ │ │ │ │ │ ├── w16fmem.c │ │ │ │ │ │ ├── w16gc.c │ │ │ │ │ │ ├── w16io.c │ │ │ │ │ │ ├── w16mem.c │ │ │ │ │ │ ├── w16null.c │ │ │ │ │ │ ├── w16proc.c │ │ │ │ │ │ ├── w16sock.c │ │ │ │ │ │ ├── w16stdio.c │ │ │ │ │ │ ├── w16thred.c │ │ │ │ │ │ ├── w32ipcsem.c │ │ │ │ │ │ ├── w32poll.c │ │ │ │ │ │ ├── w32rng.c │ │ │ │ │ │ ├── w32shm.c │ │ │ │ │ │ ├── w95cv.c │ │ │ │ │ │ ├── w95dllmain.c │ │ │ │ │ │ ├── w95io.c │ │ │ │ │ │ ├── w95sock.c │ │ │ │ │ │ ├── w95thred.c │ │ │ │ │ │ └── win32_errors.c │ │ │ │ ├── memory │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── prgcleak.c │ │ │ │ │ ├── prseg.c │ │ │ │ │ ├── prshm.c │ │ │ │ │ └── prshma.c │ │ │ │ ├── misc │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── compile-et.pl │ │ │ │ │ ├── pralarm.c │ │ │ │ │ ├── pratom.c │ │ │ │ │ ├── prcountr.c │ │ │ │ │ ├── prdtoa.c │ │ │ │ │ ├── prenv.c │ │ │ │ │ ├── prerr.c │ │ │ │ │ ├── prerr.et │ │ │ │ │ ├── prerr.properties │ │ │ │ │ ├── prerror.c │ │ │ │ │ ├── prerrortable.c │ │ │ │ │ ├── prinit.c │ │ │ │ │ ├── prinrval.c │ │ │ │ │ ├── pripc.c │ │ │ │ │ ├── pripcsem.c │ │ │ │ │ ├── prlog2.c │ │ │ │ │ ├── prlong.c │ │ │ │ │ ├── prnetdb.c │ │ │ │ │ ├── prolock.c │ │ │ │ │ ├── prrng.c │ │ │ │ │ ├── prsystem.c │ │ │ │ │ ├── prthinfo.c │ │ │ │ │ ├── prtime.c │ │ │ │ │ ├── prtpool.c │ │ │ │ │ └── prtrace.c │ │ │ │ ├── nspr.def │ │ │ │ ├── nspr.rc │ │ │ │ ├── nspr_symvec.opt │ │ │ │ ├── os2extra.def │ │ │ │ ├── prvrsion.c │ │ │ │ ├── pthreads │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── ptio.c │ │ │ │ │ ├── ptmisc.c │ │ │ │ │ ├── ptsynch.c │ │ │ │ │ └── ptthread.c │ │ │ │ └── threads │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── combined │ │ │ │ │ ├── .cvsignore │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── prucpu.c │ │ │ │ │ ├── prucv.c │ │ │ │ │ ├── prulock.c │ │ │ │ │ ├── prustack.c │ │ │ │ │ └── pruthr.c │ │ │ │ │ ├── prcmon.c │ │ │ │ │ ├── prcthr.c │ │ │ │ │ ├── prdump.c │ │ │ │ │ ├── prmon.c │ │ │ │ │ ├── prrwlock.c │ │ │ │ │ ├── prsem.c │ │ │ │ │ └── prtpd.c │ │ │ └── tests │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.TXT │ │ │ │ ├── accept.c │ │ │ │ ├── acceptread.c │ │ │ │ ├── acceptreademu.c │ │ │ │ ├── addrstr.c │ │ │ │ ├── affinity.c │ │ │ │ ├── alarm.c │ │ │ │ ├── anonfm.c │ │ │ │ ├── append.c │ │ │ │ ├── atomic.c │ │ │ │ ├── attach.c │ │ │ │ ├── bigfile.c │ │ │ │ ├── bigfile2.c │ │ │ │ ├── bigfile3.c │ │ │ │ ├── bug1test.c │ │ │ │ ├── cleanup.c │ │ │ │ ├── cltsrv.c │ │ │ │ ├── concur.c │ │ │ │ ├── cvar.c │ │ │ │ ├── cvar2.c │ │ │ │ ├── dbmalloc.c │ │ │ │ ├── dbmalloc1.c │ │ │ │ ├── dceemu.c │ │ │ │ ├── depend.c │ │ │ │ ├── dll │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── my.def │ │ │ │ ├── mygetval.c │ │ │ │ └── mysetval.c │ │ │ │ ├── dlltest.c │ │ │ │ ├── dtoa.c │ │ │ │ ├── env.c │ │ │ │ ├── errcodes.c │ │ │ │ ├── errset.c │ │ │ │ ├── exit.c │ │ │ │ ├── fdcach.c │ │ │ │ ├── fileio.c │ │ │ │ ├── foreign.c │ │ │ │ ├── forktest.c │ │ │ │ ├── formattm.c │ │ │ │ ├── freeif.c │ │ │ │ ├── fsync.c │ │ │ │ ├── getai.c │ │ │ │ ├── gethost.c │ │ │ │ ├── getproto.c │ │ │ │ ├── i2l.c │ │ │ │ ├── initclk.c │ │ │ │ ├── inrval.c │ │ │ │ ├── instrumt.c │ │ │ │ ├── intrio.c │ │ │ │ ├── intrupt.c │ │ │ │ ├── io_timeout.c │ │ │ │ ├── io_timeoutk.c │ │ │ │ ├── io_timeoutu.c │ │ │ │ ├── ioconthr.c │ │ │ │ ├── ipv6.c │ │ │ │ ├── join.c │ │ │ │ ├── joinkk.c │ │ │ │ ├── joinku.c │ │ │ │ ├── joinuk.c │ │ │ │ ├── joinuu.c │ │ │ │ ├── layer.c │ │ │ │ ├── lazyinit.c │ │ │ │ ├── libfilename.c │ │ │ │ ├── lltest.c │ │ │ │ ├── lock.c │ │ │ │ ├── lockfile.c │ │ │ │ ├── logger.c │ │ │ │ ├── macbuild │ │ │ │ └── .empty │ │ │ │ ├── makedir.c │ │ │ │ ├── many_cv.c │ │ │ │ ├── mbcs.c │ │ │ │ ├── multiacc.c │ │ │ │ ├── multiwait.c │ │ │ │ ├── nameshm1.c │ │ │ │ ├── nbconn.c │ │ │ │ ├── nblayer.c │ │ │ │ ├── nonblock.c │ │ │ │ ├── ntioto.c │ │ │ │ ├── ntoh.c │ │ │ │ ├── obsints.c │ │ │ │ ├── op_2long.c │ │ │ │ ├── op_excl.c │ │ │ │ ├── op_filnf.c │ │ │ │ ├── op_filok.c │ │ │ │ ├── op_noacc.c │ │ │ │ ├── op_nofil.c │ │ │ │ ├── openfile.c │ │ │ │ ├── parent.c │ │ │ │ ├── peek.c │ │ │ │ ├── perf.c │ │ │ │ ├── pipeping.c │ │ │ │ ├── pipeping2.c │ │ │ │ ├── pipepong.c │ │ │ │ ├── pipepong2.c │ │ │ │ ├── pipeself.c │ │ │ │ ├── poll_er.c │ │ │ │ ├── poll_nm.c │ │ │ │ ├── poll_to.c │ │ │ │ ├── pollable.c │ │ │ │ ├── prftest.c │ │ │ │ ├── prftest1.c │ │ │ │ ├── prftest2.c │ │ │ │ ├── primblok.c │ │ │ │ ├── priotest.c │ │ │ │ ├── provider.c │ │ │ │ ├── prpoll.c │ │ │ │ ├── prpollml.c │ │ │ │ ├── prselect.c │ │ │ │ ├── prttools.h │ │ │ │ ├── randseed.c │ │ │ │ ├── ranfile.c │ │ │ │ ├── rmdir.c │ │ │ │ ├── runtests.ksh │ │ │ │ ├── runtests.sh │ │ │ │ ├── runy2ktests.ksh │ │ │ │ ├── rwlocktest.c │ │ │ │ ├── sel_spd.c │ │ │ │ ├── selct_er.c │ │ │ │ ├── selct_nm.c │ │ │ │ ├── selct_to.c │ │ │ │ ├── select2.c │ │ │ │ ├── selintr.c │ │ │ │ ├── sem.c │ │ │ │ ├── sema.c │ │ │ │ ├── semaerr.c │ │ │ │ ├── semaerr1.c │ │ │ │ ├── semaping.c │ │ │ │ ├── semapong.c │ │ │ │ ├── sendzlf.c │ │ │ │ ├── server_test.c │ │ │ │ ├── servr_kk.c │ │ │ │ ├── servr_ku.c │ │ │ │ ├── servr_uk.c │ │ │ │ ├── servr_uu.c │ │ │ │ ├── short_thread.c │ │ │ │ ├── sigpipe.c │ │ │ │ ├── sleep.c │ │ │ │ ├── socket.c │ │ │ │ ├── sockopt.c │ │ │ │ ├── sockping.c │ │ │ │ ├── sockpong.c │ │ │ │ ├── sprintf.c │ │ │ │ ├── sproc_ch.c │ │ │ │ ├── sproc_p.c │ │ │ │ ├── stack.c │ │ │ │ ├── stat.c │ │ │ │ ├── stdio.c │ │ │ │ ├── str2addr.c │ │ │ │ ├── strod.c │ │ │ │ ├── suspend.c │ │ │ │ ├── switch.c │ │ │ │ ├── system.c │ │ │ │ ├── testbit.c │ │ │ │ ├── testfile.c │ │ │ │ ├── threads.c │ │ │ │ ├── thrpool_client.c │ │ │ │ ├── thrpool_server.c │ │ │ │ ├── thruput.c │ │ │ │ ├── time.c │ │ │ │ ├── timemac.c │ │ │ │ ├── timetest.c │ │ │ │ ├── tmoacc.c │ │ │ │ ├── tmocon.c │ │ │ │ ├── tpd.c │ │ │ │ ├── udpsrv.c │ │ │ │ ├── ut_ttools.h │ │ │ │ ├── vercheck.c │ │ │ │ ├── version.c │ │ │ │ ├── w16gui │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.in │ │ │ │ ├── popfile.c │ │ │ │ ├── popfind.c │ │ │ │ ├── popfont.c │ │ │ │ ├── poppad.c │ │ │ │ ├── poppad.h │ │ │ │ ├── poppad.ico │ │ │ │ ├── poppad.rc │ │ │ │ ├── popprnt0.c │ │ │ │ └── readme.1st │ │ │ │ ├── writev.c │ │ │ │ ├── xnotify.c │ │ │ │ ├── y2k.c │ │ │ │ ├── y2ktmo.c │ │ │ │ ├── yield.c │ │ │ │ └── zerolen.c │ │ └── tools │ │ │ ├── .cvsignore │ │ │ ├── Makefile.in │ │ │ ├── httpget.c │ │ │ └── tail.c │ ├── shtool │ └── src │ │ ├── fdlibm │ │ ├── e_acos.c │ │ ├── e_acosh.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_atanh.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_gamma.c │ │ ├── e_gamma_r.c │ │ ├── e_hypot.c │ │ ├── e_j0.c │ │ ├── e_j1.c │ │ ├── e_jn.c │ │ ├── e_lgamma.c │ │ ├── e_lgamma_r.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_remainder.c │ │ ├── e_scalb.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── fdlibm.h │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_standard.c │ │ ├── k_tan.c │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_cbrt.c │ │ ├── s_ceil.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_erf.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_ilogb.c │ │ ├── s_isnan.c │ │ ├── s_ldexp.c │ │ ├── s_lib_version.c │ │ ├── s_log1p.c │ │ ├── s_logb.c │ │ ├── s_matherr.c │ │ ├── s_modf.c │ │ ├── s_nextafter.c │ │ ├── s_rint.c │ │ ├── s_scalbn.c │ │ ├── s_signgam.c │ │ ├── s_significand.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── w_acos.c │ │ ├── w_acosh.c │ │ ├── w_asin.c │ │ ├── w_atan2.c │ │ ├── w_atanh.c │ │ ├── w_cosh.c │ │ ├── w_exp.c │ │ ├── w_fmod.c │ │ ├── w_gamma.c │ │ ├── w_gamma_r.c │ │ ├── w_hypot.c │ │ ├── w_j0.c │ │ ├── w_j1.c │ │ ├── w_jn.c │ │ ├── w_lgamma.c │ │ ├── w_lgamma_r.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_pow.c │ │ ├── w_remainder.c │ │ ├── w_scalb.c │ │ ├── w_sinh.c │ │ └── w_sqrt.c │ │ ├── js.c │ │ ├── js.msg │ │ ├── jsapi.c │ │ ├── jsapi.h │ │ ├── jsarena.c │ │ ├── jsarena.h │ │ ├── jsarray.c │ │ ├── jsarray.h │ │ ├── jsatom.c │ │ ├── jsatom.h │ │ ├── jsautocfg.hw │ │ ├── jsbit.h │ │ ├── jsbool.c │ │ ├── jsbool.h │ │ ├── jsclist.h │ │ ├── jscntxt.c │ │ ├── jscntxt.h │ │ ├── jscompat.h │ │ ├── jsconfig.h │ │ ├── jscpucfg.c │ │ ├── jscpucfg.h │ │ ├── jsdate.c │ │ ├── jsdate.h │ │ ├── jsdbgapi.c │ │ ├── jsdbgapi.h │ │ ├── jsdhash.c │ │ ├── jsdhash.h │ │ ├── jsdso.c │ │ ├── jsdso.h │ │ ├── jsdtoa.c │ │ ├── jsdtoa.h │ │ ├── jsemit.c │ │ ├── jsemit.h │ │ ├── jsexn.c │ │ ├── jsexn.h │ │ ├── jsfile.c │ │ ├── jsfile.h │ │ ├── jsfile.msg │ │ ├── jsfun.c │ │ ├── jsfun.h │ │ ├── jsgc.c │ │ ├── jsgc.h │ │ ├── jshash.c │ │ ├── jshash.h │ │ ├── jsinterp.c │ │ ├── jsinterp.h │ │ ├── jslibmath.h │ │ ├── jslock.c │ │ ├── jslock.h │ │ ├── jslog2.c │ │ ├── jslong.c │ │ ├── jslong.h │ │ ├── jsmath.c │ │ ├── jsmath.h │ │ ├── jsnum.c │ │ ├── jsnum.h │ │ ├── jsobj.c │ │ ├── jsobj.h │ │ ├── jsopcode.c │ │ ├── jsopcode.h │ │ ├── jsopcode.tbl │ │ ├── jsosdep.h │ │ ├── jsotypes.h │ │ ├── jsparse.c │ │ ├── jsparse.h │ │ ├── jsprf.c │ │ ├── jsprf.h │ │ ├── jsprvtd.h │ │ ├── jspubtd.h │ │ ├── jsregexp.c │ │ ├── jsregexp.h │ │ ├── jsscan.c │ │ ├── jsscan.h │ │ ├── jsscope.c │ │ ├── jsscope.h │ │ ├── jsscript.c │ │ ├── jsscript.h │ │ ├── jsshell.msg │ │ ├── jsstddef.h │ │ ├── jsstr.c │ │ ├── jsstr.h │ │ ├── jstypes.h │ │ ├── jsutil.c │ │ ├── jsutil.h │ │ ├── jsxdrapi.c │ │ ├── jsxdrapi.h │ │ ├── jsxml.c │ │ ├── jsxml.h │ │ ├── perlconnect │ │ ├── JS.pm │ │ ├── JS.xs │ │ ├── MANIFEST │ │ ├── Makefile.PL.in │ │ ├── PerlConnect.pm │ │ ├── jsperl.c │ │ ├── jsperl.h │ │ ├── jsperlpvt.h │ │ └── typemap │ │ ├── prmjtime.c │ │ └── prmjtime.h ├── ldns │ ├── Changelog │ ├── LICENSE │ ├── Makefile.in │ ├── README │ ├── README.snapshots │ ├── README.svn │ ├── ac_pkg_swig.m4 │ ├── acx_nlnetlabs.m4 │ ├── acx_python.m4 │ ├── buffer.c │ ├── compat │ │ ├── b32_ntop.c │ │ ├── b32_pton.c │ │ ├── b64_ntop.c │ │ ├── b64_pton.c │ │ ├── ctime_r.c │ │ ├── fake-rfc2553.c │ │ ├── fake-rfc2553.h │ │ ├── gettimeofday.c │ │ ├── gettimeofday.h │ │ ├── gmtime_r.c │ │ ├── inet_aton.c │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── isascii.c │ │ ├── isblank.c │ │ ├── malloc.c │ │ ├── memmove.c │ │ ├── realloc.c │ │ ├── snprintf.c │ │ ├── strlcpy.c │ │ └── timegm.c │ ├── configure.ac │ ├── contrib │ │ ├── NETLDNS.readme.txt │ │ ├── build-solaris.sh │ │ └── python │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ ├── Makefile │ │ │ └── source │ │ │ │ ├── conf.py │ │ │ │ ├── examples │ │ │ │ ├── example1.rst │ │ │ │ ├── example2.py │ │ │ │ ├── example2.rst │ │ │ │ ├── example3.rst │ │ │ │ ├── example4.rst │ │ │ │ ├── example5.rst │ │ │ │ ├── example6.rst │ │ │ │ ├── example7.rst │ │ │ │ ├── example8.rst │ │ │ │ └── index.rst │ │ │ │ ├── index.rst │ │ │ │ ├── install.rst │ │ │ │ └── modules │ │ │ │ ├── ldns.rst │ │ │ │ ├── ldns_buffer.rst │ │ │ │ ├── ldns_dname.rst │ │ │ │ ├── ldns_dnssec.rst │ │ │ │ ├── ldns_func.rst │ │ │ │ ├── ldns_key.rst │ │ │ │ ├── ldns_key_list.rst │ │ │ │ ├── ldns_pkt.rst │ │ │ │ ├── ldns_rdf.rst │ │ │ │ ├── ldns_resolver.rst │ │ │ │ ├── ldns_rr.rst │ │ │ │ ├── ldns_rr_list.rst │ │ │ │ └── ldns_zone.rst │ │ │ ├── examples │ │ │ ├── ldns-axfr.py │ │ │ ├── ldns-buf.py │ │ │ ├── ldns-dnssec.py │ │ │ ├── ldns-higher.py │ │ │ ├── ldns-keygen.py │ │ │ ├── ldns-mx.py │ │ │ ├── ldns-mx1.py │ │ │ ├── ldns-mx2.py │ │ │ ├── ldns-newpkt.py │ │ │ ├── ldns-signzone.py │ │ │ ├── ldns-zone.py │ │ │ └── zone.txt │ │ │ ├── ldns.i │ │ │ ├── ldns_buffer.i │ │ │ ├── ldns_dname.i │ │ │ ├── ldns_dnssec.i │ │ │ ├── ldns_key.i │ │ │ ├── ldns_packet.i │ │ │ ├── ldns_rdf.i │ │ │ ├── ldns_resolver.i │ │ │ ├── ldns_rr.i │ │ │ └── ldns_zone.i │ ├── dname.c │ ├── dnssec.c │ ├── dnssec_sign.c │ ├── dnssec_verify.c │ ├── dnssec_zone.c │ ├── doc │ │ ├── API-header.xml │ │ ├── API.xml │ │ ├── CodingStyle │ │ ├── TODO │ │ ├── design.dox │ │ ├── dns-lib-implementations │ │ ├── doxyparse.pl │ │ ├── function_manpages │ │ ├── header.html │ │ ├── images │ │ │ ├── LogoInGradientBar2-y100.png │ │ │ ├── libdnsoverview.png │ │ │ └── libdnsoverview.svg │ │ ├── libdns.css │ │ ├── tutorial1_mx.dox │ │ ├── tutorial2_zone.dox │ │ └── tutorial3_signzone.dox │ ├── drill │ │ ├── ChangeLog.22-nov-2005 │ │ ├── Makefile.in │ │ ├── README │ │ ├── REGRESSIONS │ │ ├── chasetrace.c │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── dnssec.c │ │ ├── drill.1 │ │ ├── drill.c │ │ ├── drill.h.in │ │ ├── drill_util.c │ │ ├── drill_util.h │ │ ├── error.c │ │ ├── install-sh │ │ ├── root.c │ │ ├── securetrace.c │ │ └── work.c │ ├── error.c │ ├── examples │ │ ├── Makefile.in │ │ ├── README │ │ ├── config.h.in │ │ ├── configure │ │ ├── configure.ac │ │ ├── fake-rfc2553.h │ │ ├── ldns-chaos.1 │ │ ├── ldns-chaos.c │ │ ├── ldns-compare-zones.1 │ │ ├── ldns-compare-zones.c │ │ ├── ldns-dpa.1 │ │ ├── ldns-dpa.c │ │ ├── ldns-key2ds.1 │ │ ├── ldns-key2ds.c │ │ ├── ldns-keyfetcher.1 │ │ ├── ldns-keyfetcher.c │ │ ├── ldns-keygen.1 │ │ ├── ldns-keygen.c │ │ ├── ldns-mx.1 │ │ ├── ldns-mx.c │ │ ├── ldns-notify.1 │ │ ├── ldns-notify.c │ │ ├── ldns-nsec3-hash.1 │ │ ├── ldns-nsec3-hash.c │ │ ├── ldns-read-zone.1 │ │ ├── ldns-read-zone.c │ │ ├── ldns-resolver.1 │ │ ├── ldns-resolver.c │ │ ├── ldns-revoke.1 │ │ ├── ldns-revoke.c │ │ ├── ldns-rrsig.1 │ │ ├── ldns-rrsig.c │ │ ├── ldns-signzone.1 │ │ ├── ldns-signzone.c │ │ ├── ldns-test-edns.1 │ │ ├── ldns-test-edns.c │ │ ├── ldns-testns.1 │ │ ├── ldns-testns.c │ │ ├── ldns-testpkts.c │ │ ├── ldns-testpkts.h │ │ ├── ldns-update.1 │ │ ├── ldns-update.c │ │ ├── ldns-verify-zone.1 │ │ ├── ldns-verify-zone.c │ │ ├── ldns-version.1 │ │ ├── ldns-version.c │ │ ├── ldns-walk.1 │ │ ├── ldns-walk.c │ │ ├── ldns-zcat.1 │ │ ├── ldns-zcat.c │ │ ├── ldns-zsplit.1 │ │ ├── ldns-zsplit.c │ │ ├── ldnsd.1 │ │ └── ldnsd.c │ ├── higher.c │ ├── host2str.c │ ├── host2wire.c │ ├── keys.c │ ├── ldns │ │ ├── buffer.h │ │ ├── common.h │ │ ├── config.h.in │ │ ├── dname.h │ │ ├── dnssec.h │ │ ├── dnssec_sign.h │ │ ├── dnssec_verify.h │ │ ├── dnssec_zone.h │ │ ├── error.h │ │ ├── higher.h │ │ ├── host2str.h │ │ ├── host2wire.h │ │ ├── keys.h │ │ ├── ldns.h │ │ ├── net.h.in │ │ ├── packet.h │ │ ├── parse.h │ │ ├── rbtree.h │ │ ├── rdata.h │ │ ├── resolver.h │ │ ├── rr.h │ │ ├── rr_functions.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── str2host.h │ │ ├── tsig.h │ │ ├── update.h │ │ ├── util.h.in │ │ ├── wire2host.h │ │ └── zone.h │ ├── ldns_symbols.def │ ├── libdns.doxygen │ ├── libdns.vim │ ├── linktest.c │ ├── net.c │ ├── packaging │ │ ├── fedora │ │ │ └── ldns.spec │ │ ├── ldns-config.in │ │ └── libldns.pc.in │ ├── packet.c │ ├── parse.c │ ├── rbtree.c │ ├── rdata.c │ ├── resolver.c │ ├── rr.c │ ├── rr_functions.c │ ├── sha1.c │ ├── sha2.c │ ├── str2host.c │ ├── tsig.c │ ├── update.c │ ├── util.c │ ├── wire2host.c │ └── zone.c ├── libcodec2 │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README_fdmdv.txt │ ├── asterisk │ │ ├── README │ │ ├── asterisk-codec2.patch │ │ ├── codec_codec2.c │ │ ├── ex_codec2.h │ │ └── make_asterisk_patch.sh │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── A_m.gif │ │ ├── omega_0.gif │ │ ├── phi_m.gif │ │ ├── s_n.gif │ │ └── s_n.txt │ ├── fltk │ │ ├── Makefile │ │ └── fl_fdmdv.cxx │ ├── octave │ │ ├── README.txt │ │ ├── av_imp.m │ │ ├── cbphase.m │ │ ├── codec2_demo.m │ │ ├── cspec.m │ │ ├── fdmdv.m │ │ ├── fdmdv_demod.m │ │ ├── fdmdv_demod_c.m │ │ ├── fdmdv_mod.m │ │ ├── fdmdv_ut.m │ │ ├── gen_rn_coeffs.m │ │ ├── glottal.m │ │ ├── hp_filt.m │ │ ├── load_raw.m │ │ ├── lpcpf.m │ │ ├── lsp_pdf.m │ │ ├── lspwarp.m │ │ ├── phase.m │ │ ├── phase2.m │ │ ├── phasesecord.m │ │ ├── pitch_test.m │ │ ├── pl.m │ │ ├── pl2.m │ │ ├── plamp.m │ │ ├── plinterp.m │ │ ├── pllpcpf.m │ │ ├── pllsp.m │ │ ├── pllspdt.m │ │ ├── plnlp.m │ │ ├── plphase.m │ │ ├── plpitch.m │ │ ├── plppe.m │ │ ├── plsub.m │ │ ├── plvoicing.m │ │ ├── png.m │ │ ├── postfilter.m │ │ ├── pulse.m │ │ ├── sd.m │ │ ├── spec.m │ │ ├── tfdmdv.m │ │ ├── tget_spec.m │ │ ├── twotone.m │ │ ├── twotone1.m │ │ └── undersample.m │ ├── pitch │ │ ├── hts1a.p │ │ └── hts2a.p │ ├── portaudio │ │ ├── Makefile │ │ ├── pa_impresp.c │ │ ├── pa_play.c │ │ ├── pa_rec.c │ │ └── pa_recplay.c │ ├── raw │ │ ├── b0067.raw │ │ ├── cq_ref.raw │ │ ├── cross.raw │ │ ├── cross_melp2400.raw │ │ ├── f2400.raw │ │ ├── forig.raw │ │ ├── forig_ambe2000.raw │ │ ├── forig_g729a.raw │ │ ├── forig_gsm13k.raw │ │ ├── forig_speex_8k.raw │ │ ├── g3plx.raw │ │ ├── hts.raw │ │ ├── hts1.raw │ │ ├── hts1a.raw │ │ ├── hts1a_ambe2000.raw │ │ ├── hts1a_g729a.raw │ │ ├── hts1a_gsm13k.raw │ │ ├── hts1a_melp.raw │ │ ├── hts1a_speex_8k.raw │ │ ├── hts2.raw │ │ ├── hts2a.raw │ │ ├── hts2a_ambe2000.raw │ │ ├── hts2a_g729a.raw │ │ ├── hts2a_gsm13k.raw │ │ ├── hts2a_melp.raw │ │ ├── hts2a_speex_8k.raw │ │ ├── k6hx.raw │ │ ├── kristoff.raw │ │ ├── m2400.raw │ │ ├── mmt1.raw │ │ ├── mmt1_ambe2000.raw │ │ ├── mmt1_g729a.raw │ │ ├── mmt1_gsm13k.raw │ │ ├── mmt1_speex_8k.raw │ │ ├── morig.raw │ │ ├── morig_ambe2000.raw │ │ ├── morig_g729a.raw │ │ ├── morig_gsm13k.raw │ │ └── morig_speex_8k.raw │ ├── script │ │ ├── menu.sh │ │ ├── playraw.sh │ │ ├── raw2wav.sh │ │ └── wav2raw.sh │ ├── src │ │ ├── Makefile.am │ │ ├── _kiss_fft_guts.h │ │ ├── ampexp.c │ │ ├── ampexp.h │ │ ├── c2dec.c │ │ ├── c2demo.c │ │ ├── c2enc.c │ │ ├── c2sim.c │ │ ├── codeall.sh │ │ ├── codebook.h │ │ ├── codebook │ │ │ ├── dlsp1.txt │ │ │ ├── dlsp10.txt │ │ │ ├── dlsp2.txt │ │ │ ├── dlsp3.txt │ │ │ ├── dlsp4.txt │ │ │ ├── dlsp5.txt │ │ │ ├── dlsp6.txt │ │ │ ├── dlsp7.txt │ │ │ ├── dlsp8.txt │ │ │ ├── dlsp9.txt │ │ │ ├── gecb.txt │ │ │ ├── lsp1.txt │ │ │ ├── lsp10.txt │ │ │ ├── lsp2.txt │ │ │ ├── lsp3.txt │ │ │ ├── lsp4.txt │ │ │ ├── lsp5.txt │ │ │ ├── lsp6.txt │ │ │ ├── lsp7.txt │ │ │ ├── lsp8.txt │ │ │ ├── lsp8910.txt │ │ │ ├── lsp9.txt │ │ │ ├── lspdt.txt │ │ │ ├── lspdt1-10.txt │ │ │ ├── lspdt1-4.txt │ │ │ ├── lspdt1.txt │ │ │ ├── lspdt10.txt │ │ │ ├── lspdt2.txt │ │ │ ├── lspdt3.txt │ │ │ ├── lspdt4.txt │ │ │ ├── lspdt5-10.txt │ │ │ ├── lspdt5.txt │ │ │ ├── lspdt6.txt │ │ │ ├── lspdt7.txt │ │ │ ├── lspdt8.txt │ │ │ ├── lspdt9.txt │ │ │ ├── lspjvm1.txt │ │ │ ├── lspjvm2.txt │ │ │ ├── lspjvm3.txt │ │ │ ├── lspres_bw1.txt │ │ │ ├── lspres_bw2.txt │ │ │ ├── lspres_centre1.txt │ │ │ ├── lspres_centre2.txt │ │ │ ├── lspvqanssi1.txt │ │ │ ├── lspvqanssi2.txt │ │ │ ├── lspvqanssi3.txt │ │ │ ├── lspvqanssi4.txt │ │ │ ├── lspvqexp1.txt │ │ │ ├── lspvqexp2.txt │ │ │ └── lspvqexp3.txt │ │ ├── codebookres.c │ │ ├── codebookvq.c │ │ ├── codec2.c │ │ ├── codec2.h │ │ ├── codec2_internal.h │ │ ├── comp.h │ │ ├── defines.h │ │ ├── dump.c │ │ ├── dump.h │ │ ├── fdmdv.c │ │ ├── fdmdv.h │ │ ├── fdmdv_demod.c │ │ ├── fdmdv_get_test_bits.c │ │ ├── fdmdv_interleave.c │ │ ├── fdmdv_internal.h │ │ ├── fdmdv_mod.c │ │ ├── fdmdv_put_test_bits.c │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── four1.c │ │ ├── four1.h │ │ ├── fq20.sh │ │ ├── generate_codebook.c │ │ ├── genlspdtcb.c │ │ ├── globals.c │ │ ├── globals.h │ │ ├── glottal.c │ │ ├── hanning.h │ │ ├── interp.c │ │ ├── interp.h │ │ ├── kiss_fft.c │ │ ├── kiss_fft.h │ │ ├── listen.sh │ │ ├── listen1.sh │ │ ├── listensim.sh │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── nlp.c │ │ ├── nlp.h │ │ ├── octave.c │ │ ├── octave.h │ │ ├── os.h │ │ ├── pack.c │ │ ├── phase.c │ │ ├── phase.h │ │ ├── phaseexp.c │ │ ├── phaseexp.h │ │ ├── pilot_coeff.h │ │ ├── postfilter.c │ │ ├── postfilter.h │ │ ├── quantise.c │ │ ├── quantise.h │ │ ├── rn.h │ │ ├── sim.sh │ │ ├── sine.c │ │ ├── sine.h │ │ └── test_bits.h │ ├── unittest │ │ ├── Makefile.am │ │ ├── README │ │ ├── create_interleaver.c │ │ ├── de.c │ │ ├── dvdongle2.c │ │ ├── extract.c │ │ ├── ge_train.c │ │ ├── genampdata.c │ │ ├── genlsp.c │ │ ├── genphdata.c │ │ ├── genres.c │ │ ├── lsp1.txt │ │ ├── lsp10.txt │ │ ├── lsp2.txt │ │ ├── lsp3.txt │ │ ├── lsp4.txt │ │ ├── lsp45678910.txt │ │ ├── lsp5.txt │ │ ├── lsp6.txt │ │ ├── lsp7.txt │ │ ├── lsp8.txt │ │ ├── lsp9.txt │ │ ├── lspd123.txt │ │ ├── lspd456.txt │ │ ├── lspd678910.txt │ │ ├── lspd78.txt │ │ ├── lspd910.txt │ │ ├── lspjnd5-10.txt │ │ ├── lspsync.c │ │ ├── lsptest.c │ │ ├── mksine.c │ │ ├── polar2rect.c │ │ ├── pre.c │ │ ├── run_tests.sh │ │ ├── scalarlsptest.c │ │ ├── sd.c │ │ ├── sd.h │ │ ├── speexlsptest.c │ │ ├── t48_8.c │ │ ├── tcodec2.c │ │ ├── tcontphase.c │ │ ├── tfdmdv.c │ │ ├── tfifo.c │ │ ├── tinterp.c │ │ ├── tlspsens.c │ │ ├── tnlp.c │ │ ├── tprede.c │ │ ├── tquant.c │ │ ├── tsrc.c │ │ ├── vq_train_jvm.c │ │ ├── vqtrain.c │ │ ├── vqtrainjnd.c │ │ ├── vqtrainph.c │ │ └── vqtrainsp.c │ ├── voicing │ │ ├── hts1a.v │ │ ├── hts2a.v │ │ ├── mmt1.v │ │ └── morig.v │ └── wav │ │ ├── f2400.wav │ │ ├── forig.wav │ │ ├── forig_speex_8k.wav │ │ ├── hts1a.wav │ │ ├── hts1a_c2_v0.1.wav │ │ ├── hts1a_g729a.wav │ │ ├── hts1a_speex_8k.wav │ │ ├── hts2a.wav │ │ ├── hts2a_c2_v0.1.wav │ │ ├── hts2a_g729a.wav │ │ ├── hts2a_speex_8k.wav │ │ ├── m2400.wav │ │ ├── mmt1.wav │ │ ├── mmt1_speex_8k.wav │ │ ├── morig.wav │ │ └── morig_speex_8k.wav ├── libdingaling │ ├── .update │ ├── AUTHORS │ ├── 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 │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure.ac │ ├── configure.gnu │ ├── depcomp │ ├── doc │ ├── docs │ │ ├── Doxygen.conf │ │ └── docs.vcproj │ ├── install-sh │ ├── libdingaling.2008.vcproj │ ├── libdingaling.2010.vcxproj │ ├── libdingaling.2010.vcxproj.filters │ ├── libdingaling.2012.vcxproj │ ├── libdingaling.2012.vcxproj.filters │ ├── libdingaling.vcproj │ ├── ltmain.sh │ ├── missing │ ├── mkinstalldirs │ └── src │ │ ├── dingaling.def │ │ ├── ldl_compat.h │ │ ├── libdingaling.c │ │ ├── libdingaling.h │ │ ├── sha1.c │ │ └── sha1.h ├── libedit │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── THANKS │ ├── acinclude.m4 │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── Makefile.am │ │ ├── editline.3.roff │ │ ├── editrc.5.roff │ │ └── mdoc2man.awk │ ├── examples │ │ ├── Makefile.am │ │ ├── fileman.c │ │ └── test.c │ ├── libedit.pc.in │ ├── patches │ │ ├── 00-vis.h.patch │ │ ├── 01-term.c.patch │ │ ├── 02-el_term.h.patch │ │ ├── 03-unvis.c.patch │ │ ├── 04-strlcpy.c.patch │ │ ├── 05-strlcat.c.patch │ │ ├── 06-readline.c.patch │ │ ├── 07-sys.h.patch │ │ ├── 08-el.h.patch │ │ ├── 09-search.c.patch │ │ ├── 10-readline.h.patch │ │ ├── 11-el.c.patch │ │ ├── 12-history.c.patch │ │ ├── 13-vis.c.patch │ │ ├── 14-fgetln.c.patch │ │ ├── 15-filecomplete.c.patch │ │ ├── 16-tc1.c.patch │ │ ├── 17-editline.3.roff.patch │ │ ├── 18-editrc.5.roff.patch │ │ ├── README │ │ ├── cvs_export.sh │ │ ├── extra_dist_list.sh │ │ ├── patches_apply.sh │ │ ├── patches_check.sh │ │ ├── patches_make.sh │ │ ├── timestamp.cvsexport │ │ ├── update_dist.sh │ │ └── update_version.sh │ └── src │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── chared.c │ │ ├── chared.h │ │ ├── common.c │ │ ├── editline │ │ └── readline.h │ │ ├── el.c │ │ ├── el.h │ │ ├── el_term.h │ │ ├── emacs.c │ │ ├── fgetln.c │ │ ├── filecomplete.c │ │ ├── filecomplete.h │ │ ├── hist.c │ │ ├── hist.h │ │ ├── histedit.h │ │ ├── history.c │ │ ├── key.c │ │ ├── key.h │ │ ├── makelist │ │ ├── map.c │ │ ├── map.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── prompt.c │ │ ├── prompt.h │ │ ├── read.c │ │ ├── read.h │ │ ├── readline.c │ │ ├── refresh.c │ │ ├── refresh.h │ │ ├── search.c │ │ ├── search.h │ │ ├── shlib_version │ │ ├── sig.c │ │ ├── sig.h │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── sys.h │ │ ├── term.c │ │ ├── tokenizer.c │ │ ├── tty.c │ │ ├── tty.h │ │ ├── unvis.c │ │ ├── vi.c │ │ ├── vis.c │ │ └── vis.h ├── libg722_1 │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── autogen.sh │ ├── config │ │ ├── ax_c99_features.m4 │ │ ├── ax_check_real_file.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── ax_fixed_point_machine.m4 │ │ ├── ax_misaligned_access_fails.m4 │ │ ├── depcomp │ │ └── missing │ ├── configure.ac │ ├── configure.gnu │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libg722_1-dev.install │ │ ├── libg722_1-doc.install │ │ ├── libg722_11.install │ │ ├── rules │ │ └── watch │ ├── doc │ │ ├── Makefile.am │ │ ├── css.css │ │ ├── libg722_1-doxygen │ │ └── wrapper.xsl │ ├── g722_1.pc.in │ ├── g722_1.spec.in │ ├── src │ │ ├── Makefile.am │ │ ├── basop32.c │ │ ├── basop32.h │ │ ├── bitstream.c │ │ ├── bitstream.h │ │ ├── coef2sam.c │ │ ├── coef2sam.h │ │ ├── common.c │ │ ├── commonf.c │ │ ├── dct4.c │ │ ├── dct4_a.c │ │ ├── dct4_a.h │ │ ├── dct4_s.c │ │ ├── dct4_s.h │ │ ├── decoder.c │ │ ├── decoderf.c │ │ ├── defs.h │ │ ├── encoder.c │ │ ├── encoderf.c │ │ ├── g722_1.h.in │ │ ├── g722_1 │ │ │ ├── g722_1.h │ │ │ ├── version.h │ │ │ └── version.h.in │ │ ├── generated │ │ │ ├── dct4.h │ │ │ └── g722_1.h │ │ ├── huff_tab.c │ │ ├── huff_tab.h │ │ ├── libg722_1.dsp │ │ ├── libg722_1.sln │ │ ├── libg722_1.vcproj │ │ ├── make_dct4_tables.c │ │ ├── make_tables.c │ │ ├── msvc │ │ │ ├── g722_1.def │ │ │ ├── gettimeofday.c │ │ │ ├── inttypes.h │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── sys │ │ │ │ └── time.h │ │ │ ├── tgmath.h │ │ │ ├── unistd.h │ │ │ ├── vc8proj.foot │ │ │ └── vc8proj.head │ │ ├── sam2coef.c │ │ ├── sam2coef.h │ │ ├── tables.c │ │ ├── tables.h │ │ ├── utilities.c │ │ └── utilities.h │ ├── test-data │ │ ├── Makefile.am │ │ ├── itu │ │ │ └── Makefile.am │ │ └── local │ │ │ ├── Makefile.am │ │ │ └── short_wb_voice.wav │ ├── tests │ │ ├── Makefile.am │ │ ├── g192_bit_stream.c │ │ ├── g192_bit_stream.h │ │ ├── g722_1_tests.c │ │ ├── regression_tests.sh.in │ │ └── timing.h │ ├── unpack_g722_1_data.sh │ └── wrapper.xsl ├── libks │ ├── Makefile │ └── src │ │ ├── include │ │ ├── cc.h │ │ ├── ks.h │ │ ├── ks_buffer.h │ │ ├── ks_config.h │ │ ├── ks_json.h │ │ ├── ks_threadmutex.h │ │ ├── mpool.h │ │ ├── mpool_loc.h │ │ ├── simclist.h │ │ ├── table.h │ │ └── table_loc.h │ │ ├── ks.c │ │ ├── ks_buffer.c │ │ ├── ks_config.c │ │ ├── ks_json.c │ │ ├── ks_threadmutex.c │ │ ├── mpool.c │ │ ├── simclist.c │ │ ├── table.c │ │ └── table_util.c ├── 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 │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── Cfg │ │ └── .empty │ ├── ChangeLog │ ├── INSTALL │ ├── M4 │ │ ├── Makefile.am │ │ ├── add_cflags.m4 │ │ ├── add_cxxflags.m4 │ │ ├── clang.m4 │ │ ├── clip_mode.m4 │ │ ├── endian.m4 │ │ ├── extra_largefile.m4 │ │ ├── extra_pkg.m4 │ │ ├── flexible_array.m4 │ │ ├── gcc_version.m4 │ │ ├── llrint.m4 │ │ ├── lrint.m4 │ │ ├── lrintf.m4 │ │ ├── mkoctfile_version.m4 │ │ ├── octave.m4 │ │ ├── really_gcc.m4 │ │ └── stack_protect.m4 │ ├── Makefile.am │ ├── Mingw-make-dist.sh │ ├── NEWS │ ├── Octave │ │ ├── Makefile.am │ │ ├── PKG_ADD │ │ ├── Readme.txt │ │ ├── format.h │ │ ├── octave_test.m │ │ ├── octave_test.sh │ │ ├── sndfile.cc │ │ ├── sndfile_load.m │ │ ├── sndfile_play.m │ │ └── sndfile_save.m │ ├── README │ ├── README.md │ ├── Scripts │ │ ├── android-configure.sh │ │ ├── build-test-tarball.mk.in │ │ ├── clang-sanitize.sh │ │ ├── cstyle.py │ │ ├── git-pre-commit-hook │ │ └── linux-to-win-cross-configure.sh │ ├── TODO │ ├── Win32 │ │ ├── Makefile.am │ │ ├── README-precompiled-dll.txt │ │ └── testprog.c │ ├── acinclude.m4 │ ├── autogen.sh │ ├── binheader_readf_check.py │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── FAQ.html │ │ ├── Makefile.am │ │ ├── api.html │ │ ├── bugs.html │ │ ├── command.html │ │ ├── development.html │ │ ├── dither.html │ │ ├── donate.html │ │ ├── embedded_files.html │ │ ├── index.html │ │ ├── libsndfile.css.in │ │ ├── libsndfile.jpg │ │ ├── linux_games_programming.txt │ │ ├── lists.html │ │ ├── new_file_type.HOWTO │ │ ├── octave.html │ │ ├── pkgconfig.html │ │ ├── print.css │ │ ├── sndfile_info.html │ │ ├── tutorial.html │ │ └── win32.html │ ├── echo-install-dirs.in │ ├── examples │ │ ├── Makefile.am │ │ ├── cooledit-fixer.c │ │ ├── generate.c │ │ ├── generate.cs │ │ ├── list_formats.c │ │ ├── make_sine.c │ │ ├── sfprocess.c │ │ ├── sndfile-convert.c │ │ ├── sndfile-info.c │ │ ├── sndfile-play-beos.cpp │ │ ├── sndfile-play.c │ │ ├── sndfile-to-text.c │ │ └── sndfilehandle.cc │ ├── libsndfile.spec.in │ ├── make_lite.py │ ├── man │ │ ├── Makefile.am │ │ ├── sndfile-cmp.1 │ │ ├── sndfile-concat.1 │ │ ├── sndfile-convert.1 │ │ ├── sndfile-info.1 │ │ ├── sndfile-interleave.1 │ │ ├── sndfile-metadata-get.1 │ │ └── sndfile-play.1 │ ├── programs │ │ ├── Makefile.am │ │ ├── common.c │ │ ├── common.h │ │ ├── sndfile-cmp.c │ │ ├── sndfile-concat.c │ │ ├── sndfile-convert.c │ │ ├── sndfile-deinterleave.c │ │ ├── sndfile-info.c │ │ ├── sndfile-interleave.c │ │ ├── sndfile-jackplay.c │ │ ├── sndfile-metadata-get.c │ │ ├── sndfile-metadata-set.c │ │ ├── sndfile-play-beos.cpp │ │ ├── sndfile-play.c │ │ ├── sndfile-salvage.c │ │ └── test-sndfile-metadata-set.py │ ├── reconfigure.mk │ ├── regtest │ │ ├── Makefile.am │ │ ├── Readme.txt │ │ ├── checksum.c │ │ ├── database.c │ │ ├── regtest.h │ │ └── sndfile-regtest.c │ ├── sndfile.pc.in │ ├── src │ │ ├── ALAC │ │ │ ├── ALACAudioTypes.h │ │ │ ├── ALACBitUtilities.c │ │ │ ├── ALACBitUtilities.h │ │ │ ├── ALACDecoder.h │ │ │ ├── ALACEncoder.h │ │ │ ├── EndianPortable.h │ │ │ ├── LICENSE │ │ │ ├── ag_dec.c │ │ │ ├── ag_enc.c │ │ │ ├── aglib.h │ │ │ ├── alac_codec.h │ │ │ ├── alac_decoder.c │ │ │ ├── alac_decoder.h │ │ │ ├── alac_encoder.c │ │ │ ├── dp_dec.c │ │ │ ├── dp_enc.c │ │ │ ├── dplib.h │ │ │ ├── matrix_dec.c │ │ │ ├── matrix_enc.c │ │ │ └── matrixlib.h │ │ ├── G72x │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── README.original │ │ │ ├── g721.c │ │ │ ├── g723_16.c │ │ │ ├── g723_24.c │ │ │ ├── g723_40.c │ │ │ ├── g72x.c │ │ │ ├── g72x.h │ │ │ ├── g72x_priv.h │ │ │ └── g72x_test.c │ │ ├── GSM610 │ │ │ ├── COPYRIGHT │ │ │ ├── ChangeLog │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── add.c │ │ │ ├── code.c │ │ │ ├── config.h │ │ │ ├── decode.c │ │ │ ├── gsm.h │ │ │ ├── gsm610_priv.h │ │ │ ├── gsm_create.c │ │ │ ├── gsm_decode.c │ │ │ ├── gsm_destroy.c │ │ │ ├── gsm_encode.c │ │ │ ├── gsm_option.c │ │ │ ├── long_term.c │ │ │ ├── lpc.c │ │ │ ├── preprocess.c │ │ │ ├── rpe.c │ │ │ ├── short_term.c │ │ │ └── table.c │ │ ├── Makefile.am │ │ ├── Symbols.darwin │ │ ├── Symbols.linux │ │ ├── Symbols.os2 │ │ ├── aiff.c │ │ ├── alac.c │ │ ├── alaw.c │ │ ├── au.c │ │ ├── audio_detect.c │ │ ├── avr.c │ │ ├── binheader_writef_check.py │ │ ├── broadcast.c │ │ ├── caf.c │ │ ├── cart.c │ │ ├── chanmap.c │ │ ├── chanmap.h │ │ ├── chunk.c │ │ ├── command.c │ │ ├── common.c │ │ ├── common.h │ │ ├── create_symbols_file.py │ │ ├── cygsndfile.def │ │ ├── dither.c │ │ ├── double64.c │ │ ├── dwd.c │ │ ├── dwvw.c │ │ ├── file_io.c │ │ ├── flac.c │ │ ├── float32.c │ │ ├── float_cast.h │ │ ├── g72x.c │ │ ├── gsm610.c │ │ ├── htk.c │ │ ├── id3.c │ │ ├── ima_adpcm.c │ │ ├── ima_oki_adpcm.c │ │ ├── ima_oki_adpcm.h │ │ ├── interleave.c │ │ ├── ircam.c │ │ ├── libsndfile-1.def │ │ ├── libsndfile.def │ │ ├── macbinary3.c │ │ ├── macos.c │ │ ├── make-static-lib-hidden-privates.sh │ │ ├── mat4.c │ │ ├── mat5.c │ │ ├── mpc2k.c │ │ ├── ms_adpcm.c │ │ ├── new.c │ │ ├── nist.c │ │ ├── ogg.c │ │ ├── ogg.h │ │ ├── ogg_opus.c │ │ ├── ogg_pcm.c │ │ ├── ogg_speex.c │ │ ├── ogg_vorbis.c │ │ ├── paf.c │ │ ├── pcm.c │ │ ├── pvf.c │ │ ├── raw.c │ │ ├── rf64.c │ │ ├── rx2.c │ │ ├── sd2.c │ │ ├── sds.c │ │ ├── sf_unistd.h │ │ ├── sfconfig.h │ │ ├── sfendian.h │ │ ├── sndfile.c │ │ ├── sndfile.h.in │ │ ├── sndfile.hh │ │ ├── strings.c │ │ ├── svx.c │ │ ├── test_audio_detect.c │ │ ├── test_broadcast_var.c │ │ ├── test_cart_var.c │ │ ├── test_conversions.c │ │ ├── test_endswap.c │ │ ├── test_endswap.def │ │ ├── test_endswap.tpl │ │ ├── test_file_io.c │ │ ├── test_float.c │ │ ├── test_ima_oki_adpcm.c │ │ ├── test_log_printf.c │ │ ├── test_main.c │ │ ├── test_main.h │ │ ├── test_strncpy_crlf.c │ │ ├── txw.c │ │ ├── ulaw.c │ │ ├── version-metadata.rc.in │ │ ├── voc.c │ │ ├── vox_adpcm.c │ │ ├── w64.c │ │ ├── wav.c │ │ ├── wav_w64.c │ │ ├── wav_w64.h │ │ ├── windows.c │ │ ├── wve.c │ │ └── xi.c │ └── tests │ │ ├── Makefile.am │ │ ├── aiff_rw_test.c │ │ ├── alaw_test.c │ │ ├── benchmark-0.0.28 │ │ ├── benchmark-1.0.0 │ │ ├── benchmark-1.0.0rc2 │ │ ├── benchmark-1.0.18pre16-hendrix │ │ ├── benchmark-1.0.18pre16-mingus │ │ ├── benchmark-1.0.6pre10-coltrane │ │ ├── benchmark-1.0.6pre10-miles │ │ ├── benchmark-latest-coltrane │ │ ├── benchmark.c │ │ ├── benchmark.def │ │ ├── benchmark.tpl │ │ ├── channel_test.c │ │ ├── checksum_test.c │ │ ├── chunk_test.c │ │ ├── command_test.c │ │ ├── compression_size_test.c │ │ ├── cpp_test.cc │ │ ├── dft_cmp.c │ │ ├── dft_cmp.h │ │ ├── dither_test.c │ │ ├── dwvw_test.c │ │ ├── error_test.c │ │ ├── external_libs_test.c │ │ ├── fix_this.c │ │ ├── floating_point_test.c │ │ ├── floating_point_test.def │ │ ├── floating_point_test.tpl │ │ ├── format_check_test.c │ │ ├── generate.c │ │ ├── generate.h │ │ ├── header_test.c │ │ ├── header_test.def │ │ ├── header_test.tpl │ │ ├── headerless_test.c │ │ ├── largefile_test.c │ │ ├── locale_test.c │ │ ├── lossy_comp_test.c │ │ ├── misc_test.c │ │ ├── multi_file_test.c │ │ ├── ogg_test.c │ │ ├── open_fail_test.c │ │ ├── pcm_test.c │ │ ├── pcm_test.def │ │ ├── pcm_test.tpl │ │ ├── peak_chunk_test.c │ │ ├── pedantic-header-test.sh.in │ │ ├── pipe_test.c │ │ ├── pipe_test.def │ │ ├── pipe_test.tpl │ │ ├── raw_test.c │ │ ├── rdwr_test.def │ │ ├── rdwr_test.tpl │ │ ├── scale_clip_test.c │ │ ├── scale_clip_test.def │ │ ├── scale_clip_test.tpl │ │ ├── sftest.c │ │ ├── sfversion.c │ │ ├── stdin_test.c │ │ ├── stdio_test.c │ │ ├── stdout_test.c │ │ ├── string_test.c │ │ ├── test_wrapper.sh.in │ │ ├── ulaw_test.c │ │ ├── utils.c │ │ ├── utils.def │ │ ├── utils.h │ │ ├── utils.tpl │ │ ├── virtual_io_test.c │ │ ├── vorbis_test.c │ │ ├── win32_ordinal_test.c │ │ ├── win32_test.c │ │ ├── write_read_test.c │ │ ├── write_read_test.def │ │ └── write_read_test.tpl ├── 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 │ ├── libteletone.2010.vcxproj.filters │ ├── libteletone.2012.vcxproj │ ├── libteletone.2012.vcxproj.filters │ ├── libteletone.vcproj │ ├── src │ │ ├── libteletone.h │ │ ├── libteletone_detect.c │ │ ├── libteletone_detect.h │ │ ├── libteletone_generate.c │ │ └── libteletone_generate.h │ └── teletone.def ├── libtpl-1.5 │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── bootstrap │ ├── configure.ac │ ├── doc │ │ ├── Makefile │ │ ├── NOTES │ │ ├── html │ │ │ ├── ChangeLog.html │ │ │ ├── img │ │ │ │ ├── banner.png │ │ │ │ ├── banner.svg │ │ │ │ ├── grad_azure.png │ │ │ │ ├── grad_azure.svg │ │ │ │ ├── rss.png │ │ │ │ ├── tpl-mini.png │ │ │ │ ├── tpl-mini.svg │ │ │ │ ├── tpl.dia │ │ │ │ ├── tpl.png │ │ │ │ └── tpl_aai.dia │ │ │ ├── index.html │ │ │ ├── license.html │ │ │ ├── perl.html │ │ │ ├── styles.css │ │ │ ├── tdh-quirks.css │ │ │ ├── tdh.css │ │ │ ├── toc.css │ │ │ └── userguide.html │ │ ├── pdf │ │ │ └── userguide.pdf │ │ └── txt │ │ │ ├── ChangeLog.txt │ │ │ ├── compiling.txt │ │ │ ├── examples.txt │ │ │ ├── future.txt │ │ │ ├── perl.txt │ │ │ ├── sflogo.txt │ │ │ ├── toc.txt │ │ │ ├── topnav.txt │ │ │ └── userguide.txt │ ├── lang │ │ └── perl │ │ │ ├── Tpl.pm │ │ │ ├── tests │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── client.pl │ │ │ ├── do_tests │ │ │ ├── server.pl │ │ │ ├── test1 │ │ │ ├── test1.ans │ │ │ ├── test10 │ │ │ ├── test10.ans │ │ │ ├── test11 │ │ │ ├── test11.ans │ │ │ ├── test12 │ │ │ ├── test12.ans │ │ │ ├── test13 │ │ │ ├── test13.ans │ │ │ ├── test14 │ │ │ ├── test14.ans │ │ │ ├── test14.tpl │ │ │ ├── test15 │ │ │ ├── test15.ans │ │ │ ├── test15.tpl │ │ │ ├── test16 │ │ │ ├── test16.ans │ │ │ ├── test17 │ │ │ ├── test17.ans │ │ │ ├── test18 │ │ │ ├── test18.ans │ │ │ ├── test19 │ │ │ ├── test19.ans │ │ │ ├── test2 │ │ │ ├── test2.ans │ │ │ ├── test20 │ │ │ ├── test20.ans │ │ │ ├── test21 │ │ │ ├── test21.ans │ │ │ ├── test22 │ │ │ ├── test22.ans │ │ │ ├── test23 │ │ │ ├── test3 │ │ │ ├── test3.ans │ │ │ ├── test4 │ │ │ ├── test4.ans │ │ │ ├── test5 │ │ │ ├── test5.ans │ │ │ ├── test6 │ │ │ ├── test6.ans │ │ │ ├── test7 │ │ │ ├── test7.ans │ │ │ ├── test8 │ │ │ ├── test8.ans │ │ │ ├── test9 │ │ │ └── test9.ans │ │ │ ├── tplfmt │ │ │ └── tplxml │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── tpl.c │ │ ├── tpl.h │ │ └── win │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── mman.h │ │ │ ├── mmap.c │ │ │ └── nonempty.c │ └── tests │ │ ├── Makefile │ │ ├── Makefile.alt │ │ ├── Makefile.mingw │ │ ├── README │ │ ├── dbx.sh │ │ ├── do_tests │ │ ├── do_tests.cygwin │ │ ├── int64_align.c │ │ ├── malign.c │ │ ├── mgwtest.c │ │ ├── other │ │ ├── Makefile │ │ ├── README │ │ ├── do_tests │ │ ├── other1.ans │ │ └── other1.cpp │ │ ├── sizes │ │ ├── test1 │ │ ├── test1-mingw.c │ │ ├── test1.ans │ │ ├── test1.c │ │ ├── test1.out │ │ ├── test10 │ │ ├── test10.ans │ │ ├── test10.c │ │ ├── test10.out │ │ ├── test10.tpl │ │ ├── test100 │ │ ├── test100.ans │ │ ├── test100.c │ │ ├── test100.out │ │ ├── test101 │ │ ├── test101.ans │ │ ├── test101.c │ │ ├── test101.out │ │ ├── test102 │ │ ├── test102.ans │ │ ├── test102.c │ │ ├── test102.out │ │ ├── test103 │ │ ├── test103.ans │ │ ├── test103.c │ │ ├── test103.out │ │ ├── test104 │ │ ├── test104.ans │ │ ├── test104.c │ │ ├── test104.out │ │ ├── test105 │ │ ├── test105.ans │ │ ├── test105.c │ │ ├── test105.out │ │ ├── test106 │ │ ├── test106.ans │ │ ├── test106.c │ │ ├── test106.out │ │ ├── test107 │ │ ├── test107.ans │ │ ├── test107.c │ │ ├── test107.out │ │ ├── test108 │ │ ├── test108.ans │ │ ├── test108.c │ │ ├── test108.out │ │ ├── test109 │ │ ├── test109.ans │ │ ├── test109.c │ │ ├── test109.out │ │ ├── test11 │ │ ├── test11.ans │ │ ├── test11.c │ │ ├── test11.out │ │ ├── test11.tpl │ │ ├── test110 │ │ ├── test110.ans │ │ ├── test110.c │ │ ├── test110.out │ │ ├── test111 │ │ ├── test111.ans │ │ ├── test111.c │ │ ├── test111.out │ │ ├── test112 │ │ ├── test112.ans │ │ ├── test112.c │ │ ├── test112.out │ │ ├── test113 │ │ ├── test113.ans │ │ ├── test113.c │ │ ├── test113.out │ │ ├── test114 │ │ ├── test114.ans │ │ ├── test114.c │ │ ├── test114.out │ │ ├── test115 │ │ ├── test115.ans │ │ ├── test115.c │ │ ├── test115.out │ │ ├── test116 │ │ ├── test116.ans │ │ ├── test116.c │ │ ├── test116.out │ │ ├── test117 │ │ ├── test117.ans │ │ ├── test117.c │ │ ├── test117.out │ │ ├── test118 │ │ ├── test118.ans │ │ ├── test118.c │ │ ├── test118.out │ │ ├── test119 │ │ ├── test119.ans │ │ ├── test119.c │ │ ├── test119.out │ │ ├── test12 │ │ ├── test12.ans │ │ ├── test12.c │ │ ├── test12.out │ │ ├── test12.tpl │ │ ├── test120 │ │ ├── test120.ans │ │ ├── test120.c │ │ ├── test120.err │ │ ├── test120.out │ │ ├── test121 │ │ ├── test121.ans │ │ ├── test121.c │ │ ├── test121.out │ │ ├── test122 │ │ ├── test122.ans │ │ ├── test122.c │ │ ├── test122.out │ │ ├── test123 │ │ ├── test123.ans │ │ ├── test123.c │ │ ├── test123.err │ │ ├── test123.out │ │ ├── test124 │ │ ├── test124.ans │ │ ├── test124.c │ │ ├── test124.out │ │ ├── test13 │ │ ├── test13.ans │ │ ├── test13.c │ │ ├── test13.out │ │ ├── test13.tpl │ │ ├── test14 │ │ ├── test14.ans │ │ ├── test14.c │ │ ├── test14.out │ │ ├── test14.tpl │ │ ├── test15 │ │ ├── test15.ans │ │ ├── test15.c │ │ ├── test15.out │ │ ├── test15.tpl │ │ ├── test16 │ │ ├── test16.ans │ │ ├── test16.c │ │ ├── test16.out │ │ ├── test16.tpl │ │ ├── test17 │ │ ├── test17.ans │ │ ├── test17.c │ │ ├── test17.out │ │ ├── test17.tpl │ │ ├── test18 │ │ ├── test18.ans │ │ ├── test18.c │ │ ├── test18.out │ │ ├── test19 │ │ ├── test19.ans │ │ ├── test19.c │ │ ├── test19.out │ │ ├── test2 │ │ ├── test2.ans │ │ ├── test2.c │ │ ├── test2.out │ │ ├── test20 │ │ ├── test20.ans │ │ ├── test20.c │ │ ├── test20.out │ │ ├── test21 │ │ ├── test21.ans │ │ ├── test21.c │ │ ├── test21.out │ │ ├── test22 │ │ ├── test22.ans │ │ ├── test22.c │ │ ├── test22.out │ │ ├── test23 │ │ ├── test23.ans │ │ ├── test23.c │ │ ├── test23.out │ │ ├── test24 │ │ ├── test24.ans │ │ ├── test24.c │ │ ├── test24.out │ │ ├── test24.tpl │ │ ├── test25 │ │ ├── test25.ans │ │ ├── test25.c │ │ ├── test25.out │ │ ├── test25.tpl │ │ ├── test26 │ │ ├── test26.ans │ │ ├── test26.c │ │ ├── test26.out │ │ ├── test26_0.tpl │ │ ├── test26_1.tpl │ │ ├── test26_2.tpl │ │ ├── test26_3.tpl │ │ ├── test27 │ │ ├── test27.ans │ │ ├── test27.c │ │ ├── test27.out │ │ ├── test28 │ │ ├── test28.ans │ │ ├── test28.c │ │ ├── test28.out │ │ ├── test29 │ │ ├── test29.ans │ │ ├── test29.c │ │ ├── test29.out │ │ ├── test3 │ │ ├── test3.ans │ │ ├── test3.c │ │ ├── test3.out │ │ ├── test30 │ │ ├── test30.ans │ │ ├── test30.c │ │ ├── test30.out │ │ ├── test31 │ │ ├── test31.ans │ │ ├── test31.c │ │ ├── test31.out │ │ ├── test32 │ │ ├── test32.ans │ │ ├── test32.c │ │ ├── test32.out │ │ ├── test33 │ │ ├── test33.ans │ │ ├── test33.c │ │ ├── test33.out │ │ ├── test34 │ │ ├── test34.ans │ │ ├── test34.c │ │ ├── test34.out │ │ ├── test35 │ │ ├── test35.ans │ │ ├── test35.c │ │ ├── test35.out │ │ ├── test36 │ │ ├── test36.ans │ │ ├── test36.c │ │ ├── test36.out │ │ ├── test37 │ │ ├── test37.ans │ │ ├── test37.c │ │ ├── test37.out │ │ ├── test38 │ │ ├── test38.ans │ │ ├── test38.c │ │ ├── test38.out │ │ ├── test39 │ │ ├── test39.ans │ │ ├── test39.c │ │ ├── test39.out │ │ ├── test39.tpl │ │ ├── test4 │ │ ├── test4.ans │ │ ├── test4.c │ │ ├── test4.out │ │ ├── test40 │ │ ├── test40.ans │ │ ├── test40.c │ │ ├── test40.out │ │ ├── test41 │ │ ├── test41.ans │ │ ├── test41.c │ │ ├── test41.out │ │ ├── test42 │ │ ├── test42.ans │ │ ├── test42.c │ │ ├── test42.out │ │ ├── test43 │ │ ├── test43.ans │ │ ├── test43.c │ │ ├── test43.out │ │ ├── test44 │ │ ├── test44.ans │ │ ├── test44.c │ │ ├── test44.out │ │ ├── test45 │ │ ├── test45.ans │ │ ├── test45.c │ │ ├── test45.out │ │ ├── test46 │ │ ├── test46.ans │ │ ├── test46.c │ │ ├── test46.out │ │ ├── test47 │ │ ├── test47.ans │ │ ├── test47.c │ │ ├── test47.out │ │ ├── test48 │ │ ├── test48.ans │ │ ├── test48.c │ │ ├── test48.out │ │ ├── test49 │ │ ├── test49.ans │ │ ├── test49.c │ │ ├── test49.out │ │ ├── test5 │ │ ├── test5.ans │ │ ├── test5.c │ │ ├── test5.out │ │ ├── test50 │ │ ├── test50.ans │ │ ├── test50.c │ │ ├── test50.out │ │ ├── test51 │ │ ├── test51.ans │ │ ├── test51.c │ │ ├── test51.out │ │ ├── test51_0.tpl │ │ ├── test51_1.tpl │ │ ├── test51_2.tpl │ │ ├── test51_3.tpl │ │ ├── test51_4.tpl │ │ ├── test52 │ │ ├── test52.ans │ │ ├── test52.c │ │ ├── test52.out │ │ ├── test53 │ │ ├── test53.ans │ │ ├── test53.c │ │ ├── test53.out │ │ ├── test54 │ │ ├── test54.ans │ │ ├── test54.c │ │ ├── test54.out │ │ ├── test54_0.tpl │ │ ├── test54_1.tpl │ │ ├── test54_2.tpl │ │ ├── test54_3.tpl │ │ ├── test54_4.tpl │ │ ├── test55 │ │ ├── test55.ans │ │ ├── test55.c │ │ ├── test55.out │ │ ├── test55_0.tpl │ │ ├── test55_1.tpl │ │ ├── test55_2.tpl │ │ ├── test55_3.tpl │ │ ├── test56 │ │ ├── test56.ans │ │ ├── test56.c │ │ ├── test56.out │ │ ├── test57 │ │ ├── test57.ans │ │ ├── test57.c │ │ ├── test57.out │ │ ├── test58 │ │ ├── test58.ans │ │ ├── test58.c │ │ ├── test58.out │ │ ├── test59 │ │ ├── test59.ans │ │ ├── test59.c │ │ ├── test59.out │ │ ├── test6 │ │ ├── test6.ans │ │ ├── test6.c │ │ ├── test6.out │ │ ├── test60 │ │ ├── test60.ans │ │ ├── test60.c │ │ ├── test60.out │ │ ├── test61 │ │ ├── test61.ans │ │ ├── test61.c │ │ ├── test61.out │ │ ├── test61_0.tpl │ │ ├── test61_1.tpl │ │ ├── test62 │ │ ├── test62.ans │ │ ├── test62.c │ │ ├── test62.out │ │ ├── test62_0.tpl │ │ ├── test63 │ │ ├── test63.ans │ │ ├── test63.c │ │ ├── test63.out │ │ ├── test64 │ │ ├── test64.ans │ │ ├── test64.c │ │ ├── test64.out │ │ ├── test65 │ │ ├── test65.ans │ │ ├── test65.c │ │ ├── test65.out │ │ ├── test66 │ │ ├── test66.ans │ │ ├── test66.c │ │ ├── test66.out │ │ ├── test67 │ │ ├── test67.ans │ │ ├── test67.c │ │ ├── test67.out │ │ ├── test68 │ │ ├── test68.ans │ │ ├── test68.c │ │ ├── test68.out │ │ ├── test69 │ │ ├── test69.ans │ │ ├── test69.c │ │ ├── test69.out │ │ ├── test7 │ │ ├── test7.ans │ │ ├── test7.c │ │ ├── test7.out │ │ ├── test70 │ │ ├── test70.ans │ │ ├── test70.c │ │ ├── test70.out │ │ ├── test71 │ │ ├── test71.ans │ │ ├── test71.c │ │ ├── test71.out │ │ ├── test72 │ │ ├── test72.ans │ │ ├── test72.c │ │ ├── test72.out │ │ ├── test73 │ │ ├── test73.ans │ │ ├── test73.c │ │ ├── test73.out │ │ ├── test74 │ │ ├── test74.ans │ │ ├── test74.c │ │ ├── test74.out │ │ ├── test75 │ │ ├── test75.ans │ │ ├── test75.c │ │ ├── test75.out │ │ ├── test76 │ │ ├── test76.ans │ │ ├── test76.c │ │ ├── test76.out │ │ ├── test77 │ │ ├── test77.ans │ │ ├── test77.c │ │ ├── test77.out │ │ ├── test78 │ │ ├── test78.ans │ │ ├── test78.c │ │ ├── test78.out │ │ ├── test79 │ │ ├── test79.ans │ │ ├── test79.c │ │ ├── test79.out │ │ ├── test8 │ │ ├── test8.ans │ │ ├── test8.c │ │ ├── test8.out │ │ ├── test80 │ │ ├── test80.ans │ │ ├── test80.c │ │ ├── test80.out │ │ ├── test81 │ │ ├── test81.ans │ │ ├── test81.c │ │ ├── test81.out │ │ ├── test82 │ │ ├── test82.ans │ │ ├── test82.c │ │ ├── test82.out │ │ ├── test83 │ │ ├── test83.ans │ │ ├── test83.c │ │ ├── test83.out │ │ ├── test84 │ │ ├── test84.ans │ │ ├── test84.c │ │ ├── test84.out │ │ ├── test84_0.tpl │ │ ├── test84_1.tpl │ │ ├── test85 │ │ ├── test85.ans │ │ ├── test85.c │ │ ├── test85.out │ │ ├── test85.tpl │ │ ├── test86 │ │ ├── test86.ans │ │ ├── test86.c │ │ ├── test86.out │ │ ├── test87 │ │ ├── test87.ans │ │ ├── test87.c │ │ ├── test87.out │ │ ├── test88 │ │ ├── test88.ans │ │ ├── test88.c │ │ ├── test88.out │ │ ├── test89 │ │ ├── test89.ans │ │ ├── test89.c │ │ ├── test89.out │ │ ├── test9 │ │ ├── test9.ans │ │ ├── test9.c │ │ ├── test9.out │ │ ├── test9.tpl │ │ ├── test90 │ │ ├── test90.ans │ │ ├── test90.c │ │ ├── test90.out │ │ ├── test91 │ │ ├── test91.ans │ │ ├── test91.c │ │ ├── test91.out │ │ ├── test92 │ │ ├── test92.ans │ │ ├── test92.c │ │ ├── test92.out │ │ ├── test93 │ │ ├── test93.ans │ │ ├── test93.c │ │ ├── test93.out │ │ ├── test94 │ │ ├── test94.ans │ │ ├── test94.c │ │ ├── test94.out │ │ ├── test95 │ │ ├── test95.ans │ │ ├── test95.c │ │ ├── test95.out │ │ ├── test96 │ │ ├── test96.ans │ │ ├── test96.c │ │ ├── test96.out │ │ ├── test97 │ │ ├── test97.ans │ │ ├── test97.c │ │ ├── test97.out │ │ ├── test98 │ │ ├── test98.ans │ │ ├── test98.c │ │ ├── test98.out │ │ ├── test99 │ │ ├── test99.ans │ │ ├── test99.c │ │ ├── test99.out │ │ ├── test99.tpl │ │ └── threads │ │ ├── Makefile │ │ ├── README │ │ ├── test1.ans │ │ └── test1.c ├── libzrtp │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── acinclude.m4 │ ├── bootstrap.sh │ ├── configure.ac │ ├── create_docs.sh │ ├── create_pack.pl │ ├── doc │ │ ├── Doxyfile.in │ │ └── manuals │ │ │ ├── changelog.dox │ │ │ ├── howto.dox │ │ │ ├── main.dox │ │ │ └── rng.dox │ ├── include │ │ ├── zrtp.h │ │ ├── zrtp_base.h │ │ ├── zrtp_config.h │ │ ├── zrtp_config_android.h │ │ ├── zrtp_config_symbian.h │ │ ├── zrtp_config_user.h │ │ ├── zrtp_config_win.h │ │ ├── zrtp_crypto.h │ │ ├── zrtp_ec.h │ │ ├── zrtp_engine.h │ │ ├── zrtp_error.h │ │ ├── zrtp_iface.h │ │ ├── zrtp_iface_cache.h │ │ ├── zrtp_iface_scheduler.h │ │ ├── zrtp_iface_system.h │ │ ├── zrtp_legal.h │ │ ├── zrtp_list.h │ │ ├── zrtp_log.h │ │ ├── zrtp_pbx.h │ │ ├── zrtp_protocol.h │ │ ├── zrtp_srtp.h │ │ ├── zrtp_srtp_builtin.h │ │ ├── zrtp_string.h │ │ ├── zrtp_types.h │ │ └── zrtp_version.h │ ├── projects │ │ ├── android │ │ │ └── jni │ │ │ │ └── Android.mk │ │ ├── symbian │ │ │ ├── DelayRuner.cpp │ │ │ ├── DelayRuner.h │ │ │ ├── bld.bat │ │ │ ├── bld.inf │ │ │ ├── bldgcce.bat │ │ │ ├── libzrtp.mmp │ │ │ └── zrtp_iface_symb.cpp │ │ ├── win │ │ │ ├── libzrtp.2010.vcxproj │ │ │ ├── libzrtp.2010.vcxproj.filters │ │ │ ├── libzrtp.2012.vcxproj │ │ │ ├── libzrtp.2012.vcxproj.filters │ │ │ ├── libzrtp.sln │ │ │ ├── libzrtp.vcproj │ │ │ ├── libzrtp.x32.vcxproj │ │ │ ├── libzrtp.x32.vcxproj.filters │ │ │ ├── libzrtp.x64.vcxproj │ │ │ ├── libzrtp.x64.vcxproj.filters │ │ │ ├── libzrtp_not_ec.vcproj │ │ │ └── libzrtp_test.vcproj │ │ ├── win_ce │ │ │ ├── libzrtp_test_wince.vcproj │ │ │ ├── libzrtp_wince.sln │ │ │ ├── libzrtp_wince.vcproj │ │ │ └── libzrtp_wince_not_ec.vcproj │ │ ├── win_kernel │ │ │ ├── MAKEFILE.WIN32 │ │ │ ├── MAKEFILE.WIN64 │ │ │ ├── MAKEFILE_NOT_EC.WIN32 │ │ │ └── MAKEFILE_NOT_EC.WIN64 │ │ └── xcode │ │ │ ├── libzrtp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── libzrtp_test.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── src │ │ ├── zrtp.c │ │ ├── zrtp_crc.c │ │ ├── zrtp_crypto_aes.c │ │ ├── zrtp_crypto_atl.c │ │ ├── zrtp_crypto_ec.c │ │ ├── zrtp_crypto_ecdh.c │ │ ├── zrtp_crypto_ecdsa.c │ │ ├── zrtp_crypto_hash.c │ │ ├── zrtp_crypto_pk.c │ │ ├── zrtp_crypto_sas.c │ │ ├── zrtp_datatypes.c │ │ ├── zrtp_engine.c │ │ ├── zrtp_engine_driven.c │ │ ├── zrtp_iface_cache.c │ │ ├── zrtp_iface_scheduler.c │ │ ├── zrtp_iface_sys.c │ │ ├── zrtp_initiator.c │ │ ├── zrtp_legal.c │ │ ├── zrtp_list.c │ │ ├── zrtp_log.c │ │ ├── zrtp_pbx.c │ │ ├── zrtp_protocol.c │ │ ├── zrtp_responder.c │ │ ├── zrtp_rng.c │ │ ├── zrtp_srtp_builtin.c │ │ ├── zrtp_srtp_dm.c │ │ ├── zrtp_string.c │ │ ├── zrtp_utils.c │ │ └── zrtp_utils_proto.c │ ├── test │ │ ├── cache_test.c │ │ ├── cipher_test.c │ │ ├── cmockery │ │ │ ├── cmockery.c │ │ │ └── cmockery.h │ │ ├── dh_test.c │ │ ├── dk_test.c │ │ ├── ecdh_test.c │ │ ├── engine_helpers.c │ │ ├── enroll_test_helpers.c │ │ ├── enrollment_test.c │ │ ├── go_secure_test.c │ │ ├── hash_test.c │ │ ├── minor_bugs_test.c │ │ ├── queue.c │ │ ├── queue.h │ │ ├── sasrelay_test.c │ │ ├── srtp_replay_test.c │ │ ├── test_engine.c │ │ ├── test_engine.h │ │ └── zrtphash_test.c │ └── third_party │ │ ├── bgaes │ │ ├── aes.h │ │ ├── aes_modes.c │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ ├── aestab.h │ │ ├── bg2zrtp.h │ │ ├── brg_types.h │ │ ├── sha1.c │ │ ├── sha1.h │ │ ├── sha2.c │ │ └── sha2.h │ │ └── bnlib │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── Makefile.in │ │ ├── README.bn │ │ ├── README.bntest │ │ ├── bignum-ARM │ │ ├── README-small-memory │ │ ├── bntest16.c │ │ ├── config.h │ │ ├── cputime.h │ │ ├── kludge.h │ │ ├── lbn.h │ │ ├── lbn16.c │ │ ├── lbn16.h │ │ ├── lbnarm.h │ │ ├── lbnarm.s │ │ ├── lbnmem.c │ │ ├── lbnmem.h │ │ ├── sha256_arm.c │ │ └── sha256_core.s │ │ ├── bn.c │ │ ├── bn.doc │ │ ├── bn.h │ │ ├── bn00.c │ │ ├── bn16.c │ │ ├── bn16.h │ │ ├── bn32.c │ │ ├── bn32.h │ │ ├── bn64.c │ │ ├── bn64.h │ │ ├── bn68000.c │ │ ├── bn8086.c │ │ ├── bnconfig.hin │ │ ├── bnconfig.win │ │ ├── bninit16.c │ │ ├── bninit32.c │ │ ├── bninit64.c │ │ ├── bnintern.doc │ │ ├── bnprint.c │ │ ├── bnprint.h │ │ ├── bnsize00.h │ │ ├── bntest00.c │ │ ├── bntest16.c │ │ ├── bntest32.c │ │ ├── bntest64.c │ │ ├── bootstrap.sh │ │ ├── cfg │ │ ├── cfg.debug │ │ ├── configure.ac │ │ ├── cputime.h │ │ ├── germain.c │ │ ├── germain.h │ │ ├── germtest.c │ │ ├── jacobi.c │ │ ├── jacobi.h │ │ ├── kludge.h │ │ ├── lbn.h │ │ ├── lbn00.c │ │ ├── lbn16.c │ │ ├── lbn16.h │ │ ├── lbn32.c │ │ ├── lbn32.h │ │ ├── lbn64.c │ │ ├── lbn64.h │ │ ├── lbn68000.c │ │ ├── lbn68000.h │ │ ├── lbn68020.c │ │ ├── lbn68020.h │ │ ├── lbn68360.s │ │ ├── lbn80386.asm │ │ ├── lbn80386.h │ │ ├── lbn80386.s │ │ ├── lbn8086.asm │ │ ├── lbn8086.h │ │ ├── lbn960jx.h │ │ ├── lbn960jx.s │ │ ├── lbnalpha.h │ │ ├── lbnalpha.s │ │ ├── lbnmem.c │ │ ├── lbnmem.h │ │ ├── lbnppc.c │ │ ├── lbnppc.h │ │ ├── legal.c │ │ ├── legal.h │ │ ├── ppcasm.h │ │ ├── prime.c │ │ ├── prime.h │ │ ├── sieve.c │ │ ├── sieve.h │ │ ├── sizetest.c │ │ └── test │ │ ├── README.dhtest │ │ ├── README.dsatest │ │ ├── README.rsatest │ │ ├── dhtest.c │ │ ├── dsatest.c │ │ ├── first.h │ │ ├── kb.h │ │ ├── kbmsdos.c │ │ ├── kbunix.c │ │ ├── keygen.c │ │ ├── keygen.h │ │ ├── keys.c │ │ ├── keys.h │ │ ├── kludge.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── noise.c │ │ ├── noise.h │ │ ├── posix.h │ │ ├── primes.doc │ │ ├── primetest.c │ │ ├── pt.c │ │ ├── random.c │ │ ├── random.h │ │ ├── randpool.c │ │ ├── randpool.h │ │ ├── randtest.c │ │ ├── rsaglue.c │ │ ├── rsaglue.h │ │ ├── rsatest.c │ │ ├── sha.c │ │ ├── sha.h │ │ ├── types.h │ │ ├── userio.h │ │ └── usuals.h ├── 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 ├── openzap │ ├── .gitignore │ ├── .update │ ├── AUTHORS │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── acinclude.m4 │ ├── bootstrap │ ├── build │ │ └── libpcap.m4 │ ├── conf │ │ ├── m3ua.conf │ │ ├── openzap.conf │ │ ├── openzap.conf.xml │ │ ├── pika.conf │ │ ├── tones.conf │ │ ├── wanpipe.conf │ │ └── zt.conf │ ├── configure.ac │ ├── configure.gnu │ ├── docs │ │ └── Doxygen.conf │ ├── mod_openzap │ │ ├── Makefile.in │ │ ├── mod_openzap.2005.vcproj │ │ ├── mod_openzap.2008.vcproj │ │ └── mod_openzap.c │ ├── msvc │ │ ├── openzap.2005.vcproj │ │ ├── openzap.2008.vcproj │ │ ├── testanalog │ │ │ ├── testanalog.2005.vcproj │ │ │ └── testanalog.2008.vcproj │ │ └── testisdn │ │ │ ├── testisdn.2005.vcproj │ │ │ └── testisdn.2008.vcproj │ ├── openzap.2005.sln │ ├── openzap.2008.sln │ ├── openzap.pc.in │ ├── patches │ │ └── oz.diff │ └── src │ │ ├── detect_dtmf.c │ │ ├── detect_tones.c │ │ ├── fsk.c │ │ ├── g711.c │ │ ├── hashtable.c │ │ ├── hashtable_itr.c │ │ ├── include │ │ ├── fsk.h │ │ ├── g711.h │ │ ├── hashtable.h │ │ ├── hashtable_itr.h │ │ ├── hashtable_private.h │ │ ├── libteletone.h │ │ ├── libteletone_detect.h │ │ ├── libteletone_generate.h │ │ ├── openzap.h │ │ ├── sangoma_tdm_api.h │ │ ├── uart.h │ │ ├── zap_buffer.h │ │ ├── zap_config.h │ │ ├── zap_cpu_monitor.h │ │ ├── zap_dso.h │ │ ├── zap_m3ua.h │ │ ├── zap_threadmutex.h │ │ └── zap_types.h │ │ ├── isdn │ │ ├── 5ESSStateNT.c │ │ ├── 5ESSStateTE.c │ │ ├── 5ESSmes.c │ │ ├── DMSStateNT.c │ │ ├── DMSStateTE.c │ │ ├── DMSmes.c │ │ ├── EuroISDNStateNT.c │ │ ├── EuroISDNStateTE.c │ │ ├── Q921.c │ │ ├── Q931.c │ │ ├── Q931StateNT.c │ │ ├── Q931StateTE.c │ │ ├── Q931api.c │ │ ├── Q931ie.c │ │ ├── Q931mes.c │ │ ├── Q932mes.c │ │ ├── include │ │ │ ├── 5ESS.h │ │ │ ├── DMS.h │ │ │ ├── Q921.h │ │ │ ├── Q921priv.h │ │ │ ├── Q931.h │ │ │ ├── Q931ie.h │ │ │ ├── Q932.h │ │ │ ├── mfifo.h │ │ │ └── national.h │ │ ├── mfifo.c │ │ ├── nationalStateNT.c │ │ ├── nationalStateTE.c │ │ └── nationalmes.c │ │ ├── libteletone_detect.c │ │ ├── libteletone_generate.c │ │ ├── m3ua │ │ ├── mstm3ua.c │ │ └── mstm3ua.h │ │ ├── m3ua_client.c │ │ ├── m3ua_client.h │ │ ├── ozmod │ │ ├── ozmod_analog │ │ │ ├── ozmod_analog.2005.vcproj │ │ │ ├── ozmod_analog.2008.vcproj │ │ │ ├── ozmod_analog.c │ │ │ └── zap_analog.h │ │ ├── ozmod_analog_em │ │ │ ├── ozmod_analog_em.2005.vcproj │ │ │ ├── ozmod_analog_em.2008.vcproj │ │ │ ├── ozmod_analog_em.c │ │ │ └── zap_analog_em.h │ │ ├── ozmod_isdn │ │ │ ├── ozmod_isdn.2005.vcproj │ │ │ ├── ozmod_isdn.2008.vcproj │ │ │ ├── ozmod_isdn.c │ │ │ └── zap_isdn.h │ │ ├── ozmod_libpri │ │ │ ├── lpwrap_pri.c │ │ │ ├── lpwrap_pri.h │ │ │ ├── ozmod_libpri.c │ │ │ └── ozmod_libpri.h │ │ ├── ozmod_pika │ │ │ ├── ozmod_pika.2005.vcproj │ │ │ ├── ozmod_pika.2008.vcproj │ │ │ ├── ozmod_pika.c │ │ │ └── zap_pika.h │ │ ├── ozmod_r2 │ │ │ └── ozmod_r2.c │ │ ├── ozmod_sangoma_boost │ │ │ ├── ozmod_sangoma_boost.c │ │ │ ├── sangoma_boost_client.c │ │ │ ├── sangoma_boost_client.h │ │ │ ├── sigboost.h │ │ │ └── zap_sangoma_boost.h │ │ ├── ozmod_skel │ │ │ └── ozmod_skel.c │ │ ├── ozmod_wanpipe │ │ │ ├── ozmod_wanpipe.2005.vcproj │ │ │ ├── ozmod_wanpipe.2008.vcproj │ │ │ ├── ozmod_wanpipe.c │ │ │ └── wanpipe_tdm_api_iface.h │ │ └── ozmod_zt │ │ │ ├── ozmod_zt.c │ │ │ └── ozmod_zt.h │ │ ├── priserver.c │ │ ├── sangoma_pri.c │ │ ├── sangoma_pri.h │ │ ├── ss7 │ │ └── README │ │ ├── testanalog.c │ │ ├── testapp.c │ │ ├── testboost.c │ │ ├── testcid.c │ │ ├── testisdn.c │ │ ├── testm3ua.c │ │ ├── testpri.c │ │ ├── testr2.c │ │ ├── testtones.c │ │ ├── uart.c │ │ ├── zap_buffer.c │ │ ├── zap_callerid.c │ │ ├── zap_config.c │ │ ├── zap_cpu_monitor.c │ │ ├── zap_dso.c │ │ ├── zap_io.c │ │ ├── zap_m3ua.c │ │ └── zap_threadmutex.c ├── portaudio │ ├── .update │ ├── COMPILING.DARWIN │ ├── Doxyfile │ ├── LICENSE.txt │ ├── Makefile.darwin │ ├── Makefile.in │ ├── README.txt │ ├── SConstruct │ ├── V19-devel-readme.txt │ ├── acinclude.m4 │ ├── bindings │ │ └── cpp │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── SConscript │ │ │ ├── bin │ │ │ └── Makefile.am │ │ │ ├── build │ │ │ ├── gnu │ │ │ │ ├── Makefile.in │ │ │ │ ├── OUT_OF_DATE │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ └── install-sh │ │ │ ├── vc6 │ │ │ │ ├── devs_example.dsp │ │ │ │ ├── devs_example.dsw │ │ │ │ ├── sine_example.dsp │ │ │ │ ├── sine_example.dsw │ │ │ │ ├── static_library.dsp │ │ │ │ └── static_library.dsw │ │ │ ├── vc7 │ │ │ │ └── OUT_OF_DATE │ │ │ └── vc7_1 │ │ │ │ ├── devs_example.sln │ │ │ │ ├── devs_example.vcproj │ │ │ │ ├── sine_example.sln │ │ │ │ ├── sine_example.vcproj │ │ │ │ ├── static_library.sln │ │ │ │ └── static_library.vcproj │ │ │ ├── configure.ac │ │ │ ├── doc │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── config.doxy │ │ │ └── config.doxy.linux │ │ │ ├── example │ │ │ ├── devs.cxx │ │ │ └── sine.cxx │ │ │ ├── include │ │ │ ├── Makefile.am │ │ │ └── portaudiocpp │ │ │ │ ├── AsioDeviceAdapter.hxx │ │ │ │ ├── AutoSystem.hxx │ │ │ │ ├── BlockingStream.hxx │ │ │ │ ├── CFunCallbackStream.hxx │ │ │ │ ├── CallbackInterface.hxx │ │ │ │ ├── CallbackStream.hxx │ │ │ │ ├── CppFunCallbackStream.hxx │ │ │ │ ├── Device.hxx │ │ │ │ ├── DirectionSpecificStreamParameters.hxx │ │ │ │ ├── Exception.hxx │ │ │ │ ├── HostApi.hxx │ │ │ │ ├── InterfaceCallbackStream.hxx │ │ │ │ ├── MemFunCallbackStream.hxx │ │ │ │ ├── PortAudioCpp.hxx │ │ │ │ ├── SampleDataFormat.hxx │ │ │ │ ├── Stream.hxx │ │ │ │ ├── StreamParameters.hxx │ │ │ │ ├── System.hxx │ │ │ │ ├── SystemDeviceIterator.hxx │ │ │ │ └── SystemHostApiIterator.hxx │ │ │ ├── lib │ │ │ └── Makefile.am │ │ │ ├── portaudiocpp.pc.in │ │ │ └── source │ │ │ └── portaudiocpp │ │ │ ├── AsioDeviceAdapter.cxx │ │ │ ├── BlockingStream.cxx │ │ │ ├── CFunCallbackStream.cxx │ │ │ ├── CallbackInterface.cxx │ │ │ ├── CallbackStream.cxx │ │ │ ├── CppFunCallbackStream.cxx │ │ │ ├── Device.cxx │ │ │ ├── DirectionSpecificStreamParameters.cxx │ │ │ ├── Exception.cxx │ │ │ ├── HostApi.cxx │ │ │ ├── InterfaceCallbackStream.cxx │ │ │ ├── MemFunCallbackStream.cxx │ │ │ ├── Stream.cxx │ │ │ ├── StreamParameters.cxx │ │ │ ├── System.cxx │ │ │ ├── SystemDeviceIterator.cxx │ │ │ └── SystemHostApiIterator.cxx │ ├── build │ │ ├── dev-cpp │ │ │ ├── Makefile-dll │ │ │ ├── Makefile-static │ │ │ ├── portaudio-dll.dev │ │ │ ├── portaudio-static.dev │ │ │ └── readme.txt │ │ ├── msvc │ │ │ ├── portaudio.2008.vcproj │ │ │ ├── portaudio.2010.vcxproj │ │ │ ├── portaudio.2010.vcxproj.filters │ │ │ ├── portaudio.2012.vcxproj │ │ │ ├── portaudio.2012.vcxproj.filters │ │ │ ├── portaudio.def │ │ │ ├── portaudio.dsp │ │ │ ├── portaudio.dsw │ │ │ ├── portaudio.sln │ │ │ ├── portaudio.vcproj │ │ │ └── readme.txt │ │ └── scons │ │ │ ├── SConscript_common │ │ │ └── SConscript_opts │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── html │ │ │ └── .empty │ │ ├── src │ │ │ ├── license.dox │ │ │ ├── mainpage.dox │ │ │ └── srcguide.dox │ │ └── utils │ │ │ └── checkfiledocs.py │ ├── fixdir.bat │ ├── fixfile.bat │ ├── include │ │ ├── pa_asio.h │ │ ├── pa_jack.h │ │ ├── pa_linux_alsa.h │ │ ├── pa_mac_core.h │ │ ├── pa_win_ds.h │ │ ├── pa_win_waveformat.h │ │ ├── pa_win_wmme.h │ │ └── portaudio.h │ ├── index.html │ ├── pablio │ │ ├── README.txt │ │ ├── pablio.c │ │ ├── pablio.def │ │ ├── pablio.h │ │ ├── test_rw.c │ │ ├── test_rw_echo.c │ │ ├── test_w_saw.c │ │ └── test_w_saw8.c │ ├── portaudio-2.0.pc.in │ ├── src │ │ ├── SConscript │ │ ├── common │ │ │ ├── pa_allocation.c │ │ │ ├── pa_allocation.h │ │ │ ├── pa_converters.c │ │ │ ├── pa_converters.h │ │ │ ├── pa_cpuload.c │ │ │ ├── pa_cpuload.h │ │ │ ├── pa_debugprint.c │ │ │ ├── pa_debugprint.h │ │ │ ├── pa_dither.c │ │ │ ├── pa_dither.h │ │ │ ├── pa_endianness.h │ │ │ ├── pa_front.c │ │ │ ├── pa_hostapi.h │ │ │ ├── pa_process.c │ │ │ ├── pa_process.h │ │ │ ├── pa_ringbuffer.c │ │ │ ├── pa_ringbuffer.h │ │ │ ├── pa_skeleton.c │ │ │ ├── pa_stream.c │ │ │ ├── pa_stream.h │ │ │ ├── pa_trace.c │ │ │ ├── pa_trace.h │ │ │ ├── pa_types.h │ │ │ └── pa_util.h │ │ ├── hostapi │ │ │ ├── alsa │ │ │ │ └── pa_linux_alsa.c │ │ │ ├── asihpi │ │ │ │ └── pa_linux_asihpi.c │ │ │ ├── asio │ │ │ │ ├── ASIO-README.txt │ │ │ │ ├── Callback_adaptation_.pdf │ │ │ │ ├── Pa_ASIO.pdf │ │ │ │ ├── iasiothiscallresolver.cpp │ │ │ │ ├── iasiothiscallresolver.h │ │ │ │ └── pa_asio.cpp │ │ │ ├── coreaudio │ │ │ │ ├── notes.txt │ │ │ │ ├── pa_mac_core.c │ │ │ │ ├── pa_mac_core_blocking.c │ │ │ │ ├── pa_mac_core_blocking.h │ │ │ │ ├── pa_mac_core_internal.h │ │ │ │ ├── pa_mac_core_old.c │ │ │ │ ├── pa_mac_core_utilities.c │ │ │ │ └── pa_mac_core_utilities.h │ │ │ ├── dsound │ │ │ │ ├── pa_win_ds.c │ │ │ │ ├── pa_win_ds_dynlink.c │ │ │ │ └── pa_win_ds_dynlink.h │ │ │ ├── jack │ │ │ │ └── pa_jack.c │ │ │ ├── oss │ │ │ │ ├── low_latency_tip.txt │ │ │ │ ├── pa_unix_oss.c │ │ │ │ └── recplay.c │ │ │ ├── wasapi │ │ │ │ └── pa_win_wasapi.cpp │ │ │ ├── wdmks │ │ │ │ ├── pa_win_wdmks.c │ │ │ │ └── readme.txt │ │ │ └── wmme │ │ │ │ └── pa_win_wmme.c │ │ └── os │ │ │ ├── mac_osx │ │ │ └── pa_mac_hostapis.c │ │ │ ├── unix │ │ │ ├── pa_unix_hostapis.c │ │ │ ├── pa_unix_util.c │ │ │ └── pa_unix_util.h │ │ │ └── win │ │ │ ├── pa_win_hostapis.c │ │ │ ├── pa_win_util.c │ │ │ ├── pa_win_waveformat.c │ │ │ ├── pa_win_wdmks_utils.c │ │ │ ├── pa_win_wdmks_utils.h │ │ │ ├── pa_x86_plain_converters.c │ │ │ └── pa_x86_plain_converters.h │ ├── test │ │ ├── README.txt │ │ ├── debug_convert.c │ │ ├── debug_dither_calc.c │ │ ├── debug_dual.c │ │ ├── debug_multi_in.c │ │ ├── debug_multi_out.c │ │ ├── debug_record.c │ │ ├── debug_record_reuse.c │ │ ├── debug_sine.c │ │ ├── debug_sine_amp.c │ │ ├── debug_sine_formats.c │ │ ├── debug_srate.c │ │ ├── debug_test1.c │ │ ├── pa_devs.c │ │ ├── pa_fuzz.c │ │ ├── pa_minlat.c │ │ ├── paqa_devs.c │ │ ├── paqa_errs.c │ │ ├── patest1.c │ │ ├── patest_buffer.c │ │ ├── patest_callbackstop.c │ │ ├── patest_clip.c │ │ ├── patest_dither.c │ │ ├── patest_dsound_surround.c │ │ ├── patest_hang.c │ │ ├── patest_in_overflow.c │ │ ├── patest_latency.c │ │ ├── patest_leftright.c │ │ ├── patest_longsine.c │ │ ├── patest_many.c │ │ ├── patest_maxsines.c │ │ ├── patest_mono.c │ │ ├── patest_mono_asio_channel_select.c │ │ ├── patest_multi_sine.c │ │ ├── patest_out_underflow.c │ │ ├── patest_pink.c │ │ ├── patest_prime.c │ │ ├── patest_read_record.c │ │ ├── patest_read_write_wire.c │ │ ├── patest_record.c │ │ ├── patest_ringmix.c │ │ ├── patest_saw.c │ │ ├── patest_sine.c │ │ ├── patest_sine8.c │ │ ├── patest_sine_channelmaps.c │ │ ├── patest_sine_formats.c │ │ ├── patest_sine_time.c │ │ ├── patest_start_stop.c │ │ ├── patest_stop.c │ │ ├── patest_stop_playout.c │ │ ├── patest_sync.c │ │ ├── patest_timing.c │ │ ├── patest_toomanysines.c │ │ ├── patest_two_rates.c │ │ ├── patest_underflow.c │ │ ├── patest_wire.c │ │ ├── patest_wmme_surround.c │ │ ├── patest_write_sine.c │ │ └── patest_write_stop.c │ └── testcvs │ │ └── changeme.txt ├── silk │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── Silk_SDK.sln │ ├── configure.ac │ ├── configure.gnu │ ├── doc │ │ ├── SILKDataSheet.pdf │ │ ├── SILK_RTP_PayloadFormat.pdf │ │ └── SILK_SDK_API.pdf │ ├── interface │ │ ├── SKP_Silk_SDK_API.h │ │ ├── SKP_Silk_control.h │ │ ├── SKP_Silk_errors.h │ │ └── SKP_Silk_typedef.h │ ├── readme.txt │ ├── src │ │ ├── SKP_Silk_A2NLSF.c │ │ ├── SKP_Silk_CNG.c │ │ ├── SKP_Silk_HP_variable_cutoff_FIX.c │ │ ├── SKP_Silk_Inlines.h │ │ ├── SKP_Silk_LBRR_reset.c │ │ ├── SKP_Silk_LPC_inv_pred_gain.c │ │ ├── SKP_Silk_LPC_synthesis_filter.c │ │ ├── SKP_Silk_LPC_synthesis_order16.c │ │ ├── SKP_Silk_LP_variable_cutoff.c │ │ ├── SKP_Silk_LSF_cos_table.c │ │ ├── SKP_Silk_LTP_analysis_filter_FIX.c │ │ ├── SKP_Silk_LTP_scale_ctrl_FIX.c │ │ ├── SKP_Silk_MA.c │ │ ├── SKP_Silk_NLSF2A.c │ │ ├── SKP_Silk_NLSF2A_stable.c │ │ ├── SKP_Silk_NLSF_MSVQ_decode.c │ │ ├── SKP_Silk_NLSF_MSVQ_encode_FIX.c │ │ ├── SKP_Silk_NLSF_VQ_rate_distortion_FIX.c │ │ ├── SKP_Silk_NLSF_VQ_sum_error_FIX.c │ │ ├── SKP_Silk_NLSF_VQ_weights_laroia.c │ │ ├── SKP_Silk_NLSF_stabilize.c │ │ ├── SKP_Silk_NSQ.c │ │ ├── SKP_Silk_NSQ_del_dec.c │ │ ├── SKP_Silk_PLC.c │ │ ├── SKP_Silk_PLC.h │ │ ├── SKP_Silk_SigProc_FIX.h │ │ ├── SKP_Silk_VAD.c │ │ ├── SKP_Silk_VQ_nearest_neighbor_FIX.c │ │ ├── SKP_Silk_ana_filt_bank_1.c │ │ ├── SKP_Silk_apply_sine_window_new.c │ │ ├── SKP_Silk_array_maxabs.c │ │ ├── SKP_Silk_autocorr.c │ │ ├── SKP_Silk_biquad.c │ │ ├── SKP_Silk_biquad_alt.c │ │ ├── SKP_Silk_burg_modified.c │ │ ├── SKP_Silk_bwexpander.c │ │ ├── SKP_Silk_bwexpander_32.c │ │ ├── SKP_Silk_code_signs.c │ │ ├── SKP_Silk_common_pitch_est_defines.h │ │ ├── SKP_Silk_control_audio_bandwidth.c │ │ ├── SKP_Silk_control_codec_FIX.c │ │ ├── SKP_Silk_corrMatrix_FIX.c │ │ ├── SKP_Silk_create_init_destroy.c │ │ ├── SKP_Silk_dec_API.c │ │ ├── SKP_Silk_decode_core.c │ │ ├── SKP_Silk_decode_frame.c │ │ ├── SKP_Silk_decode_parameters.c │ │ ├── SKP_Silk_decode_pitch.c │ │ ├── SKP_Silk_decode_pulses.c │ │ ├── SKP_Silk_decoder_set_fs.c │ │ ├── SKP_Silk_define.h │ │ ├── SKP_Silk_detect_SWB_input.c │ │ ├── SKP_Silk_enc_API.c │ │ ├── SKP_Silk_encode_frame_FIX.c │ │ ├── SKP_Silk_encode_parameters.c │ │ ├── SKP_Silk_encode_pulses.c │ │ ├── SKP_Silk_find_LPC_FIX.c │ │ ├── SKP_Silk_find_LTP_FIX.c │ │ ├── SKP_Silk_find_pitch_lags_FIX.c │ │ ├── SKP_Silk_find_pred_coefs_FIX.c │ │ ├── SKP_Silk_gain_quant.c │ │ ├── SKP_Silk_init_encoder_FIX.c │ │ ├── SKP_Silk_inner_prod_aligned.c │ │ ├── SKP_Silk_interpolate.c │ │ ├── SKP_Silk_k2a.c │ │ ├── SKP_Silk_k2a_Q16.c │ │ ├── SKP_Silk_lin2log.c │ │ ├── SKP_Silk_log2lin.c │ │ ├── SKP_Silk_macros.h │ │ ├── SKP_Silk_main.h │ │ ├── SKP_Silk_main_FIX.h │ │ ├── SKP_Silk_noise_shape_analysis_FIX.c │ │ ├── SKP_Silk_pitch_analysis_core.c │ │ ├── SKP_Silk_pitch_est_defines.h │ │ ├── SKP_Silk_pitch_est_tables.c │ │ ├── SKP_Silk_prefilter_FIX.c │ │ ├── SKP_Silk_process_NLSFs_FIX.c │ │ ├── SKP_Silk_process_gains_FIX.c │ │ ├── SKP_Silk_quant_LTP_gains_FIX.c │ │ ├── SKP_Silk_range_coder.c │ │ ├── SKP_Silk_regularize_correlations_FIX.c │ │ ├── SKP_Silk_resampler.c │ │ ├── SKP_Silk_resampler_down2.c │ │ ├── SKP_Silk_resampler_down2_3.c │ │ ├── SKP_Silk_resampler_down3.c │ │ ├── SKP_Silk_resampler_private.h │ │ ├── SKP_Silk_resampler_private_AR2.c │ │ ├── SKP_Silk_resampler_private_ARMA4.c │ │ ├── SKP_Silk_resampler_private_IIR_FIR.c │ │ ├── SKP_Silk_resampler_private_copy.c │ │ ├── SKP_Silk_resampler_private_down4.c │ │ ├── SKP_Silk_resampler_private_down_FIR.c │ │ ├── SKP_Silk_resampler_private_up2_HQ.c │ │ ├── SKP_Silk_resampler_private_up4.c │ │ ├── SKP_Silk_resampler_rom.c │ │ ├── SKP_Silk_resampler_rom.h │ │ ├── SKP_Silk_resampler_structs.h │ │ ├── SKP_Silk_resampler_up2.c │ │ ├── SKP_Silk_residual_energy16_FIX.c │ │ ├── SKP_Silk_residual_energy_FIX.c │ │ ├── SKP_Silk_scale_copy_vector16.c │ │ ├── SKP_Silk_scale_vector.c │ │ ├── SKP_Silk_schur.c │ │ ├── SKP_Silk_schur64.c │ │ ├── SKP_Silk_setup_complexity.h │ │ ├── SKP_Silk_shell_coder.c │ │ ├── SKP_Silk_sigm_Q15.c │ │ ├── SKP_Silk_solve_LS_FIX.c │ │ ├── SKP_Silk_sort.c │ │ ├── SKP_Silk_structs.h │ │ ├── SKP_Silk_structs_FIX.h │ │ ├── SKP_Silk_sum_sqr_shift.c │ │ ├── SKP_Silk_tables.h │ │ ├── SKP_Silk_tables_LTP.c │ │ ├── SKP_Silk_tables_NLSF_CB0_10.c │ │ ├── SKP_Silk_tables_NLSF_CB0_10.h │ │ ├── SKP_Silk_tables_NLSF_CB0_16.c │ │ ├── SKP_Silk_tables_NLSF_CB0_16.h │ │ ├── SKP_Silk_tables_NLSF_CB1_10.c │ │ ├── SKP_Silk_tables_NLSF_CB1_10.h │ │ ├── SKP_Silk_tables_NLSF_CB1_16.c │ │ ├── SKP_Silk_tables_NLSF_CB1_16.h │ │ ├── SKP_Silk_tables_gain.c │ │ ├── SKP_Silk_tables_other.c │ │ ├── SKP_Silk_tables_pitch_lag.c │ │ ├── SKP_Silk_tables_pulses_per_block.c │ │ ├── SKP_Silk_tables_sign.c │ │ ├── SKP_Silk_tables_type_offset.c │ │ ├── SKP_Silk_tuning_parameters.h │ │ ├── SKP_Silk_warped_autocorrelation_FIX.c │ │ ├── Silk_FIX.2008.vcproj │ │ ├── Silk_FIX.2010.vcxproj │ │ ├── Silk_FIX.2010.vcxproj.filters │ │ ├── Silk_FIX.2012.vcxproj │ │ ├── Silk_FIX.2012.vcxproj.filters │ │ └── Silk_FIX.vcproj │ ├── test │ │ ├── Dec_SDK.vcproj │ │ ├── Decoder.c │ │ ├── Enc_SDK.vcproj │ │ ├── Encoder.c │ │ ├── SignalCompare.vcproj │ │ └── signalCompare.c │ └── test_vectors │ │ ├── How to use the test vectors.txt │ │ ├── test_decoder.bat │ │ ├── test_decoder.sh │ │ ├── test_encoder.bat │ │ └── test_encoder.sh ├── sofia-sip │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── COPYRIGHTS │ ├── ChangeLog │ ├── ChangeLog.ext-trees │ ├── Makefile.am │ ├── README │ ├── README.developers │ ├── RELEASE │ ├── RELEASE.template │ ├── TODO │ ├── acinclude.m4 │ ├── autoconf-all.cmd │ ├── autogen.sh │ ├── configure.ac │ ├── configure.gnu │ ├── docs │ │ ├── build_system.txt │ │ ├── devel_platform_notes.txt │ │ └── release_management.txt │ ├── libsofia-sip-ua-glib │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── docs │ │ │ ├── Doxyfile.aliases │ │ │ ├── Doxyfile.conf │ │ │ └── Doxyfile.version │ │ └── su-glib │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── sofia-sip │ │ │ ├── su_glib.h │ │ │ └── su_source.h │ │ │ ├── su_glib.docs │ │ │ ├── su_source.c │ │ │ ├── su_source_test.c │ │ │ └── torture_su_glib_timer.c │ ├── libsofia-sip-ua │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── bnf │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── bnf.c │ │ │ ├── bnf.docs │ │ │ ├── sofia-sip │ │ │ │ ├── bnf.h │ │ │ │ └── hostdomain.h │ │ │ └── torture_bnf.c │ │ ├── docs │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.aliases │ │ │ ├── Doxyfile.conf │ │ │ ├── Doxyfile.in │ │ │ ├── Doxyfile.version.in │ │ │ ├── Makefile.am │ │ │ ├── conformance.docs │ │ │ ├── docguide.docs │ │ │ ├── mainpage.docs │ │ │ ├── pictures │ │ │ │ ├── SIP_basic_incoming_operation.eps │ │ │ │ ├── SIP_basic_incoming_operation.gif │ │ │ │ ├── SIP_basic_incoming_operation.vsd │ │ │ │ ├── SIP_basic_outgoing_operation.eps │ │ │ │ ├── SIP_basic_outgoing_operation.gif │ │ │ │ ├── SIP_basic_outgoing_operation.vsd │ │ │ │ ├── SIP_incoming_call.eps │ │ │ │ ├── SIP_incoming_call.gif │ │ │ │ ├── SIP_incoming_call.vsd │ │ │ │ ├── SIP_outgoing_call.eps │ │ │ │ ├── SIP_outgoing_call.gif │ │ │ │ ├── SIP_outgoing_call.vsd │ │ │ │ ├── SIP_outgoing_operation_with_auth.eps │ │ │ │ ├── SIP_outgoing_operation_with_auth.gif │ │ │ │ ├── SIP_outgoing_operation_with_auth.vsd │ │ │ │ ├── autotools.eps │ │ │ │ ├── autotools.gif │ │ │ │ ├── autotools.vsd │ │ │ │ ├── nta-receiving-message.eps │ │ │ │ └── nta-receiving-message.gif │ │ │ └── sofia-footer.html.in │ │ ├── features │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── features.c │ │ │ ├── features.docs │ │ │ └── sofia-sip │ │ │ │ └── sofia_features.h.in │ │ ├── http │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── headers │ │ │ ├── http.def.in │ │ │ ├── http.docs │ │ │ ├── http_basic.c │ │ │ ├── http_extra.c │ │ │ ├── http_header.c │ │ │ ├── http_inlined.c │ │ │ ├── http_parser.c │ │ │ ├── http_parser_table.c.in │ │ │ ├── http_status.c │ │ │ ├── http_tag.c.in │ │ │ ├── http_tag_class.c │ │ │ ├── sofia-sip │ │ │ │ ├── http.h │ │ │ │ ├── http_hclasses.h │ │ │ │ ├── http_header.h │ │ │ │ ├── http_parser.h │ │ │ │ ├── http_protos.h.in │ │ │ │ ├── http_status.h │ │ │ │ ├── http_tag.h.in │ │ │ │ └── http_tag_class.h │ │ │ └── test_http.c │ │ ├── ipt │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── base64.c │ │ │ ├── ipt.docs │ │ │ ├── rc4.c │ │ │ ├── sofia-sip │ │ │ │ ├── base64.h │ │ │ │ ├── rc4.h │ │ │ │ ├── token64.h │ │ │ │ ├── uniqueid.h │ │ │ │ └── utf8.h │ │ │ ├── token64.c │ │ │ ├── torture_base64.c │ │ │ ├── ucs2.c │ │ │ ├── ucs4.c │ │ │ ├── utf8.c │ │ │ ├── utf8internal.h │ │ │ └── utf8test.c │ │ ├── iptsec │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── auth_client.c │ │ │ ├── auth_client_ntlm.c │ │ │ ├── auth_common.c │ │ │ ├── auth_digest.c │ │ │ ├── auth_module.c │ │ │ ├── auth_module_http.c │ │ │ ├── auth_module_sip.c │ │ │ ├── auth_ntlm.c │ │ │ ├── auth_plugin.c │ │ │ ├── auth_plugin_delayed.c │ │ │ ├── auth_plugin_ntlm.c │ │ │ ├── auth_tag.c │ │ │ ├── iptsec.docs │ │ │ ├── iptsec_debug.c │ │ │ ├── iptsec_debug.h │ │ │ ├── sofia-sip │ │ │ │ ├── auth_client.h │ │ │ │ ├── auth_client_plugin.h │ │ │ │ ├── auth_common.h │ │ │ │ ├── auth_digest.h │ │ │ │ ├── auth_module.h │ │ │ │ ├── auth_ntlm.h │ │ │ │ └── auth_plugin.h │ │ │ ├── test_auth_digest.c │ │ │ └── testpasswd │ │ ├── msg │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── msg.c │ │ │ ├── msg.docs │ │ │ ├── msg_auth.c │ │ │ ├── msg_basic.c │ │ │ ├── msg_date.c │ │ │ ├── msg_generic.c │ │ │ ├── msg_header_copy.c │ │ │ ├── msg_header_make.c │ │ │ ├── msg_inlined.c │ │ │ ├── msg_internal.h │ │ │ ├── msg_mclass.c │ │ │ ├── msg_mime.c │ │ │ ├── msg_mime_table.c.in │ │ │ ├── msg_name_hash.c │ │ │ ├── msg_parser.awk │ │ │ ├── msg_parser.c │ │ │ ├── msg_parser_util.c │ │ │ ├── msg_tag.c │ │ │ ├── sofia-sip │ │ │ │ ├── msg.h │ │ │ │ ├── msg_addr.h │ │ │ │ ├── msg_buffer.h │ │ │ │ ├── msg_date.h │ │ │ │ ├── msg_header.h │ │ │ │ ├── msg_mclass.h │ │ │ │ ├── msg_mclass_hash.h │ │ │ │ ├── msg_mime.h │ │ │ │ ├── msg_mime_protos.h.in │ │ │ │ ├── msg_parser.h │ │ │ │ ├── msg_protos.h.in │ │ │ │ ├── msg_tag_class.h │ │ │ │ └── msg_types.h │ │ │ ├── test_class.c │ │ │ ├── test_class.h │ │ │ ├── test_inlined.c │ │ │ ├── test_msg.c │ │ │ ├── test_protos.h.in │ │ │ └── test_table.c.in │ │ ├── nea │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── nea.c │ │ │ ├── nea.docs │ │ │ ├── nea_debug.c │ │ │ ├── nea_debug.h │ │ │ ├── nea_event.c │ │ │ ├── nea_server.c │ │ │ ├── nea_tag.c │ │ │ └── sofia-sip │ │ │ │ ├── nea.h │ │ │ │ └── nea_tag.h │ │ ├── nta │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ ├── check_nta.c │ │ │ ├── check_nta.h │ │ │ ├── check_nta_api.c │ │ │ ├── check_nta_client.c │ │ │ ├── invite.msc │ │ │ ├── nta.c │ │ │ ├── nta.docs │ │ │ ├── nta_check.c │ │ │ ├── nta_compat.c │ │ │ ├── nta_compat.h │ │ │ ├── nta_internal.h │ │ │ ├── nta_tag.c │ │ │ ├── portbind.c │ │ │ ├── run_check_nta │ │ │ ├── run_test_nta │ │ │ ├── run_test_nta_api │ │ │ ├── sl_read_payload.c │ │ │ ├── sl_utils.docs │ │ │ ├── sl_utils_log.c │ │ │ ├── sl_utils_print.c │ │ │ ├── sofia-sip │ │ │ │ ├── nta.h │ │ │ │ ├── nta_stateless.h │ │ │ │ ├── nta_tag.h │ │ │ │ ├── nta_tport.h │ │ │ │ └── sl_utils.h │ │ │ ├── test_nta.c │ │ │ └── test_nta_api.c │ │ ├── nth │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ ├── http-client.c │ │ │ ├── http-server.c │ │ │ ├── nth.docs │ │ │ ├── nth_client.c │ │ │ ├── nth_server.c │ │ │ ├── nth_tag.c │ │ │ ├── sofia-sip │ │ │ │ ├── nth.h │ │ │ │ └── nth_tag.h │ │ │ └── test_nth.c │ │ ├── nua │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── check_etsi.c │ │ │ ├── check_nua.c │ │ │ ├── check_nua.h │ │ │ ├── check_register.c │ │ │ ├── check_session.c │ │ │ ├── check_simple.c │ │ │ ├── nua.c │ │ │ ├── nua.docs │ │ │ ├── nua_client.c │ │ │ ├── nua_client.h │ │ │ ├── nua_common.c │ │ │ ├── nua_dialog.c │ │ │ ├── nua_dialog.h │ │ │ ├── nua_event_server.c │ │ │ ├── nua_extension.c │ │ │ ├── nua_message.c │ │ │ ├── nua_notifier.c │ │ │ ├── nua_options.c │ │ │ ├── nua_params.c │ │ │ ├── nua_params.h │ │ │ ├── nua_publish.c │ │ │ ├── nua_register.c │ │ │ ├── nua_registrar.c │ │ │ ├── nua_server.c │ │ │ ├── nua_server.h │ │ │ ├── nua_session.c │ │ │ ├── nua_stack.c │ │ │ ├── nua_stack.h │ │ │ ├── nua_subnotref.c │ │ │ ├── nua_tag.c │ │ │ ├── nua_types.h │ │ │ ├── outbound.c │ │ │ ├── outbound.h │ │ │ └── sofia-sip │ │ │ │ ├── nua.h │ │ │ │ └── nua_tag.h │ │ ├── sdp │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── errata │ │ │ ├── rfc2327.txt │ │ │ ├── run_test_sdp │ │ │ ├── sdp.bnf │ │ │ ├── sdp.c │ │ │ ├── sdp.docs │ │ │ ├── sdp_parse.c │ │ │ ├── sdp_print.c │ │ │ ├── sdp_tag.c │ │ │ ├── sofia-sip │ │ │ │ ├── sdp.h │ │ │ │ └── sdp_tag.h │ │ │ ├── test_sdp.c │ │ │ ├── tests │ │ │ │ ├── message-1.sdp │ │ │ │ ├── message-10.sdp │ │ │ │ ├── message-11.sdp │ │ │ │ ├── message-2.sdp │ │ │ │ ├── message-3.sdp │ │ │ │ ├── message-4.sdp │ │ │ │ ├── message-5.sdp │ │ │ │ ├── message-6.sdp │ │ │ │ ├── message-7.sdp │ │ │ │ ├── message-8.sdp │ │ │ │ └── message-9.sdp │ │ │ └── torture_sdp.c │ │ ├── sip │ │ │ ├── ADD-A-HEADER │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── GRAMMAR │ │ │ ├── Makefile.am │ │ │ ├── images │ │ │ │ ├── sip-parser.eps │ │ │ │ ├── sip-parser.gif │ │ │ │ ├── sip-parser2.eps │ │ │ │ ├── sip-parser2.gif │ │ │ │ ├── sip-parser3.eps │ │ │ │ ├── sip-parser3.gif │ │ │ │ ├── sip-parser4.eps │ │ │ │ └── sip-parser4.gif │ │ │ ├── rfc2543.txt │ │ │ ├── run-tests │ │ │ ├── run_test_date │ │ │ ├── run_test_sip_msg │ │ │ ├── sip.docs │ │ │ ├── sip.doxyaliases │ │ │ ├── sip_bad_mask │ │ │ ├── sip_basic.c │ │ │ ├── sip_caller_prefs.c │ │ │ ├── sip_event.c │ │ │ ├── sip_extra.c │ │ │ ├── sip_extra_headers.txt │ │ │ ├── sip_feature.c │ │ │ ├── sip_header.c │ │ │ ├── sip_inlined.c │ │ │ ├── sip_mime.c │ │ │ ├── sip_parser.c │ │ │ ├── sip_parser.docs │ │ │ ├── sip_parser_table.c.in │ │ │ ├── sip_prack.c │ │ │ ├── sip_pref_util.c │ │ │ ├── sip_reason.c │ │ │ ├── sip_refer.c │ │ │ ├── sip_security.c │ │ │ ├── sip_session.c │ │ │ ├── sip_status.c │ │ │ ├── sip_tag.c.in │ │ │ ├── sip_tag_class.c │ │ │ ├── sip_time.c │ │ │ ├── sip_util.c │ │ │ ├── sofia-sip │ │ │ │ ├── sip.h │ │ │ │ ├── sip_extra.h.in │ │ │ │ ├── sip_hclasses.h.in │ │ │ │ ├── sip_header.h │ │ │ │ ├── sip_parser.h │ │ │ │ ├── sip_protos.h.in │ │ │ │ ├── sip_status.h │ │ │ │ ├── sip_tag.h.in │ │ │ │ ├── sip_tag_class.h │ │ │ │ └── sip_util.h │ │ │ ├── test_date.c │ │ │ ├── test_sip_msg.c │ │ │ ├── tests │ │ │ │ ├── 10052.txt │ │ │ │ ├── own0.txt │ │ │ │ ├── own1.txt │ │ │ │ ├── own2.txt │ │ │ │ ├── own3.txt │ │ │ │ ├── own4.txt │ │ │ │ ├── own5.txt │ │ │ │ ├── own6.txt │ │ │ │ ├── own8.txt │ │ │ │ ├── test-ack-1.txt │ │ │ │ ├── test1.txt │ │ │ │ ├── test10.txt │ │ │ │ ├── test10b.txt │ │ │ │ ├── test10c.txt │ │ │ │ ├── test11.txt │ │ │ │ ├── test12.txt │ │ │ │ ├── test13.txt │ │ │ │ ├── test14-req.txt │ │ │ │ ├── test14.txt │ │ │ │ ├── test15.txt │ │ │ │ ├── test16.txt │ │ │ │ ├── test17.txt │ │ │ │ ├── test18.txt │ │ │ │ ├── test19.txt │ │ │ │ ├── test1a.txt │ │ │ │ ├── test2.txt │ │ │ │ ├── test20.txt │ │ │ │ ├── test21.txt │ │ │ │ ├── test22.txt │ │ │ │ ├── test23.txt │ │ │ │ ├── test24.txt │ │ │ │ ├── test25.txt │ │ │ │ ├── test26.txt │ │ │ │ ├── test27.txt │ │ │ │ ├── test28.txt │ │ │ │ ├── test29.txt │ │ │ │ ├── test3.txt │ │ │ │ ├── test30.txt │ │ │ │ ├── test31.txt │ │ │ │ ├── test32.txt │ │ │ │ ├── test33.txt │ │ │ │ ├── test34.txt │ │ │ │ ├── test35.txt │ │ │ │ ├── test36.txt │ │ │ │ ├── test37.txt │ │ │ │ ├── test38.txt │ │ │ │ ├── test39.txt │ │ │ │ ├── test4.txt │ │ │ │ ├── test40.txt │ │ │ │ ├── test41.txt │ │ │ │ ├── test42.txt │ │ │ │ ├── test5.txt │ │ │ │ ├── test6.txt │ │ │ │ ├── test7.txt │ │ │ │ ├── test8.txt │ │ │ │ └── test9.txt │ │ │ ├── torture_sip.c │ │ │ └── validator.c │ │ ├── soa │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── soa.c │ │ │ ├── soa.docs │ │ │ ├── soa_asynch.c │ │ │ ├── soa_static.c │ │ │ ├── soa_tag.c │ │ │ ├── sofia-sip │ │ │ │ ├── soa.h │ │ │ │ ├── soa_add.h │ │ │ │ ├── soa_session.h │ │ │ │ └── soa_tag.h │ │ │ └── test_soa.c │ │ ├── sofia.am │ │ ├── sresolv │ │ │ ├── 127.zone │ │ │ ├── 194.2.188 │ │ │ ├── 3.f.f.e.1.2.0.0.3.0.1.2.c.0.0.0 │ │ │ ├── 3.f.f.e.1.2.0.0.3.0.1.2.c.0.0.0.arpa │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── check_sres_sip.c │ │ │ ├── example.com │ │ │ ├── named.conf │ │ │ ├── resolv_timeout.conf │ │ │ ├── resolve_sip.c │ │ │ ├── rfc1034.txt │ │ │ ├── rfc1035.txt │ │ │ ├── rfc2671.txt │ │ │ ├── rndc.conf │ │ │ ├── root.zone │ │ │ ├── run_test_sresolv │ │ │ ├── sofia-resolv │ │ │ │ ├── sres.h │ │ │ │ ├── sres_async.h │ │ │ │ ├── sres_cache.h │ │ │ │ ├── sres_config.h │ │ │ │ └── sres_record.h │ │ │ ├── sofia-sip │ │ │ │ ├── sres_sip.h │ │ │ │ └── sresolv.h │ │ │ ├── sres.c │ │ │ ├── sres_blocking.c │ │ │ ├── sres_cache.c │ │ │ ├── sres_sip.c │ │ │ ├── sresolv.c │ │ │ ├── sresolv.docs │ │ │ ├── test_sresolv.c │ │ │ └── torture_sresolv.c │ │ ├── stun │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ ├── lookup_stun_server.c │ │ │ ├── rfc3489.txt │ │ │ ├── sofia-sip │ │ │ │ ├── stun.h │ │ │ │ ├── stun_common.h │ │ │ │ └── stun_tag.h │ │ │ ├── stun.c │ │ │ ├── stun.docs │ │ │ ├── stun_common.c │ │ │ ├── stun_dns.c │ │ │ ├── stun_internal.h │ │ │ ├── stun_mini.c │ │ │ ├── stun_tag.c │ │ │ └── stunc.c │ │ ├── su │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── addrinfo.c │ │ │ ├── foo.c │ │ │ ├── getopt.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── localinfo.c │ │ │ ├── memccpy.c │ │ │ ├── memcspn.c │ │ │ ├── memmem.c │ │ │ ├── memspn.c │ │ │ ├── poll.c │ │ │ ├── run_addrinfo │ │ │ ├── run_localinfo │ │ │ ├── run_test_su │ │ │ ├── run_test_su_osx │ │ │ ├── smoothsort.c │ │ │ ├── sofia-sip │ │ │ │ ├── heap.h │ │ │ │ ├── htable.h │ │ │ │ ├── htable2.h │ │ │ │ ├── rbtree.h │ │ │ │ ├── string0.h │ │ │ │ ├── su.h │ │ │ │ ├── su_addrinfo.h │ │ │ │ ├── su_alloc.h │ │ │ │ ├── su_alloc_stat.h │ │ │ │ ├── su_bm.h │ │ │ │ ├── su_config.h │ │ │ │ ├── su_configure.h.in │ │ │ │ ├── su_debug.h │ │ │ │ ├── su_errno.h │ │ │ │ ├── su_localinfo.h │ │ │ │ ├── su_log.h │ │ │ │ ├── su_md5.h │ │ │ │ ├── su_os_nw.h │ │ │ │ ├── su_osx_runloop.h │ │ │ │ ├── su_string.h │ │ │ │ ├── su_strlst.h │ │ │ │ ├── su_tag.h │ │ │ │ ├── su_tag_class.h │ │ │ │ ├── su_tag_inline.h │ │ │ │ ├── su_tag_io.h │ │ │ │ ├── su_tagarg.h │ │ │ │ ├── su_time.h │ │ │ │ ├── su_types.h │ │ │ │ ├── su_uniqueid.h │ │ │ │ ├── su_vector.h │ │ │ │ ├── su_wait.h │ │ │ │ └── tstdef.h │ │ │ ├── strcasestr.c │ │ │ ├── string0.c │ │ │ ├── strtoull.c │ │ │ ├── su.c │ │ │ ├── su.docs │ │ │ ├── su_addrinfo.c │ │ │ ├── su_alloc.c │ │ │ ├── su_alloc_lock.c │ │ │ ├── su_base_port.c │ │ │ ├── su_bm.c │ │ │ ├── su_default_log.c │ │ │ ├── su_devpoll_port.c │ │ │ ├── su_epoll_port.c │ │ │ ├── su_errno.c │ │ │ ├── su_global_log.c │ │ │ ├── su_kqueue_port.c │ │ │ ├── su_localinfo.c │ │ │ ├── su_log.c │ │ │ ├── su_md5.c │ │ │ ├── su_module_debug.h │ │ │ ├── su_open_c_localinfo.cpp │ │ │ ├── su_os_nw.c │ │ │ ├── su_osx_runloop.c │ │ │ ├── su_perf.c │ │ │ ├── su_poll_port.c │ │ │ ├── su_port.c │ │ │ ├── su_port.h │ │ │ ├── su_proxy.c │ │ │ ├── su_pthread_port.c │ │ │ ├── su_root.c │ │ │ ├── su_select_port.c │ │ │ ├── su_socket_port.c │ │ │ ├── su_sprintf.c │ │ │ ├── su_strdup.c │ │ │ ├── su_string.c │ │ │ ├── su_strlst.c │ │ │ ├── su_tag.c │ │ │ ├── su_tag_io.c │ │ │ ├── su_taglist.c │ │ │ ├── su_time.c │ │ │ ├── su_time0.c │ │ │ ├── su_timer.c │ │ │ ├── su_uniqueid.c │ │ │ ├── su_vector.c │ │ │ ├── su_wait.c │ │ │ ├── su_win32_port.c │ │ │ ├── tag_dll.awk │ │ │ ├── test_htable.c │ │ │ ├── test_htable2.c │ │ │ ├── test_memmem.c │ │ │ ├── test_poll.c │ │ │ ├── test_su.c │ │ │ ├── test_su_osx.c │ │ │ ├── torture_heap.c │ │ │ ├── torture_rbtree.c │ │ │ ├── torture_su.c │ │ │ ├── torture_su_alloc.c │ │ │ ├── torture_su_bm.c │ │ │ ├── torture_su_port.c │ │ │ ├── torture_su_root.c │ │ │ ├── torture_su_root_osx.c │ │ │ ├── torture_su_tag.c │ │ │ ├── torture_su_time.c │ │ │ └── torture_su_timer.c │ │ ├── tport │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── agent.pem │ │ │ ├── cafile.pem │ │ │ ├── certificates-update │ │ │ ├── certificates.html │ │ │ ├── make_node_cert.pl │ │ │ ├── make_root_cert.pl │ │ │ ├── make_test_certs.sh │ │ │ ├── sofia-sip │ │ │ │ ├── tport.h │ │ │ │ ├── tport_plugins.h │ │ │ │ └── tport_tag.h │ │ │ ├── test_tport.c │ │ │ ├── tls_test_client.c │ │ │ ├── tls_test_server.c │ │ │ ├── tport.c │ │ │ ├── tport.docs │ │ │ ├── tport_internal.h │ │ │ ├── tport_logging.c │ │ │ ├── tport_rand.c │ │ │ ├── tport_sigcomp.c │ │ │ ├── tport_stub_sigcomp.c │ │ │ ├── tport_stub_stun.c │ │ │ ├── tport_tag.c │ │ │ ├── tport_threadpool.c │ │ │ ├── tport_tls.c │ │ │ ├── tport_tls.h │ │ │ ├── tport_tls_test.sh │ │ │ ├── tport_type_connect.c │ │ │ ├── tport_type_sctp.c │ │ │ ├── tport_type_stun.c │ │ │ ├── tport_type_tcp.c │ │ │ ├── tport_type_tls.c │ │ │ ├── tport_type_udp.c │ │ │ ├── tport_type_ws.c │ │ │ ├── tport_ws.h │ │ │ ├── ws.c │ │ │ └── ws.h │ │ └── url │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── Makefile.am │ │ │ ├── sofia-sip │ │ │ ├── url.h │ │ │ ├── url_tag.h │ │ │ └── url_tag_class.h │ │ │ ├── torture_url.c │ │ │ ├── url.c │ │ │ ├── url.docs │ │ │ ├── url_tag.c │ │ │ ├── urlmap.c │ │ │ └── urlmap.h │ ├── m4 │ │ ├── sac-coverage.m4 │ │ ├── sac-general.m4 │ │ ├── sac-openssl.m4 │ │ ├── sac-pkg-config.m4 │ │ ├── sac-su.m4 │ │ ├── sac-su2.m4 │ │ └── sac-tport.m4 │ ├── open_c │ │ ├── Makefile.am │ │ ├── autogen.cmd │ │ ├── build_sources.cmd │ │ ├── config.h.in │ │ ├── group │ │ │ ├── bld.inf │ │ │ ├── libsofia-sip-ua-glib.mmp │ │ │ ├── libsofia-sip-ua.mmp │ │ │ ├── su_source_test.mmp │ │ │ ├── su_source_test_reg.rss │ │ │ ├── test_http.mmp │ │ │ ├── test_http_reg.rss │ │ │ ├── test_msg.mmp │ │ │ ├── test_msg_reg.rss │ │ │ ├── test_nua.mmp │ │ │ ├── test_nua_reg.rss │ │ │ ├── test_tport.mmp │ │ │ ├── test_tport_reg.rss │ │ │ ├── torture_sip.mmp │ │ │ ├── torture_sip_reg.rss │ │ │ ├── torture_su_alloc.mmp │ │ │ ├── torture_su_alloc_reg.rss │ │ │ ├── torture_su_port.mmp │ │ │ ├── torture_su_port_reg.rss │ │ │ ├── torture_su_root.mmp │ │ │ ├── torture_su_root_reg.rss │ │ │ ├── torture_su_tag.mmp │ │ │ ├── torture_su_tag_reg.rss │ │ │ ├── torture_url.mmp │ │ │ └── torture_url_reg.rss │ │ ├── sis │ │ │ ├── libsofia-sip-ua-glib.pkg │ │ │ ├── libsofia-sip-ua.pkg │ │ │ ├── su_source_test.pkg │ │ │ ├── test_nua.pkg │ │ │ └── test_tport.pkg │ │ ├── sofia-sip │ │ │ └── su_configure.h │ │ ├── version.awk │ │ └── version_files.cmd │ ├── packages │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── sofia-sip-ua-glib.pc.in │ │ ├── sofia-sip-ua.pc.in │ │ └── sofia-sip.spec.in │ ├── rules │ │ ├── lcov.am │ │ ├── recursive.am │ │ ├── silent.am │ │ ├── sofia.am │ │ └── valcheck.am │ ├── s2check │ │ ├── Makefile.am │ │ ├── exit77.c │ │ ├── s2_localinfo.c │ │ ├── s2_localinfo.h │ │ ├── s2base.c │ │ ├── s2base.h │ │ ├── s2check.h │ │ ├── s2dns.c │ │ ├── s2dns.h │ │ ├── s2sip.c │ │ ├── s2sip.h │ │ ├── s2tcase.c │ │ ├── s2time.c │ │ └── s2util.h │ ├── scripts │ │ ├── coverage │ │ ├── fix-include-sofia-sip │ │ ├── hide_emails.sh │ │ ├── lcov-report │ │ ├── rpmbuild-snaphot │ │ └── uncovered │ ├── tests │ │ ├── Makefile.am │ │ ├── check_dlopen_sofia.c │ │ ├── check_sofia.c │ │ ├── check_sofia.h │ │ ├── suite_for_nua.c │ │ ├── test_100rel.c │ │ ├── test_basic_call.c │ │ ├── test_call_hold.c │ │ ├── test_call_reject.c │ │ ├── test_cancel_bye.c │ │ ├── test_extension.c │ │ ├── test_init.c │ │ ├── test_nat.c │ │ ├── test_nat.h │ │ ├── test_nat_tags.c │ │ ├── test_nua.c │ │ ├── test_nua.h │ │ ├── test_nua_api.c │ │ ├── test_nua_params.c │ │ ├── test_offer_answer.c │ │ ├── test_ops.c │ │ ├── test_proxy.c │ │ ├── test_proxy.h │ │ ├── test_refer.c │ │ ├── test_register.c │ │ ├── test_session_timer.c │ │ ├── test_simple.c │ │ └── test_sip_events.c │ ├── utils │ │ ├── ChangeLog │ │ ├── Doxyfile.in │ │ ├── Makefile.am │ │ ├── apps_utils.h │ │ ├── sip-date.c │ │ ├── sip-dig.c │ │ ├── sip-options.c │ │ └── utils.docs │ └── win32 │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── README.txt │ │ ├── SofiaSIP.dsw │ │ ├── SofiaSIP.sln │ │ ├── autogen.cmd │ │ ├── build_sources.cmd │ │ ├── check.cmd │ │ ├── config.h.in │ │ ├── install.cmd │ │ ├── libsofia-sip-ua-static │ │ ├── libsofia_sip_ua_static.dsp │ │ └── libsofia_sip_ua_static.vcproj │ │ ├── libsofia-sip-ua │ │ ├── libsofia_sip_ua.dsp │ │ ├── libsofia_sip_ua.vcproj │ │ └── sofia-sip-ua.def │ │ ├── sofia-sip │ │ └── su_configure.h │ │ ├── tests │ │ ├── test_htable │ │ │ ├── test_htable.dsp │ │ │ └── test_htable.vcproj │ │ ├── test_memmem │ │ │ ├── test_memmem.dsp │ │ │ └── test_memmem.vcproj │ │ ├── test_nta │ │ │ ├── test_nta.dsp │ │ │ └── test_nta.vcproj │ │ ├── test_nua │ │ │ ├── test_nat_tags.cpp │ │ │ ├── test_nua.dsp │ │ │ └── test_nua.vcproj │ │ ├── test_su │ │ │ ├── test_su.dsp │ │ │ └── test_su.vcproj │ │ ├── test_tport │ │ │ ├── test_class.cpp │ │ │ ├── test_table.cpp │ │ │ ├── test_tport.dsp │ │ │ └── test_tport.vcproj │ │ ├── torture_rbtree │ │ │ ├── torture_rbtree.dsp │ │ │ └── torture_rbtree.vcproj │ │ ├── torture_su │ │ │ ├── torture_su.dsp │ │ │ └── torture_su.vcproj │ │ ├── torture_su_alloc │ │ │ ├── torture_su_alloc.dsp │ │ │ └── torture_su_alloc.vcproj │ │ ├── torture_su_bm │ │ │ ├── torture_su_bm.dsp │ │ │ └── torture_su_bm.vcproj │ │ ├── torture_su_port │ │ │ ├── torture_su_port.dsp │ │ │ └── torture_su_port.vcproj │ │ ├── torture_su_root │ │ │ ├── torture_su_root.dsp │ │ │ └── torture_su_root.vcproj │ │ ├── torture_su_tag │ │ │ ├── torture_su_tag.dsp │ │ │ └── torture_su_tag.vcproj │ │ ├── torture_su_time │ │ │ ├── torture_su_time.dsp │ │ │ └── torture_su_time.vcproj │ │ └── torture_su_timer │ │ │ ├── torture_su_timer.dsp │ │ │ └── torture_su_timer.vcproj │ │ ├── unistd.h │ │ ├── utils │ │ ├── localinfo │ │ │ ├── localinfo.dsp │ │ │ └── localinfo.vcproj │ │ ├── sip_dig │ │ │ ├── sip_dig.dsp │ │ │ └── sip_dig.vcproj │ │ ├── sip_options │ │ │ ├── sip_options.dsp │ │ │ └── sip_options.vcproj │ │ ├── sip_options_static │ │ │ ├── sip_options_static.dsp │ │ │ └── sip_options_static.vcproj │ │ └── stunc │ │ │ ├── stunc.dsp │ │ │ └── stunc.vcproj │ │ ├── version.awk │ │ └── version_files.cmd ├── spandsp │ ├── .gitignore │ ├── .update │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── DueDiligence │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.testdata │ ├── autogen.sh │ ├── config │ │ └── .empty │ ├── configure.ac │ ├── configure.gnu │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libspandsp-dev.install │ │ ├── libspandsp-doc.install │ │ ├── libspandsp6.install │ │ ├── rules │ │ └── watch │ ├── doc │ │ ├── Makefile.am │ │ ├── css.css │ │ ├── doxygen.in │ │ ├── t38-gateway.dia │ │ ├── t38-terminal.dia │ │ ├── t38_manual.xml │ │ ├── t38_manual │ │ │ └── css.css │ │ └── wrapper.xsl │ ├── m4 │ │ ├── ax_c99_features.m4 │ │ ├── ax_check_arm_neon.m4 │ │ ├── ax_check_export_capability.m4 │ │ ├── ax_check_real_file.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── ax_fixed_point_machine.m4 │ │ └── ax_misaligned_access_fails.m4 │ ├── spandsp-sim │ │ ├── Makefile.am │ │ ├── g1050.c │ │ ├── libspandsp_sim.2005.vcproj │ │ ├── libspandsp_sim.2008.vcproj │ │ ├── libspandsp_sim.dsp │ │ ├── line_model.c │ │ ├── make_line_models.c │ │ ├── msvc │ │ │ ├── make_line_models.2008.vcproj │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── vc8proj.foot │ │ │ ├── vc8proj.head │ │ │ ├── vc9proj.foot │ │ │ └── vc9proj.head │ │ ├── rfc2198_sim.c │ │ ├── spandsp-sim.h │ │ ├── spandsp │ │ │ ├── g1050.h │ │ │ ├── line_model.h │ │ │ ├── line_models.h │ │ │ ├── rfc2198_sim.h │ │ │ └── test_utils.h │ │ └── test_utils.c │ ├── spandsp.pc.in │ ├── spandsp.spec │ ├── spandsp.spec.in │ ├── spandsp │ │ ├── fax-tests.dtd │ │ ├── fax-tests.xml │ │ ├── global-tones.xml │ │ ├── tones.dtd │ │ └── tsb85.xml │ ├── src │ │ ├── Makefile.am │ │ ├── ademco_contactid.c │ │ ├── adsi.c │ │ ├── alloc.c │ │ ├── async.c │ │ ├── at_interpreter.c │ │ ├── awgn.c │ │ ├── bell_r2_mf.c │ │ ├── bert.c │ │ ├── bit_operations.c │ │ ├── bitstream.c │ │ ├── complex_filters.c │ │ ├── complex_vector_float.c │ │ ├── complex_vector_int.c │ │ ├── crc.c │ │ ├── dds_float.c │ │ ├── dds_int.c │ │ ├── dtmf.c │ │ ├── echo.c │ │ ├── fax.c │ │ ├── fax_modems.c │ │ ├── faxfont.h │ │ ├── filter_tools.c │ │ ├── filter_tools.h │ │ ├── floating_fudge.h │ │ ├── fsk.c │ │ ├── g711.c │ │ ├── g722.c │ │ ├── g726.c │ │ ├── gsm0610_decode.c │ │ ├── gsm0610_encode.c │ │ ├── gsm0610_local.h │ │ ├── gsm0610_long_term.c │ │ ├── gsm0610_lpc.c │ │ ├── gsm0610_preprocess.c │ │ ├── gsm0610_rpe.c │ │ ├── gsm0610_short_term.c │ │ ├── hdlc.c │ │ ├── ima_adpcm.c │ │ ├── image_translate.c │ │ ├── libspandsp.2005.vcproj │ │ ├── libspandsp.2008.vcproj │ │ ├── libspandsp.2010.vcxproj │ │ ├── libspandsp.2010.vcxproj.filters │ │ ├── libspandsp.2012.sln │ │ ├── libspandsp.2012.vcxproj │ │ ├── libspandsp.2012.vcxproj.filters │ │ ├── libtiff.2005.vcproj │ │ ├── libtiff.2008.vcproj │ │ ├── libtiff.2010.vcxproj │ │ ├── libtiff.2010.vcxproj.filters │ │ ├── libtiff.2012.vcxproj │ │ ├── logging.c │ │ ├── lpc10_analyse.c │ │ ├── lpc10_decode.c │ │ ├── lpc10_encdecs.h │ │ ├── lpc10_encode.c │ │ ├── lpc10_placev.c │ │ ├── lpc10_voicing.c │ │ ├── make_at_dictionary.c │ │ ├── make_cielab_luts.c │ │ ├── make_math_fixed_tables.c │ │ ├── make_modem_filter.c │ │ ├── make_t43_gray_code_tables.c │ │ ├── math_fixed.c │ │ ├── mmx_sse_decs.h │ │ ├── modem_connect_tones.c │ │ ├── modem_echo.c │ │ ├── msvc │ │ │ ├── Download_TIFF.2005.vcproj │ │ │ ├── Download_TIFF.2008.vcproj │ │ │ ├── config.h │ │ │ ├── getopt.c │ │ │ ├── gettimeofday.c │ │ │ ├── inttypes.h │ │ │ ├── make_at_dictionary.2005.vcproj │ │ │ ├── make_at_dictionary.2008.vcproj │ │ │ ├── make_at_dictionary.2010.vcxproj │ │ │ ├── make_at_dictionary.2010.vcxproj.filters │ │ │ ├── make_at_dictionary.2012.vcxproj │ │ │ ├── make_at_dictionary.2012.vcxproj.filters │ │ │ ├── make_cielab_luts.2010.vcxproj │ │ │ ├── make_cielab_luts.2012.vcxproj │ │ │ ├── make_math_fixed_tables.2010.vcxproj │ │ │ ├── make_math_fixed_tables.2010.vcxproj.filters │ │ │ ├── make_math_fixed_tables.2012.vcxproj │ │ │ ├── make_math_fixed_tables.2012.vcxproj.filters │ │ │ ├── make_modem_filter.2005.vcproj │ │ │ ├── make_modem_filter.2008.vcproj │ │ │ ├── make_modem_filter.2010.vcxproj │ │ │ ├── make_modem_filter.2010.vcxproj.filters │ │ │ ├── make_modem_filter.2012.vcxproj │ │ │ ├── make_modem_filter.2012.vcxproj.filters │ │ │ ├── make_t43_gray_code_tables.2010.vcxproj │ │ │ ├── make_t43_gray_code_tables.2010.vcxproj.filters │ │ │ ├── make_t43_gray_code_tables.2012.vcxproj │ │ │ ├── make_t43_gray_code_tables.2012.vcxproj.filters │ │ │ ├── msvcproj.foot │ │ │ ├── msvcproj.head │ │ │ ├── spandsp.h │ │ │ ├── sys │ │ │ │ └── time.h │ │ │ ├── tgmath.h │ │ │ ├── tiff │ │ │ │ └── cleancount │ │ │ ├── unistd.h │ │ │ ├── util.vbs │ │ │ ├── vc8proj.foot │ │ │ ├── vc8proj.head │ │ │ ├── vc9proj.foot │ │ │ └── vc9proj.head │ │ ├── noise.c │ │ ├── oki_adpcm.c │ │ ├── playout.c │ │ ├── plc.c │ │ ├── power_meter.c │ │ ├── queue.c │ │ ├── schedule.c │ │ ├── sig_tone.c │ │ ├── silence_gen.c │ │ ├── spandsp.h.in │ │ ├── spandsp │ │ │ ├── ademco_contactid.h │ │ │ ├── adsi.h │ │ │ ├── alloc.h │ │ │ ├── arctan2.h │ │ │ ├── async.h │ │ │ ├── at_interpreter.h │ │ │ ├── awgn.h │ │ │ ├── bell_r2_mf.h │ │ │ ├── bert.h │ │ │ ├── biquad.h │ │ │ ├── bit_operations.h │ │ │ ├── bitstream.h │ │ │ ├── complex.h │ │ │ ├── complex_filters.h │ │ │ ├── complex_vector_float.h │ │ │ ├── complex_vector_int.h │ │ │ ├── crc.h │ │ │ ├── dc_restore.h │ │ │ ├── dds.h │ │ │ ├── dtmf.h │ │ │ ├── echo.h │ │ │ ├── expose.h │ │ │ ├── fast_convert.h │ │ │ ├── fax.h │ │ │ ├── fax_modems.h │ │ │ ├── fir.h │ │ │ ├── fsk.h │ │ │ ├── g168models.h │ │ │ ├── g711.h │ │ │ ├── g722.h │ │ │ ├── g726.h │ │ │ ├── gsm0610.h │ │ │ ├── hdlc.h │ │ │ ├── ima_adpcm.h │ │ │ ├── image_translate.h │ │ │ ├── logging.h │ │ │ ├── lpc10.h │ │ │ ├── math_fixed.h │ │ │ ├── modem_connect_tones.h │ │ │ ├── modem_echo.h │ │ │ ├── noise.h │ │ │ ├── oki_adpcm.h │ │ │ ├── playout.h │ │ │ ├── plc.h │ │ │ ├── power_meter.h │ │ │ ├── private │ │ │ │ ├── README │ │ │ │ ├── ademco_contactid.h │ │ │ │ ├── adsi.h │ │ │ │ ├── async.h │ │ │ │ ├── at_interpreter.h │ │ │ │ ├── awgn.h │ │ │ │ ├── bell_r2_mf.h │ │ │ │ ├── bert.h │ │ │ │ ├── bitstream.h │ │ │ │ ├── dtmf.h │ │ │ │ ├── echo.h │ │ │ │ ├── fax.h │ │ │ │ ├── fax_modems.h │ │ │ │ ├── fsk.h │ │ │ │ ├── g711.h │ │ │ │ ├── g722.h │ │ │ │ ├── g726.h │ │ │ │ ├── gsm0610.h │ │ │ │ ├── hdlc.h │ │ │ │ ├── ima_adpcm.h │ │ │ │ ├── image_translate.h │ │ │ │ ├── logging.h │ │ │ │ ├── lpc10.h │ │ │ │ ├── modem_connect_tones.h │ │ │ │ ├── modem_echo.h │ │ │ │ ├── noise.h │ │ │ │ ├── oki_adpcm.h │ │ │ │ ├── playout.h │ │ │ │ ├── plc.h │ │ │ │ ├── power_meter.h │ │ │ │ ├── queue.h │ │ │ │ ├── schedule.h │ │ │ │ ├── sig_tone.h │ │ │ │ ├── silence_gen.h │ │ │ │ ├── super_tone_rx.h │ │ │ │ ├── super_tone_tx.h │ │ │ │ ├── swept_tone.h │ │ │ │ ├── t30.h │ │ │ │ ├── t30_dis_dtc_dcs_bits.h │ │ │ │ ├── t31.h │ │ │ │ ├── t38_core.h │ │ │ │ ├── t38_gateway.h │ │ │ │ ├── t38_non_ecm_buffer.h │ │ │ │ ├── t38_terminal.h │ │ │ │ ├── t42.h │ │ │ │ ├── t43.h │ │ │ │ ├── t4_rx.h │ │ │ │ ├── t4_t6_decode.h │ │ │ │ ├── t4_t6_encode.h │ │ │ │ ├── t4_tx.h │ │ │ │ ├── t81_t82_arith_coding.h │ │ │ │ ├── t85.h │ │ │ │ ├── time_scale.h │ │ │ │ ├── timezone.h │ │ │ │ ├── tone_detect.h │ │ │ │ ├── tone_generate.h │ │ │ │ ├── v17rx.h │ │ │ │ ├── v17tx.h │ │ │ │ ├── v18.h │ │ │ │ ├── v22bis.h │ │ │ │ ├── v27ter_rx.h │ │ │ │ ├── v27ter_tx.h │ │ │ │ ├── v29rx.h │ │ │ │ ├── v29tx.h │ │ │ │ ├── v42.h │ │ │ │ ├── v42bis.h │ │ │ │ └── v8.h │ │ │ ├── queue.h │ │ │ ├── saturated.h │ │ │ ├── schedule.h │ │ │ ├── sig_tone.h │ │ │ ├── silence_gen.h │ │ │ ├── stdbool.h │ │ │ ├── super_tone_rx.h │ │ │ ├── super_tone_tx.h │ │ │ ├── swept_tone.h │ │ │ ├── t30.h │ │ │ ├── t30_api.h │ │ │ ├── t30_fcf.h │ │ │ ├── t30_logging.h │ │ │ ├── t31.h │ │ │ ├── t35.h │ │ │ ├── t38_core.h │ │ │ ├── t38_gateway.h │ │ │ ├── t38_non_ecm_buffer.h │ │ │ ├── t38_terminal.h │ │ │ ├── t42.h │ │ │ ├── t43.h │ │ │ ├── t4_rx.h │ │ │ ├── t4_t6_decode.h │ │ │ ├── t4_t6_encode.h │ │ │ ├── t4_tx.h │ │ │ ├── t81_t82_arith_coding.h │ │ │ ├── t85.h │ │ │ ├── telephony.h │ │ │ ├── time_scale.h │ │ │ ├── timezone.h │ │ │ ├── timing.h │ │ │ ├── tone_detect.h │ │ │ ├── tone_generate.h │ │ │ ├── v17rx.h │ │ │ ├── v17tx.h │ │ │ ├── v18.h │ │ │ ├── v22bis.h │ │ │ ├── v27ter_rx.h │ │ │ ├── v27ter_tx.h │ │ │ ├── v29rx.h │ │ │ ├── v29tx.h │ │ │ ├── v42.h │ │ │ ├── v42bis.h │ │ │ ├── v8.h │ │ │ ├── vector_float.h │ │ │ ├── vector_int.h │ │ │ ├── version.h │ │ │ └── version.h.in │ │ ├── super_tone_rx.c │ │ ├── super_tone_tx.c │ │ ├── swept_tone.c │ │ ├── t30.c │ │ ├── t30_api.c │ │ ├── t30_local.h │ │ ├── t30_logging.c │ │ ├── t31.c │ │ ├── t35.c │ │ ├── t38_core.c │ │ ├── t38_gateway.c │ │ ├── t38_non_ecm_buffer.c │ │ ├── t38_terminal.c │ │ ├── t42.c │ │ ├── t42_t43_local.h │ │ ├── t43.c │ │ ├── t4_rx.c │ │ ├── t4_t6_decode.c │ │ ├── t4_t6_decode_states.h │ │ ├── t4_t6_encode.c │ │ ├── t4_tx.c │ │ ├── t81_t82_arith_coding.c │ │ ├── t85_decode.c │ │ ├── t85_encode.c │ │ ├── testcpuid.c │ │ ├── time_scale.c │ │ ├── timezone.c │ │ ├── tone_detect.c │ │ ├── tone_generate.c │ │ ├── v17_v32bis_rx_constellation_maps.h │ │ ├── v17_v32bis_tx_constellation_maps.h │ │ ├── v17rx.c │ │ ├── v17tx.c │ │ ├── v18.c │ │ ├── v22bis_rx.c │ │ ├── v22bis_tx.c │ │ ├── v27ter_rx.c │ │ ├── v27ter_tx.c │ │ ├── v29rx.c │ │ ├── v29tx.c │ │ ├── v29tx_constellation_maps.h │ │ ├── v42.c │ │ ├── v42bis.c │ │ ├── v8.c │ │ ├── vector_float.c │ │ └── vector_int.c │ ├── test-data │ │ ├── Makefile.am │ │ ├── etsi │ │ │ ├── Makefile.am │ │ │ └── fax │ │ │ │ ├── Makefile.am │ │ │ │ └── generate_etsi_300_242_pages.c │ │ ├── itu │ │ │ ├── Makefile.am │ │ │ └── fax │ │ │ │ ├── Makefile.am │ │ │ │ ├── generate_dithered_tif.c │ │ │ │ ├── generate_sized_pages.c │ │ │ │ ├── generate_striped_pages.c │ │ │ │ ├── itu1.pbm │ │ │ │ ├── itu2.pbm │ │ │ │ ├── itu3.pbm │ │ │ │ ├── itu4.pbm │ │ │ │ ├── itu5.pbm │ │ │ │ ├── itu6.pbm │ │ │ │ ├── itu7.pbm │ │ │ │ ├── itu8.pbm │ │ │ │ ├── test1.pbm │ │ │ │ ├── test2.pbm │ │ │ │ ├── test3.pbm │ │ │ │ └── test4.pbm │ │ └── local │ │ │ ├── Makefile.am │ │ │ ├── dam9.wav │ │ │ ├── dam9_lpc55.wav │ │ │ ├── lenna-colour-bilevel.tif │ │ │ ├── lenna-colour.tif │ │ │ ├── short_nb_voice.wav │ │ │ └── short_wb_voice.wav │ ├── tests │ │ ├── Makefile.am │ │ ├── ademco_contactid_tests.c │ │ ├── adsi_tests.c │ │ ├── alloc_tests.c │ │ ├── async_tests.c │ │ ├── at_interpreter_tests.c │ │ ├── awgn_tests.c │ │ ├── bell_mf_rx_tests.c │ │ ├── bell_mf_tx_tests.c │ │ ├── bert_tests.c │ │ ├── bit_operations_tests.c │ │ ├── bitstream_tests.c │ │ ├── complex_tests.c │ │ ├── complex_vector_float_tests.c │ │ ├── complex_vector_int_tests.c │ │ ├── crc_tests.c │ │ ├── dc_restore_tests.c │ │ ├── dds_tests.c │ │ ├── dtmf_rx_tests.c │ │ ├── dtmf_tx_tests.c │ │ ├── echo_monitor.cpp │ │ ├── echo_monitor.h │ │ ├── echo_tests.c │ │ ├── fax_decode.c │ │ ├── fax_tester.c │ │ ├── fax_tester.h │ │ ├── fax_tests.c │ │ ├── fax_tests.sh │ │ ├── fax_utils.c │ │ ├── fax_utils.h │ │ ├── fsk_tests.c │ │ ├── g1050_tests.c │ │ ├── g168_tests.c │ │ ├── g711_tests.c │ │ ├── g722_tests.c │ │ ├── g726_tests.c │ │ ├── gsm0610_tests.c │ │ ├── hdlc_tests.c │ │ ├── ima_adpcm_tests.c │ │ ├── image_translate_tests.c │ │ ├── line_model_monitor.cpp │ │ ├── line_model_monitor.h │ │ ├── line_model_tests.c │ │ ├── logging_tests.c │ │ ├── lpc10_tests.c │ │ ├── make_g168_css.c │ │ ├── math_fixed_tests.c │ │ ├── media_monitor.cpp │ │ ├── media_monitor.h │ │ ├── modem_connect_tones_tests.c │ │ ├── modem_echo_tests.c │ │ ├── modem_monitor.cpp │ │ ├── modem_monitor.h │ │ ├── msvc │ │ │ ├── complex_tests.2012.vcxproj │ │ │ ├── complex_tests.2012.vcxproj.filters │ │ │ ├── complex_vector_float_tests.2012.vcxproj │ │ │ ├── complex_vector_float_tests.2012.vcxproj.filters │ │ │ ├── complex_vector_int_tests.2012.vcxproj │ │ │ ├── complex_vector_int_tests.2012.vcxproj.filters │ │ │ ├── dtmf_rx_tests.2012.vcxproj │ │ │ ├── dtmf_rx_tests.2012.vcxproj.filters │ │ │ ├── dtmf_tx_tests.2012.vcxproj │ │ │ ├── dtmf_tx_tests.2012.vcxproj.filters │ │ │ ├── queue_tests.2012.vcxproj │ │ │ ├── queue_tests.2012.vcxproj.filters │ │ │ ├── t38_core_tests.2012.vcxproj │ │ │ ├── t38_core_tests.2012.vcxproj.filters │ │ │ ├── t38_non_ecm_buffer_tests.2012.vcxproj │ │ │ ├── t38_non_ecm_buffer_tests.2012.vcxproj.filters │ │ │ ├── v22bis_tests.2012.vcxproj │ │ │ ├── v22bis_tests.2012.vcxproj.filters │ │ │ ├── v29_tests.2012.vcxproj │ │ │ ├── v29_tests.2012.vcxproj.filters │ │ │ ├── v80_tests.2012.vcxproj │ │ │ ├── v80_tests.2012.vcxproj.filters │ │ │ ├── v8_tests.2012.vcxproj │ │ │ ├── v8_tests.2012.vcxproj.filters │ │ │ ├── vector_float_tests.2012.vcxproj │ │ │ ├── vector_float_tests.2012.vcxproj.filters │ │ │ ├── vector_int_tests.2012.vcxproj │ │ │ └── vector_int_tests.2012.vcxproj.filters │ │ ├── noise_tests.c │ │ ├── oki_adpcm_tests.c │ │ ├── pcap_parse.c │ │ ├── pcap_parse.h │ │ ├── playout_tests.c │ │ ├── plc_tests.c │ │ ├── power_meter_tests.c │ │ ├── pseudo_terminal_tests.c │ │ ├── pseudo_terminals.c │ │ ├── pseudo_terminals.h │ │ ├── queue_tests.c │ │ ├── r2_mf_rx_tests.c │ │ ├── r2_mf_tx_tests.c │ │ ├── regression_tests.sh │ │ ├── rfc2198_sim_tests.c │ │ ├── saturated_tests.c │ │ ├── schedule_tests.c │ │ ├── sig_tone_tests.c │ │ ├── super_tone_rx_tests.c │ │ ├── super_tone_tx_tests.c │ │ ├── swept_tone_tests.c │ │ ├── t31_pseudo_terminal_tests.c │ │ ├── t31_tests.c │ │ ├── t35_tests.c │ │ ├── t38_core_tests.c │ │ ├── t38_decode.c │ │ ├── t38_non_ecm_buffer_tests.c │ │ ├── t42_tests.c │ │ ├── t43_tests.c │ │ ├── t4_t6_tests.c │ │ ├── t4_tests.c │ │ ├── t81_t82_arith_coding_tests.c │ │ ├── t85_tests.c │ │ ├── testadsi.c │ │ ├── testfax.c │ │ ├── time_scale_tests.c │ │ ├── timezone_tests.c │ │ ├── tone_detect_tests.c │ │ ├── tone_generate_tests.c │ │ ├── tsb85_extra_tests.sh │ │ ├── tsb85_tests.c │ │ ├── tsb85_tests.sh │ │ ├── udptl.c │ │ ├── udptl.h │ │ ├── v17_tests.c │ │ ├── v17_tests.sh │ │ ├── v18_tests.c │ │ ├── v22bis_tests.c │ │ ├── v27ter_tests.c │ │ ├── v27ter_tests.sh │ │ ├── v29_tests.c │ │ ├── v29_tests.sh │ │ ├── v42_tests.c │ │ ├── v42bis_tests.c │ │ ├── v42bis_tests.sh │ │ ├── v8_tests.c │ │ ├── vector_float_tests.c │ │ └── vector_int_tests.c │ ├── unpack_g722_data.sh │ ├── unpack_g726_data.sh │ ├── unpack_gsm0610_data.sh │ ├── unpack_v56ter_data.sh │ ├── wrapper.xsl │ └── yum-prepare.sh ├── sqlite │ ├── .update │ ├── Makefile.in │ ├── Makefile.linux-gcc │ ├── README │ ├── VERSION │ ├── addopcodes.awk │ ├── art │ │ ├── 2005osaward.gif │ │ ├── SQLite.eps │ │ ├── SQLite.gif │ │ ├── SQLiteLogo3.tiff │ │ └── tmp │ │ │ └── .empty │ ├── configure.ac │ ├── configure.gnu │ ├── contrib │ │ └── sqlitecon.tcl │ ├── ext │ │ ├── README.txt │ │ ├── fts1 │ │ │ ├── README.txt │ │ │ ├── fts1.c │ │ │ ├── fts1.h │ │ │ ├── fts1_hash.c │ │ │ ├── fts1_hash.h │ │ │ ├── fts1_porter.c │ │ │ ├── fts1_tokenizer.h │ │ │ └── fts1_tokenizer1.c │ │ └── fts2 │ │ │ ├── README.txt │ │ │ ├── fts2.c │ │ │ ├── fts2.h │ │ │ ├── fts2_hash.c │ │ │ ├── fts2_hash.h │ │ │ ├── fts2_porter.c │ │ │ ├── fts2_tokenizer.h │ │ │ └── fts2_tokenizer1.c │ ├── main.mk │ ├── mkdll.sh │ ├── mkopcodec.awk │ ├── mkopcodeh.awk │ ├── mkso.sh │ ├── notes │ │ └── .empty │ ├── publish.sh │ ├── spec.template │ ├── sqlite.pc.in │ ├── sqlite3.1 │ ├── sqlite3.pc.in │ ├── src │ │ ├── alter.c │ │ ├── analyze.c │ │ ├── attach.c │ │ ├── auth.c │ │ ├── btree.c │ │ ├── btree.h │ │ ├── build.c │ │ ├── callback.c │ │ ├── complete.c │ │ ├── date.c │ │ ├── delete.c │ │ ├── ex │ │ │ └── .empty │ │ ├── expr.c │ │ ├── func.c │ │ ├── hash.c │ │ ├── hash.h │ │ ├── insert.c │ │ ├── legacy.c │ │ ├── loadext.c │ │ ├── main.c │ │ ├── os.c │ │ ├── os.h │ │ ├── os_common.h │ │ ├── os_os2.c │ │ ├── os_os2.h │ │ ├── os_unix.c │ │ ├── os_win.c │ │ ├── pager.c │ │ ├── pager.h │ │ ├── parse.y │ │ ├── pragma.c │ │ ├── prepare.c │ │ ├── printf.c │ │ ├── random.c │ │ ├── select.c │ │ ├── shell.c │ │ ├── sqlite.h.in │ │ ├── sqlite3ext.h │ │ ├── sqliteInt.h │ │ ├── table.c │ │ ├── tclsqlite.c │ │ ├── test1.c │ │ ├── test2.c │ │ ├── test3.c │ │ ├── test4.c │ │ ├── test5.c │ │ ├── test6.c │ │ ├── test7.c │ │ ├── test8.c │ │ ├── test_async.c │ │ ├── test_autoext.c │ │ ├── test_loadext.c │ │ ├── test_md5.c │ │ ├── test_schema.c │ │ ├── test_server.c │ │ ├── test_tclvar.c │ │ ├── tokenize.c │ │ ├── trigger.c │ │ ├── update.c │ │ ├── utf.c │ │ ├── util.c │ │ ├── vacuum.c │ │ ├── vdbe.c │ │ ├── vdbe.h │ │ ├── vdbeInt.h │ │ ├── vdbeapi.c │ │ ├── vdbeaux.c │ │ ├── vdbefifo.c │ │ ├── vdbemem.c │ │ ├── vtab.c │ │ └── where.c │ ├── tclinstaller.tcl │ ├── test │ │ ├── aggerror.test │ │ ├── all.test │ │ ├── alter.test │ │ ├── alter2.test │ │ ├── alter3.test │ │ ├── altermalloc.test │ │ ├── analyze.test │ │ ├── async.test │ │ ├── async2.test │ │ ├── attach.test │ │ ├── attach2.test │ │ ├── attach3.test │ │ ├── attachmalloc.test │ │ ├── auth.test │ │ ├── auth2.test │ │ ├── autoinc.test │ │ ├── autovacuum.test │ │ ├── autovacuum_crash.test │ │ ├── autovacuum_ioerr.test │ │ ├── autovacuum_ioerr2.test │ │ ├── avtrans.test │ │ ├── between.test │ │ ├── bigfile.test │ │ ├── bigrow.test │ │ ├── bind.test │ │ ├── bindxfer.test │ │ ├── blob.test │ │ ├── btree.test │ │ ├── btree2.test │ │ ├── btree4.test │ │ ├── btree5.test │ │ ├── btree6.test │ │ ├── btree7.test │ │ ├── btree8.test │ │ ├── busy.test │ │ ├── capi2.test │ │ ├── capi3.test │ │ ├── capi3b.test │ │ ├── capi3c.test │ │ ├── cast.test │ │ ├── check.test │ │ ├── collate1.test │ │ ├── collate2.test │ │ ├── collate3.test │ │ ├── collate4.test │ │ ├── collate5.test │ │ ├── collate6.test │ │ ├── colmeta.test │ │ ├── conflict.test │ │ ├── corrupt.test │ │ ├── corrupt2.test │ │ ├── crash.test │ │ ├── date.test │ │ ├── default.test │ │ ├── delete.test │ │ ├── delete2.test │ │ ├── delete3.test │ │ ├── descidx1.test │ │ ├── descidx2.test │ │ ├── descidx3.test │ │ ├── diskfull.test │ │ ├── distinctagg.test │ │ ├── enc.test │ │ ├── enc2.test │ │ ├── enc3.test │ │ ├── expr.test │ │ ├── fkey1.test │ │ ├── format4.test │ │ ├── fts1a.test │ │ ├── fts1b.test │ │ ├── fts1c.test │ │ ├── fts1d.test │ │ ├── fts1e.test │ │ ├── fts1f.test │ │ ├── fts1i.test │ │ ├── fts1j.test │ │ ├── fts1porter.test │ │ ├── fts2a.test │ │ ├── fts2b.test │ │ ├── fts2c.test │ │ ├── fts2d.test │ │ ├── fts2e.test │ │ ├── fts2f.test │ │ ├── fts2g.test │ │ ├── fts2h.test │ │ ├── fts2i.test │ │ ├── fts2j.test │ │ ├── func.test │ │ ├── hook.test │ │ ├── in.test │ │ ├── index.test │ │ ├── index2.test │ │ ├── index3.test │ │ ├── insert.test │ │ ├── insert2.test │ │ ├── insert3.test │ │ ├── interrupt.test │ │ ├── intpkey.test │ │ ├── ioerr.test │ │ ├── join.test │ │ ├── join2.test │ │ ├── join3.test │ │ ├── join4.test │ │ ├── join5.test │ │ ├── journal1.test │ │ ├── lastinsert.test │ │ ├── laststmtchanges.test │ │ ├── like.test │ │ ├── limit.test │ │ ├── loadext.test │ │ ├── loadext2.test │ │ ├── lock.test │ │ ├── lock2.test │ │ ├── lock3.test │ │ ├── main.test │ │ ├── malloc.test │ │ ├── malloc2.test │ │ ├── malloc3.test │ │ ├── malloc4.test │ │ ├── malloc5.test │ │ ├── malloc6.test │ │ ├── malloc7.test │ │ ├── manydb.test │ │ ├── memdb.test │ │ ├── memleak.test │ │ ├── minmax.test │ │ ├── misc1.test │ │ ├── misc2.test │ │ ├── misc3.test │ │ ├── misc4.test │ │ ├── misc5.test │ │ ├── misc6.test │ │ ├── misuse.test │ │ ├── notnull.test │ │ ├── null.test │ │ ├── pager.test │ │ ├── pager2.test │ │ ├── pager3.test │ │ ├── pagesize.test │ │ ├── pragma.test │ │ ├── printf.test │ │ ├── progress.test │ │ ├── quick.test │ │ ├── quote.test │ │ ├── reindex.test │ │ ├── rollback.test │ │ ├── rowid.test │ │ ├── safety.test │ │ ├── schema.test │ │ ├── schema2.test │ │ ├── select1.test │ │ ├── select2.test │ │ ├── select3.test │ │ ├── select4.test │ │ ├── select5.test │ │ ├── select6.test │ │ ├── select7.test │ │ ├── server1.test │ │ ├── shared.test │ │ ├── shared2.test │ │ ├── shared3.test │ │ ├── shared_err.test │ │ ├── sort.test │ │ ├── speed1.test │ │ ├── subquery.test │ │ ├── subselect.test │ │ ├── sync.test │ │ ├── table.test │ │ ├── tableapi.test │ │ ├── tclsqlite.test │ │ ├── temptable.test │ │ ├── tester.tcl │ │ ├── thread1.test │ │ ├── thread2.test │ │ ├── threadtest1.c │ │ ├── threadtest2.c │ │ ├── tkt1435.test │ │ ├── tkt1443.test │ │ ├── tkt1444.test │ │ ├── tkt1449.test │ │ ├── tkt1473.test │ │ ├── tkt1501.test │ │ ├── tkt1512.test │ │ ├── tkt1514.test │ │ ├── tkt1536.test │ │ ├── tkt1537.test │ │ ├── tkt1567.test │ │ ├── tkt1644.test │ │ ├── tkt1667.test │ │ ├── tkt1873.test │ │ ├── tkt2141.test │ │ ├── tkt2192.test │ │ ├── tkt2213.test │ │ ├── trace.test │ │ ├── trans.test │ │ ├── trigger1.test │ │ ├── trigger2.test │ │ ├── trigger3.test │ │ ├── trigger4.test │ │ ├── trigger5.test │ │ ├── trigger6.test │ │ ├── trigger7.test │ │ ├── trigger8.test │ │ ├── types.test │ │ ├── types2.test │ │ ├── types3.test │ │ ├── unique.test │ │ ├── update.test │ │ ├── utf16.test │ │ ├── utf16align.test │ │ ├── vacuum.test │ │ ├── vacuum2.test │ │ ├── varint.test │ │ ├── view.test │ │ ├── vtab1.test │ │ ├── vtab2.test │ │ ├── vtab3.test │ │ ├── vtab4.test │ │ ├── vtab5.test │ │ ├── vtab6.test │ │ ├── vtab7.test │ │ ├── vtab9.test │ │ ├── vtab_err.test │ │ ├── where.test │ │ ├── where2.test │ │ ├── where3.test │ │ └── where4.test │ ├── tool │ │ ├── diffdb.c │ │ ├── fragck.tcl │ │ ├── lemon.c │ │ ├── lempar.c │ │ ├── memleak.awk │ │ ├── memleak2.awk │ │ ├── memleak3.tcl │ │ ├── mkkeywordhash.c │ │ ├── mkopts.tcl │ │ ├── omittest.tcl │ │ ├── opcodeDoc.awk │ │ ├── report1.txt │ │ ├── showdb.c │ │ ├── showjournal.c │ │ ├── space_used.tcl │ │ ├── spaceanal.tcl │ │ ├── speedtest.tcl │ │ └── speedtest2.tcl │ └── www │ │ ├── arch.fig │ │ ├── arch.gif │ │ ├── arch.png │ │ ├── arch.tcl │ │ ├── arch2.fig │ │ ├── arch2.gif │ │ ├── arch2b.fig │ │ ├── audit.tcl │ │ ├── autoinc.tcl │ │ ├── c_interface.tcl │ │ ├── capi3.tcl │ │ ├── capi3ref.tcl │ │ ├── changes.tcl │ │ ├── common.tcl │ │ ├── compile.tcl │ │ ├── conflict.tcl │ │ ├── copyright-release.html │ │ ├── copyright-release.pdf │ │ ├── copyright.tcl │ │ ├── datatype3.tcl │ │ ├── datatypes.tcl │ │ ├── different.tcl │ │ ├── direct1b.gif │ │ ├── docs.tcl │ │ ├── download.tcl │ │ ├── dynload.tcl │ │ ├── faq.tcl │ │ ├── fileformat.tcl │ │ ├── formatchng.tcl │ │ ├── fullscanb.gif │ │ ├── index-ex1-x-b.gif │ │ ├── index.tcl │ │ ├── indirect1b1.gif │ │ ├── lang.tcl │ │ ├── lockingv3.tcl │ │ ├── mingw.tcl │ │ ├── nulls.tcl │ │ ├── oldnews.tcl │ │ ├── omitted.tcl │ │ ├── opcode.tcl │ │ ├── optimizer.tcl │ │ ├── optimizing.tcl │ │ ├── optoverview.tcl │ │ ├── pragma.tcl │ │ ├── quickstart.tcl │ │ ├── shared.gif │ │ ├── sharedcache.tcl │ │ ├── speed.tcl │ │ ├── sqlite.tcl │ │ ├── support.tcl │ │ ├── table-ex1b2.gif │ │ ├── tclsqlite.tcl │ │ ├── typesafe.tcl │ │ ├── vdbe.tcl │ │ ├── version3.tcl │ │ └── whentouse.tcl ├── srtp │ ├── .update │ ├── AUTHORS │ ├── CHANGES │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── TODO │ ├── VERSION │ ├── 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 │ ├── config.hw │ ├── configure.ac │ ├── configure.gnu │ ├── crypto │ │ ├── .cvsignore │ │ ├── Makefile.in │ │ ├── VERSION │ │ ├── ae_xfm │ │ │ └── xfm.c │ │ ├── cipher │ │ │ ├── aes.c │ │ │ ├── aes_cbc.c │ │ │ ├── aes_gcm_ossl.c │ │ │ ├── aes_icm.c │ │ │ ├── aes_icm_ossl.c │ │ │ ├── cipher.c │ │ │ └── null_cipher.c │ │ ├── hash │ │ │ ├── auth.c │ │ │ ├── hmac.c │ │ │ ├── hmac_ossl.c │ │ │ ├── null_auth.c │ │ │ └── sha1.c │ │ ├── include │ │ │ ├── .cvsignore │ │ │ ├── aes.h │ │ │ ├── aes_cbc.h │ │ │ ├── aes_gcm_ossl.h │ │ │ ├── aes_icm.h │ │ │ ├── aes_icm_ossl.h │ │ │ ├── alloc.h │ │ │ ├── auth.h │ │ │ ├── cipher.h │ │ │ ├── crypto.h │ │ │ ├── crypto_kernel.h │ │ │ ├── crypto_math.h │ │ │ ├── crypto_types.h │ │ │ ├── cryptoalg.h │ │ │ ├── datatypes.h │ │ │ ├── err.h │ │ │ ├── gf2_8.h │ │ │ ├── hmac.h │ │ │ ├── integers.h │ │ │ ├── kernel_compat.h │ │ │ ├── key.h │ │ │ ├── null_auth.h │ │ │ ├── null_cipher.h │ │ │ ├── prng.h │ │ │ ├── rand_source.h │ │ │ ├── rdb.h │ │ │ ├── rdbx.h │ │ │ ├── sha1.h │ │ │ ├── stat.h │ │ │ └── xfm.h │ │ ├── kernel │ │ │ ├── alloc.c │ │ │ ├── crypto_kernel.c │ │ │ ├── err.c │ │ │ └── key.c │ │ ├── math │ │ │ ├── datatypes.c │ │ │ ├── gf2_8.c │ │ │ ├── math.c │ │ │ └── stat.c │ │ ├── replay │ │ │ ├── rdb.c │ │ │ ├── rdbx.c │ │ │ └── ut_sim.c │ │ ├── rng │ │ │ ├── ctr_prng.c │ │ │ ├── prng.c │ │ │ ├── rand_linux_kernel.c │ │ │ ├── rand_source.c │ │ │ └── rand_source_ossl.c │ │ └── test │ │ │ ├── .cvsignore │ │ │ ├── aes_calc.c │ │ │ ├── auth_driver.c │ │ │ ├── cipher_driver.c │ │ │ ├── datatypes_driver.c │ │ │ ├── env.c │ │ │ ├── kernel_driver.c │ │ │ ├── rand_gen.c │ │ │ ├── sha1_driver.c │ │ │ └── stat_driver.c │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile.in │ │ ├── crypto_kernel.txt │ │ ├── draft-irtf-cfrg-icm-00.txt │ │ ├── header.template │ │ ├── intro.txt │ │ ├── libsrtp.pdf │ │ ├── references.txt │ │ └── rfc3711.txt │ ├── include │ │ ├── ekt.h │ │ ├── getopt_s.h │ │ ├── rtp.h │ │ ├── rtp_priv.h │ │ ├── srtp.h │ │ ├── srtp_priv.h │ │ └── ut_sim.h │ ├── libsrtp.2008.vcproj │ ├── libsrtp.2010.vcxproj │ ├── libsrtp.2010.vcxproj.filters │ ├── libsrtp.2012.vcxproj │ ├── libsrtp.2012.vcxproj.filters │ ├── libsrtp.vcproj │ ├── srtp-1.42.pc.in │ ├── srtp.def │ ├── srtp.vcproj │ ├── srtp │ │ ├── ekt.c │ │ └── srtp.c │ ├── tables │ │ └── aes_tables.c │ ├── test │ │ ├── Makefile.am │ │ ├── dtls_srtp_driver.c │ │ ├── getopt_s.c │ │ ├── lfsr.c │ │ ├── rdbx_driver.c │ │ ├── replay_driver.c │ │ ├── roc_driver.c │ │ ├── rtp.c │ │ ├── rtpw.c │ │ ├── rtpw_test.sh │ │ ├── rtpw_test_gcm.sh │ │ └── srtp_driver.c │ ├── timing │ ├── undos.sh │ └── update.sh ├── tiff-4.0.2 │ ├── .gitignore │ ├── .update │ ├── COPYRIGHT │ ├── ChangeLog │ ├── HOWTO-RELEASE │ ├── Makefile.am │ ├── Makefile.vc │ ├── README │ ├── README.vms │ ├── RELEASE-DATE │ ├── SConstruct │ ├── TODO │ ├── VERSION │ ├── autogen.sh │ ├── build │ │ ├── Makefile.am │ │ └── README │ ├── config │ │ └── .emptydir │ ├── configure.ac │ ├── configure.com │ ├── configure.gnu │ ├── contrib │ │ ├── Makefile.am │ │ ├── README │ │ ├── addtiffo │ │ │ ├── Makefile.am │ │ │ ├── Makefile.vc │ │ │ ├── README │ │ │ ├── addtiffo.c │ │ │ ├── tif_overview.c │ │ │ ├── tif_ovrcache.c │ │ │ └── tif_ovrcache.h │ │ ├── dbs │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── tiff-bi.c │ │ │ ├── tiff-grayscale.c │ │ │ ├── tiff-palette.c │ │ │ ├── tiff-rgb.c │ │ │ └── xtiff │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── patchlevel.h │ │ │ │ ├── xtiff.c │ │ │ │ └── xtifficon.h │ │ ├── iptcutil │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── iptcutil.c │ │ │ ├── test.iptc │ │ │ └── test.txt │ │ ├── mfs │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ └── mfs_file.c │ │ ├── pds │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── tif_imageiter.c │ │ │ ├── tif_imageiter.h │ │ │ ├── tif_pdsdirread.c │ │ │ └── tif_pdsdirwrite.c │ │ ├── ras │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── ras2tif.c │ │ │ └── tif2ras.c │ │ ├── stream │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── tiffstream.cpp │ │ │ └── tiffstream.h │ │ ├── tags │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── listtif.c │ │ │ ├── maketif.c │ │ │ ├── xtif_dir.c │ │ │ ├── xtiffio.h │ │ │ └── xtiffiop.h │ │ └── win_dib │ │ │ ├── Makefile.am │ │ │ ├── Makefile.w95 │ │ │ ├── README.Tiffile │ │ │ ├── README.tiff2dib │ │ │ ├── Tiffile.cpp │ │ │ └── tiff2dib.c │ ├── html │ │ ├── Makefile.am │ │ ├── TIFFTechNote2.html │ │ ├── addingtags.html │ │ ├── bugs.html │ │ ├── build.html │ │ ├── contrib.html │ │ ├── document.html │ │ ├── images.html │ │ ├── images │ │ │ ├── Makefile.am │ │ │ ├── back.gif │ │ │ ├── bali.jpg │ │ │ ├── cat.gif │ │ │ ├── cover.jpg │ │ │ ├── cramps.gif │ │ │ ├── dave.gif │ │ │ ├── info.gif │ │ │ ├── jello.jpg │ │ │ ├── jim.gif │ │ │ ├── note.gif │ │ │ ├── oxford.gif │ │ │ ├── quad.jpg │ │ │ ├── ring.gif │ │ │ ├── smallliz.jpg │ │ │ ├── strike.gif │ │ │ └── warning.gif │ │ ├── index.html │ │ ├── internals.html │ │ ├── intro.html │ │ ├── libtiff.html │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── TIFFClose.3tiff.html │ │ │ ├── TIFFDataWidth.3tiff.html │ │ │ ├── TIFFError.3tiff.html │ │ │ ├── TIFFFlush.3tiff.html │ │ │ ├── TIFFGetField.3tiff.html │ │ │ ├── TIFFOpen.3tiff.html │ │ │ ├── TIFFPrintDirectory.3tiff.html │ │ │ ├── TIFFRGBAImage.3tiff.html │ │ │ ├── TIFFReadDirectory.3tiff.html │ │ │ ├── TIFFReadEncodedStrip.3tiff.html │ │ │ ├── TIFFReadEncodedTile.3tiff.html │ │ │ ├── TIFFReadRGBAImage.3tiff.html │ │ │ ├── TIFFReadRGBAStrip.3tiff.html │ │ │ ├── TIFFReadRGBATile.3tiff.html │ │ │ ├── TIFFReadRawStrip.3tiff.html │ │ │ ├── TIFFReadRawTile.3tiff.html │ │ │ ├── TIFFReadScanline.3tiff.html │ │ │ ├── TIFFReadTile.3tiff.html │ │ │ ├── TIFFSetDirectory.3tiff.html │ │ │ ├── TIFFSetField.3tiff.html │ │ │ ├── TIFFWarning.3tiff.html │ │ │ ├── TIFFWriteDirectory.3tiff.html │ │ │ ├── TIFFWriteEncodedStrip.3tiff.html │ │ │ ├── TIFFWriteEncodedTile.3tiff.html │ │ │ ├── TIFFWriteRawStrip.3tiff.html │ │ │ ├── TIFFWriteRawTile.3tiff.html │ │ │ ├── TIFFWriteScanline.3tiff.html │ │ │ ├── TIFFWriteTile.3tiff.html │ │ │ ├── TIFFbuffer.3tiff.html │ │ │ ├── TIFFcodec.3tiff.html │ │ │ ├── TIFFcolor.3tiff.html │ │ │ ├── TIFFmemory.3tiff.html │ │ │ ├── TIFFquery.3tiff.html │ │ │ ├── TIFFsize.3tiff.html │ │ │ ├── TIFFstrip.3tiff.html │ │ │ ├── TIFFswab.3tiff.html │ │ │ ├── TIFFtile.3tiff.html │ │ │ ├── fax2ps.1.html │ │ │ ├── fax2tiff.1.html │ │ │ ├── gif2tiff.1.html │ │ │ ├── index.html │ │ │ ├── libtiff.3tiff.html │ │ │ ├── pal2rgb.1.html │ │ │ ├── ppm2tiff.1.html │ │ │ ├── ras2tiff.1.html │ │ │ ├── raw2tiff.1.html │ │ │ ├── rgb2ycbcr.1.html │ │ │ ├── sgi2tiff.1.html │ │ │ ├── thumbnail.1.html │ │ │ ├── tiff2bw.1.html │ │ │ ├── tiff2pdf.1.html │ │ │ ├── tiff2ps.1.html │ │ │ ├── tiff2rgba.1.html │ │ │ ├── tiffcmp.1.html │ │ │ ├── tiffcp.1.html │ │ │ ├── tiffcrop.1.html │ │ │ ├── tiffdither.1.html │ │ │ ├── tiffdump.1.html │ │ │ ├── tiffgt.1.html │ │ │ ├── tiffinfo.1.html │ │ │ ├── tiffmedian.1.html │ │ │ ├── tiffset.1.html │ │ │ ├── tiffsplit.1.html │ │ │ └── tiffsv.1.html │ │ ├── misc.html │ │ ├── support.html │ │ ├── tools.html │ │ ├── v3.4beta007.html │ │ ├── v3.4beta016.html │ │ ├── v3.4beta018.html │ │ ├── v3.4beta024.html │ │ ├── v3.4beta028.html │ │ ├── v3.4beta029.html │ │ ├── v3.4beta031.html │ │ ├── v3.4beta032.html │ │ ├── v3.4beta033.html │ │ ├── v3.4beta034.html │ │ ├── v3.4beta035.html │ │ ├── v3.4beta036.html │ │ ├── v3.5.1.html │ │ ├── v3.5.2.html │ │ ├── v3.5.3.html │ │ ├── v3.5.4.html │ │ ├── v3.5.5.html │ │ ├── v3.5.6-beta.html │ │ ├── v3.5.7.html │ │ ├── v3.6.0.html │ │ ├── v3.6.1.html │ │ ├── v3.7.0.html │ │ ├── v3.7.0alpha.html │ │ ├── v3.7.0beta.html │ │ ├── v3.7.0beta2.html │ │ ├── v3.7.1.html │ │ ├── v3.7.2.html │ │ ├── v3.7.3.html │ │ ├── v3.7.4.html │ │ ├── v3.8.0.html │ │ ├── v3.8.1.html │ │ ├── v3.8.2.html │ │ ├── v3.9.0beta.html │ │ ├── v3.9.1.html │ │ ├── v3.9.2.html │ │ ├── v4.0.0.html │ │ ├── v4.0.1.html │ │ └── v4.0.2.html │ ├── libtiff-4.pc.in │ ├── libtiff │ │ ├── Makefile.am │ │ ├── Makefile.vc │ │ ├── SConstruct │ │ ├── libtiff.def │ │ ├── mkg3states.c │ │ ├── t4.h │ │ ├── tif_aux.c │ │ ├── tif_close.c │ │ ├── tif_codec.c │ │ ├── tif_color.c │ │ ├── tif_compress.c │ │ ├── tif_config.h-vms │ │ ├── tif_config.vc.h │ │ ├── tif_config.wince.h │ │ ├── tif_dir.c │ │ ├── tif_dir.h │ │ ├── tif_dirinfo.c │ │ ├── tif_dirread.c │ │ ├── tif_dirwrite.c │ │ ├── tif_dumpmode.c │ │ ├── tif_error.c │ │ ├── tif_extension.c │ │ ├── tif_fax3.c │ │ ├── tif_fax3.h │ │ ├── tif_fax3sm.c │ │ ├── tif_flush.c │ │ ├── tif_getimage.c │ │ ├── tif_jbig.c │ │ ├── tif_jpeg.c │ │ ├── tif_jpeg_12.c │ │ ├── tif_luv.c │ │ ├── tif_lzma.c │ │ ├── tif_lzw.c │ │ ├── tif_next.c │ │ ├── tif_ojpeg.c │ │ ├── tif_open.c │ │ ├── tif_packbits.c │ │ ├── tif_pixarlog.c │ │ ├── tif_predict.c │ │ ├── tif_predict.h │ │ ├── tif_print.c │ │ ├── tif_read.c │ │ ├── tif_stream.cxx │ │ ├── tif_strip.c │ │ ├── tif_swab.c │ │ ├── tif_thunder.c │ │ ├── tif_tile.c │ │ ├── tif_unix.c │ │ ├── tif_version.c │ │ ├── tif_warning.c │ │ ├── tif_win32.c │ │ ├── tif_write.c │ │ ├── tif_zip.c │ │ ├── tiff.h │ │ ├── tiffconf.h.in │ │ ├── tiffconf.vc.h │ │ ├── tiffconf.wince.h │ │ ├── tiffio.h │ │ ├── tiffio.hxx │ │ ├── tiffiop.h │ │ ├── tiffvers.h │ │ └── uvcode.h │ ├── m4 │ │ └── acinclude.m4 │ ├── man │ │ ├── Makefile.am │ │ ├── TIFFClose.3tiff │ │ ├── TIFFDataWidth.3tiff │ │ ├── TIFFError.3tiff │ │ ├── TIFFFlush.3tiff │ │ ├── TIFFGetField.3tiff │ │ ├── TIFFOpen.3tiff │ │ ├── TIFFPrintDirectory.3tiff │ │ ├── TIFFRGBAImage.3tiff │ │ ├── TIFFReadDirectory.3tiff │ │ ├── TIFFReadEncodedStrip.3tiff │ │ ├── TIFFReadEncodedTile.3tiff │ │ ├── TIFFReadRGBAImage.3tiff │ │ ├── TIFFReadRGBAStrip.3tiff │ │ ├── TIFFReadRGBATile.3tiff │ │ ├── TIFFReadRawStrip.3tiff │ │ ├── TIFFReadRawTile.3tiff │ │ ├── TIFFReadScanline.3tiff │ │ ├── TIFFReadTile.3tiff │ │ ├── TIFFSetDirectory.3tiff │ │ ├── TIFFSetField.3tiff │ │ ├── TIFFWarning.3tiff │ │ ├── TIFFWriteDirectory.3tiff │ │ ├── TIFFWriteEncodedStrip.3tiff │ │ ├── TIFFWriteEncodedTile.3tiff │ │ ├── TIFFWriteRawStrip.3tiff │ │ ├── TIFFWriteRawTile.3tiff │ │ ├── TIFFWriteScanline.3tiff │ │ ├── TIFFWriteTile.3tiff │ │ ├── TIFFbuffer.3tiff │ │ ├── TIFFcodec.3tiff │ │ ├── TIFFcolor.3tiff │ │ ├── TIFFmemory.3tiff │ │ ├── TIFFquery.3tiff │ │ ├── TIFFsize.3tiff │ │ ├── TIFFstrip.3tiff │ │ ├── TIFFswab.3tiff │ │ ├── TIFFtile.3tiff │ │ ├── bmp2tiff.1 │ │ ├── fax2ps.1 │ │ ├── fax2tiff.1 │ │ ├── gif2tiff.1 │ │ ├── libtiff.3tiff │ │ ├── pal2rgb.1 │ │ ├── ppm2tiff.1 │ │ ├── ras2tiff.1 │ │ ├── raw2tiff.1 │ │ ├── rgb2ycbcr.1 │ │ ├── sgi2tiff.1 │ │ ├── thumbnail.1 │ │ ├── tiff2bw.1 │ │ ├── tiff2pdf.1 │ │ ├── tiff2ps.1 │ │ ├── tiff2rgba.1 │ │ ├── tiffcmp.1 │ │ ├── tiffcp.1 │ │ ├── tiffcrop.1 │ │ ├── tiffdither.1 │ │ ├── tiffdump.1 │ │ ├── tiffgt.1 │ │ ├── tiffinfo.1 │ │ ├── tiffmedian.1 │ │ ├── tiffset.1 │ │ ├── tiffsplit.1 │ │ └── tiffsv.1 │ ├── nmake.opt │ ├── port │ │ ├── Makefile.am │ │ ├── Makefile.vc │ │ ├── dummy.c │ │ ├── getopt.c │ │ ├── lfind.c │ │ ├── libport.h │ │ ├── strcasecmp.c │ │ ├── strtoul.c │ │ └── strtoull.c │ ├── test │ │ ├── Makefile.am │ │ ├── ascii_tag.c │ │ ├── bmp2tiff_palette.sh │ │ ├── bmp2tiff_rgb.sh │ │ ├── check_tag.c │ │ ├── common.sh │ │ ├── custom_dir.c │ │ ├── gif2tiff.sh │ │ ├── images │ │ │ ├── README.txt │ │ │ ├── logluv-3c-16b.tiff │ │ │ ├── minisblack-1c-16b.tiff │ │ │ ├── minisblack-1c-8b.pgm │ │ │ ├── minisblack-1c-8b.tiff │ │ │ ├── minisblack-2c-8b-alpha.tiff │ │ │ ├── miniswhite-1c-1b.pbm │ │ │ ├── miniswhite-1c-1b.tiff │ │ │ ├── palette-1c-1b.tiff │ │ │ ├── palette-1c-4b.tiff │ │ │ ├── palette-1c-8b.bmp │ │ │ ├── palette-1c-8b.gif │ │ │ ├── palette-1c-8b.tiff │ │ │ ├── quad-tile.jpg.tiff │ │ │ ├── rgb-3c-16b.tiff │ │ │ ├── rgb-3c-8b.bmp │ │ │ ├── rgb-3c-8b.ppm │ │ │ └── rgb-3c-8b.tiff │ │ ├── long_tag.c │ │ ├── ppm2tiff_pbm.sh │ │ ├── ppm2tiff_pgm.sh │ │ ├── ppm2tiff_ppm.sh │ │ ├── raw_decode.c │ │ ├── rewrite_tag.c │ │ ├── short_tag.c │ │ ├── strip.c │ │ ├── strip_rw.c │ │ ├── test_arrays.c │ │ ├── test_arrays.h │ │ ├── tiff2pdf.sh │ │ ├── tiff2ps-EPS1.sh │ │ ├── tiff2ps-PS1.sh │ │ ├── tiff2ps-PS2.sh │ │ ├── tiff2ps-PS3.sh │ │ ├── tiff2rgba-logluv-3c-16b.sh │ │ ├── tiff2rgba-minisblack-1c-16b.sh │ │ ├── tiff2rgba-minisblack-1c-8b.sh │ │ ├── tiff2rgba-minisblack-2c-8b-alpha.sh │ │ ├── tiff2rgba-miniswhite-1c-1b.sh │ │ ├── tiff2rgba-palette-1c-1b.sh │ │ ├── tiff2rgba-palette-1c-4b.sh │ │ ├── tiff2rgba-palette-1c-8b.sh │ │ ├── tiff2rgba-quad-tile.jpg.sh │ │ ├── tiff2rgba-rgb-3c-16b.sh │ │ ├── tiff2rgba-rgb-3c-8b.sh │ │ ├── tiffcp-g3-1d-fill.sh │ │ ├── tiffcp-g3-1d.sh │ │ ├── tiffcp-g3-2d-fill.sh │ │ ├── tiffcp-g3-2d.sh │ │ ├── tiffcp-g3.sh │ │ ├── tiffcp-g4.sh │ │ ├── tiffcp-logluv.sh │ │ ├── tiffcp-split-join.sh │ │ ├── tiffcp-split.sh │ │ ├── tiffcp-thumbnail.sh │ │ ├── tiffcrop-R90-logluv-3c-16b.sh │ │ ├── tiffcrop-R90-minisblack-1c-16b.sh │ │ ├── tiffcrop-R90-minisblack-1c-8b.sh │ │ ├── tiffcrop-R90-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-R90-miniswhite-1c-1b.sh │ │ ├── tiffcrop-R90-palette-1c-1b.sh │ │ ├── tiffcrop-R90-palette-1c-4b.sh │ │ ├── tiffcrop-R90-palette-1c-8b.sh │ │ ├── tiffcrop-R90-rgb-3c-16b.sh │ │ ├── tiffcrop-R90-rgb-3c-8b.sh │ │ ├── tiffcrop-doubleflip-logluv-3c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-16b.sh │ │ ├── tiffcrop-doubleflip-minisblack-1c-8b.sh │ │ ├── tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-doubleflip-miniswhite-1c-1b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-1b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-4b.sh │ │ ├── tiffcrop-doubleflip-palette-1c-8b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-16b.sh │ │ ├── tiffcrop-doubleflip-rgb-3c-8b.sh │ │ ├── tiffcrop-extract-logluv-3c-16b.sh │ │ ├── tiffcrop-extract-minisblack-1c-16b.sh │ │ ├── tiffcrop-extract-minisblack-1c-8b.sh │ │ ├── tiffcrop-extract-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-extract-miniswhite-1c-1b.sh │ │ ├── tiffcrop-extract-palette-1c-1b.sh │ │ ├── tiffcrop-extract-palette-1c-4b.sh │ │ ├── tiffcrop-extract-palette-1c-8b.sh │ │ ├── tiffcrop-extract-rgb-3c-16b.sh │ │ ├── tiffcrop-extract-rgb-3c-8b.sh │ │ ├── tiffcrop-extractz14-logluv-3c-16b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-16b.sh │ │ ├── tiffcrop-extractz14-minisblack-1c-8b.sh │ │ ├── tiffcrop-extractz14-minisblack-2c-8b-alpha.sh │ │ ├── tiffcrop-extractz14-miniswhite-1c-1b.sh │ │ ├── tiffcrop-extractz14-palette-1c-1b.sh │ │ ├── tiffcrop-extractz14-palette-1c-4b.sh │ │ ├── tiffcrop-extractz14-palette-1c-8b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-16b.sh │ │ ├── tiffcrop-extractz14-rgb-3c-8b.sh │ │ ├── tiffdump.sh │ │ ├── tiffinfo.sh │ │ └── tifftest.h │ └── tools │ │ ├── Makefile.am │ │ ├── Makefile.vc │ │ ├── bmp2tiff.c │ │ ├── fax2ps.c │ │ ├── fax2tiff.c │ │ ├── gif2tiff.c │ │ ├── pal2rgb.c │ │ ├── ppm2tiff.c │ │ ├── ras2tiff.c │ │ ├── rasterfile.h │ │ ├── raw2tiff.c │ │ ├── rgb2ycbcr.c │ │ ├── sgi2tiff.c │ │ ├── sgisv.c │ │ ├── thumbnail.c │ │ ├── tiff2bw.c │ │ ├── tiff2pdf.c │ │ ├── tiff2ps.c │ │ ├── tiff2rgba.c │ │ ├── tiffcmp.c │ │ ├── tiffcp.c │ │ ├── tiffcrop.c │ │ ├── tiffdither.c │ │ ├── tiffdump.c │ │ ├── tiffgt.c │ │ ├── tiffinfo.c │ │ ├── tiffmedian.c │ │ ├── tiffset.c │ │ ├── tiffsplit.c │ │ └── ycbcr.c ├── unimrcp │ ├── .gitignore │ ├── .update │ ├── AUTHORS │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── NOTICE │ ├── README │ ├── acinclude.m4 │ ├── bootstrap │ ├── build │ │ ├── Makefile.am │ │ ├── acmacros │ │ │ ├── apr.m4 │ │ │ ├── apu.m4 │ │ │ ├── find_apr.m4 │ │ │ ├── find_apu.m4 │ │ │ ├── flite.m4 │ │ │ ├── pocketsphinx.m4 │ │ │ ├── sofia-sip.m4 │ │ │ └── sphinxbase.m4 │ │ ├── get-version.sh │ │ ├── init.d │ │ │ └── unimrcp-server │ │ ├── pkgconfig │ │ │ ├── Makefile.am │ │ │ ├── unimrcpclient.pc.in │ │ │ ├── unimrcpplugin.pc.in │ │ │ └── unimrcpserver.pc.in │ │ ├── svnrev │ │ │ ├── Makefile.am │ │ │ ├── svnrev.c │ │ │ ├── svnrev.input │ │ │ └── svnrev.vcproj │ │ ├── tools │ │ │ ├── prepare.2008.vcproj │ │ │ ├── prepare.vcproj │ │ │ ├── preparesphinx.vcproj │ │ │ ├── unimrcp_service.c │ │ │ ├── unimrcpservice.2008.vcproj │ │ │ ├── unimrcpservice.exe.manifest │ │ │ └── unimrcpservice.vcproj │ │ ├── uni_version.h │ │ └── vsprops │ │ │ ├── apr.props │ │ │ ├── apr.vsprops │ │ │ ├── apt.props │ │ │ ├── apt.vsprops │ │ │ ├── flite.vsprops │ │ │ ├── mpf.props │ │ │ ├── mpf.vsprops │ │ │ ├── mrcp.props │ │ │ ├── mrcp.vsprops │ │ │ ├── mrcpclient.props │ │ │ ├── mrcpclient.vsprops │ │ │ ├── mrcpengine.vsprops │ │ │ ├── mrcpserver.vsprops │ │ │ ├── mrcpsignaling.props │ │ │ ├── mrcpsignaling.vsprops │ │ │ ├── mrcpv2transport.props │ │ │ ├── mrcpv2transport.vsprops │ │ │ ├── pocketsphinx.vsprops │ │ │ ├── sdk │ │ │ ├── unimrcpclient.vsprops │ │ │ ├── unimrcpplugin.vsprops │ │ │ ├── unimrcpsdk.vsprops │ │ │ └── unimrcpserver.vsprops │ │ │ ├── sofiasip.props │ │ │ ├── sofiasip.vsprops │ │ │ ├── unibase.props │ │ │ ├── unibase.vsprops │ │ │ ├── unibin-x64.vsprops │ │ │ ├── unibin.vsprops │ │ │ ├── unidebug.props │ │ │ ├── unidebug.vsprops │ │ │ ├── unilib-x64.vsprops │ │ │ ├── unilib.vsprops │ │ │ ├── unimrcpclient.vsprops │ │ │ ├── unimrcpserver.vsprops │ │ │ ├── uniplugin-x64.vsprops │ │ │ ├── uniplugin.vsprops │ │ │ ├── unirelease.props │ │ │ ├── unirelease.vsprops │ │ │ ├── unirtsp.props │ │ │ └── unirtsp.vsprops │ ├── conf │ │ ├── Makefile.am │ │ ├── client-profiles │ │ │ ├── lumenvox.xml │ │ │ ├── nuance.xml │ │ │ ├── speechpro.xml │ │ │ └── unimrcp.xml │ │ ├── logger.xml │ │ ├── umcscenarios.xml │ │ ├── unimrcpclient.xml │ │ ├── unimrcpclient.xsd │ │ ├── unimrcpserver.xml │ │ └── unimrcpserver.xsd │ ├── configure.ac │ ├── configure.gnu │ ├── data │ │ ├── Makefile.am │ │ ├── demo-16kHz.pcm │ │ ├── demo-8kHz.pcm │ │ ├── grammar.jsgf │ │ ├── grammar.mixed │ │ ├── grammar.xml │ │ ├── johnsmith-16kHz.pcm │ │ ├── johnsmith-8kHz.pcm │ │ ├── one-16kHz.pcm │ │ ├── one-8kHz.pcm │ │ ├── result-verification.xml │ │ ├── result.xml │ │ ├── speak.txt │ │ └── speak.xml │ ├── docs │ │ ├── doxygen.conf.in │ │ └── mainpage.docs │ ├── libs │ │ ├── Makefile.am │ │ ├── apr-toolkit │ │ │ ├── Makefile.am │ │ │ ├── aprtoolkit.2008.vcproj │ │ │ ├── aprtoolkit.2010.vcxproj │ │ │ ├── aprtoolkit.2012.vcxproj │ │ │ ├── aprtoolkit.vcproj │ │ │ ├── include │ │ │ │ ├── apt.h │ │ │ │ ├── apt_consumer_task.h │ │ │ │ ├── apt_cyclic_queue.h │ │ │ │ ├── apt_dir_layout.h │ │ │ │ ├── apt_header_field.h │ │ │ │ ├── apt_log.h │ │ │ │ ├── apt_multipart_content.h │ │ │ │ ├── apt_net.h │ │ │ │ ├── apt_nlsml_doc.h │ │ │ │ ├── apt_obj_list.h │ │ │ │ ├── apt_pair.h │ │ │ │ ├── apt_poller_task.h │ │ │ │ ├── apt_pollset.h │ │ │ │ ├── apt_pool.h │ │ │ │ ├── apt_string.h │ │ │ │ ├── apt_string_table.h │ │ │ │ ├── apt_task.h │ │ │ │ ├── apt_task_msg.h │ │ │ │ ├── apt_test_suite.h │ │ │ │ ├── apt_text_message.h │ │ │ │ ├── apt_text_stream.h │ │ │ │ └── apt_timer_queue.h │ │ │ └── src │ │ │ │ ├── apt_consumer_task.c │ │ │ │ ├── apt_cyclic_queue.c │ │ │ │ ├── apt_dir_layout.c │ │ │ │ ├── apt_header_field.c │ │ │ │ ├── apt_log.c │ │ │ │ ├── apt_multipart_content.c │ │ │ │ ├── apt_net.c │ │ │ │ ├── apt_nlsml_doc.c │ │ │ │ ├── apt_obj_list.c │ │ │ │ ├── apt_pair.c │ │ │ │ ├── apt_poller_task.c │ │ │ │ ├── apt_pollset.c │ │ │ │ ├── apt_pool.c │ │ │ │ ├── apt_string_table.c │ │ │ │ ├── apt_task.c │ │ │ │ ├── apt_task_msg.c │ │ │ │ ├── apt_test_suite.c │ │ │ │ ├── apt_text_message.c │ │ │ │ ├── apt_text_stream.c │ │ │ │ └── apt_timer_queue.c │ │ ├── mpf │ │ │ ├── Makefile.am │ │ │ ├── codecs │ │ │ │ └── g711 │ │ │ │ │ ├── g711.c │ │ │ │ │ └── g711.h │ │ │ ├── include │ │ │ │ ├── mpf.h │ │ │ │ ├── mpf_activity_detector.h │ │ │ │ ├── mpf_audio_file_descriptor.h │ │ │ │ ├── mpf_audio_file_stream.h │ │ │ │ ├── mpf_bridge.h │ │ │ │ ├── mpf_buffer.h │ │ │ │ ├── mpf_codec.h │ │ │ │ ├── mpf_codec_descriptor.h │ │ │ │ ├── mpf_codec_manager.h │ │ │ │ ├── mpf_context.h │ │ │ │ ├── mpf_decoder.h │ │ │ │ ├── mpf_dtmf_detector.h │ │ │ │ ├── mpf_dtmf_generator.h │ │ │ │ ├── mpf_encoder.h │ │ │ │ ├── mpf_engine.h │ │ │ │ ├── mpf_file_termination_factory.h │ │ │ │ ├── mpf_frame.h │ │ │ │ ├── mpf_frame_buffer.h │ │ │ │ ├── mpf_jitter_buffer.h │ │ │ │ ├── mpf_message.h │ │ │ │ ├── mpf_mixer.h │ │ │ │ ├── mpf_multiplier.h │ │ │ │ ├── mpf_named_event.h │ │ │ │ ├── mpf_object.h │ │ │ │ ├── mpf_resampler.h │ │ │ │ ├── mpf_rtcp_packet.h │ │ │ │ ├── mpf_rtp_attribs.h │ │ │ │ ├── mpf_rtp_defs.h │ │ │ │ ├── mpf_rtp_descriptor.h │ │ │ │ ├── mpf_rtp_header.h │ │ │ │ ├── mpf_rtp_pt.h │ │ │ │ ├── mpf_rtp_stat.h │ │ │ │ ├── mpf_rtp_stream.h │ │ │ │ ├── mpf_rtp_termination_factory.h │ │ │ │ ├── mpf_scheduler.h │ │ │ │ ├── mpf_stream.h │ │ │ │ ├── mpf_stream_descriptor.h │ │ │ │ ├── mpf_termination.h │ │ │ │ ├── mpf_termination_factory.h │ │ │ │ └── mpf_types.h │ │ │ ├── mpf.2008.vcproj │ │ │ ├── mpf.2010.vcxproj │ │ │ ├── mpf.2010.vcxproj.filters │ │ │ ├── mpf.2012.vcxproj │ │ │ ├── mpf.2012.vcxproj.filters │ │ │ ├── mpf.vcproj │ │ │ └── src │ │ │ │ ├── mpf_activity_detector.c │ │ │ │ ├── mpf_audio_file_stream.c │ │ │ │ ├── mpf_bridge.c │ │ │ │ ├── mpf_buffer.c │ │ │ │ ├── mpf_codec_descriptor.c │ │ │ │ ├── mpf_codec_g711.c │ │ │ │ ├── mpf_codec_linear.c │ │ │ │ ├── mpf_codec_manager.c │ │ │ │ ├── mpf_context.c │ │ │ │ ├── mpf_decoder.c │ │ │ │ ├── mpf_dtmf_detector.c │ │ │ │ ├── mpf_dtmf_generator.c │ │ │ │ ├── mpf_encoder.c │ │ │ │ ├── mpf_engine.c │ │ │ │ ├── mpf_file_termination_factory.c │ │ │ │ ├── mpf_frame_buffer.c │ │ │ │ ├── mpf_jitter_buffer.c │ │ │ │ ├── mpf_mixer.c │ │ │ │ ├── mpf_multiplier.c │ │ │ │ ├── mpf_named_event.c │ │ │ │ ├── mpf_resampler.c │ │ │ │ ├── mpf_rtp_attribs.c │ │ │ │ ├── mpf_rtp_stream.c │ │ │ │ ├── mpf_rtp_termination_factory.c │ │ │ │ ├── mpf_scheduler.c │ │ │ │ ├── mpf_stream.c │ │ │ │ ├── mpf_termination.c │ │ │ │ └── mpf_termination_factory.c │ │ ├── mrcp-client │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_application.h │ │ │ │ ├── mrcp_client.h │ │ │ │ ├── mrcp_client_session.h │ │ │ │ └── mrcp_client_types.h │ │ │ ├── mrcpclient.2008.vcproj │ │ │ ├── mrcpclient.2010.vcxproj │ │ │ ├── mrcpclient.2012.vcxproj │ │ │ ├── mrcpclient.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_application.c │ │ │ │ ├── mrcp_client.c │ │ │ │ └── mrcp_client_session.c │ │ ├── mrcp-engine │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_engine_factory.h │ │ │ │ ├── mrcp_engine_iface.h │ │ │ │ ├── mrcp_engine_impl.h │ │ │ │ ├── mrcp_engine_loader.h │ │ │ │ ├── mrcp_engine_plugin.h │ │ │ │ ├── mrcp_engine_types.h │ │ │ │ ├── mrcp_recog_engine.h │ │ │ │ ├── mrcp_recog_state_machine.h │ │ │ │ ├── mrcp_recorder_engine.h │ │ │ │ ├── mrcp_recorder_state_machine.h │ │ │ │ ├── mrcp_resource_engine.h │ │ │ │ ├── mrcp_state_machine.h │ │ │ │ ├── mrcp_synth_engine.h │ │ │ │ ├── mrcp_synth_state_machine.h │ │ │ │ ├── mrcp_verifier_engine.h │ │ │ │ └── mrcp_verifier_state_machine.h │ │ │ ├── mrcpengine.2008.vcproj │ │ │ ├── mrcpengine.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_engine_factory.c │ │ │ │ ├── mrcp_engine_iface.c │ │ │ │ ├── mrcp_engine_impl.c │ │ │ │ ├── mrcp_engine_loader.c │ │ │ │ ├── mrcp_recog_state_machine.c │ │ │ │ ├── mrcp_recorder_state_machine.c │ │ │ │ ├── mrcp_synth_state_machine.c │ │ │ │ └── mrcp_verifier_state_machine.c │ │ ├── mrcp-server │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_server.h │ │ │ │ ├── mrcp_server_session.h │ │ │ │ └── mrcp_server_types.h │ │ │ ├── mrcpserver.2008.vcproj │ │ │ ├── mrcpserver.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_server.c │ │ │ │ └── mrcp_server_session.c │ │ ├── mrcp-signaling │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_session.h │ │ │ │ ├── mrcp_session_descriptor.h │ │ │ │ ├── mrcp_sig_agent.h │ │ │ │ └── mrcp_sig_types.h │ │ │ ├── mrcpsignaling.2008.vcproj │ │ │ ├── mrcpsignaling.2010.vcxproj │ │ │ ├── mrcpsignaling.2010.vcxproj.filters │ │ │ ├── mrcpsignaling.2012.vcxproj │ │ │ ├── mrcpsignaling.2012.vcxproj.filters │ │ │ ├── mrcpsignaling.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_session_descriptor.c │ │ │ │ └── mrcp_sig_agent.c │ │ ├── mrcp │ │ │ ├── Makefile.am │ │ │ ├── control │ │ │ │ ├── include │ │ │ │ │ ├── mrcp_resource.h │ │ │ │ │ ├── mrcp_resource_factory.h │ │ │ │ │ ├── mrcp_resource_loader.h │ │ │ │ │ └── mrcp_stream.h │ │ │ │ └── src │ │ │ │ │ ├── mrcp_resource_factory.c │ │ │ │ │ ├── mrcp_resource_loader.c │ │ │ │ │ └── mrcp_stream.c │ │ │ ├── include │ │ │ │ ├── mrcp.h │ │ │ │ └── mrcp_types.h │ │ │ ├── message │ │ │ │ ├── include │ │ │ │ │ ├── mrcp_generic_header.h │ │ │ │ │ ├── mrcp_header.h │ │ │ │ │ ├── mrcp_header_accessor.h │ │ │ │ │ ├── mrcp_message.h │ │ │ │ │ └── mrcp_start_line.h │ │ │ │ └── src │ │ │ │ │ ├── mrcp_generic_header.c │ │ │ │ │ ├── mrcp_header.c │ │ │ │ │ ├── mrcp_header_accessor.c │ │ │ │ │ ├── mrcp_message.c │ │ │ │ │ └── mrcp_start_line.c │ │ │ ├── mrcp.2008.vcproj │ │ │ ├── mrcp.2010.vcxproj │ │ │ ├── mrcp.2010.vcxproj.filters │ │ │ ├── mrcp.2012.vcxproj │ │ │ ├── mrcp.2012.vcxproj.filters │ │ │ ├── mrcp.vcproj │ │ │ └── resources │ │ │ │ ├── include │ │ │ │ ├── mrcp_recog_header.h │ │ │ │ ├── mrcp_recog_resource.h │ │ │ │ ├── mrcp_recorder_header.h │ │ │ │ ├── mrcp_recorder_resource.h │ │ │ │ ├── mrcp_synth_header.h │ │ │ │ ├── mrcp_synth_resource.h │ │ │ │ ├── mrcp_verifier_header.h │ │ │ │ └── mrcp_verifier_resource.h │ │ │ │ └── src │ │ │ │ ├── mrcp_recog_header.c │ │ │ │ ├── mrcp_recog_resource.c │ │ │ │ ├── mrcp_recorder_header.c │ │ │ │ ├── mrcp_recorder_resource.c │ │ │ │ ├── mrcp_synth_header.c │ │ │ │ ├── mrcp_synth_resource.c │ │ │ │ ├── mrcp_verifier_header.c │ │ │ │ └── mrcp_verifier_resource.c │ │ ├── mrcpv2-transport │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_client_connection.h │ │ │ │ ├── mrcp_connection.h │ │ │ │ ├── mrcp_connection_types.h │ │ │ │ ├── mrcp_control_descriptor.h │ │ │ │ └── mrcp_server_connection.h │ │ │ ├── mrcpv2transport.2008.vcproj │ │ │ ├── mrcpv2transport.2010.vcxproj │ │ │ ├── mrcpv2transport.2010.vcxproj.filters │ │ │ ├── mrcpv2transport.2012.vcxproj │ │ │ ├── mrcpv2transport.2012.vcxproj.filters │ │ │ ├── mrcpv2transport.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_client_connection.c │ │ │ │ ├── mrcp_connection.c │ │ │ │ ├── mrcp_control_descriptor.c │ │ │ │ └── mrcp_server_connection.c │ │ └── uni-rtsp │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ ├── rtsp.h │ │ │ ├── rtsp_client.h │ │ │ ├── rtsp_header.h │ │ │ ├── rtsp_message.h │ │ │ ├── rtsp_server.h │ │ │ ├── rtsp_start_line.h │ │ │ └── rtsp_stream.h │ │ │ ├── src │ │ │ ├── rtsp_client.c │ │ │ ├── rtsp_header.c │ │ │ ├── rtsp_message.c │ │ │ ├── rtsp_server.c │ │ │ ├── rtsp_start_line.c │ │ │ └── rtsp_stream.c │ │ │ ├── unirtsp.2008.vcproj │ │ │ ├── unirtsp.2010.vcxproj │ │ │ ├── unirtsp.2010.vcxproj.filters │ │ │ ├── unirtsp.2012.vcxproj │ │ │ ├── unirtsp.2012.vcxproj.filters │ │ │ └── unirtsp.vcproj │ ├── modules │ │ ├── Makefile.am │ │ ├── mrcp-sofiasip │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── mrcp_sdp.h │ │ │ │ ├── mrcp_sofiasip_client_agent.h │ │ │ │ └── mrcp_sofiasip_server_agent.h │ │ │ ├── mrcpsofiasip.2008.vcproj │ │ │ ├── mrcpsofiasip.2010.vcxproj │ │ │ ├── mrcpsofiasip.2010.vcxproj.filters │ │ │ ├── mrcpsofiasip.2012.vcxproj │ │ │ ├── mrcpsofiasip.2012.vcxproj.filters │ │ │ ├── mrcpsofiasip.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_sdp.c │ │ │ │ ├── mrcp_sofiasip_client_agent.c │ │ │ │ └── mrcp_sofiasip_server_agent.c │ │ └── mrcp-unirtsp │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ ├── mrcp_unirtsp_client_agent.h │ │ │ ├── mrcp_unirtsp_sdp.h │ │ │ └── mrcp_unirtsp_server_agent.h │ │ │ ├── mrcpunirtsp.2008.vcproj │ │ │ ├── mrcpunirtsp.2010.vcxproj │ │ │ ├── mrcpunirtsp.2010.vcxproj.filters │ │ │ ├── mrcpunirtsp.2012.vcxproj │ │ │ ├── mrcpunirtsp.2012.vcxproj.filters │ │ │ ├── mrcpunirtsp.vcproj │ │ │ └── src │ │ │ ├── mrcp_unirtsp_client_agent.c │ │ │ ├── mrcp_unirtsp_sdp.c │ │ │ └── mrcp_unirtsp_server_agent.c │ ├── packages │ │ └── inno-setup │ │ │ ├── setup-sdk-win32.txt │ │ │ ├── setup-sdk-x64.txt │ │ │ ├── setup-win32.txt │ │ │ ├── setup-x64.txt │ │ │ ├── setup.txt │ │ │ ├── unimrcp-sdk.iss │ │ │ └── unimrcp.iss │ ├── platforms │ │ ├── Makefile.am │ │ ├── asr-client │ │ │ ├── Makefile.am │ │ │ ├── asrclient.vcproj │ │ │ └── src │ │ │ │ └── main.c │ │ ├── libasr-client │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ └── asr_engine.h │ │ │ ├── libasrclient.vcproj │ │ │ └── src │ │ │ │ └── asr_engine.c │ │ ├── libunimrcp-client │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ └── unimrcp_client.h │ │ │ ├── libunimrcpclient.2008.vcproj │ │ │ ├── libunimrcpclient.vcproj │ │ │ └── src │ │ │ │ └── unimrcp_client.c │ │ ├── libunimrcp-server │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ └── unimrcp_server.h │ │ │ ├── libunimrcpserver.2008.vcproj │ │ │ ├── libunimrcpserver.vcproj │ │ │ └── src │ │ │ │ └── unimrcp_server.c │ │ ├── umc │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── dtmfscenario.h │ │ │ │ ├── dtmfsession.h │ │ │ │ ├── recogscenario.h │ │ │ │ ├── recogsession.h │ │ │ │ ├── recorderscenario.h │ │ │ │ ├── recordersession.h │ │ │ │ ├── setparamscenario.h │ │ │ │ ├── setparamsession.h │ │ │ │ ├── synthscenario.h │ │ │ │ ├── synthsession.h │ │ │ │ ├── umcconsole.h │ │ │ │ ├── umcframework.h │ │ │ │ ├── umcscenario.h │ │ │ │ ├── umcsession.h │ │ │ │ ├── verifierscenario.h │ │ │ │ └── verifiersession.h │ │ │ ├── src │ │ │ │ ├── dtmfscenario.cpp │ │ │ │ ├── dtmfsession.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── recogscenario.cpp │ │ │ │ ├── recogsession.cpp │ │ │ │ ├── recorderscenario.cpp │ │ │ │ ├── recordersession.cpp │ │ │ │ ├── setparamscenario.cpp │ │ │ │ ├── setparamsession.cpp │ │ │ │ ├── synthscenario.cpp │ │ │ │ ├── synthsession.cpp │ │ │ │ ├── umcconsole.cpp │ │ │ │ ├── umcframework.cpp │ │ │ │ ├── umcscenario.cpp │ │ │ │ ├── umcsession.cpp │ │ │ │ ├── verifierscenario.cpp │ │ │ │ └── verifiersession.cpp │ │ │ ├── umc.rc │ │ │ └── umc.vcproj │ │ ├── unimrcp-client │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── demo_application.h │ │ │ │ ├── demo_framework.h │ │ │ │ └── demo_util.h │ │ │ ├── src │ │ │ │ ├── demo_bypass_application.c │ │ │ │ ├── demo_discover_application.c │ │ │ │ ├── demo_framework.c │ │ │ │ ├── demo_recog_application.c │ │ │ │ ├── demo_synth_application.c │ │ │ │ ├── demo_util.c │ │ │ │ └── main.c │ │ │ ├── unimrcpclient.2008.vcproj │ │ │ ├── unimrcpclient.rc │ │ │ └── unimrcpclient.vcproj │ │ └── unimrcp-server │ │ │ ├── Makefile.am │ │ │ ├── src │ │ │ ├── main.c │ │ │ ├── uni_cmdline.c │ │ │ ├── uni_daemon.c │ │ │ └── uni_service.c │ │ │ ├── unimrcpserver.2008.vcproj │ │ │ ├── unimrcpserver.rc │ │ │ └── unimrcpserver.vcproj │ ├── plugins │ │ ├── Makefile.am │ │ ├── demo-recog │ │ │ ├── Makefile.am │ │ │ ├── demorecog.2008.vcproj │ │ │ ├── demorecog.vcproj │ │ │ └── src │ │ │ │ └── demo_recog_engine.c │ │ ├── demo-synth │ │ │ ├── Makefile.am │ │ │ ├── demosynth.2008.vcproj │ │ │ ├── demosynth.vcproj │ │ │ └── src │ │ │ │ └── demo_synth_engine.c │ │ ├── demo-verifier │ │ │ ├── Makefile.am │ │ │ ├── demoverifier.vcproj │ │ │ └── src │ │ │ │ └── demo_verifier_engine.c │ │ ├── mrcp-flite │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ └── flite_voices.h │ │ │ ├── mrcpflite.2008.vcproj │ │ │ ├── mrcpflite.vcproj │ │ │ └── src │ │ │ │ ├── flite_voices.c │ │ │ │ └── mrcp_flite.c │ │ ├── mrcp-pocketsphinx │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── pocketsphinx.xml │ │ │ ├── include │ │ │ │ └── pocketsphinx_properties.h │ │ │ ├── mrcppocketsphinx.2008.vcproj │ │ │ ├── mrcppocketsphinx.vcproj │ │ │ └── src │ │ │ │ ├── mrcp_pocketsphinx.c │ │ │ │ └── pocketsphinx_properties.c │ │ └── mrcp-recorder │ │ │ ├── Makefile.am │ │ │ ├── mrcprecorder.vcproj │ │ │ └── src │ │ │ └── mrcp_recorder_engine.c │ ├── tests │ │ ├── Makefile.am │ │ ├── apttest │ │ │ ├── Makefile.am │ │ │ ├── apttest.2008.vcproj │ │ │ ├── apttest.vcproj │ │ │ └── src │ │ │ │ ├── consumer_task_suite.c │ │ │ │ ├── main.c │ │ │ │ ├── multipart_suite.c │ │ │ │ └── task_suite.c │ │ ├── mpftest │ │ │ ├── Makefile.am │ │ │ ├── mpftest.2008.vcproj │ │ │ ├── mpftest.vcproj │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── mpf_suite.c │ │ ├── mrcptest │ │ │ ├── Makefile.am │ │ │ ├── mrcptest.2008.vcproj │ │ │ ├── mrcptest.vcproj │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── parse_gen_suite.c │ │ │ │ ├── set_get_suite.c │ │ │ │ └── transparent_set_get_suite.c │ │ │ ├── v1 │ │ │ │ ├── definegrammar.msg │ │ │ │ ├── getparams.msg │ │ │ │ ├── multi.msg │ │ │ │ ├── pause.msg │ │ │ │ ├── recognitioncomplete.msg │ │ │ │ ├── recognize.msg │ │ │ │ ├── response.msg │ │ │ │ ├── resume.msg │ │ │ │ ├── setparams.msg │ │ │ │ ├── speak.msg │ │ │ │ ├── speakcomplete.msg │ │ │ │ └── stop.msg │ │ │ └── v2 │ │ │ │ ├── definegrammar.msg │ │ │ │ ├── getparams.msg │ │ │ │ ├── recognitioncomplete.msg │ │ │ │ ├── recognize.msg │ │ │ │ ├── setparams.msg │ │ │ │ ├── speak.msg │ │ │ │ ├── speakcomplete.msg │ │ │ │ └── stop.msg │ │ ├── rtsptest │ │ │ ├── Makefile.am │ │ │ ├── msg │ │ │ │ ├── announce.msg │ │ │ │ ├── ok.msg │ │ │ │ ├── re-ok.msg │ │ │ │ ├── re-setup.msg │ │ │ │ ├── setup.msg │ │ │ │ ├── teardown.msg │ │ │ │ └── ultimate.msg │ │ │ ├── rtsptest.2008.vcproj │ │ │ ├── rtsptest.vcproj │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── parse_gen_suite.c │ │ ├── sipp │ │ │ ├── mrcp_uac_multi │ │ │ ├── mrcp_uac_recog │ │ │ ├── mrcp_uac_synth │ │ │ ├── mrcp_uac_unknown │ │ │ ├── mrcp_uac_update │ │ │ ├── mrcp_uas_recog │ │ │ ├── mrcp_uas_reject │ │ │ ├── mrcp_uas_synth │ │ │ └── mrcp_uas_unknown │ │ └── strtablegen │ │ │ ├── Makefile.am │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── stringtable.in │ │ │ ├── strtablegen.2008.vcproj │ │ │ └── strtablegen.vcproj │ ├── unimrcp.2008.sln │ └── unimrcp.sln ├── win32 │ ├── Download 16khz Sounds.2008.vcproj │ ├── Download 16khz Sounds.2010.vcxproj │ ├── Download 16khz Sounds.2012.vcxproj │ ├── Download 16khz music.2008.vcproj │ ├── Download 16khz music.2010.vcxproj │ ├── Download 16khz music.2012.vcxproj │ ├── Download 32khz Sounds.2008.vcproj │ ├── Download 32khz Sounds.2010.vcxproj │ ├── Download 32khz Sounds.2012.vcxproj │ ├── Download 32khz music.2008.vcproj │ ├── Download 32khz music.2010.vcxproj │ ├── Download 32khz music.2012.vcxproj │ ├── Download 8khz Sounds.2008.vcproj │ ├── Download 8khz Sounds.2010.vcxproj │ ├── Download 8khz Sounds.2012.vcxproj │ ├── Download 8khz music.2008.vcproj │ ├── Download 8khz music.2010.vcxproj │ ├── Download 8khz music.2012.vcxproj │ ├── Download CELT.2012.vcxproj │ ├── Download CELT.vcproj │ ├── Download CELT.vcxproj │ ├── Download CURL.2010.vcxproj │ ├── Download CURL.2012.vcxproj │ ├── Download FLITE.2008.vcproj │ ├── Download FLITE.2010.vcxproj │ ├── Download FLITE.2012.vcxproj │ ├── Download JSON.2008.vcproj │ ├── Download JSON.2010.vcxproj │ ├── Download JSON.2012.vcxproj │ ├── Download LAME.2008.vcproj │ ├── Download LAME.2010.vcxproj │ ├── Download LAME.2012.vcxproj │ ├── Download LIBBV16.2008.vcproj │ ├── Download LIBBV32.2008.vcproj │ ├── Download LIBSHOUT.2008.vcproj │ ├── Download LIBSHOUT.2010.vcxproj │ ├── Download LIBSHOUT.2012.vcxproj │ ├── Download OGG.2008.vcproj │ ├── Download OGG.2010.vcxproj │ ├── Download OGG.2012.vcxproj │ ├── Download OPENSSL.2008.vcproj │ ├── Download OPENSSL.2010.vcxproj │ ├── Download OPENSSL.2012.vcxproj │ ├── Download OPUS.2010.vcxproj │ ├── Download OPUS.2012.vcxproj │ ├── Download PCRE.2010.vcxproj │ ├── Download PCRE.2012.vcxproj │ ├── Download PTHREAD.2008.vcproj │ ├── Download PTHREAD.2010.vcxproj │ ├── Download PTHREAD.2012.vcxproj │ ├── Download PTHREAD.vcproj │ ├── Download SPEEX.2010.vcxproj │ ├── Download SPEEX.2012.vcxproj │ ├── Download V8.2010.vcxproj │ ├── Download V8.2012.vcxproj │ ├── Download libjpeg.2008.vcproj │ ├── Download libjpeg.2010.vcxproj │ ├── Download libjpeg.2012.vcxproj │ ├── Download mpg123.2008.vcproj │ ├── Download mpg123.2010.vcxproj │ ├── Download mpg123.2012.vcxproj │ ├── Download pocketsphinx.2008.vcproj │ ├── Download pocketsphinx.2010.vcxproj │ ├── Download pocketsphinx.2012.vcxproj │ ├── Download sphinxbase.2008.vcproj │ ├── Download sphinxbase.2010.vcxproj │ ├── Download sphinxbase.2012.vcxproj │ ├── Download sphinxmodel.2008.vcproj │ ├── Download sphinxmodel.2010.vcxproj │ ├── Download sphinxmodel.2012.vcxproj │ ├── Sound_Files │ │ ├── 16khz.2008.vcproj │ │ ├── 16khz.2010.vcxproj │ │ ├── 16khz.2012.vcxproj │ │ ├── 16khzmusic.2008.vcproj │ │ ├── 16khzmusic.2010.vcxproj │ │ ├── 16khzmusic.2012.vcxproj │ │ ├── 32khz.2008.vcproj │ │ ├── 32khz.2010.vcxproj │ │ ├── 32khz.2012.vcxproj │ │ ├── 32khzmusic.2008.vcproj │ │ ├── 32khzmusic.2010.vcxproj │ │ ├── 32khzmusic.2012.vcxproj │ │ ├── 8khz.2008.vcproj │ │ ├── 8khz.2010.vcxproj │ │ ├── 8khz.2012.vcxproj │ │ ├── 8khzmusic.2008.vcproj │ │ ├── 8khzmusic.2010.vcxproj │ │ └── 8khzmusic.2012.vcxproj │ ├── apr-util │ │ ├── cleancount │ │ ├── libaprutil.2008.vcproj │ │ ├── libaprutil.2010.vcxproj │ │ ├── libaprutil.2010.vcxproj.filters │ │ ├── libaprutil.2012.vcxproj │ │ ├── libaprutil.2012.vcxproj.filters │ │ ├── libaprutil.vcproj │ │ ├── xml.2008.vcproj │ │ ├── xml.2010.vcxproj │ │ ├── xml.2010.vcxproj.filters │ │ ├── xml.2012.vcxproj │ │ └── xml.vcproj │ ├── apr │ │ ├── apr.hw │ │ ├── cleancount │ │ ├── libapr.2008.vcproj │ │ ├── libapr.2010.vcxproj │ │ ├── libapr.2010.vcxproj.filters │ │ ├── libapr.2012.vcxproj │ │ ├── libapr.2012.vcxproj.filters │ │ └── libapr.vcproj │ ├── celt │ │ ├── config.h │ │ ├── float_cast.h │ │ ├── libcelt.2012.vcxproj │ │ ├── libcelt.2012.vcxproj.filters │ │ ├── libcelt.vcproj │ │ ├── libcelt.vcxproj │ │ └── libcelt.vcxproj.filters │ ├── cleancount │ ├── curl │ │ ├── ca-bundle.h │ │ ├── cleancount │ │ ├── curllib.2008.vcproj │ │ ├── curllib.2010.vcxproj │ │ ├── curllib.2010.vcxproj.filters │ │ ├── curllib.2012.vcxproj │ │ ├── curllib.2012.vcxproj.filters │ │ └── curllib.vcproj │ ├── flite │ │ ├── flite.2008.vcproj │ │ ├── flite.2010.vcxproj │ │ ├── flite.2010.vcxproj.filters │ │ ├── flite.2012.vcxproj │ │ └── flite.2012.vcxproj.filters │ ├── iksemel │ │ ├── cleancount │ │ ├── config.h │ │ ├── iksemel.2008.vcproj │ │ ├── iksemel.2010.vcxproj │ │ ├── iksemel.2010.vcxproj.filters │ │ ├── iksemel.2012.vcxproj │ │ ├── iksemel.2012.vcxproj.filters │ │ └── iksemel.vcproj │ ├── js │ │ ├── cleancount │ │ ├── fdlibm.vcproj │ │ ├── js.2008.vcproj │ │ ├── js.2010.vcxproj │ │ ├── js.2010.vcxproj.filters │ │ ├── js.2012.vcxproj │ │ ├── js.2012.vcxproj.filters │ │ └── js.vcproj │ ├── json │ │ ├── config.h │ │ ├── libjson.2008.vcproj │ │ ├── libjson.2010.vcxproj │ │ ├── libjson.2010.vcxproj.filters │ │ ├── libjson.2012.vcxproj │ │ └── libjson.2012.vcxproj.filters │ ├── ldns │ │ └── ldns-lib │ │ │ ├── config.h │ │ │ ├── ldns-lib.2008.vcproj │ │ │ ├── ldns-lib.2010.vcxproj │ │ │ ├── ldns-lib.2010.vcxproj.filters │ │ │ ├── ldns-lib.2012.vcxproj │ │ │ ├── ldns-lib.2012.vcxproj.filters │ │ │ ├── net.h │ │ │ └── util.h │ ├── libcbt │ │ ├── libcbt.2010.vcxproj │ │ ├── libcbt.2010.vcxproj.filters │ │ ├── libcbt.2012.vcxproj │ │ └── libcbt.2012.vcxproj.filters │ ├── libg722_1 │ │ ├── libg722_1.2012.vcxproj │ │ ├── libg722_1.2012.vcxproj.filters │ │ ├── libg722_1.vcproj │ │ ├── libg722_1.vcxproj │ │ └── libg722_1.vcxproj.filters │ ├── libjpeg │ │ ├── libjpeg.2008.vcproj │ │ ├── libjpeg.2010.vcxproj │ │ ├── libjpeg.2010.vcxproj.filters │ │ ├── libjpeg.2012.vcxproj │ │ └── libjpeg.2012.vcxproj.filters │ ├── libmp3lame │ │ ├── config.h │ │ ├── libmp3lame.2010.vcxproj │ │ ├── libmp3lame.2010.vcxproj.filters │ │ ├── libmp3lame.2012.vcxproj │ │ ├── libmp3lame.2012.vcxproj.filters │ │ └── libmp3lame_vc7.vcproj │ ├── libogg │ │ ├── libogg.2008.vcproj │ │ ├── libogg.2010.vcxproj │ │ ├── libogg.2010.vcxproj.filters │ │ ├── libogg.2012.vcxproj │ │ └── libogg.2012.vcxproj.filters │ ├── libresample │ │ ├── cleancount │ │ ├── libresample.2008.vcproj │ │ └── libresample.vcproj │ ├── libshout │ │ ├── compat.h │ │ ├── libshout.2012.vcxproj │ │ ├── libshout.2012.vcxproj.filters │ │ ├── libshout.vcproj │ │ ├── libshout.vcxproj │ │ ├── libshout.vcxproj.filters │ │ └── shout │ │ │ └── shout.h │ ├── libsndfile │ │ ├── cleancount │ │ ├── config.h │ │ ├── libsndfile.2008.vcproj │ │ ├── libsndfile.2010.vcxproj │ │ ├── libsndfile.2010.vcxproj.filters │ │ ├── libsndfile.2012.vcxproj │ │ ├── libsndfile.2012.vcxproj.filters │ │ ├── libsndfile.vcproj │ │ └── sndfile.h │ ├── mpg123 │ │ ├── libmpg123.2008.vcproj │ │ ├── libmpg123.2010.vcxproj │ │ ├── libmpg123.2010.vcxproj.filters │ │ ├── libmpg123.2012.vcxproj │ │ ├── libmpg123.2012.vcxproj.filters │ │ └── libmpg123 │ │ │ ├── config.h │ │ │ └── mpg123.h │ ├── openssl │ │ ├── applink.c │ │ ├── buildinf.h │ │ ├── include │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── libeay32.2008.vcproj │ │ ├── libeay32.2010.vcxproj │ │ ├── libeay32.2010.vcxproj.filters │ │ ├── libeay32.2012.vcxproj │ │ ├── libeay32.2012.vcxproj.filters │ │ ├── libeay32.def │ │ ├── openssl.2008.vcproj │ │ ├── openssl.2010.vcxproj │ │ ├── openssl.2010.vcxproj.filters │ │ ├── openssl.2012.vcxproj │ │ ├── openssl.2012.vcxproj.filters │ │ ├── openssl.vcproj │ │ ├── opensslconf.h │ │ ├── ssleay32.2008.vcproj │ │ ├── ssleay32.2010.vcxproj │ │ ├── ssleay32.2010.vcxproj.filters │ │ ├── ssleay32.2012.vcxproj │ │ ├── ssleay32.2012.vcxproj.filters │ │ └── ssleay32.def │ ├── opus │ │ ├── opus.2010.vcxproj │ │ ├── opus.2010.vcxproj.filters │ │ ├── opus.2012.vcxproj │ │ ├── opus.2012.vcxproj.filters │ │ ├── opus.celt.2010.vcxproj │ │ ├── opus.celt.2010.vcxproj.filters │ │ ├── opus.celt.2012.vcxproj │ │ ├── opus.celt.2012.vcxproj.filters │ │ ├── opus.silk_common.2010.vcxproj │ │ ├── opus.silk_common.2010.vcxproj.filters │ │ ├── opus.silk_common.2012.vcxproj │ │ ├── opus.silk_common.2012.vcxproj.filters │ │ ├── opus.silk_fixed.2010.vcxproj │ │ ├── opus.silk_fixed.2010.vcxproj.filters │ │ ├── opus.silk_fixed.2012.vcxproj │ │ ├── opus.silk_fixed.2012.vcxproj.filters │ │ ├── opus.silk_float.2010.vcxproj │ │ ├── opus.silk_float.2010.vcxproj.filters │ │ ├── opus.silk_float.2012.vcxproj │ │ └── opus.silk_float.2012.vcxproj.filters │ ├── pcre │ │ ├── cleancount │ │ ├── config.h │ │ ├── dftables.c │ │ ├── libpcre.2008.vcproj │ │ ├── libpcre.2010.vcxproj │ │ ├── libpcre.2010.vcxproj.filters │ │ ├── libpcre.2012.vcxproj │ │ ├── libpcre.2012.vcxproj.filters │ │ ├── libpcre.vcproj │ │ ├── pcre.h │ │ ├── pcre_chartables.c.2008.vcproj │ │ ├── pcre_chartables.c.2010.vcxproj │ │ ├── pcre_chartables.c.2010.vcxproj.filters │ │ ├── pcre_chartables.c.2012.vcxproj │ │ ├── pcre_chartables.c.2012.vcxproj.filters │ │ └── pcre_chartables.c.vcproj │ ├── pocketsphinx │ │ ├── pocketsphinx.2008.vcproj │ │ ├── pocketsphinx.2010.vcxproj │ │ ├── pocketsphinx.2010.vcxproj.filters │ │ ├── pocketsphinx.2012.vcxproj │ │ └── pocketsphinx.2012.vcxproj.filters │ ├── pthread │ │ ├── cleancount │ │ ├── pthread.2008.vcproj │ │ ├── pthread.2010.vcxproj │ │ ├── pthread.2010.vcxproj.filters │ │ ├── pthread.2012.vcxproj │ │ ├── pthread.2012.vcxproj.filters │ │ └── pthread.vcproj │ ├── sofia │ │ ├── cleancount │ │ ├── libsofia_sip_ua_static.2008.vcproj │ │ ├── libsofia_sip_ua_static.2010.vcxproj │ │ ├── libsofia_sip_ua_static.2010.vcxproj.filters │ │ ├── libsofia_sip_ua_static.2012.vcxproj │ │ ├── libsofia_sip_ua_static.2012.vcxproj.filters │ │ └── libsofia_sip_ua_static.vcproj │ ├── speex │ │ ├── cleancount │ │ ├── config.h │ │ ├── libspeex.2008.vcproj │ │ ├── libspeex.2010.vcxproj │ │ ├── libspeex.2010.vcxproj.filters │ │ ├── libspeex.2012.vcxproj │ │ ├── libspeex.2012.vcxproj.filters │ │ ├── libspeex.vcproj │ │ ├── libspeexdsp.2010.vcxproj │ │ └── libspeexdsp.2012.vcxproj │ ├── sphinxbase │ │ ├── sphinxbase.2008.vcproj │ │ ├── sphinxbase.2010.vcxproj │ │ ├── sphinxbase.2010.vcxproj.filters │ │ ├── sphinxbase.2012.vcxproj │ │ └── sphinxbase.2012.vcxproj.filters │ ├── sqlite │ │ ├── cleancount │ │ ├── keywordhash.h │ │ ├── opcodes.c │ │ ├── opcodes.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── sqlite.2008.vcproj │ │ ├── sqlite.2010.vcxproj │ │ ├── sqlite.2010.vcxproj.filters │ │ ├── sqlite.2012.vcxproj │ │ ├── sqlite.2012.vcxproj.filters │ │ ├── sqlite.vcproj │ │ ├── sqlite3.def │ │ └── sqlite3.h │ ├── udns │ │ ├── libudns.2008.vcproj │ │ ├── libudns.2010.vcxproj │ │ ├── libudns.2010.vcxproj.filters │ │ ├── libudns.2012.vcxproj │ │ ├── libudns.2012.vcxproj.filters │ │ └── libudns.vcproj │ ├── util.vbs │ ├── v8 │ │ ├── build-v8.bat │ │ ├── libv8.2010.vcxproj │ │ └── libv8.2012.vcxproj │ └── xmlrpc-c │ │ ├── abyss.2008.vcproj │ │ ├── abyss.2010.vcxproj │ │ ├── abyss.2010.vcxproj.filters │ │ ├── abyss.2012.vcxproj │ │ ├── abyss.2012.vcxproj.filters │ │ ├── gennmtab.2008.vcproj │ │ ├── gennmtab.2010.vcxproj │ │ ├── gennmtab.2012.vcxproj │ │ ├── xmlparse.2008.vcproj │ │ ├── xmlparse.2010.vcxproj │ │ ├── xmlparse.2012.vcxproj │ │ ├── xmlrpc.2008.vcproj │ │ ├── xmlrpc.2010.vcxproj │ │ ├── xmlrpc.2010.vcxproj.filters │ │ ├── xmlrpc.2012.vcxproj │ │ ├── xmlrpc.2012.vcxproj.filters │ │ ├── xmltok.2008.vcproj │ │ ├── xmltok.2010.vcxproj │ │ ├── xmltok.2010.vcxproj.filters │ │ ├── xmltok.2012.vcxproj │ │ └── xmltok.2012.vcxproj.filters ├── 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 └── yaml │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── config.h.in │ ├── config │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ └── missing │ ├── configure │ ├── configure.ac │ ├── doc │ ├── doxygen.cfg │ └── html │ │ ├── annotated.html │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── files.html │ │ ├── functions.html │ │ ├── functions_0x62.html │ │ ├── functions_0x63.html │ │ ├── functions_0x64.html │ │ ├── functions_0x65.html │ │ ├── functions_0x66.html │ │ ├── functions_0x68.html │ │ ├── functions_0x69.html │ │ ├── functions_0x6b.html │ │ ├── functions_0x6c.html │ │ ├── functions_0x6d.html │ │ ├── functions_0x6e.html │ │ ├── functions_0x6f.html │ │ ├── functions_0x70.html │ │ ├── functions_0x71.html │ │ ├── functions_0x72.html │ │ ├── functions_0x73.html │ │ ├── functions_0x74.html │ │ ├── functions_0x75.html │ │ ├── functions_0x76.html │ │ ├── functions_0x77.html │ │ ├── functions_vars.html │ │ ├── functions_vars_0x62.html │ │ ├── functions_vars_0x63.html │ │ ├── functions_vars_0x64.html │ │ ├── functions_vars_0x65.html │ │ ├── functions_vars_0x66.html │ │ ├── functions_vars_0x68.html │ │ ├── functions_vars_0x69.html │ │ ├── functions_vars_0x6b.html │ │ ├── functions_vars_0x6c.html │ │ ├── functions_vars_0x6d.html │ │ ├── functions_vars_0x6e.html │ │ ├── functions_vars_0x6f.html │ │ ├── functions_vars_0x70.html │ │ ├── functions_vars_0x71.html │ │ ├── functions_vars_0x72.html │ │ ├── functions_vars_0x73.html │ │ ├── functions_vars_0x74.html │ │ ├── functions_vars_0x75.html │ │ ├── functions_vars_0x76.html │ │ ├── functions_vars_0x77.html │ │ ├── globals.html │ │ ├── globals_eval.html │ │ ├── globals_func.html │ │ ├── globals_type.html │ │ ├── group__basic.html │ │ ├── group__emitter.html │ │ ├── group__events.html │ │ ├── group__export.html │ │ ├── group__nodes.html │ │ ├── group__parser.html │ │ ├── group__styles.html │ │ ├── group__tokens.html │ │ ├── group__version.html │ │ ├── index.html │ │ ├── modules.html │ │ ├── structyaml__alias__data__s.html │ │ ├── structyaml__document__s.html │ │ ├── structyaml__emitter__s.html │ │ ├── structyaml__event__s.html │ │ ├── structyaml__mark__s.html │ │ ├── structyaml__node__pair__s.html │ │ ├── structyaml__node__s.html │ │ ├── structyaml__parser__s.html │ │ ├── structyaml__simple__key__s.html │ │ ├── structyaml__tag__directive__s.html │ │ ├── structyaml__token__s.html │ │ ├── structyaml__version__directive__s.html │ │ ├── tab_b.gif │ │ ├── tab_l.gif │ │ ├── tab_r.gif │ │ ├── tabs.css │ │ └── yaml_8h.html │ ├── include │ ├── Makefile.am │ ├── Makefile.in │ └── yaml.h │ ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ ├── writer.c │ └── yaml_private.h │ └── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── example-deconstructor-alt.c │ ├── example-deconstructor.c │ ├── example-reformatter-alt.c │ ├── example-reformatter.c │ ├── run-dumper.c │ ├── run-emitter.c │ ├── run-loader.c │ ├── run-parser.c │ ├── run-scanner.c │ ├── test-reader.c │ └── test-version.c ├── scripts ├── applescript │ └── FreeSWITCH Dialer.scpt ├── backtrace-from-core ├── c │ └── socket2me │ │ ├── Makefile │ │ ├── README │ │ └── socket2me.c ├── check-gitignore.sh ├── ci │ ├── 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 │ ├── rpmbuilder.sh │ ├── sounds-en-us-callie.sh │ ├── sounds-music.sh │ ├── sounds-ru-ru-elena.sh │ └── src_tarball.sh ├── dailys.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 │ ├── helloworld.lua │ ├── mwi_event.lua │ ├── originate.lua │ ├── portal │ │ ├── create_gateway.lua │ │ └── create_user.lua │ ├── sound_test.lua │ ├── zrtp_agent.lua │ ├── zrtp_proxy_media.lua │ └── zrtp_sas_proxy.lua ├── m4a-to-wav.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 │ ├── blacklist.pl │ ├── call.cgi │ ├── cnam.cgi │ ├── combineconf.pl │ ├── dhcp-inform.pl │ ├── extract_log_range.pl │ ├── f-off-friendly-scanner.pl │ ├── fs.pl │ ├── fsconsole.pl │ ├── fslog │ ├── honeypot.pl │ ├── multicast │ │ ├── recv.pl │ │ └── send.pl │ ├── mwi_event.pl │ ├── originate.pl │ ├── perltidyrc │ ├── randomize-passwords.pl │ ├── rpc.cgi │ ├── sendmail │ ├── snom-pnpd.pl │ ├── sock.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 ├── fs_encode.c ├── g711.c ├── include │ ├── SimpleGlob.h │ ├── cc.h │ ├── g711.h │ ├── private │ │ ├── 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_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_cpp.h │ ├── switch_curl.h │ ├── switch_dso.h │ ├── switch_event.h │ ├── switch_frame.h │ ├── switch_hashtable.h │ ├── switch_ivr.h │ ├── switch_json.h │ ├── switch_limit.h │ ├── switch_loadable_module.h │ ├── switch_log.h │ ├── switch_module_interfaces.h │ ├── switch_mprintf.h │ ├── switch_nat.h │ ├── switch_odbc.h │ ├── switch_pgsql.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_ssl.h │ ├── switch_stfu.h │ ├── switch_stun.h │ ├── switch_types.h │ ├── switch_utils.h │ ├── switch_version.h.cmake │ ├── switch_version.h.template │ ├── switch_xml.h │ ├── switch_xml_config.h │ └── timerfd_wrap.h ├── inet_pton.c ├── mod │ ├── .gitignore │ ├── Makefile.am │ ├── applications │ │ ├── .gitignore │ │ ├── mod_abstraction │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── abstraction.conf.xml │ │ │ ├── mod_abstraction.2008.vcproj │ │ │ ├── mod_abstraction.2010.vcxproj │ │ │ ├── mod_abstraction.2012.vcxproj │ │ │ └── mod_abstraction.c │ │ ├── mod_avmd │ │ │ ├── Makefile.am │ │ │ ├── amplitude.c │ │ │ ├── amplitude.h │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── desa2.c │ │ │ ├── desa2.h │ │ │ ├── fast_acosf.c │ │ │ ├── fast_acosf.h │ │ │ ├── goertzel.c │ │ │ ├── goertzel.h │ │ │ ├── mod_avmd.2008.vcproj │ │ │ ├── mod_avmd.2010.vcxproj │ │ │ ├── mod_avmd.2010.vcxproj.filters │ │ │ ├── mod_avmd.2012.vcxproj │ │ │ ├── mod_avmd.c │ │ │ ├── options.h │ │ │ ├── psi.h │ │ │ └── sma_buf.h │ │ ├── mod_blacklist │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── blacklist.conf.xml │ │ │ ├── mod_blacklist.2010.vcxproj │ │ │ ├── mod_blacklist.2012.vcxproj │ │ │ └── mod_blacklist.c │ │ ├── mod_callcenter │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── callcenter.conf.xml │ │ │ ├── mod_callcenter.2008.vcproj │ │ │ ├── mod_callcenter.2010.vcxproj │ │ │ ├── mod_callcenter.2012.vcxproj │ │ │ └── mod_callcenter.c │ │ ├── mod_cidlookup │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cidlookup.conf.xml │ │ │ └── mod_cidlookup.c │ │ ├── mod_cluechoo │ │ │ ├── Makefile.am │ │ │ ├── mod_cluechoo.c │ │ │ └── sl.h │ │ ├── mod_commands │ │ │ ├── Makefile.am │ │ │ ├── mod_commands.2008.vcproj │ │ │ ├── mod_commands.2010.vcxproj │ │ │ ├── mod_commands.2012.vcxproj │ │ │ ├── mod_commands.c │ │ │ └── mod_commands.vcproj │ │ ├── mod_conference │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── conference.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── conference_dialplan.xml │ │ │ ├── mod_conference.2008.vcproj │ │ │ ├── mod_conference.2010.vcxproj │ │ │ ├── mod_conference.2012.vcxproj │ │ │ ├── mod_conference.c │ │ │ └── mod_conference.vcproj │ │ ├── mod_curl │ │ │ ├── Makefile.am │ │ │ ├── mod_curl.2008.vcproj │ │ │ ├── mod_curl.2010.vcxproj │ │ │ ├── mod_curl.2012.vcxproj │ │ │ └── mod_curl.c │ │ ├── mod_db │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── db.conf.xml │ │ │ ├── mod_db.2008.vcproj │ │ │ ├── mod_db.2010.vcxproj │ │ │ ├── mod_db.2012.vcxproj │ │ │ └── mod_db.c │ │ ├── mod_directory │ │ │ ├── Makefile.am │ │ │ ├── mod_directory.2008.vcproj │ │ │ ├── mod_directory.2010.vcxproj │ │ │ ├── mod_directory.2012.vcxproj │ │ │ ├── mod_directory.c │ │ │ └── mod_directory.vcproj │ │ ├── mod_distributor │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── distributor.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── distributor.xml │ │ │ ├── mod_distributor.2008.vcproj │ │ │ ├── mod_distributor.2010.vcxproj │ │ │ ├── mod_distributor.2012.vcxproj │ │ │ └── mod_distributor.c │ │ ├── mod_dptools │ │ │ ├── Makefile.am │ │ │ ├── mod_dptools.2008.vcproj │ │ │ ├── mod_dptools.2010.vcxproj │ │ │ ├── mod_dptools.2012.vcxproj │ │ │ ├── mod_dptools.c │ │ │ └── mod_dptools.vcproj │ │ ├── mod_easyroute │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── easyroute.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── easyroute.xml │ │ │ ├── mod_easyroute.2008.vcproj │ │ │ ├── mod_easyroute.2010.vcxproj │ │ │ ├── mod_easyroute.2012.vcxproj │ │ │ └── mod_easyroute.c │ │ ├── mod_enum │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── enum.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── 99999_enum.xml │ │ │ ├── ldns.diff │ │ │ ├── mod_enum.2008.vcproj │ │ │ ├── mod_enum.2010.vcxproj │ │ │ ├── mod_enum.2012.vcxproj │ │ │ ├── mod_enum.c │ │ │ └── mod_enum.vcproj │ │ ├── mod_esf │ │ │ ├── Makefile.am │ │ │ ├── mod_esf.2008.vcproj │ │ │ ├── mod_esf.2010.vcxproj │ │ │ ├── mod_esf.2012.vcxproj │ │ │ ├── mod_esf.c │ │ │ └── mod_esf.vcproj │ │ ├── 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.2008.vcproj │ │ │ ├── mod_expr.2010.vcxproj │ │ │ ├── mod_expr.2012.vcxproj │ │ │ ├── mod_expr.c │ │ │ ├── mod_expr.vcproj │ │ │ └── readme.txt │ │ ├── mod_fifo │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── fifo.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── fifo.xml │ │ │ ├── mod_fifo.2008.vcproj │ │ │ ├── mod_fifo.2010.vcxproj │ │ │ ├── mod_fifo.2012.vcxproj │ │ │ ├── mod_fifo.c │ │ │ └── mod_fifo.vcproj │ │ ├── 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 │ │ │ ├── mod_fsv.2008.vcproj │ │ │ ├── mod_fsv.2010.vcxproj │ │ │ ├── mod_fsv.2012.vcxproj │ │ │ ├── mod_fsv.c │ │ │ └── mod_fsv.vcproj │ │ ├── mod_hash │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── hash.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── hash.xml │ │ │ ├── mod_hash.2008.vcproj │ │ │ ├── mod_hash.2010.vcxproj │ │ │ ├── mod_hash.2012.vcxproj │ │ │ └── mod_hash.c │ │ ├── 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.2008.vcproj │ │ │ ├── mod_httapi.2010.vcxproj │ │ │ ├── mod_httapi.2012.vcxproj │ │ │ └── mod_httapi.c │ │ ├── mod_http_cache │ │ │ ├── Makefile.am │ │ │ ├── aws.c │ │ │ ├── aws.h │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── http_cache.conf.xml │ │ │ │ ├── cacert.pem │ │ │ │ └── dialplan │ │ │ │ │ └── http_cache.xml │ │ │ ├── mod_http_cache.c │ │ │ └── test_aws │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── test.h │ │ │ │ └── test_aws.c │ │ ├── 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.2008.vcproj │ │ │ ├── mod_lcr.2010.vcxproj │ │ │ ├── mod_lcr.2012.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 │ │ │ ├── fpic_hack.diff │ │ │ └── mod_mongo.cpp │ │ ├── mod_mp4 │ │ │ ├── Makefile.am │ │ │ ├── exception.hpp │ │ │ ├── mod_mp4.cpp │ │ │ ├── mp4_helper.cpp │ │ │ └── mp4_helper.hpp │ │ ├── mod_nibblebill │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── nibblebill.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── nibblebill.xml │ │ │ ├── mod_nibblebill.2008.vcproj │ │ │ ├── mod_nibblebill.2010.vcxproj │ │ │ ├── mod_nibblebill.2012.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_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.2008.vcproj │ │ │ ├── mod_redis.2010.vcxproj │ │ │ ├── mod_redis.2012.vcxproj │ │ │ └── mod_redis.c │ │ ├── mod_rss │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ ├── autoload_configs │ │ │ │ │ └── rss.conf.xml │ │ │ │ └── dialplan │ │ │ │ │ └── rss.xml │ │ │ ├── mod_rss.2008.vcproj │ │ │ ├── mod_rss.2010.vcxproj │ │ │ ├── mod_rss.2012.vcxproj │ │ │ ├── mod_rss.c │ │ │ ├── mod_rss.vcproj │ │ │ └── script │ │ │ │ └── news.js │ │ ├── mod_skel │ │ │ ├── Makefile.am │ │ │ ├── mod_skel.2008.vcproj │ │ │ ├── mod_skel.2010.vcxproj │ │ │ ├── mod_skel.2012.vcxproj │ │ │ └── mod_skel.c │ │ ├── mod_sms │ │ │ ├── Makefile.am │ │ │ ├── mod_sms.2008.vcproj │ │ │ ├── mod_sms.2010.vcxproj │ │ │ ├── mod_sms.2012.vcxproj │ │ │ └── mod_sms.c │ │ ├── mod_snapshot │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── mod_snapshot.2008.vcproj │ │ │ └── mod_snapshot.c │ │ ├── mod_snipe_hunt │ │ │ ├── Makefile.am │ │ │ ├── mod_snipe_hunt.2008.vcproj │ │ │ └── mod_snipe_hunt.c │ │ ├── mod_snom │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── snom_demo.xml │ │ │ ├── mod_snom.2008.vcproj │ │ │ ├── mod_snom.2010.vcxproj │ │ │ ├── mod_snom.2012.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.2008.vcproj │ │ │ ├── mod_spandsp.2010.vcxproj │ │ │ ├── mod_spandsp.2012.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.2010.vcxproj │ │ │ ├── mod_spy.2012.vcxproj │ │ │ └── mod_spy.c │ │ ├── mod_stress │ │ │ ├── FFTReal.cpp │ │ │ ├── FFTReal.h │ │ │ ├── Makefile.am │ │ │ └── mod_stress.cpp │ │ ├── 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.2008.vcproj │ │ │ ├── mod_valet_parking.2010.vcxproj │ │ │ ├── mod_valet_parking.2012.vcxproj │ │ │ └── mod_valet_parking.c │ │ ├── mod_vmd │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── dialplan │ │ │ │ │ └── vmd.xml │ │ │ ├── mod_vmd.2008.vcproj │ │ │ ├── mod_vmd.2010.vcxproj │ │ │ ├── mod_vmd.2012.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.2008.vcproj │ │ │ ├── mod_voicemail.2010.vcxproj │ │ │ ├── mod_voicemail.2012.vcxproj │ │ │ ├── mod_voicemail.c │ │ │ └── mod_voicemail.vcproj │ │ └── 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.2008.vcproj │ │ │ ├── mod_cepstral.2010.vcxproj │ │ │ ├── mod_cepstral.2012.vcxproj │ │ │ ├── mod_cepstral.c │ │ │ └── mod_cepstral.vcproj │ │ ├── mod_flite │ │ │ ├── Makefile.am │ │ │ ├── mod_flite.2008.vcproj │ │ │ ├── mod_flite.2010.vcxproj │ │ │ ├── mod_flite.2012.vcxproj │ │ │ └── mod_flite.c │ │ ├── mod_pocketsphinx │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── mod_pocketsphinx.2008.vcproj │ │ │ ├── mod_pocketsphinx.2010.vcxproj │ │ │ ├── mod_pocketsphinx.2012.vcxproj │ │ │ └── mod_pocketsphinx.c │ │ ├── mod_tts_commandline │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── mod_tts_commandline.c │ │ └── mod_unimrcp │ │ │ ├── Makefile.am │ │ │ ├── mod_unimrcp.2008.vcproj │ │ │ ├── mod_unimrcp.2010.vcxproj │ │ │ ├── mod_unimrcp.2012.vcxproj │ │ │ ├── mod_unimrcp.c │ │ │ ├── unimrcp.props │ │ │ └── unimrcp.vsprops │ ├── codecs │ │ ├── mod_amr │ │ │ ├── Makefile.am │ │ │ ├── mod_amr.2008.vcproj │ │ │ ├── mod_amr.2010.vcxproj │ │ │ ├── mod_amr.2012.vcxproj │ │ │ ├── mod_amr.c │ │ │ └── mod_amr.vcproj │ │ ├── mod_amrwb │ │ │ ├── Makefile.am │ │ │ └── mod_amrwb.c │ │ ├── mod_b64 │ │ │ ├── Makefile.am │ │ │ └── mod_b64.c │ │ ├── mod_bv │ │ │ ├── Makefile.am │ │ │ ├── mod_bv.2008.vcproj │ │ │ ├── mod_bv.2010.vcxproj │ │ │ ├── mod_bv.2012.vcxproj │ │ │ └── mod_bv.c │ │ ├── mod_celt │ │ │ ├── Makefile.am │ │ │ ├── mod_celt.2012.vcxproj │ │ │ ├── mod_celt.c │ │ │ ├── mod_celt.vcproj │ │ │ └── mod_celt.vcxproj │ │ ├── mod_codec2 │ │ │ ├── Makefile.am │ │ │ └── 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.2008.vcproj │ │ │ ├── mod_g723_1.2010.vcxproj │ │ │ ├── mod_g723_1.2012.vcxproj │ │ │ ├── mod_g723_1.c │ │ │ └── mod_g723_1.vcproj │ │ ├── mod_g729 │ │ │ ├── Makefile.am │ │ │ ├── mod_g729.2008.vcproj │ │ │ ├── mod_g729.2010.vcxproj │ │ │ ├── mod_g729.2012.vcxproj │ │ │ ├── mod_g729.c │ │ │ └── mod_g729.vcproj │ │ ├── mod_h26x │ │ │ ├── Makefile.am │ │ │ ├── mod_h26x.2008.vcproj │ │ │ ├── mod_h26x.2010.vcxproj │ │ │ ├── mod_h26x.2012.vcxproj │ │ │ ├── mod_h26x.c │ │ │ └── mod_h26x.vcproj │ │ ├── mod_ilbc │ │ │ ├── Makefile.am │ │ │ ├── mod_ilbc.2008.vcproj │ │ │ ├── mod_ilbc.2010.vcxproj │ │ │ ├── mod_ilbc.2012.vcxproj │ │ │ ├── mod_ilbc.c │ │ │ └── mod_ilbc.vcproj │ │ ├── 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.2008.vcproj │ │ │ ├── mod_iSAC.2010.vcxproj │ │ │ ├── mod_iSAC.2012.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_opus │ │ │ ├── Makefile.am │ │ │ ├── mod_opus.2010.vcxproj │ │ │ ├── mod_opus.2012.vcxproj │ │ │ └── mod_opus.c │ │ ├── mod_sangoma_codec │ │ │ ├── Makefile.am │ │ │ └── mod_sangoma_codec.c │ │ ├── mod_silk │ │ │ ├── Makefile.am │ │ │ ├── mod_silk.2008.vcproj │ │ │ ├── mod_silk.2010.vcxproj │ │ │ ├── mod_silk.2012.vcxproj │ │ │ └── mod_silk.c │ │ ├── mod_siren │ │ │ ├── Makefile.am │ │ │ ├── mod_siren.2008.vcproj │ │ │ ├── mod_siren.2010.vcxproj │ │ │ ├── mod_siren.2012.vcxproj │ │ │ └── mod_siren.c │ │ ├── mod_skel_codec │ │ │ ├── Makefile.am │ │ │ └── mod_skel_codec.c │ │ ├── mod_theora │ │ │ ├── Makefile.am │ │ │ └── mod_theora.c │ │ └── mod_vp8 │ │ │ ├── Makefile.am │ │ │ └── mod_vp8.c │ ├── dialplans │ │ ├── mod_dialplan_asterisk │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── extensions.conf │ │ │ ├── mod_dialplan_asterisk.2008.vcproj │ │ │ ├── mod_dialplan_asterisk.2010.vcxproj │ │ │ ├── mod_dialplan_asterisk.2012.vcxproj │ │ │ ├── mod_dialplan_asterisk.c │ │ │ └── mod_dialplan_asterisk.vcproj │ │ ├── mod_dialplan_directory │ │ │ ├── Makefile.am │ │ │ ├── mod_dialplan_directory.2008.vcproj │ │ │ ├── mod_dialplan_directory.2010.vcxproj │ │ │ ├── mod_dialplan_directory.2012.vcxproj │ │ │ ├── mod_dialplan_directory.c │ │ │ └── mod_dialplan_directory.vcproj │ │ └── mod_dialplan_xml │ │ │ ├── Makefile.am │ │ │ ├── mod_dialplan_xml.2008.vcproj │ │ │ ├── mod_dialplan_xml.2010.vcxproj │ │ │ ├── mod_dialplan_xml.2012.vcxproj │ │ │ ├── mod_dialplan_xml.c │ │ │ └── mod_dialplan_xml.vcproj │ ├── directories │ │ └── mod_ldap │ │ │ ├── Makefile.am │ │ │ ├── mod_ldap.2008.vcproj │ │ │ ├── mod_ldap.2010.vcxproj │ │ │ ├── mod_ldap.2012.vcxproj │ │ │ ├── mod_ldap.c │ │ │ └── mod_ldap.vcproj │ ├── endpoints │ │ ├── mod_alsa │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── alsa.conf.xml │ │ │ └── mod_alsa.c │ │ ├── mod_dingaling │ │ │ ├── Makefile.am │ │ │ ├── mod_dingaling.2008.vcproj │ │ │ ├── mod_dingaling.2010.vcxproj │ │ │ ├── mod_dingaling.2012.vcxproj │ │ │ ├── mod_dingaling.c │ │ │ └── mod_dingaling.vcproj │ │ ├── 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 │ │ │ │ │ ├── gsmctl.vcproj │ │ │ │ │ ├── gsmlib.2010.vcxproj │ │ │ │ │ ├── gsmlib.2012.vcxproj │ │ │ │ │ ├── gsmlib.dsp │ │ │ │ │ ├── gsmlib.dsw │ │ │ │ │ ├── gsmlib.sln │ │ │ │ │ ├── gsmlib.vcproj │ │ │ │ │ ├── gsmpb.dsp │ │ │ │ │ ├── gsmpb.vcproj │ │ │ │ │ ├── gsmsendsms.dsp │ │ │ │ │ ├── gsmsendsms.vcproj │ │ │ │ │ ├── gsmsmsd.dsp │ │ │ │ │ ├── gsmsmsd.vcproj │ │ │ │ │ ├── gsmsmsstore.dsp │ │ │ │ │ ├── gsmsmsstore.vcproj │ │ │ │ │ ├── testgsmlib.dsp │ │ │ │ │ ├── testgsmlib.vcproj │ │ │ │ │ ├── testsms.dsp │ │ │ │ │ ├── testsms.vcproj │ │ │ │ │ ├── testsms2.dsp │ │ │ │ │ └── testsms2.vcproj │ │ │ ├── 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 │ │ │ ├── mobigater │ │ │ ├── mod_gsmopen.2008.vcproj │ │ │ ├── mod_gsmopen.2010.vcxproj │ │ │ ├── mod_gsmopen.2012.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.2010.vcxproj │ │ │ ├── mod_h323.2012.vcxproj │ │ │ ├── mod_h323.cpp │ │ │ ├── mod_h323.h │ │ │ └── mod_h323_2008.vcproj │ │ ├── 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.2008.vcproj │ │ │ ├── mod_loopback.2010.vcxproj │ │ │ ├── mod_loopback.2012.vcxproj │ │ │ └── mod_loopback.c │ │ ├── mod_opal │ │ │ ├── Makefile.am │ │ │ ├── mod_opal.2012.vcxproj │ │ │ ├── mod_opal.cpp │ │ │ ├── mod_opal.h │ │ │ ├── mod_opal_2005.vcproj │ │ │ ├── mod_opal_2008.vcproj │ │ │ └── mod_opal_2010.vcxproj │ │ ├── mod_portaudio │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── portaudio.conf.xml │ │ │ ├── mod_PortAudio.2008.vcproj │ │ │ ├── mod_PortAudio.2010.vcxproj │ │ │ ├── mod_PortAudio.2012.vcxproj │ │ │ ├── mod_PortAudio.vcproj │ │ │ ├── mod_portaudio.c │ │ │ ├── pa_ringbuffer.c │ │ │ ├── pa_ringbuffer.h │ │ │ ├── pablio.c │ │ │ └── pablio.h │ │ ├── mod_reference │ │ │ ├── Makefile.am │ │ │ └── mod_reference.c │ │ ├── mod_rtmp │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── rtmp.conf.xml │ │ │ ├── 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.2012.vcxproj │ │ │ ├── mod_rtmp.c │ │ │ ├── mod_rtmp.h │ │ │ ├── mod_rtmp_2008.vcproj │ │ │ ├── mod_rtmp_2010.vcxproj │ │ │ ├── rtmp.c │ │ │ ├── rtmp_sig.c │ │ │ └── rtmp_tcp.c │ │ ├── mod_skinny │ │ │ ├── Makefile.am │ │ │ ├── Net │ │ │ │ ├── Skinny.pm │ │ │ │ └── Skinny │ │ │ │ │ ├── Client.pm │ │ │ │ │ ├── Message.pm │ │ │ │ │ └── Protocol.pm │ │ │ ├── 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.2012.vcxproj │ │ │ ├── mod_skinny.c │ │ │ ├── mod_skinny.h │ │ │ ├── mod_skinny_2008.vcproj │ │ │ ├── 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.2008.vcproj │ │ │ ├── mod_skypopen.2010.vcxproj │ │ │ ├── mod_skypopen.2012.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 │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── sofia.conf.xml │ │ │ ├── mod_sofia.2008.vcproj │ │ │ ├── mod_sofia.2010.vcxproj │ │ │ ├── mod_sofia.2012.vcxproj │ │ │ ├── mod_sofia.c │ │ │ ├── mod_sofia.h │ │ │ ├── mod_sofia.vcproj │ │ │ ├── rtp.c │ │ │ ├── sip-dig.c │ │ │ ├── sofia.c │ │ │ ├── sofia_glue.c │ │ │ ├── sofia_media.c │ │ │ ├── sofia_presence.c │ │ │ └── sofia_reg.c │ │ └── mod_unicall │ │ │ ├── Makefile.am │ │ │ └── mod_unicall.c │ ├── event_handlers │ │ ├── mod_cdr_csv │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_csv.conf.xml │ │ │ ├── mod_cdr_csv.2008.vcproj │ │ │ ├── mod_cdr_csv.2010.vcxproj │ │ │ ├── mod_cdr_csv.2012.vcxproj │ │ │ ├── mod_cdr_csv.c │ │ │ └── mod_cdr_csv.vcproj │ │ ├── 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.c │ │ ├── mod_cdr_pg_csv │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_pg_csv.conf.xml │ │ │ ├── mod_cdr_pg_csv.c │ │ │ └── scripts │ │ │ │ └── create.sql │ │ ├── mod_cdr_sqlite │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── cdr_sqlite.conf.xml │ │ │ └── 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.2008.vcproj │ │ │ ├── mod_erlang_event.c │ │ │ └── mod_erlang_event.h │ │ ├── mod_event_multicast │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── event_multicast.conf.xml │ │ │ ├── mod_event_multicast.2008.vcproj │ │ │ ├── mod_event_multicast.2010.vcxproj │ │ │ ├── mod_event_multicast.2012.vcxproj │ │ │ ├── mod_event_multicast.c │ │ │ └── mod_event_multicast.vcproj │ │ ├── mod_event_socket │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── event_socket.conf.xml │ │ │ ├── mod_event_socket.2008.vcproj │ │ │ ├── mod_event_socket.2010.vcxproj │ │ │ ├── mod_event_socket.2012.vcxproj │ │ │ ├── mod_event_socket.c │ │ │ └── mod_event_socket.vcproj │ │ ├── mod_event_test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── mod_event_test.c │ │ │ └── mod_event_test.vcproj │ │ ├── mod_event_zmq │ │ │ ├── Makefile.am │ │ │ ├── mod_event_zmq.cpp │ │ │ └── mod_event_zmq.h │ │ ├── mod_format_cdr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── format_cdr.conf.xml │ │ │ ├── mod_format_cdr.2008.vcproj │ │ │ ├── mod_format_cdr.2010.vcxproj │ │ │ ├── mod_format_cdr.2012.vcxproj │ │ │ ├── mod_format_cdr.c │ │ │ └── mod_format_cdr.vcproj │ │ ├── mod_json_cdr │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── json_cdr.conf.xml │ │ │ ├── mod_json_cdr.2008.vcproj │ │ │ ├── mod_json_cdr.c │ │ │ └── mod_json_cdr.vcproj │ │ ├── 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_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.h │ │ │ ├── test_iks │ │ │ │ ├── main.c │ │ │ │ └── test_iks.c │ │ │ ├── test_nlsml │ │ │ │ ├── main.c │ │ │ │ └── test_nlsml.c │ │ │ ├── test_srgs │ │ │ │ ├── main.c │ │ │ │ └── test_srgs.c │ │ │ ├── xmpp_errors.def │ │ │ ├── xmpp_streams.c │ │ │ └── xmpp_streams.h │ │ └── mod_snmp │ │ │ ├── FREESWITCH-MIB │ │ │ ├── Makefile.am │ │ │ ├── mod_snmp.c │ │ │ ├── subagent.c │ │ │ └── subagent.h │ ├── formats │ │ ├── mod_local_stream │ │ │ ├── Makefile.am │ │ │ ├── mod_local_stream.2008.vcproj │ │ │ ├── mod_local_stream.2010.vcxproj │ │ │ ├── mod_local_stream.2012.vcxproj │ │ │ ├── mod_local_stream.c │ │ │ └── mod_local_stream.vcproj │ │ ├── mod_native_file │ │ │ ├── Makefile.am │ │ │ ├── mod_native_file.2008.vcproj │ │ │ ├── mod_native_file.2010.vcxproj │ │ │ ├── mod_native_file.2012.vcxproj │ │ │ ├── mod_native_file.c │ │ │ └── mod_native_file.vcproj │ │ ├── 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.2012.vcxproj │ │ │ ├── mod_shout.c │ │ │ ├── mod_shout.vcproj │ │ │ ├── mod_shout.vcxproj │ │ │ └── mod_shout.vcxproj.filters │ │ ├── mod_sndfile │ │ │ ├── Makefile.am │ │ │ ├── mod_sndfile.2008.vcproj │ │ │ ├── mod_sndfile.2010.vcxproj │ │ │ ├── mod_sndfile.2012.vcxproj │ │ │ ├── mod_sndfile.c │ │ │ └── mod_sndfile.vcproj │ │ ├── mod_ssml │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── ssml.conf.xml │ │ │ └── mod_ssml.c │ │ ├── mod_tone_stream │ │ │ ├── Makefile.am │ │ │ ├── mod_tone_stream.2008.vcproj │ │ │ ├── mod_tone_stream.2010.vcxproj │ │ │ ├── mod_tone_stream.2012.vcxproj │ │ │ ├── mod_tone_stream.c │ │ │ └── mod_tone_stream.vcproj │ │ └── mod_vlc │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ └── mod_vlc.c │ ├── languages │ │ ├── mod_java │ │ │ ├── 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_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 │ │ │ ├── Makefile.am │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch_lua.cpp │ │ │ ├── freeswitch_lua.h │ │ │ ├── hack.diff │ │ │ ├── lua-mode.el │ │ │ ├── lua │ │ │ │ ├── Makefile │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lbitlib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.2005.vcproj │ │ │ │ ├── lua.2008.vcproj │ │ │ │ ├── lua.2010.vcxproj │ │ │ │ ├── lua.2012.vcxproj │ │ │ │ ├── lua.c │ │ │ │ ├── lua.def │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ │ ├── mod_lua.2008.vcproj │ │ │ ├── mod_lua.2010.vcxproj │ │ │ ├── mod_lua.2012.vcxproj │ │ │ ├── mod_lua.cpp │ │ │ ├── mod_lua.vcproj │ │ │ ├── mod_lua_extra.c │ │ │ ├── mod_lua_extra.h │ │ │ ├── mod_lua_wrap.cpp │ │ │ └── my_swigable_cpp.h │ │ ├── mod_managed │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch_managed.cpp │ │ │ ├── freeswitch_managed.h │ │ │ ├── freeswitch_wrap.2010.cxx │ │ │ ├── freeswitch_wrap.cxx │ │ │ ├── managed │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── ChannelVariables.cs │ │ │ │ ├── Demo.csx │ │ │ │ ├── EventBinding.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── FreeSWITCH.Managed.2010.csproj │ │ │ │ ├── FreeSWITCH.Managed.2012.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.2010.cs │ │ │ │ └── swig.cs │ │ │ ├── mod_managed.2010.vcxproj │ │ │ ├── mod_managed.2012.vcxproj │ │ │ ├── mod_managed.cpp │ │ │ ├── mod_managed.vcproj │ │ │ ├── mono.def │ │ │ ├── mono28.patch │ │ │ ├── monolibx86.cmd │ │ │ ├── runswig.2010.cmd │ │ │ ├── runswig.cmd │ │ │ └── switch_platform.i │ │ ├── mod_perl │ │ │ ├── Makefile.am │ │ │ ├── compiler.opts │ │ │ ├── compiler.opts.in │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch.pm │ │ │ ├── freeswitch_perl.cpp │ │ │ ├── freeswitch_perl.h │ │ │ ├── hack.diff │ │ │ ├── mod_perl.c │ │ │ ├── mod_perl.vcproj │ │ │ ├── mod_perl_extra.c │ │ │ ├── mod_perl_extra.h │ │ │ ├── mod_perl_wrap.cpp │ │ │ ├── perlibs.h │ │ │ ├── perlibs.h.in │ │ │ └── perlxsi.c │ │ ├── mod_python │ │ │ ├── Makefile.am │ │ │ ├── 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_spidermonkey │ │ │ ├── Makefile.am │ │ │ ├── mod_spidermonkey.2008.vcproj │ │ │ ├── mod_spidermonkey.2010.vcxproj │ │ │ ├── mod_spidermonkey.2012.vcxproj │ │ │ ├── mod_spidermonkey.c │ │ │ ├── mod_spidermonkey.h │ │ │ ├── mod_spidermonkey.vcproj │ │ │ ├── mod_spidermonkey_core_db.2008.vcproj │ │ │ ├── mod_spidermonkey_core_db.2010.vcxproj │ │ │ ├── mod_spidermonkey_core_db.2012.vcxproj │ │ │ ├── mod_spidermonkey_core_db.c │ │ │ ├── mod_spidermonkey_core_db.vcproj │ │ │ ├── mod_spidermonkey_curl.2008.vcproj │ │ │ ├── mod_spidermonkey_curl.2010.vcxproj │ │ │ ├── mod_spidermonkey_curl.2012.vcxproj │ │ │ ├── mod_spidermonkey_curl.c │ │ │ ├── mod_spidermonkey_curl.vcproj │ │ │ ├── mod_spidermonkey_odbc.2008.vcproj │ │ │ ├── mod_spidermonkey_odbc.2010.vcxproj │ │ │ ├── mod_spidermonkey_odbc.2012.vcxproj │ │ │ ├── mod_spidermonkey_odbc.c │ │ │ ├── mod_spidermonkey_odbc.vcproj │ │ │ ├── mod_spidermonkey_skel.c │ │ │ ├── mod_spidermonkey_socket.2008.vcproj │ │ │ ├── mod_spidermonkey_socket.2010.vcxproj │ │ │ ├── mod_spidermonkey_socket.2012.vcxproj │ │ │ ├── mod_spidermonkey_socket.c │ │ │ ├── mod_spidermonkey_socket.vcproj │ │ │ ├── mod_spidermonkey_teletone.2008.vcproj │ │ │ ├── mod_spidermonkey_teletone.2010.vcxproj │ │ │ ├── mod_spidermonkey_teletone.2012.vcxproj │ │ │ ├── mod_spidermonkey_teletone.c │ │ │ └── mod_spidermonkey_teletone.vcproj │ │ ├── mod_v8 │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── v8.conf.xml │ │ │ ├── gyp │ │ │ ├── include │ │ │ │ ├── fscoredb.hpp │ │ │ │ ├── fscurl.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.2010.vcxproj │ │ │ ├── mod_v8.2010.vcxproj.filters │ │ │ ├── mod_v8.2012.vcxproj │ │ │ ├── mod_v8.2012.vcxproj.filters │ │ │ ├── mod_v8.cpp │ │ │ ├── mod_v8.h │ │ │ ├── mod_v8_skel.2010.vcxproj │ │ │ ├── mod_v8_skel.2012.vcxproj │ │ │ ├── mod_v8_skel.cpp │ │ │ ├── scripts │ │ │ │ ├── build-v8-tarballs.sh │ │ │ │ └── remove-v8-tests.patch │ │ │ ├── src │ │ │ │ ├── fscoredb.cpp │ │ │ │ ├── fscurl.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 │ │ │ └── v8-build.patch │ │ └── mod_yaml │ │ │ ├── Makefile.am │ │ │ └── mod_yaml.c │ ├── legacy │ │ └── languages │ │ │ └── mod_lua │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── freeswitch.i │ │ │ ├── freeswitch_lua.cpp │ │ │ ├── freeswitch_lua.h │ │ │ ├── hack.diff │ │ │ ├── lua-mode.el │ │ │ ├── lua │ │ │ ├── Makefile │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.2005.vcproj │ │ │ ├── lua.2008.vcproj │ │ │ ├── lua.2010.vcxproj │ │ │ ├── lua.2012.vcxproj │ │ │ ├── lua.c │ │ │ ├── lua.def │ │ │ ├── lua.h │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ ├── lzio.h │ │ │ └── print.c │ │ │ ├── mod_lua.2008.vcproj │ │ │ ├── mod_lua.2010.vcxproj │ │ │ ├── mod_lua.2012.vcxproj │ │ │ ├── mod_lua.cpp │ │ │ ├── mod_lua.log │ │ │ ├── mod_lua.vcproj │ │ │ ├── mod_lua_extra.c │ │ │ ├── mod_lua_extra.h │ │ │ ├── mod_lua_wrap.cpp │ │ │ └── my_swigable_cpp.h │ ├── loggers │ │ ├── mod_console │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── console.conf.xml │ │ │ ├── mod_console.2008.vcproj │ │ │ ├── mod_console.2010.vcxproj │ │ │ ├── mod_console.2012.vcxproj │ │ │ ├── mod_console.c │ │ │ └── mod_console.vcproj │ │ ├── mod_logfile │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ │ └── autoload_configs │ │ │ │ │ └── logfile.conf.xml │ │ │ ├── mod_logfile.2008.vcproj │ │ │ ├── mod_logfile.2010.vcxproj │ │ │ ├── mod_logfile.2012.vcxproj │ │ │ ├── mod_logfile.c │ │ │ └── mod_logfile.vcproj │ │ └── mod_syslog │ │ │ ├── Makefile.am │ │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── syslog.conf.xml │ │ │ └── mod_syslog.c │ ├── say │ │ ├── mod_say_de │ │ │ ├── Makefile.am │ │ │ ├── mod_say_de.2008.vcproj │ │ │ ├── mod_say_de.2010.vcxproj │ │ │ ├── mod_say_de.2012.vcxproj │ │ │ ├── mod_say_de.c │ │ │ └── mod_say_de.vcproj │ │ ├── mod_say_en │ │ │ ├── Makefile.am │ │ │ ├── mod_say_en.2008.vcproj │ │ │ ├── mod_say_en.2010.vcxproj │ │ │ ├── mod_say_en.2012.vcxproj │ │ │ ├── mod_say_en.c │ │ │ └── mod_say_en.vcproj │ │ ├── mod_say_es │ │ │ ├── Makefile.am │ │ │ ├── mod_say_es.2008.vcproj │ │ │ ├── mod_say_es.2010.vcxproj │ │ │ ├── mod_say_es.2012.vcxproj │ │ │ ├── mod_say_es.c │ │ │ └── mod_say_es.vcproj │ │ ├── mod_say_fa │ │ │ ├── Makefile.am │ │ │ ├── mod_say_fa.2008.vcproj │ │ │ ├── mod_say_fa.2010.vcxproj │ │ │ ├── mod_say_fa.c │ │ │ └── mod_say_fa.vcproj │ │ ├── mod_say_fr │ │ │ ├── Makefile.am │ │ │ ├── mod_say_fr.2008.vcproj │ │ │ ├── mod_say_fr.2010.vcxproj │ │ │ ├── mod_say_fr.2012.vcxproj │ │ │ ├── mod_say_fr.c │ │ │ └── mod_say_fr.vcproj │ │ ├── mod_say_he │ │ │ ├── Makefile.am │ │ │ ├── mod_say_he.2008.vcproj │ │ │ ├── mod_say_he.2010.vcxproj │ │ │ ├── mod_say_he.c │ │ │ └── mod_say_he.vcproj │ │ ├── mod_say_hr │ │ │ ├── Makefile.am │ │ │ └── mod_say_hr.c │ │ ├── mod_say_hu │ │ │ ├── Makefile.am │ │ │ ├── mod_say_hu.2008.vcproj │ │ │ ├── mod_say_hu.c │ │ │ └── mod_say_hu.vcproj │ │ ├── mod_say_it │ │ │ ├── Makefile.am │ │ │ ├── mod_say_it.2008.vcproj │ │ │ ├── mod_say_it.2010.vcxproj │ │ │ ├── mod_say_it.2012.vcxproj │ │ │ ├── mod_say_it.c │ │ │ └── mod_say_it.vcproj │ │ ├── mod_say_ja │ │ │ ├── Makefile.am │ │ │ └── mod_say_ja.c │ │ ├── mod_say_nl │ │ │ ├── Makefile.am │ │ │ ├── mod_say_nl.2008.vcproj │ │ │ ├── mod_say_nl.2010.vcxproj │ │ │ ├── mod_say_nl.2012.vcxproj │ │ │ ├── mod_say_nl.c │ │ │ └── mod_say_nl.vcproj │ │ ├── mod_say_pl │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── conf │ │ │ │ ├── dialplan │ │ │ │ │ └── default │ │ │ │ │ │ └── test_say_pl.xml │ │ │ │ └── lang │ │ │ │ │ └── pl │ │ │ │ │ └── pl.xml │ │ │ ├── create_sound_files.sh │ │ │ └── mod_say_pl.c │ │ ├── mod_say_pt │ │ │ ├── Makefile.am │ │ │ ├── mod_say_pt.2008.vcproj │ │ │ ├── mod_say_pt.2010.vcxproj │ │ │ ├── mod_say_pt.2012.vcxproj │ │ │ ├── mod_say_pt.c │ │ │ └── mod_say_pt.vcproj │ │ ├── mod_say_ru │ │ │ ├── Makefile.am │ │ │ ├── mod_say_ru.2008.vcproj │ │ │ ├── mod_say_ru.2010.vcxproj │ │ │ ├── mod_say_ru.2012.vcxproj │ │ │ ├── mod_say_ru.c │ │ │ ├── mod_say_ru.h │ │ │ └── mod_say_ru.vcproj │ │ ├── mod_say_sv │ │ │ ├── Makefile.am │ │ │ ├── mod_say_sv.2010.vcxproj │ │ │ ├── mod_say_sv.2012.vcxproj │ │ │ └── mod_say_sv.c │ │ ├── mod_say_th │ │ │ ├── Makefile.am │ │ │ └── mod_say_th.c │ │ └── mod_say_zh │ │ │ ├── Makefile.am │ │ │ ├── mod_say_zh.2008.vcproj │ │ │ ├── mod_say_zh.2010.vcxproj │ │ │ ├── mod_say_zh.2012.vcxproj │ │ │ ├── mod_say_zh.c │ │ │ └── mod_say_zh.vcproj │ ├── 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.2008.vcproj │ │ ├── mod_xml_cdr.2010.vcxproj │ │ ├── mod_xml_cdr.2012.vcxproj │ │ ├── mod_xml_cdr.c │ │ └── mod_xml_cdr.vcproj │ │ ├── mod_xml_curl │ │ ├── Makefile.am │ │ ├── conf │ │ │ └── autoload_configs │ │ │ │ └── xml_curl.conf.xml │ │ ├── mod_xml_curl.2008.vcproj │ │ ├── mod_xml_curl.2010.vcxproj │ │ ├── mod_xml_curl.2012.vcxproj │ │ ├── mod_xml_curl.c │ │ └── mod_xml_curl.vcproj │ │ ├── mod_xml_ldap │ │ ├── Makefile.am │ │ ├── fsv2.schema │ │ ├── lutil_ldap.h │ │ ├── mod_xml_curl.2008.vcproj │ │ ├── mod_xml_curl.vcproj │ │ ├── mod_xml_ldap.c │ │ ├── mod_xml_ldapv2.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.2008.vcproj │ │ ├── mod_xml_rpc.2010.vcxproj │ │ ├── mod_xml_rpc.2012.vcxproj │ │ ├── mod_xml_rpc.c │ │ ├── mod_xml_rpc.vcproj │ │ ├── ws.c │ │ └── ws.h │ │ └── mod_xml_scgi │ │ ├── Makefile.am │ │ ├── conf │ │ └── autoload_configs │ │ │ └── xml_scgi.conf.xml │ │ ├── mod_xml_scgi.2008.vcproj │ │ ├── mod_xml_scgi.2010.vcxproj │ │ ├── mod_xml_scgi.c │ │ └── xml_scgi_server.pl ├── switch.c ├── switch_apr.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_cpp.cpp ├── switch_curl.c ├── switch_dso.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_json.c ├── switch_limit.c ├── switch_loadable_module.c ├── switch_log.c ├── switch_mprintf.c ├── switch_nat.c ├── switch_odbc.c ├── switch_pcm.c ├── switch_pgsql.c ├── switch_profile.c ├── switch_regex.c ├── switch_resample.c ├── switch_rtp.c ├── switch_scheduler.c ├── switch_sdp.c ├── switch_speex.c ├── switch_stfu.c ├── switch_stun.c ├── switch_swig.c ├── switch_swig.i ├── switch_time.c ├── switch_utils.c ├── switch_version.c ├── switch_xml.c ├── switch_xml_config.c └── tone2wav.c ├── support-d ├── .bashrc ├── .emacs ├── .gdbinit ├── .screenrc ├── freeswitch.pub ├── fscore_pb ├── gl ├── install-cc-mode.sh ├── prereq.sh └── shinzon.pub ├── swig_common.i ├── w32 ├── Console │ ├── FreeSwitchConsole.2008.vcproj │ ├── FreeSwitchConsole.2010.vcxproj │ ├── FreeSwitchConsole.2010.vcxproj.filters │ ├── FreeSwitchConsole.2012.vcxproj │ ├── FreeSwitchConsole.2012.vcxproj.filters │ ├── FreeSwitchConsole.rc │ ├── FreeSwitchConsole.vcproj │ ├── FreeSwitchConsole.vcproj.user │ └── switch_version.rc2 ├── Library │ ├── FreeSwitchCore.2008.vcproj │ ├── FreeSwitchCore.2010.vcxproj │ ├── FreeSwitchCore.2010.vcxproj.filters │ ├── FreeSwitchCore.2012.vcxproj │ ├── FreeSwitchCore.2012.vcxproj.filters │ ├── FreeSwitchCore.vcproj │ ├── FreeSwitchCoreLib.rc │ ├── switch_version.inc.template │ └── switch_version.rc2 ├── Setup │ ├── FreeSWITCHConsole.wxs │ ├── Product.2012.wxs │ ├── Product.wxs │ ├── Setup.2008.vdproj │ ├── Setup.2012.wixproj │ ├── Setup.vdproj │ ├── Setup.wixproj │ ├── filter.xslt │ ├── freeswitch.aip │ └── 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 ├── apr.vsprops ├── curl.props ├── curl.vsprops ├── extdll.props ├── extlib.props ├── module_debug.props ├── module_debug.vsprops ├── module_release.props ├── module_release.vsprops ├── modules.props ├── modules.vsprops ├── spidermonkey.props ├── spidermonkey.vsprops ├── v8-version.props ├── v8.props ├── winlibs.props ├── winlibs.vsprops ├── xmlrpc.props └── xmlrpc.vsprops └── web ├── etc └── .empty └── planet └── .empty /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /Freeswitch.2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/Freeswitch.2010.sln -------------------------------------------------------------------------------- /Freeswitch.2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/Freeswitch.2012.sln -------------------------------------------------------------------------------- /Freeswitch.2012.sln.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/Freeswitch.2012.sln.bat -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/Makefile.am -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/cc.sh -------------------------------------------------------------------------------- /clients/flex/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/clients/flex/build.sh -------------------------------------------------------------------------------- /clients/flex/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/clients/flex/swfobject.js -------------------------------------------------------------------------------- /cluecon.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/cluecon.tmpl -------------------------------------------------------------------------------- /cluecon2.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/cluecon2.tmpl -------------------------------------------------------------------------------- /cluecon2_small.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/cluecon2_small.tmpl -------------------------------------------------------------------------------- /cluecon_small.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/cluecon_small.tmpl -------------------------------------------------------------------------------- /conf/curl/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/curl/freeswitch.xml -------------------------------------------------------------------------------- /conf/curl/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/curl/mime.types -------------------------------------------------------------------------------- /conf/freeswitch.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /conf/insideout/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/insideout/mime.types -------------------------------------------------------------------------------- /conf/insideout/tones.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/insideout/tones.conf -------------------------------------------------------------------------------- /conf/insideout/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/insideout/vars.xml -------------------------------------------------------------------------------- /conf/insideout/web-vm.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/insideout/web-vm.tpl -------------------------------------------------------------------------------- /conf/rayo/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/cacert.pem -------------------------------------------------------------------------------- /conf/rayo/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/freeswitch.xml -------------------------------------------------------------------------------- /conf/rayo/lang/de/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/lang/de/de.xml -------------------------------------------------------------------------------- /conf/rayo/lang/en/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/lang/en/en.xml -------------------------------------------------------------------------------- /conf/rayo/lang/fr/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/lang/fr/fr.xml -------------------------------------------------------------------------------- /conf/rayo/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/mime.types -------------------------------------------------------------------------------- /conf/rayo/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/rayo/vars.xml -------------------------------------------------------------------------------- /conf/sbc/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/sbc/mime.types -------------------------------------------------------------------------------- /conf/sbc/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/sbc/vars.xml -------------------------------------------------------------------------------- /conf/vanilla/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/conf/vanilla/vars.xml -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/AUTHORS -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/bootstrap.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/control-modules -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/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.install: -------------------------------------------------------------------------------- 1 | /usr/bin 2 | -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/debian/util.sh -------------------------------------------------------------------------------- /devel-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/devel-bootstrap.sh -------------------------------------------------------------------------------- /docs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/AUTHORS -------------------------------------------------------------------------------- /docs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/COPYING -------------------------------------------------------------------------------- /docs/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/ChangeLog -------------------------------------------------------------------------------- /docs/Debugging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/Debugging -------------------------------------------------------------------------------- /docs/Doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/Doxygen.conf -------------------------------------------------------------------------------- /docs/JavaScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/JavaScript.txt -------------------------------------------------------------------------------- /docs/SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/SubmittingPatches -------------------------------------------------------------------------------- /docs/docs.2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/docs.2008.vcproj -------------------------------------------------------------------------------- /docs/docs.2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/docs.2010.vcxproj -------------------------------------------------------------------------------- /docs/docs.2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/docs.2012.vcxproj -------------------------------------------------------------------------------- /docs/docs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/docs.vcproj -------------------------------------------------------------------------------- /docs/man/.gitignore: -------------------------------------------------------------------------------- 1 | *.1 2 | *.html 3 | -------------------------------------------------------------------------------- /docs/phrase/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/phrase/README.TXT -------------------------------------------------------------------------------- /docs/phrase/phrase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/phrase/phrase.pl -------------------------------------------------------------------------------- /docs/zrtp_agpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/docs/zrtp_agpl-3.0.txt -------------------------------------------------------------------------------- /erlang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/erlang.spec -------------------------------------------------------------------------------- /freeswitch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/freeswitch.spec -------------------------------------------------------------------------------- /fscomm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/.gitignore -------------------------------------------------------------------------------- /fscomm/FSComm.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/FSComm.pro -------------------------------------------------------------------------------- /fscomm/MakeVcProj.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/MakeVcProj.cmd -------------------------------------------------------------------------------- /fscomm/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/account.cpp -------------------------------------------------------------------------------- /fscomm/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/account.h -------------------------------------------------------------------------------- /fscomm/call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/call.cpp -------------------------------------------------------------------------------- /fscomm/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/call.h -------------------------------------------------------------------------------- /fscomm/channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/channel.cpp -------------------------------------------------------------------------------- /fscomm/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/channel.h -------------------------------------------------------------------------------- /fscomm/fscomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/fscomm.h -------------------------------------------------------------------------------- /fscomm/fshost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/fshost.cpp -------------------------------------------------------------------------------- /fscomm/fshost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/fshost.h -------------------------------------------------------------------------------- /fscomm/isettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/isettings.cpp -------------------------------------------------------------------------------- /fscomm/isettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/isettings.h -------------------------------------------------------------------------------- /fscomm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/main.cpp -------------------------------------------------------------------------------- /fscomm/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/mainwindow.cpp -------------------------------------------------------------------------------- /fscomm/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/mainwindow.h -------------------------------------------------------------------------------- /fscomm/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/mainwindow.ui -------------------------------------------------------------------------------- /fscomm/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/fscomm/resources.qrc -------------------------------------------------------------------------------- /htdocs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/htdocs/license.txt -------------------------------------------------------------------------------- /htdocs/portal/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/htdocs/portal/LICENCE -------------------------------------------------------------------------------- /htdocs/slim.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/htdocs/slim.swf -------------------------------------------------------------------------------- /htdocs/slimtest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/htdocs/slimtest.htm -------------------------------------------------------------------------------- /libs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/.gitignore -------------------------------------------------------------------------------- /libs/apr-util/.update: -------------------------------------------------------------------------------- 1 | Thu 18 Nov 2010 20:56:38 EST 2 | -------------------------------------------------------------------------------- /libs/apr-util/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr-util/CHANGES -------------------------------------------------------------------------------- /libs/apr-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr-util/LICENSE -------------------------------------------------------------------------------- /libs/apr-util/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr-util/NOTICE -------------------------------------------------------------------------------- /libs/apr-util/test/data/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/apr/.update: -------------------------------------------------------------------------------- 1 | Tue Aug 27 13:58:18 EDT 2013 2 | -------------------------------------------------------------------------------- /libs/apr/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/CHANGES -------------------------------------------------------------------------------- /libs/apr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/LICENSE -------------------------------------------------------------------------------- /libs/apr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/Makefile.in -------------------------------------------------------------------------------- /libs/apr/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/NOTICE -------------------------------------------------------------------------------- /libs/apr/NWGNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/NWGNUmakefile -------------------------------------------------------------------------------- /libs/apr/README.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/README.dev -------------------------------------------------------------------------------- /libs/apr/apr-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/apr-config.in -------------------------------------------------------------------------------- /libs/apr/apr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/apr.dsp -------------------------------------------------------------------------------- /libs/apr/apr.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/apr.dsw -------------------------------------------------------------------------------- /libs/apr/apr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/apr.pc.in -------------------------------------------------------------------------------- /libs/apr/apr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/apr.spec -------------------------------------------------------------------------------- /libs/apr/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/build.conf -------------------------------------------------------------------------------- /libs/apr/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/buildconf -------------------------------------------------------------------------------- /libs/apr/config.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/config.layout -------------------------------------------------------------------------------- /libs/apr/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/configure.ac -------------------------------------------------------------------------------- /libs/apr/configure.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/configure.gnu -------------------------------------------------------------------------------- /libs/apr/dso/aix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/dso/aix/dso.c -------------------------------------------------------------------------------- /libs/apr/dso/os2/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/dso/os2/dso.c -------------------------------------------------------------------------------- /libs/apr/emacs-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/emacs-mode -------------------------------------------------------------------------------- /libs/apr/file_io/os2/copy.c: -------------------------------------------------------------------------------- 1 | #include "../unix/copy.c" 2 | -------------------------------------------------------------------------------- /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/libapr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/libapr.dsp -------------------------------------------------------------------------------- /libs/apr/libapr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/libapr.rc -------------------------------------------------------------------------------- /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/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/test/README -------------------------------------------------------------------------------- /libs/apr/test/abts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/test/abts.c -------------------------------------------------------------------------------- /libs/apr/test/abts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/test/abts.h -------------------------------------------------------------------------------- /libs/apr/test/data/mmap_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the MMAP data file. 2 | -------------------------------------------------------------------------------- /libs/apr/test/testoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/test/testoc.c -------------------------------------------------------------------------------- /libs/apr/test/testud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/apr/test/testud.c -------------------------------------------------------------------------------- /libs/apr/threadproc/os2/signals.c: -------------------------------------------------------------------------------- 1 | #include "../unix/signals.c" 2 | -------------------------------------------------------------------------------- /libs/broadvoice/.update: -------------------------------------------------------------------------------- 1 | Fri Nov 20 13:35:04 CST 2009 2 | -------------------------------------------------------------------------------- /libs/broadvoice/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/broadvoice/NEWS -------------------------------------------------------------------------------- /libs/broadvoice/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/broadvoice/README -------------------------------------------------------------------------------- /libs/broadvoice/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /libs/broadvoice/src/msvc/broadvoice.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | 3 | -------------------------------------------------------------------------------- /libs/esl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/.gitignore -------------------------------------------------------------------------------- /libs/esl/ESL.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/ESL.i -------------------------------------------------------------------------------- /libs/esl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/Makefile.am -------------------------------------------------------------------------------- /libs/esl/fs_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/fs_cli.c -------------------------------------------------------------------------------- /libs/esl/fs_cli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/fs_cli.conf -------------------------------------------------------------------------------- /libs/esl/fs_cli.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /libs/esl/ivrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/ivrd.c -------------------------------------------------------------------------------- /libs/esl/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/java/Makefile -------------------------------------------------------------------------------- /libs/esl/java/classes/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/esl/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/lua/Makefile -------------------------------------------------------------------------------- /libs/esl/perl/ESL.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/perl/ESL.pm -------------------------------------------------------------------------------- /libs/esl/perl/info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/perl/info.pl -------------------------------------------------------------------------------- /libs/esl/php/ESL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/php/ESL.php -------------------------------------------------------------------------------- /libs/esl/php/php_ESL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/php/php_ESL.h -------------------------------------------------------------------------------- /libs/esl/php/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/php/test.php -------------------------------------------------------------------------------- /libs/esl/python/ESL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/python/ESL.py -------------------------------------------------------------------------------- /libs/esl/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/ruby/Makefile -------------------------------------------------------------------------------- /libs/esl/src/esl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/src/esl.c -------------------------------------------------------------------------------- /libs/esl/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/tcl/Makefile -------------------------------------------------------------------------------- /libs/esl/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/test.pl -------------------------------------------------------------------------------- /libs/esl/testclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/testclient.c -------------------------------------------------------------------------------- /libs/esl/testserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/esl/testserver.c -------------------------------------------------------------------------------- /libs/freetdm/.update: -------------------------------------------------------------------------------- 1 | Fri Feb 3 11:55:29 PST 2012 2 | -------------------------------------------------------------------------------- /libs/freetdm/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/freetdm/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/freetdm/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/freetdm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/freetdm/README -------------------------------------------------------------------------------- /libs/freetdm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/freetdm/TODO -------------------------------------------------------------------------------- /libs/freetdm/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/freetdm/bootstrap -------------------------------------------------------------------------------- /libs/freetdm/src/fsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/freetdm/src/fsk.c -------------------------------------------------------------------------------- /libs/freetdm/src/ss7/README: -------------------------------------------------------------------------------- 1 | SS7 Coming soon 2 | 3 | -Shane Burrell- 4 | -------------------------------------------------------------------------------- /libs/iksemel/.update: -------------------------------------------------------------------------------- 1 | Mon Jul 15 16:57:11 CDT 2013 2 | -------------------------------------------------------------------------------- /libs/iksemel/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/AUTHORS -------------------------------------------------------------------------------- /libs/iksemel/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/COPYING -------------------------------------------------------------------------------- /libs/iksemel/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/ChangeLog -------------------------------------------------------------------------------- /libs/iksemel/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/HACKING -------------------------------------------------------------------------------- /libs/iksemel/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/INSTALL -------------------------------------------------------------------------------- /libs/iksemel/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/NEWS -------------------------------------------------------------------------------- /libs/iksemel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/README -------------------------------------------------------------------------------- /libs/iksemel/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/TODO -------------------------------------------------------------------------------- /libs/iksemel/acsite.m4: -------------------------------------------------------------------------------- 1 | m4_include([build/libgnutls.m4]) 2 | 3 | -------------------------------------------------------------------------------- /libs/iksemel/include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /libs/iksemel/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/ltmain.sh -------------------------------------------------------------------------------- /libs/iksemel/src/dom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/src/dom.c -------------------------------------------------------------------------------- /libs/iksemel/src/iks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/src/iks.c -------------------------------------------------------------------------------- /libs/iksemel/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/src/md5.c -------------------------------------------------------------------------------- /libs/iksemel/src/sax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/src/sax.c -------------------------------------------------------------------------------- /libs/iksemel/src/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/iksemel/src/sha.c -------------------------------------------------------------------------------- /libs/ilbc/.update: -------------------------------------------------------------------------------- 1 | Tue Feb 17 10:22:09 CST 2009 2 | -------------------------------------------------------------------------------- /libs/ilbc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/AUTHORS -------------------------------------------------------------------------------- /libs/ilbc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/COPYING -------------------------------------------------------------------------------- /libs/ilbc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/ChangeLog -------------------------------------------------------------------------------- /libs/ilbc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/INSTALL -------------------------------------------------------------------------------- /libs/ilbc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/Makefile.am -------------------------------------------------------------------------------- /libs/ilbc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/NEWS -------------------------------------------------------------------------------- /libs/ilbc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/README -------------------------------------------------------------------------------- /libs/ilbc/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ilbc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/configure.ac -------------------------------------------------------------------------------- /libs/ilbc/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /libs/ilbc/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/debian/rules -------------------------------------------------------------------------------- /libs/ilbc/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/debian/watch -------------------------------------------------------------------------------- /libs/ilbc/doc/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/doc/css.css -------------------------------------------------------------------------------- /libs/ilbc/ilbc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/ilbc.spec -------------------------------------------------------------------------------- /libs/ilbc/ilbc.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/ilbc.spec.in -------------------------------------------------------------------------------- /libs/ilbc/src/doCPLC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/doCPLC.c -------------------------------------------------------------------------------- /libs/ilbc/src/doCPLC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/doCPLC.h -------------------------------------------------------------------------------- /libs/ilbc/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/filter.c -------------------------------------------------------------------------------- /libs/ilbc/src/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/filter.h -------------------------------------------------------------------------------- /libs/ilbc/src/lsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/lsf.c -------------------------------------------------------------------------------- /libs/ilbc/src/lsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/src/lsf.h -------------------------------------------------------------------------------- /libs/ilbc/wrapper.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ilbc/wrapper.xsl -------------------------------------------------------------------------------- /libs/js/.update: -------------------------------------------------------------------------------- 1 | Tue Jan 19 13:09:35 EST 2010 2 | -------------------------------------------------------------------------------- /libs/js/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/AUTHORS -------------------------------------------------------------------------------- /libs/js/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/ChangeLog -------------------------------------------------------------------------------- /libs/js/LINKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/LINKS -------------------------------------------------------------------------------- /libs/js/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/Makefile.in -------------------------------------------------------------------------------- /libs/js/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/README -------------------------------------------------------------------------------- /libs/js/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/THANKS -------------------------------------------------------------------------------- /libs/js/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/TODO -------------------------------------------------------------------------------- /libs/js/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/VERSION -------------------------------------------------------------------------------- /libs/js/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/acsite.m4 -------------------------------------------------------------------------------- /libs/js/config.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/config.hw -------------------------------------------------------------------------------- /libs/js/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/configure.ac -------------------------------------------------------------------------------- /libs/js/configure.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/configure.gnu -------------------------------------------------------------------------------- /libs/js/js-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/js-config.1 -------------------------------------------------------------------------------- /libs/js/js.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/js.1 -------------------------------------------------------------------------------- /libs/js/js.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/js.3 -------------------------------------------------------------------------------- /libs/js/js.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/js.pc.in -------------------------------------------------------------------------------- /libs/js/jslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/jslint.js -------------------------------------------------------------------------------- /libs/js/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/libtool.m4 -------------------------------------------------------------------------------- /libs/js/nsprpub/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 16 17:16:13 EDT 2007 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/build/autoconf/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/include/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/ds/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | _pl_bld.h 3 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/libc/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/libc/include/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/libc/src/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | _pl_bld.h 3 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/msgc/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/msgc/include/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/msgc/src/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/msgc/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/prstreams/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/prstreams/tests/testprstrm/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/lib/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/macbuild/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWnspr/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWnsprx/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWpr-devl/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWprdx/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWprx-devl/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pkg/solaris/SUNWprx/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/include/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/include/md/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/include/obsolete/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/include/private/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | _pr_bld.h 3 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/bthreads/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/cplus/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/cplus/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/cthreads/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/io/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/linking/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/malloc/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/md/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/md/beos/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/md/os2/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/md/unix/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/md/windows/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/memory/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/misc/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/pthreads/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/threads/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/src/threads/combined/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/tests/dll/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/tests/macbuild/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/js/nsprpub/pr/tests/w16gui/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/nsprpub/tools/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/js/shtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/shtool -------------------------------------------------------------------------------- /libs/js/src/js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/js.c -------------------------------------------------------------------------------- /libs/js/src/js.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/js.msg -------------------------------------------------------------------------------- /libs/js/src/jsapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsapi.c -------------------------------------------------------------------------------- /libs/js/src/jsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsapi.h -------------------------------------------------------------------------------- /libs/js/src/jsarena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsarena.c -------------------------------------------------------------------------------- /libs/js/src/jsarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsarena.h -------------------------------------------------------------------------------- /libs/js/src/jsarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsarray.c -------------------------------------------------------------------------------- /libs/js/src/jsarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsarray.h -------------------------------------------------------------------------------- /libs/js/src/jsatom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsatom.c -------------------------------------------------------------------------------- /libs/js/src/jsatom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsatom.h -------------------------------------------------------------------------------- /libs/js/src/jsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsbit.h -------------------------------------------------------------------------------- /libs/js/src/jsbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsbool.c -------------------------------------------------------------------------------- /libs/js/src/jsbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsbool.h -------------------------------------------------------------------------------- /libs/js/src/jsclist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsclist.h -------------------------------------------------------------------------------- /libs/js/src/jscntxt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jscntxt.c -------------------------------------------------------------------------------- /libs/js/src/jscntxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jscntxt.h -------------------------------------------------------------------------------- /libs/js/src/jscompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jscompat.h -------------------------------------------------------------------------------- /libs/js/src/jsconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsconfig.h -------------------------------------------------------------------------------- /libs/js/src/jscpucfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jscpucfg.c -------------------------------------------------------------------------------- /libs/js/src/jscpucfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jscpucfg.h -------------------------------------------------------------------------------- /libs/js/src/jsdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdate.c -------------------------------------------------------------------------------- /libs/js/src/jsdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdate.h -------------------------------------------------------------------------------- /libs/js/src/jsdbgapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdbgapi.c -------------------------------------------------------------------------------- /libs/js/src/jsdbgapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdbgapi.h -------------------------------------------------------------------------------- /libs/js/src/jsdhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdhash.c -------------------------------------------------------------------------------- /libs/js/src/jsdhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdhash.h -------------------------------------------------------------------------------- /libs/js/src/jsdso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdso.c -------------------------------------------------------------------------------- /libs/js/src/jsdso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdso.h -------------------------------------------------------------------------------- /libs/js/src/jsdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdtoa.c -------------------------------------------------------------------------------- /libs/js/src/jsdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsdtoa.h -------------------------------------------------------------------------------- /libs/js/src/jsemit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsemit.c -------------------------------------------------------------------------------- /libs/js/src/jsemit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsemit.h -------------------------------------------------------------------------------- /libs/js/src/jsexn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsexn.c -------------------------------------------------------------------------------- /libs/js/src/jsexn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsexn.h -------------------------------------------------------------------------------- /libs/js/src/jsfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsfile.c -------------------------------------------------------------------------------- /libs/js/src/jsfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsfile.h -------------------------------------------------------------------------------- /libs/js/src/jsfile.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsfile.msg -------------------------------------------------------------------------------- /libs/js/src/jsfun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsfun.c -------------------------------------------------------------------------------- /libs/js/src/jsfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsfun.h -------------------------------------------------------------------------------- /libs/js/src/jsgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsgc.c -------------------------------------------------------------------------------- /libs/js/src/jsgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsgc.h -------------------------------------------------------------------------------- /libs/js/src/jshash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jshash.c -------------------------------------------------------------------------------- /libs/js/src/jshash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jshash.h -------------------------------------------------------------------------------- /libs/js/src/jsinterp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsinterp.c -------------------------------------------------------------------------------- /libs/js/src/jsinterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsinterp.h -------------------------------------------------------------------------------- /libs/js/src/jslock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jslock.c -------------------------------------------------------------------------------- /libs/js/src/jslock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jslock.h -------------------------------------------------------------------------------- /libs/js/src/jslog2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jslog2.c -------------------------------------------------------------------------------- /libs/js/src/jslong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jslong.c -------------------------------------------------------------------------------- /libs/js/src/jslong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jslong.h -------------------------------------------------------------------------------- /libs/js/src/jsmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsmath.c -------------------------------------------------------------------------------- /libs/js/src/jsmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsmath.h -------------------------------------------------------------------------------- /libs/js/src/jsnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsnum.c -------------------------------------------------------------------------------- /libs/js/src/jsnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsnum.h -------------------------------------------------------------------------------- /libs/js/src/jsobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsobj.c -------------------------------------------------------------------------------- /libs/js/src/jsobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsobj.h -------------------------------------------------------------------------------- /libs/js/src/jsopcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsopcode.c -------------------------------------------------------------------------------- /libs/js/src/jsopcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsopcode.h -------------------------------------------------------------------------------- /libs/js/src/jsosdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsosdep.h -------------------------------------------------------------------------------- /libs/js/src/jsotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsotypes.h -------------------------------------------------------------------------------- /libs/js/src/jsparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsparse.c -------------------------------------------------------------------------------- /libs/js/src/jsparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsparse.h -------------------------------------------------------------------------------- /libs/js/src/jsprf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsprf.c -------------------------------------------------------------------------------- /libs/js/src/jsprf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsprf.h -------------------------------------------------------------------------------- /libs/js/src/jsprvtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsprvtd.h -------------------------------------------------------------------------------- /libs/js/src/jspubtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jspubtd.h -------------------------------------------------------------------------------- /libs/js/src/jsregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsregexp.c -------------------------------------------------------------------------------- /libs/js/src/jsregexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsregexp.h -------------------------------------------------------------------------------- /libs/js/src/jsscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscan.c -------------------------------------------------------------------------------- /libs/js/src/jsscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscan.h -------------------------------------------------------------------------------- /libs/js/src/jsscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscope.c -------------------------------------------------------------------------------- /libs/js/src/jsscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscope.h -------------------------------------------------------------------------------- /libs/js/src/jsscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscript.c -------------------------------------------------------------------------------- /libs/js/src/jsscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsscript.h -------------------------------------------------------------------------------- /libs/js/src/jsstddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsstddef.h -------------------------------------------------------------------------------- /libs/js/src/jsstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsstr.c -------------------------------------------------------------------------------- /libs/js/src/jsstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsstr.h -------------------------------------------------------------------------------- /libs/js/src/jstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jstypes.h -------------------------------------------------------------------------------- /libs/js/src/jsutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsutil.c -------------------------------------------------------------------------------- /libs/js/src/jsutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsutil.h -------------------------------------------------------------------------------- /libs/js/src/jsxdrapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsxdrapi.c -------------------------------------------------------------------------------- /libs/js/src/jsxdrapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsxdrapi.h -------------------------------------------------------------------------------- /libs/js/src/jsxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsxml.c -------------------------------------------------------------------------------- /libs/js/src/jsxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/jsxml.h -------------------------------------------------------------------------------- /libs/js/src/prmjtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/prmjtime.c -------------------------------------------------------------------------------- /libs/js/src/prmjtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/js/src/prmjtime.h -------------------------------------------------------------------------------- /libs/ldns/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/Changelog -------------------------------------------------------------------------------- /libs/ldns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/LICENSE -------------------------------------------------------------------------------- /libs/ldns/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/Makefile.in -------------------------------------------------------------------------------- /libs/ldns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/README -------------------------------------------------------------------------------- /libs/ldns/README.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/README.svn -------------------------------------------------------------------------------- /libs/ldns/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/buffer.c -------------------------------------------------------------------------------- /libs/ldns/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/configure.ac -------------------------------------------------------------------------------- /libs/ldns/dname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/dname.c -------------------------------------------------------------------------------- /libs/ldns/dnssec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/dnssec.c -------------------------------------------------------------------------------- /libs/ldns/doc/API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/doc/API.xml -------------------------------------------------------------------------------- /libs/ldns/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/doc/TODO -------------------------------------------------------------------------------- /libs/ldns/drill/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/drill/README -------------------------------------------------------------------------------- /libs/ldns/drill/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/drill/root.c -------------------------------------------------------------------------------- /libs/ldns/drill/work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/drill/work.c -------------------------------------------------------------------------------- /libs/ldns/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/error.c -------------------------------------------------------------------------------- /libs/ldns/higher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/higher.c -------------------------------------------------------------------------------- /libs/ldns/host2str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/host2str.c -------------------------------------------------------------------------------- /libs/ldns/host2wire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/host2wire.c -------------------------------------------------------------------------------- /libs/ldns/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/keys.c -------------------------------------------------------------------------------- /libs/ldns/ldns/dname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/dname.h -------------------------------------------------------------------------------- /libs/ldns/ldns/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/error.h -------------------------------------------------------------------------------- /libs/ldns/ldns/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/keys.h -------------------------------------------------------------------------------- /libs/ldns/ldns/ldns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/ldns.h -------------------------------------------------------------------------------- /libs/ldns/ldns/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/parse.h -------------------------------------------------------------------------------- /libs/ldns/ldns/rdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/rdata.h -------------------------------------------------------------------------------- /libs/ldns/ldns/rr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/rr.h -------------------------------------------------------------------------------- /libs/ldns/ldns/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/sha1.h -------------------------------------------------------------------------------- /libs/ldns/ldns/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/sha2.h -------------------------------------------------------------------------------- /libs/ldns/ldns/tsig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/tsig.h -------------------------------------------------------------------------------- /libs/ldns/ldns/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/ldns/zone.h -------------------------------------------------------------------------------- /libs/ldns/libdns.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/libdns.vim -------------------------------------------------------------------------------- /libs/ldns/linktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/linktest.c -------------------------------------------------------------------------------- /libs/ldns/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/net.c -------------------------------------------------------------------------------- /libs/ldns/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/packet.c -------------------------------------------------------------------------------- /libs/ldns/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/parse.c -------------------------------------------------------------------------------- /libs/ldns/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/rbtree.c -------------------------------------------------------------------------------- /libs/ldns/rdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/rdata.c -------------------------------------------------------------------------------- /libs/ldns/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/resolver.c -------------------------------------------------------------------------------- /libs/ldns/rr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/rr.c -------------------------------------------------------------------------------- /libs/ldns/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/sha1.c -------------------------------------------------------------------------------- /libs/ldns/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/sha2.c -------------------------------------------------------------------------------- /libs/ldns/str2host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/str2host.c -------------------------------------------------------------------------------- /libs/ldns/tsig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/tsig.c -------------------------------------------------------------------------------- /libs/ldns/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/update.c -------------------------------------------------------------------------------- /libs/ldns/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/util.c -------------------------------------------------------------------------------- /libs/ldns/wire2host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/wire2host.c -------------------------------------------------------------------------------- /libs/ldns/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/ldns/zone.c -------------------------------------------------------------------------------- /libs/libcodec2/.update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libcodec2/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libcodec2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libcodec2/COPYING -------------------------------------------------------------------------------- /libs/libcodec2/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libcodec2/INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libcodec2/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libcodec2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libcodec2/README -------------------------------------------------------------------------------- /libs/libcodec2/src/codebook/lspdt10.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -50 3 | 50 4 | -------------------------------------------------------------------------------- /libs/libcodec2/src/codebook/lspdt7.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -50 3 | 50 4 | -------------------------------------------------------------------------------- /libs/libcodec2/src/codebook/lspdt8.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -50 3 | 50 4 | -------------------------------------------------------------------------------- /libs/libcodec2/src/codebook/lspdt9.txt: -------------------------------------------------------------------------------- 1 | 1 2 2 | -50 3 | 50 4 | -------------------------------------------------------------------------------- /libs/libcodec2/src/codebook/lspres_bw1.txt: -------------------------------------------------------------------------------- 1 | 1 4 2 | 35 3 | 80 4 | 140 5 | 250 6 | -------------------------------------------------------------------------------- /libs/libdingaling/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 9 17:53:09 CST 2007 2 | -------------------------------------------------------------------------------- /libs/libdingaling/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libdingaling/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libdingaling/NEWS -------------------------------------------------------------------------------- /libs/libdingaling/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libdingaling/doc -------------------------------------------------------------------------------- /libs/libedit/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/COPYING -------------------------------------------------------------------------------- /libs/libedit/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/ChangeLog -------------------------------------------------------------------------------- /libs/libedit/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/INSTALL -------------------------------------------------------------------------------- /libs/libedit/THANKS: -------------------------------------------------------------------------------- 1 | Thanks to the NetBSD Project maintainers of libedit! 2 | -------------------------------------------------------------------------------- /libs/libedit/patches/timestamp.cvsexport: -------------------------------------------------------------------------------- 1 | 20070831 2 | -------------------------------------------------------------------------------- /libs/libedit/src/el.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/el.c -------------------------------------------------------------------------------- /libs/libedit/src/el.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/el.h -------------------------------------------------------------------------------- /libs/libedit/src/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/key.c -------------------------------------------------------------------------------- /libs/libedit/src/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/key.h -------------------------------------------------------------------------------- /libs/libedit/src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/map.c -------------------------------------------------------------------------------- /libs/libedit/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/map.h -------------------------------------------------------------------------------- /libs/libedit/src/sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/sig.c -------------------------------------------------------------------------------- /libs/libedit/src/sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/sig.h -------------------------------------------------------------------------------- /libs/libedit/src/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/sys.h -------------------------------------------------------------------------------- /libs/libedit/src/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/tty.c -------------------------------------------------------------------------------- /libs/libedit/src/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/tty.h -------------------------------------------------------------------------------- /libs/libedit/src/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/vi.c -------------------------------------------------------------------------------- /libs/libedit/src/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/vis.c -------------------------------------------------------------------------------- /libs/libedit/src/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libedit/src/vis.h -------------------------------------------------------------------------------- /libs/libg722_1/.update: -------------------------------------------------------------------------------- 1 | Mon Jun 8 12:13:41 EDT 2009 2 | -------------------------------------------------------------------------------- /libs/libg722_1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libg722_1/AUTHORS -------------------------------------------------------------------------------- /libs/libg722_1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libg722_1/COPYING -------------------------------------------------------------------------------- /libs/libg722_1/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libg722_1/INSTALL -------------------------------------------------------------------------------- /libs/libg722_1/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libg722_1/NEWS -------------------------------------------------------------------------------- /libs/libg722_1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libg722_1/README -------------------------------------------------------------------------------- /libs/libg722_1/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /libs/libks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libks/Makefile -------------------------------------------------------------------------------- /libs/libks/src/ks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libks/src/ks.c -------------------------------------------------------------------------------- /libs/libks/src/mpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libks/src/mpool.c -------------------------------------------------------------------------------- /libs/libks/src/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libks/src/table.c -------------------------------------------------------------------------------- /libs/libnatpmp/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libnatpmp/LICENCE -------------------------------------------------------------------------------- /libs/libnatpmp/wingettimeofday.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libscgi/FSSCGI.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libscgi/FSSCGI.i -------------------------------------------------------------------------------- /libs/libscgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libscgi/Makefile -------------------------------------------------------------------------------- /libs/libsndfile/.update: -------------------------------------------------------------------------------- 1 | Fri Feb 28 03:45:32 CDT 2014 2 | -------------------------------------------------------------------------------- /libs/libsndfile/Cfg/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libsndfile/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libsndfile/NEWS -------------------------------------------------------------------------------- /libs/libsndfile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libsndfile/README -------------------------------------------------------------------------------- /libs/libsndfile/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libsndfile/TODO -------------------------------------------------------------------------------- /libs/libsndfile/src/G72x/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libteletone/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 16 17:18:25 EDT 2007 2 | -------------------------------------------------------------------------------- /libs/libteletone/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libteletone/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libteletone/NEWS -------------------------------------------------------------------------------- /libs/libtpl-1.5/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | EXTRA_DIST = LICENSE tests lang doc 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libtpl-1.5/README -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test11.ans: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test14.ans: -------------------------------------------------------------------------------- 1 | -2 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test15.ans: -------------------------------------------------------------------------------- 1 | -3 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test16.ans: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test17.ans: -------------------------------------------------------------------------------- 1 | 1,a 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test18.ans: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test19.ans: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -1 5 | -2 6 | -3 7 | -4 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test20.ans: -------------------------------------------------------------------------------- 1 | tpl files identical 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test21.ans: -------------------------------------------------------------------------------- 1 | A(i) 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test22.ans: -------------------------------------------------------------------------------- 1 | i#i# 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test4.ans: -------------------------------------------------------------------------------- 1 | tpl files identical 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test7.ans: -------------------------------------------------------------------------------- 1 | tpl files identical 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/lang/perl/tests/test8.ans: -------------------------------------------------------------------------------- 1 | tpl files identical 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test1.ans: -------------------------------------------------------------------------------- 1 | j is 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test1.out: -------------------------------------------------------------------------------- 1 | j is 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test100.ans: -------------------------------------------------------------------------------- 1 | fmt: S(ic) 2 | p: 1 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test100.out: -------------------------------------------------------------------------------- 1 | fmt: S(ic) 2 | p: 1 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test101.ans: -------------------------------------------------------------------------------- 1 | TPL_DATAPEEK format mismatches tpl iamge 2 | peek failed 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test101.out: -------------------------------------------------------------------------------- 1 | TPL_DATAPEEK format mismatches tpl iamge 2 | peek failed 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test102.ans: -------------------------------------------------------------------------------- 1 | fmt: c 2 | q: ! 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test102.out: -------------------------------------------------------------------------------- 1 | fmt: c 2 | q: ! 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test107.ans: -------------------------------------------------------------------------------- 1 | 0 cat 2 | 1 dog 3 | 2 eel 4 | 3 emu 5 | 4 ant 6 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test107.out: -------------------------------------------------------------------------------- 1 | 0 cat 2 | 1 dog 3 | 2 eel 4 | 3 emu 5 | 4 ant 6 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test109.ans: -------------------------------------------------------------------------------- 1 | sizeof(s): 12 2 | structures match 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test109.out: -------------------------------------------------------------------------------- 1 | sizeof(s): 12 2 | structures match 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test11.ans: -------------------------------------------------------------------------------- 1 | test11.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test11.out: -------------------------------------------------------------------------------- 1 | test11.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test110.ans: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test110.out: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test111.ans: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test111.out: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test112.ans: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test112.out: -------------------------------------------------------------------------------- 1 | structures match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test114.ans: -------------------------------------------------------------------------------- 1 | matrices match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test114.out: -------------------------------------------------------------------------------- 1 | matrices match 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test116.ans: -------------------------------------------------------------------------------- 1 | 1 a 2 | alpha 3 | beta 4 | gamma 5 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test116.out: -------------------------------------------------------------------------------- 1 | 1 a 2 | alpha 3 | beta 4 | gamma 5 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test119.ans: -------------------------------------------------------------------------------- 1 | size is 1726 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test119.out: -------------------------------------------------------------------------------- 1 | size is 1726 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test12.ans: -------------------------------------------------------------------------------- 1 | test12.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test12.out: -------------------------------------------------------------------------------- 1 | test12.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test120.err: -------------------------------------------------------------------------------- 1 | tpl_dump: buffer too small, need 57 bytes 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test121.ans: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three 4 | eins 5 | zwei 6 | drei 7 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test121.out: -------------------------------------------------------------------------------- 1 | one 2 | two 3 | three 4 | eins 5 | zwei 6 | drei 7 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test122.ans: -------------------------------------------------------------------------------- 1 | 1 abc 3.140000 a 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test122.out: -------------------------------------------------------------------------------- 1 | 1 abc 3.140000 a 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test123.ans: -------------------------------------------------------------------------------- 1 | caught error! 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test123.err: -------------------------------------------------------------------------------- 1 | unsupported option @ 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test123.out: -------------------------------------------------------------------------------- 1 | caught error! 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test124.ans: -------------------------------------------------------------------------------- 1 | mapped 2 | freed 3 | abcdefghi first 4 | jklmnopqr second 5 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test124.out: -------------------------------------------------------------------------------- 1 | mapped 2 | freed 3 | abcdefghi first 4 | jklmnopqr second 5 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test13.ans: -------------------------------------------------------------------------------- 1 | test13.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test13.out: -------------------------------------------------------------------------------- 1 | test13.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test14.ans: -------------------------------------------------------------------------------- 1 | test14.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test14.out: -------------------------------------------------------------------------------- 1 | test14.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test15.ans: -------------------------------------------------------------------------------- 1 | test15.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test15.out: -------------------------------------------------------------------------------- 1 | test15.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test16.ans: -------------------------------------------------------------------------------- 1 | test16.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test16.out: -------------------------------------------------------------------------------- 1 | test16.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test17.ans: -------------------------------------------------------------------------------- 1 | test17.tpl: format signature mismatch 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test17.out: -------------------------------------------------------------------------------- 1 | test17.tpl: format signature mismatch 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test2.ans: -------------------------------------------------------------------------------- 1 | j is 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test2.out: -------------------------------------------------------------------------------- 1 | j is 1 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test25.ans: -------------------------------------------------------------------------------- 1 | test25.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test25.out: -------------------------------------------------------------------------------- 1 | test25.tpl: not a valid tpl file 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test26.ans: -------------------------------------------------------------------------------- 1 | 3 tpls gathered. 2 | 999045 is their sum. 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test26.out: -------------------------------------------------------------------------------- 1 | 3 tpls gathered. 2 | 999045 is their sum. 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test28.ans: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test28.out: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test29.ans: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | abcdefghijklmnopqrstuvwxyz 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test29.out: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | abcdefghijklmnopqrstuvwxyz 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test30.ans: -------------------------------------------------------------------------------- 1 | buffer length: 4 2 | good 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test30.out: -------------------------------------------------------------------------------- 1 | buffer length: 4 2 | good 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test31.ans: -------------------------------------------------------------------------------- 1 | buffer length: 0 2 | 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test31.out: -------------------------------------------------------------------------------- 1 | buffer length: 0 2 | 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test35.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test35.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test37.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test37.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test40.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test40.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test41.ans: -------------------------------------------------------------------------------- 1 | a b 2 | 1 2 3 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test41.out: -------------------------------------------------------------------------------- 1 | a b 2 | 1 2 3 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test42.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test42.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test43.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test43.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test44.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test44.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test46.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test46.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test47.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test47.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test48.ans: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test48.out: -------------------------------------------------------------------------------- 1 | 0 1 2 3 4 5 6 7 8 9 -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test49.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test49.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test50.ans: -------------------------------------------------------------------------------- 1 | bob 2 | betty 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test50.out: -------------------------------------------------------------------------------- 1 | bob 2 | betty 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test51.ans: -------------------------------------------------------------------------------- 1 | num_tpls: 4, sum: 180 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test51.out: -------------------------------------------------------------------------------- 1 | num_tpls: 4, sum: 180 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test51_3.tpl: -------------------------------------------------------------------------------- 1 | c```a```b6 fb -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test51_4.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test54_3.tpl: -------------------------------------------------------------------------------- 1 | c```a```b6 fb -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test54_4.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test57.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test57.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test6.ans: -------------------------------------------------------------------------------- 1 | t is hello, world! 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test6.out: -------------------------------------------------------------------------------- 1 | t is hello, world! 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test65.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test65.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test66.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test66.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test68.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test68.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test70.ans: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test70.out: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test71.ans: -------------------------------------------------------------------------------- 1 | # 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test71.out: -------------------------------------------------------------------------------- 1 | # 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test72.ans: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test72.out: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | y 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test73.ans: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | tdh 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test73.out: -------------------------------------------------------------------------------- 1 | a 2 | 1 3 | hi 4 | o 5 | matilda 6 | tdh 7 | 3.140000 8 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test75.ans: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test75.out: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test76.ans: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test76.out: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test77.ans: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test77.out: -------------------------------------------------------------------------------- 1 | string 2 | byte array 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test78.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test78.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test80.ans: -------------------------------------------------------------------------------- 1 | a 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test80.out: -------------------------------------------------------------------------------- 1 | a 0 1 2 3 4 5 6 7 8 9 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test82.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test82.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test85.ans: -------------------------------------------------------------------------------- 1 | cA(i#)S(cf#)A(ci#) 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test85.out: -------------------------------------------------------------------------------- 1 | cA(i#)S(cf#)A(ci#) 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test86.ans: -------------------------------------------------------------------------------- 1 | A(A(i)) 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test86.out: -------------------------------------------------------------------------------- 1 | A(A(i)) 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test87.ans: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test87.out: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test88.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test88.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test89.ans: -------------------------------------------------------------------------------- 1 | 1 2 | abc 3 | 3.14 4 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test89.out: -------------------------------------------------------------------------------- 1 | 1 2 | abc 3 | 3.14 4 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test90.ans: -------------------------------------------------------------------------------- 1 | cn is equal to cn2 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test90.out: -------------------------------------------------------------------------------- 1 | cn is equal to cn2 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test91.ans: -------------------------------------------------------------------------------- 1 | cn is equal to cn2 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test91.out: -------------------------------------------------------------------------------- 1 | cn is equal to cn2 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test92.ans: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test92.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test93.ans: -------------------------------------------------------------------------------- 1 | s is null 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test93.out: -------------------------------------------------------------------------------- 1 | s is null 2 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test95.ans: -------------------------------------------------------------------------------- 1 | s1 NULL 2 | s2 3 | s3 hello 4 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test95.out: -------------------------------------------------------------------------------- 1 | s1 NULL 2 | s2 3 | s3 hello 4 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test99.ans: -------------------------------------------------------------------------------- 1 | cA(i#)S(cf#)A(ci#) 2 | & 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/test99.out: -------------------------------------------------------------------------------- 1 | cA(i#)S(cf#)A(ci#) 2 | & 3 | -------------------------------------------------------------------------------- /libs/libtpl-1.5/tests/threads/test1.ans: -------------------------------------------------------------------------------- 1 | sum is 49995000 2 | thread result: 0 null 3 | -------------------------------------------------------------------------------- /libs/libzrtp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libzrtp/AUTHORS -------------------------------------------------------------------------------- /libs/libzrtp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libzrtp/COPYING -------------------------------------------------------------------------------- /libs/libzrtp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libzrtp/ChangeLog -------------------------------------------------------------------------------- /libs/libzrtp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libzrtp/INSTALL -------------------------------------------------------------------------------- /libs/libzrtp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/libzrtp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/libzrtp/README -------------------------------------------------------------------------------- /libs/libzrtp/projects/symbian/bld.bat: -------------------------------------------------------------------------------- 1 | bldmake bldfiles -------------------------------------------------------------------------------- /libs/libzrtp/projects/symbian/bldgcce.bat: -------------------------------------------------------------------------------- 1 | abld build gcce urel 2 | pause -------------------------------------------------------------------------------- /libs/libzrtp/third_party/bnlib/bootstrap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | aclocal 4 | autoconf 5 | 6 | -------------------------------------------------------------------------------- /libs/miniupnpc/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/miniupnpc/LICENCE -------------------------------------------------------------------------------- /libs/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/miniupnpc/README -------------------------------------------------------------------------------- /libs/miniupnpc/upnpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/miniupnpc/upnpc.c -------------------------------------------------------------------------------- /libs/openzap/.update: -------------------------------------------------------------------------------- 1 | Fri Oct 3 17:54:41 EDT 2008 2 | -------------------------------------------------------------------------------- /libs/openzap/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openzap/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openzap/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/openzap/README: -------------------------------------------------------------------------------- 1 | OPENZAP (WORK IN PROGRESS) 2 | 3 | *shrug* 4 | -------------------------------------------------------------------------------- /libs/openzap/acinclude.m4: -------------------------------------------------------------------------------- 1 | m4_include([build/libpcap.m4]) 2 | -------------------------------------------------------------------------------- /libs/openzap/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/openzap/bootstrap -------------------------------------------------------------------------------- /libs/openzap/src/fsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/openzap/src/fsk.c -------------------------------------------------------------------------------- /libs/openzap/src/ss7/README: -------------------------------------------------------------------------------- 1 | SS7 Coming soon 2 | 3 | -Shane Burrell- 4 | -------------------------------------------------------------------------------- /libs/portaudio/.update: -------------------------------------------------------------------------------- 1 | Fri Mar 16 17:19:02 EDT 2007 2 | -------------------------------------------------------------------------------- /libs/portaudio/bindings/cpp/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/portaudio/bindings/cpp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/portaudio/bindings/cpp/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/portaudio/bindings/cpp/build/gnu/OUT_OF_DATE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/portaudio/bindings/cpp/build/vc7/OUT_OF_DATE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/portaudio/doc/html/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/silk/.update: -------------------------------------------------------------------------------- 1 | Tue Nov 1 11:51:42 CDT 2011 2 | -------------------------------------------------------------------------------- /libs/silk/AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/silk/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/COPYING -------------------------------------------------------------------------------- /libs/silk/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/silk/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/INSTALL -------------------------------------------------------------------------------- /libs/silk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/Makefile.am -------------------------------------------------------------------------------- /libs/silk/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/silk/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/silk/Silk_SDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/Silk_SDK.sln -------------------------------------------------------------------------------- /libs/silk/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/configure.ac -------------------------------------------------------------------------------- /libs/silk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/silk/readme.txt -------------------------------------------------------------------------------- /libs/sofia-sip/.update: -------------------------------------------------------------------------------- 1 | Thu Mar 20 13:08:14 CDT 2014 2 | -------------------------------------------------------------------------------- /libs/sofia-sip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sofia-sip/AUTHORS -------------------------------------------------------------------------------- /libs/sofia-sip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sofia-sip/COPYING -------------------------------------------------------------------------------- /libs/sofia-sip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sofia-sip/README -------------------------------------------------------------------------------- /libs/sofia-sip/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sofia-sip/RELEASE -------------------------------------------------------------------------------- /libs/sofia-sip/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sofia-sip/TODO -------------------------------------------------------------------------------- /libs/sofia-sip/autoconf-all.cmd: -------------------------------------------------------------------------------- 1 | @setlocal 2 | 3 | @cd open_c 4 | @call autogen.cmd 5 | 6 | -------------------------------------------------------------------------------- /libs/sofia-sip/libsofia-sip-ua/nta/run_check_nta: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $VALGRIND exec ./check_nta "$@" -------------------------------------------------------------------------------- /libs/sofia-sip/libsofia-sip-ua/sdp/tests/message-1.sdp: -------------------------------------------------------------------------------- 1 | v=1 2 | -------------------------------------------------------------------------------- /libs/sofia-sip/libsofia-sip-ua/sip/tests/own8.txt: -------------------------------------------------------------------------------- 1 | JUNK * SIP/1.0 2 | -------------------------------------------------------------------------------- /libs/sofia-sip/win32/tests/test_nua/test_nat_tags.cpp: -------------------------------------------------------------------------------- 1 | #include "test_nat_tags.c" 2 | -------------------------------------------------------------------------------- /libs/sofia-sip/win32/tests/test_tport/test_class.cpp: -------------------------------------------------------------------------------- 1 | #include "test_class.c" 2 | -------------------------------------------------------------------------------- /libs/sofia-sip/win32/tests/test_tport/test_table.cpp: -------------------------------------------------------------------------------- 1 | #include "test_table.c" 2 | -------------------------------------------------------------------------------- /libs/spandsp/.update: -------------------------------------------------------------------------------- 1 | Tue Dec 6 17:55:59 CST 2011 2 | -------------------------------------------------------------------------------- /libs/spandsp/AUTHORS: -------------------------------------------------------------------------------- 1 | Steve Underwood 2 | -------------------------------------------------------------------------------- /libs/spandsp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/COPYING -------------------------------------------------------------------------------- /libs/spandsp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/ChangeLog -------------------------------------------------------------------------------- /libs/spandsp/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/NEWS -------------------------------------------------------------------------------- /libs/spandsp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/README -------------------------------------------------------------------------------- /libs/spandsp/config/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/spandsp/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /libs/spandsp/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/crc.c -------------------------------------------------------------------------------- /libs/spandsp/src/fax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/fax.c -------------------------------------------------------------------------------- /libs/spandsp/src/fsk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/fsk.c -------------------------------------------------------------------------------- /libs/spandsp/src/msvc/tiff/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/spandsp/src/plc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/plc.c -------------------------------------------------------------------------------- /libs/spandsp/src/t30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/t30.c -------------------------------------------------------------------------------- /libs/spandsp/src/t31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/t31.c -------------------------------------------------------------------------------- /libs/spandsp/src/t35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/t35.c -------------------------------------------------------------------------------- /libs/spandsp/src/t42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/t42.c -------------------------------------------------------------------------------- /libs/spandsp/src/t43.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/t43.c -------------------------------------------------------------------------------- /libs/spandsp/src/v18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/v18.c -------------------------------------------------------------------------------- /libs/spandsp/src/v42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/v42.c -------------------------------------------------------------------------------- /libs/spandsp/src/v8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/spandsp/src/v8.c -------------------------------------------------------------------------------- /libs/sqlite/.update: -------------------------------------------------------------------------------- 1 | Tue Aug 2 13:04:55 CDT 2011 2 | -------------------------------------------------------------------------------- /libs/sqlite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/README -------------------------------------------------------------------------------- /libs/sqlite/VERSION: -------------------------------------------------------------------------------- 1 | 3.3.13 2 | -------------------------------------------------------------------------------- /libs/sqlite/art/tmp/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/sqlite/main.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/main.mk -------------------------------------------------------------------------------- /libs/sqlite/mkdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/mkdll.sh -------------------------------------------------------------------------------- /libs/sqlite/mkso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/mkso.sh -------------------------------------------------------------------------------- /libs/sqlite/notes/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/sqlite/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/publish.sh -------------------------------------------------------------------------------- /libs/sqlite/sqlite3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/sqlite3.1 -------------------------------------------------------------------------------- /libs/sqlite/src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/auth.c -------------------------------------------------------------------------------- /libs/sqlite/src/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/date.c -------------------------------------------------------------------------------- /libs/sqlite/src/ex/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/sqlite/src/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/expr.c -------------------------------------------------------------------------------- /libs/sqlite/src/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/func.c -------------------------------------------------------------------------------- /libs/sqlite/src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/hash.c -------------------------------------------------------------------------------- /libs/sqlite/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/hash.h -------------------------------------------------------------------------------- /libs/sqlite/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/main.c -------------------------------------------------------------------------------- /libs/sqlite/src/os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/os.c -------------------------------------------------------------------------------- /libs/sqlite/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/os.h -------------------------------------------------------------------------------- /libs/sqlite/src/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/utf.c -------------------------------------------------------------------------------- /libs/sqlite/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/util.c -------------------------------------------------------------------------------- /libs/sqlite/src/vdbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/vdbe.c -------------------------------------------------------------------------------- /libs/sqlite/src/vdbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/vdbe.h -------------------------------------------------------------------------------- /libs/sqlite/src/vtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/sqlite/src/vtab.c -------------------------------------------------------------------------------- /libs/srtp/.update: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/AUTHORS -------------------------------------------------------------------------------- /libs/srtp/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/CHANGES -------------------------------------------------------------------------------- /libs/srtp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/COPYING -------------------------------------------------------------------------------- /libs/srtp/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/INSTALL -------------------------------------------------------------------------------- /libs/srtp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/LICENSE -------------------------------------------------------------------------------- /libs/srtp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/Makefile.am -------------------------------------------------------------------------------- /libs/srtp/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/srtp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/README -------------------------------------------------------------------------------- /libs/srtp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/TODO -------------------------------------------------------------------------------- /libs/srtp/VERSION: -------------------------------------------------------------------------------- 1 | 1.4.5 2 | -------------------------------------------------------------------------------- /libs/srtp/acsite.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/acsite.m4 -------------------------------------------------------------------------------- /libs/srtp/config.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/config.hw -------------------------------------------------------------------------------- /libs/srtp/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/configure.ac -------------------------------------------------------------------------------- /libs/srtp/crypto/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /libs/srtp/crypto/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /libs/srtp/crypto/include/.cvsignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /libs/srtp/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/doc/Doxyfile -------------------------------------------------------------------------------- /libs/srtp/srtp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/srtp.def -------------------------------------------------------------------------------- /libs/srtp/srtp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/srtp.vcproj -------------------------------------------------------------------------------- /libs/srtp/srtp/ekt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/srtp/ekt.c -------------------------------------------------------------------------------- /libs/srtp/srtp/srtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/srtp/srtp.c -------------------------------------------------------------------------------- /libs/srtp/test/lfsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/test/lfsr.c -------------------------------------------------------------------------------- /libs/srtp/test/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/test/rtp.c -------------------------------------------------------------------------------- /libs/srtp/test/rtpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/test/rtpw.c -------------------------------------------------------------------------------- /libs/srtp/timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/timing -------------------------------------------------------------------------------- /libs/srtp/undos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/undos.sh -------------------------------------------------------------------------------- /libs/srtp/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/srtp/update.sh -------------------------------------------------------------------------------- /libs/tiff-4.0.2/.update: -------------------------------------------------------------------------------- 1 | Tue Dec 6 17:55:59 CST 2011 2 | -------------------------------------------------------------------------------- /libs/tiff-4.0.2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/tiff-4.0.2/README -------------------------------------------------------------------------------- /libs/tiff-4.0.2/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20120615 2 | -------------------------------------------------------------------------------- /libs/tiff-4.0.2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/tiff-4.0.2/TODO -------------------------------------------------------------------------------- /libs/tiff-4.0.2/VERSION: -------------------------------------------------------------------------------- 1 | 4.0.2 2 | -------------------------------------------------------------------------------- /libs/tiff-4.0.2/config/.emptydir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/unimrcp/.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | -------------------------------------------------------------------------------- /libs/unimrcp/.update: -------------------------------------------------------------------------------- 1 | Thu Jun 16 15:02:31 UTC 2011 2 | -------------------------------------------------------------------------------- /libs/unimrcp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/AUTHORS -------------------------------------------------------------------------------- /libs/unimrcp/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/INSTALL -------------------------------------------------------------------------------- /libs/unimrcp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/LICENSE -------------------------------------------------------------------------------- /libs/unimrcp/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/NOTICE -------------------------------------------------------------------------------- /libs/unimrcp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/README -------------------------------------------------------------------------------- /libs/unimrcp/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/unimrcp/bootstrap -------------------------------------------------------------------------------- /libs/unimrcp/data/speak.txt: -------------------------------------------------------------------------------- 1 | Welcome to Uni MRCP. -------------------------------------------------------------------------------- /libs/unimrcp/tests/mrcptest/v1/pause.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | PAUSE 543258 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /libs/unimrcp/tests/mrcptest/v1/resume.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | RESUME 543260 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /libs/unimrcp/tests/mrcptest/v1/stop.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | STOP 543258 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /libs/win32/apr-util/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/apr/apr.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/win32/apr/apr.hw -------------------------------------------------------------------------------- /libs/win32/apr/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/curl/ca-bundle.h: -------------------------------------------------------------------------------- 1 | /* ca bundle path set in here*/ 2 | -------------------------------------------------------------------------------- /libs/win32/curl/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/iksemel/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/js/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libresample/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/libshout/compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/win32/libsndfile/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/pcre/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/pcre/pcre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/win32/pcre/pcre.h -------------------------------------------------------------------------------- /libs/win32/pthread/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/sofia/cleancount: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /libs/win32/speex/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/sqlite/cleancount: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /libs/win32/util.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/win32/util.vbs -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/xmlrpc-c/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/xmlrpc-c/README -------------------------------------------------------------------------------- /libs/xmlrpc-c/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/xmlrpc-c/doc/TODO -------------------------------------------------------------------------------- /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/traviscross/freeswitch/HEAD/libs/xmlrpc-c/missing -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/xmlrpc-c/src/cpp/Makefile.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/LICENSE -------------------------------------------------------------------------------- /libs/yaml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/Makefile.am -------------------------------------------------------------------------------- /libs/yaml/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/Makefile.in -------------------------------------------------------------------------------- /libs/yaml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/README -------------------------------------------------------------------------------- /libs/yaml/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/aclocal.m4 -------------------------------------------------------------------------------- /libs/yaml/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/config.h.in -------------------------------------------------------------------------------- /libs/yaml/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/configure -------------------------------------------------------------------------------- /libs/yaml/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/configure.ac -------------------------------------------------------------------------------- /libs/yaml/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/api.c -------------------------------------------------------------------------------- /libs/yaml/src/dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/dumper.c -------------------------------------------------------------------------------- /libs/yaml/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/loader.c -------------------------------------------------------------------------------- /libs/yaml/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/parser.c -------------------------------------------------------------------------------- /libs/yaml/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/reader.c -------------------------------------------------------------------------------- /libs/yaml/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/libs/yaml/src/writer.c -------------------------------------------------------------------------------- /scripts/ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/ci/common.sh -------------------------------------------------------------------------------- /scripts/dailys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/dailys.sh -------------------------------------------------------------------------------- /scripts/debug_sofia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/debug_sofia.sh -------------------------------------------------------------------------------- /scripts/freeswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/freeswitch.sh -------------------------------------------------------------------------------- /scripts/fsxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/fsxs.in -------------------------------------------------------------------------------- /scripts/gentls_cert.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/gentls_cert.in -------------------------------------------------------------------------------- /scripts/lua/api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/lua/api.lua -------------------------------------------------------------------------------- /scripts/m4a-to-wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/m4a-to-wav.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/traviscross/freeswitch/HEAD/scripts/perl/add_user -------------------------------------------------------------------------------- /scripts/perl/call.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/call.cgi -------------------------------------------------------------------------------- /scripts/perl/cnam.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/cnam.cgi -------------------------------------------------------------------------------- /scripts/perl/fs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/fs.pl -------------------------------------------------------------------------------- /scripts/perl/fslog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/fslog -------------------------------------------------------------------------------- /scripts/perl/rpc.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/rpc.cgi -------------------------------------------------------------------------------- /scripts/perl/sendmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/sendmail -------------------------------------------------------------------------------- /scripts/perl/sock.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/perl/sock.pl -------------------------------------------------------------------------------- /scripts/php/call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/php/call.php -------------------------------------------------------------------------------- /scripts/py_modules/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /scripts/rss/rss2ivr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/rss/rss2ivr.pl -------------------------------------------------------------------------------- /scripts/rss/syncrss.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/rss/syncrss.pl -------------------------------------------------------------------------------- /scripts/setup-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/setup-git.sh -------------------------------------------------------------------------------- /scripts/sql/cdr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/sql/cdr.sql -------------------------------------------------------------------------------- /scripts/tagscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/tagscript.sh -------------------------------------------------------------------------------- /scripts/trace/sipgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/trace/sipgrep -------------------------------------------------------------------------------- /scripts/yes_no.gram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/scripts/yes_no.gram -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = mod 2 | -------------------------------------------------------------------------------- /src/fs_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/fs_encode.c -------------------------------------------------------------------------------- /src/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/g711.c -------------------------------------------------------------------------------- /src/include/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/include/cc.h -------------------------------------------------------------------------------- /src/include/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/include/g711.h -------------------------------------------------------------------------------- /src/include/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/include/switch.h -------------------------------------------------------------------------------- /src/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/inet_pton.c -------------------------------------------------------------------------------- /src/mod/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/mod/.gitignore -------------------------------------------------------------------------------- /src/mod/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/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/debian/dirs: -------------------------------------------------------------------------------- 1 | /var/run/gsm-utils 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_gsmopen/mobigater: -------------------------------------------------------------------------------- 1 | alsa_nogsmlib_nocplusplus -------------------------------------------------------------------------------- /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_skypopen/configs/skype-client-configuration-dir-template/skypeclient00/shared.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/configs/skype-client-configuration-dir-template/skypeclient01/shared.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mod/endpoints/mod_skypopen/old-stuff/asterisk/README: -------------------------------------------------------------------------------- 1 | Skypopen for asterisk does not work yet. 2 | -------------------------------------------------------------------------------- /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_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/traviscross/freeswitch/HEAD/src/switch.c -------------------------------------------------------------------------------- /src/switch_apr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_apr.c -------------------------------------------------------------------------------- /src/switch_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_buffer.c -------------------------------------------------------------------------------- /src/switch_caller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_caller.c -------------------------------------------------------------------------------- /src/switch_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_channel.c -------------------------------------------------------------------------------- /src/switch_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_config.c -------------------------------------------------------------------------------- /src/switch_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_console.c -------------------------------------------------------------------------------- /src/switch_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core.c -------------------------------------------------------------------------------- /src/switch_core_asr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_asr.c -------------------------------------------------------------------------------- /src/switch_core_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_cert.c -------------------------------------------------------------------------------- /src/switch_core_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_db.c -------------------------------------------------------------------------------- /src/switch_core_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_file.c -------------------------------------------------------------------------------- /src/switch_core_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_hash.c -------------------------------------------------------------------------------- /src/switch_core_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_core_io.c -------------------------------------------------------------------------------- /src/switch_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_cpp.cpp -------------------------------------------------------------------------------- /src/switch_curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_curl.c -------------------------------------------------------------------------------- /src/switch_dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_dso.c -------------------------------------------------------------------------------- /src/switch_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_event.c -------------------------------------------------------------------------------- /src/switch_hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_hashtable.c -------------------------------------------------------------------------------- /src/switch_ivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_ivr.c -------------------------------------------------------------------------------- /src/switch_ivr_async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_ivr_async.c -------------------------------------------------------------------------------- /src/switch_ivr_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_ivr_menu.c -------------------------------------------------------------------------------- /src/switch_ivr_say.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_ivr_say.c -------------------------------------------------------------------------------- /src/switch_json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_json.c -------------------------------------------------------------------------------- /src/switch_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_limit.c -------------------------------------------------------------------------------- /src/switch_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_log.c -------------------------------------------------------------------------------- /src/switch_mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_mprintf.c -------------------------------------------------------------------------------- /src/switch_nat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_nat.c -------------------------------------------------------------------------------- /src/switch_odbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_odbc.c -------------------------------------------------------------------------------- /src/switch_pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_pcm.c -------------------------------------------------------------------------------- /src/switch_pgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_pgsql.c -------------------------------------------------------------------------------- /src/switch_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_profile.c -------------------------------------------------------------------------------- /src/switch_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_regex.c -------------------------------------------------------------------------------- /src/switch_resample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_resample.c -------------------------------------------------------------------------------- /src/switch_rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_rtp.c -------------------------------------------------------------------------------- /src/switch_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_scheduler.c -------------------------------------------------------------------------------- /src/switch_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_sdp.c -------------------------------------------------------------------------------- /src/switch_speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_speex.c -------------------------------------------------------------------------------- /src/switch_stfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_stfu.c -------------------------------------------------------------------------------- /src/switch_stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_stun.c -------------------------------------------------------------------------------- /src/switch_swig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_swig.c -------------------------------------------------------------------------------- /src/switch_swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_swig.i -------------------------------------------------------------------------------- /src/switch_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_time.c -------------------------------------------------------------------------------- /src/switch_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_utils.c -------------------------------------------------------------------------------- /src/switch_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_version.c -------------------------------------------------------------------------------- /src/switch_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/switch_xml.c -------------------------------------------------------------------------------- /src/tone2wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/src/tone2wav.c -------------------------------------------------------------------------------- /support-d/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/.bashrc -------------------------------------------------------------------------------- /support-d/.emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/.emacs -------------------------------------------------------------------------------- /support-d/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/.gdbinit -------------------------------------------------------------------------------- /support-d/.screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/.screenrc -------------------------------------------------------------------------------- /support-d/fscore_pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/fscore_pb -------------------------------------------------------------------------------- /support-d/gl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/gl -------------------------------------------------------------------------------- /support-d/prereq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/prereq.sh -------------------------------------------------------------------------------- /support-d/shinzon.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/support-d/shinzon.pub -------------------------------------------------------------------------------- /swig_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/swig_common.i -------------------------------------------------------------------------------- /w32/Console/FreeSwitchConsole.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /w32/Library/FreeSwitchCoreLib.rc: -------------------------------------------------------------------------------- 1 | #include "switch_version.rc2" 2 | -------------------------------------------------------------------------------- /w32/Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/Setup/Product.wxs -------------------------------------------------------------------------------- /w32/Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/Setup/Setup.vdproj -------------------------------------------------------------------------------- /w32/Setup/filter.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/Setup/filter.xslt -------------------------------------------------------------------------------- /w32/apr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/apr.props -------------------------------------------------------------------------------- /w32/apr.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/apr.vsprops -------------------------------------------------------------------------------- /w32/curl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/curl.props -------------------------------------------------------------------------------- /w32/curl.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/curl.vsprops -------------------------------------------------------------------------------- /w32/extdll.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/extdll.props -------------------------------------------------------------------------------- /w32/extlib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/extlib.props -------------------------------------------------------------------------------- /w32/module_debug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/module_debug.props -------------------------------------------------------------------------------- /w32/modules.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/modules.props -------------------------------------------------------------------------------- /w32/modules.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/modules.vsprops -------------------------------------------------------------------------------- /w32/spidermonkey.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/spidermonkey.props -------------------------------------------------------------------------------- /w32/v8-version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/v8-version.props -------------------------------------------------------------------------------- /w32/v8.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/v8.props -------------------------------------------------------------------------------- /w32/winlibs.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/winlibs.props -------------------------------------------------------------------------------- /w32/winlibs.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/winlibs.vsprops -------------------------------------------------------------------------------- /w32/xmlrpc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/xmlrpc.props -------------------------------------------------------------------------------- /w32/xmlrpc.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traviscross/freeswitch/HEAD/w32/xmlrpc.vsprops -------------------------------------------------------------------------------- /web/etc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/planet/.empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------