├── .gitignore ├── README.md ├── unimrcp-1.5.0 ├── .vscode │ ├── c_cpp_properties.json │ └── settings.json ├── AUTHORS ├── CHANGES ├── CMakeLists.txt ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.am ├── Makefile.in ├── NOTICE ├── README ├── acinclude.m4 ├── aclocal.m4 ├── autom4te.cache │ ├── output.0 │ ├── requests │ └── traces.0 ├── bootstrap ├── build │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── acmacros │ │ ├── apr.m4 │ │ ├── apr_common.m4 │ │ ├── apu.m4 │ │ ├── ax_compiler_vendor.m4 │ │ ├── find_apr.m4 │ │ ├── find_apu.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── sofia-sip.m4 │ │ └── uni_plugin.m4 │ ├── cmake │ │ ├── FindAPR.cmake │ │ ├── FindAPRUtil.cmake │ │ └── FindSofia.cmake │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── get-version.sh │ ├── init.d │ │ └── unimrcpserver │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ ├── pkgconfig │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── unimrcpclient.pc │ │ ├── unimrcpclient.pc.in │ │ ├── unimrcpplugin.pc │ │ ├── unimrcpplugin.pc.in │ │ ├── unimrcpserver.pc │ │ └── unimrcpserver.pc.in │ ├── props │ │ ├── apr.props │ │ ├── apt.props │ │ ├── mpf.props │ │ ├── mrcp.props │ │ ├── mrcpclient.props │ │ ├── mrcpengine.props │ │ ├── mrcpserver.props │ │ ├── mrcpsignaling.props │ │ ├── mrcpv2transport.props │ │ ├── sdk │ │ │ ├── unimrcpclient.props │ │ │ ├── unimrcpplugin.props │ │ │ ├── unimrcpsdk.props │ │ │ └── unimrcpserver.props │ │ ├── sofiasip.props │ │ ├── unibase.props │ │ ├── unibin-x64.props │ │ ├── unibin.props │ │ ├── unidebug.props │ │ ├── unilib-x64.props │ │ ├── unilib.props │ │ ├── unimrcpclient.props │ │ ├── unimrcpserver.props │ │ ├── uniplugin-x64.props │ │ ├── uniplugin.props │ │ ├── unirelease.props │ │ └── unirtsp.props │ ├── rules │ │ ├── uniclientapp.am │ │ ├── uniclientlib.am │ │ ├── uniplugin.am │ │ ├── uniserverapp.am │ │ └── uniserverlib.am │ ├── tools │ │ ├── prepare.vcproj │ │ ├── prepare.vcxproj │ │ ├── unimrcp_service.c │ │ ├── unimrcpservice.exe.manifest │ │ ├── unimrcpservice.rc │ │ ├── unimrcpservice.vcproj │ │ ├── unimrcpservice.vcxproj │ │ └── unimrcpservice.vcxproj.filters │ ├── uni_revision.h │ ├── uni_version.h │ └── vsprops │ │ ├── apr.vsprops │ │ ├── apt.vsprops │ │ ├── mpf.vsprops │ │ ├── mrcp.vsprops │ │ ├── mrcpclient.vsprops │ │ ├── mrcpengine.vsprops │ │ ├── mrcpserver.vsprops │ │ ├── mrcpsignaling.vsprops │ │ ├── mrcpv2transport.vsprops │ │ ├── sdk │ │ ├── unimrcpclient.vsprops │ │ ├── unimrcpplugin.vsprops │ │ ├── unimrcpsdk.vsprops │ │ └── unimrcpserver.vsprops │ │ ├── sofiasip.vsprops │ │ ├── unibase.vsprops │ │ ├── unibin-x64.vsprops │ │ ├── unibin.vsprops │ │ ├── unidebug.vsprops │ │ ├── unilib-x64.vsprops │ │ ├── unilib.vsprops │ │ ├── unimrcpclient.vsprops │ │ ├── unimrcpserver.vsprops │ │ ├── uniplugin-x64.vsprops │ │ ├── uniplugin.vsprops │ │ ├── unirelease.vsprops │ │ └── unirtsp.vsprops ├── conf │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── client-profiles │ │ ├── lumenvox.xml │ │ ├── nuance.xml │ │ ├── speechpro.xml │ │ └── unimrcp.xml │ ├── dirlayout.xml │ ├── logger.xml │ ├── umc-scenarios │ │ ├── README │ │ ├── dtmfrecognizer.xml │ │ ├── recognizer.xml │ │ ├── recogparams.xml │ │ ├── recorder.xml │ │ ├── synthesizer.xml │ │ └── verifier.xml │ ├── unimrcpclient.xml │ ├── unimrcpclient.xsd │ ├── unimrcpserver.xml │ └── unimrcpserver.xsd ├── config.layout ├── config.log ├── config.nice ├── config.status ├── configure ├── configure.ac ├── data │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── demo-16kHz.pcm │ ├── demo-8kHz.pcm │ ├── grammar.jsgf │ ├── grammar.mixed │ ├── grammar.srgs │ ├── grammar.xml │ ├── johnsmith-16kHz.pcm │ ├── johnsmith-8kHz.pcm │ ├── one-16kHz.pcm │ ├── one-8kHz.pcm │ ├── result-verification.xml │ ├── result.xml │ ├── speak.txt │ └── speak.xml ├── docs │ ├── dox │ │ └── html │ │ │ ├── annotated.html │ │ │ ├── apt_8h.html │ │ │ ├── apt_8h_source.html │ │ │ ├── apt__consumer__task_8h.html │ │ │ ├── apt__consumer__task_8h_source.html │ │ │ ├── apt__cyclic__queue_8h.html │ │ │ ├── apt__cyclic__queue_8h_source.html │ │ │ ├── apt__dir__layout_8h.html │ │ │ ├── apt__dir__layout_8h_source.html │ │ │ ├── apt__header__field_8h.html │ │ │ ├── apt__header__field_8h_source.html │ │ │ ├── apt__log_8h.html │ │ │ ├── apt__log_8h_source.html │ │ │ ├── apt__multipart__content_8h.html │ │ │ ├── apt__multipart__content_8h_source.html │ │ │ ├── apt__net_8h.html │ │ │ ├── apt__net_8h_source.html │ │ │ ├── apt__nlsml__doc_8h.html │ │ │ ├── apt__nlsml__doc_8h_source.html │ │ │ ├── apt__obj__list_8h.html │ │ │ ├── apt__obj__list_8h_source.html │ │ │ ├── apt__pair_8h.html │ │ │ ├── apt__pair_8h_source.html │ │ │ ├── apt__poller__task_8h.html │ │ │ ├── apt__poller__task_8h_source.html │ │ │ ├── apt__pollset_8h.html │ │ │ ├── apt__pollset_8h_source.html │ │ │ ├── apt__pool_8h.html │ │ │ ├── apt__pool_8h_source.html │ │ │ ├── apt__string_8h.html │ │ │ ├── apt__string_8h_source.html │ │ │ ├── apt__string__table_8h.html │ │ │ ├── apt__string__table_8h_source.html │ │ │ ├── apt__task_8h.html │ │ │ ├── apt__task_8h_source.html │ │ │ ├── apt__task__msg_8h.html │ │ │ ├── apt__task__msg_8h_source.html │ │ │ ├── apt__test__suite_8h.html │ │ │ ├── apt__test__suite_8h_source.html │ │ │ ├── apt__text__message_8h.html │ │ │ ├── apt__text__message_8h_source.html │ │ │ ├── apt__text__stream_8h.html │ │ │ ├── apt__text__stream_8h_source.html │ │ │ ├── apt__timer__queue_8h.html │ │ │ ├── apt__timer__queue_8h_source.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── demo__application_8h.html │ │ │ ├── demo__application_8h_source.html │ │ │ ├── demo__framework_8h.html │ │ │ ├── demo__framework_8h_source.html │ │ │ ├── demo__util_8h.html │ │ │ ├── demo__util_8h_source.html │ │ │ ├── deprecated.html │ │ │ ├── dir_068889aef22e3ff6af489fa0c02cce23.html │ │ │ ├── dir_08dc0d97c4c130d2cb5bc9b2b881487a.html │ │ │ ├── dir_0c98097257c2ae0d9b869d8640598357.html │ │ │ ├── dir_13a7f99e8eeb4b54f0ce1b9167967433.html │ │ │ ├── dir_1dd5d5f6c2306f870add6810d761b5f5.html │ │ │ ├── dir_2707c3403e90a69faf8a19ebb0007e60.html │ │ │ ├── dir_3321f7367ff9c18e72e64074f26b7c54.html │ │ │ ├── dir_342be8fa773ff0594874056fe107febd.html │ │ │ ├── dir_37247a4dbe52d673a7d6d4bedd51464d.html │ │ │ ├── dir_3c1f389eca1f441ba1c98a8d099f902a.html │ │ │ ├── dir_3cded4aa6edd94ca32b2a2b0f15fc5e2.html │ │ │ ├── dir_464d1a560473a29582f32959f4eadf66.html │ │ │ ├── dir_49e56c817e5e54854c35e136979f97ca.html │ │ │ ├── dir_4fef79e7177ba769987a8da36c892c5f.html │ │ │ ├── dir_53ec2cfbed5d6184fafcb25ff13296d7.html │ │ │ ├── dir_56bd2586b9fe2a9822edfdb8d8eacc35.html │ │ │ ├── dir_5eff1376af573822504c200d4ab68f87.html │ │ │ ├── dir_65f6e3bea03fc3846137b7e12fa55014.html │ │ │ ├── dir_6719ab1f1f7655efc2fa43f7eb574fd1.html │ │ │ ├── dir_691900c391d4387cdd52391f5c3727f2.html │ │ │ ├── dir_7a1417850a309db2be863ff6110d9a95.html │ │ │ ├── dir_7bc579334b157ec3b2360dd5a3ea1dd2.html │ │ │ ├── dir_7d58bce4dd3db0c10558766fa5aab783.html │ │ │ ├── dir_8213404c92762709e2b5917d35980ced.html │ │ │ ├── dir_8a8e9e2d5e963ee8e32a7dc7a1b3824c.html │ │ │ ├── dir_8acf2c0976ea127f76664f3e31e665dc.html │ │ │ ├── dir_92459038e0c04805cc4a923303ee7ebb.html │ │ │ ├── dir_94477f215d1a999cf0ec33f8a2ea64b1.html │ │ │ ├── dir_995e6b30ef7b7f0b2dec48039971ec97.html │ │ │ ├── dir_a2e451f2067b11322ce68f920e0050ba.html │ │ │ ├── dir_af55bba262e1419c3a74fbffa32b25cc.html │ │ │ ├── dir_b6d5456a35caebcdf8f57bbac60680a8.html │ │ │ ├── dir_bc11219a80d5d3e874fc77c57b67a9c9.html │ │ │ ├── dir_bd7b11fbabf98796adadd46f82c37fc6.html │ │ │ ├── dir_c2729ddf18bab012de856b523eb05d8f.html │ │ │ ├── dir_c662ca9af3df7d72bd4d5e29e5b2841e.html │ │ │ ├── dir_c869e1434805aa8f8c945b70b8ed45ce.html │ │ │ ├── dir_dd4f4ab4397f3805380f081876544ed2.html │ │ │ ├── dir_dfc4a3e8fc7d732093c28adc3475eec2.html │ │ │ ├── dir_e05d7e2b1ecd646af5bb94391405f3b5.html │ │ │ ├── dir_f91b8333446e35e30a852ac1a785decf.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_b.html │ │ │ ├── functions_c.html │ │ │ ├── functions_d.html │ │ │ ├── functions_e.html │ │ │ ├── functions_f.html │ │ │ ├── functions_func.html │ │ │ ├── functions_g.html │ │ │ ├── functions_h.html │ │ │ ├── functions_i.html │ │ │ ├── functions_j.html │ │ │ ├── functions_k.html │ │ │ ├── functions_l.html │ │ │ ├── functions_m.html │ │ │ ├── functions_n.html │ │ │ ├── functions_o.html │ │ │ ├── functions_p.html │ │ │ ├── functions_r.html │ │ │ ├── functions_s.html │ │ │ ├── functions_t.html │ │ │ ├── functions_u.html │ │ │ ├── functions_v.html │ │ │ ├── functions_vars.html │ │ │ ├── functions_vars_b.html │ │ │ ├── functions_vars_c.html │ │ │ ├── functions_vars_d.html │ │ │ ├── functions_vars_e.html │ │ │ ├── functions_vars_f.html │ │ │ ├── functions_vars_g.html │ │ │ ├── functions_vars_h.html │ │ │ ├── functions_vars_i.html │ │ │ ├── functions_vars_j.html │ │ │ ├── functions_vars_k.html │ │ │ ├── functions_vars_l.html │ │ │ ├── functions_vars_m.html │ │ │ ├── functions_vars_n.html │ │ │ ├── functions_vars_o.html │ │ │ ├── functions_vars_p.html │ │ │ ├── functions_vars_r.html │ │ │ ├── functions_vars_s.html │ │ │ ├── functions_vars_t.html │ │ │ ├── functions_vars_u.html │ │ │ ├── functions_vars_v.html │ │ │ ├── functions_vars_w.html │ │ │ ├── functions_w.html │ │ │ ├── g711_8h.html │ │ │ ├── g711_8h_source.html │ │ │ ├── globals.html │ │ │ ├── globals_b.html │ │ │ ├── globals_c.html │ │ │ ├── globals_d.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_enum.html │ │ │ ├── globals_eval.html │ │ │ ├── globals_f.html │ │ │ ├── globals_func.html │ │ │ ├── globals_func_d.html │ │ │ ├── globals_func_m.html │ │ │ ├── globals_func_n.html │ │ │ ├── globals_func_r.html │ │ │ ├── globals_func_s.html │ │ │ ├── globals_func_u.html │ │ │ ├── globals_g.html │ │ │ ├── globals_i.html │ │ │ ├── globals_j.html │ │ │ ├── globals_m.html │ │ │ ├── globals_n.html │ │ │ ├── globals_p.html │ │ │ ├── globals_r.html │ │ │ ├── globals_s.html │ │ │ ├── globals_t.html │ │ │ ├── globals_type.html │ │ │ ├── globals_u.html │ │ │ ├── globals_vars.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── mpf_8h.html │ │ │ ├── mpf_8h_source.html │ │ │ ├── mpf__activity__detector_8h.html │ │ │ ├── mpf__activity__detector_8h_source.html │ │ │ ├── mpf__audio__file__descriptor_8h.html │ │ │ ├── mpf__audio__file__descriptor_8h_source.html │ │ │ ├── mpf__audio__file__stream_8h.html │ │ │ ├── mpf__audio__file__stream_8h_source.html │ │ │ ├── mpf__bridge_8h.html │ │ │ ├── mpf__bridge_8h_source.html │ │ │ ├── mpf__buffer_8h.html │ │ │ ├── mpf__buffer_8h_source.html │ │ │ ├── mpf__codec_8h.html │ │ │ ├── mpf__codec_8h_source.html │ │ │ ├── mpf__codec__descriptor_8h.html │ │ │ ├── mpf__codec__descriptor_8h_source.html │ │ │ ├── mpf__codec__manager_8h.html │ │ │ ├── mpf__codec__manager_8h_source.html │ │ │ ├── mpf__context_8h.html │ │ │ ├── mpf__context_8h_source.html │ │ │ ├── mpf__decoder_8h.html │ │ │ ├── mpf__decoder_8h_source.html │ │ │ ├── mpf__dtmf__detector_8h.html │ │ │ ├── mpf__dtmf__detector_8h_source.html │ │ │ ├── mpf__dtmf__generator_8h.html │ │ │ ├── mpf__dtmf__generator_8h_source.html │ │ │ ├── mpf__encoder_8h.html │ │ │ ├── mpf__encoder_8h_source.html │ │ │ ├── mpf__engine_8h.html │ │ │ ├── mpf__engine_8h_source.html │ │ │ ├── mpf__engine__factory_8h_source.html │ │ │ ├── mpf__file__termination__factory_8h.html │ │ │ ├── mpf__file__termination__factory_8h_source.html │ │ │ ├── mpf__frame_8h.html │ │ │ ├── mpf__frame_8h_source.html │ │ │ ├── mpf__frame__buffer_8h.html │ │ │ ├── mpf__frame__buffer_8h_source.html │ │ │ ├── mpf__jitter__buffer_8h.html │ │ │ ├── mpf__jitter__buffer_8h_source.html │ │ │ ├── mpf__message_8h.html │ │ │ ├── mpf__message_8h_source.html │ │ │ ├── mpf__mixer_8h.html │ │ │ ├── mpf__mixer_8h_source.html │ │ │ ├── mpf__multiplier_8h.html │ │ │ ├── mpf__multiplier_8h_source.html │ │ │ ├── mpf__named__event_8h.html │ │ │ ├── mpf__named__event_8h_source.html │ │ │ ├── mpf__object_8h.html │ │ │ ├── mpf__object_8h_source.html │ │ │ ├── mpf__resampler_8h.html │ │ │ ├── mpf__resampler_8h_source.html │ │ │ ├── mpf__rtcp__packet_8h.html │ │ │ ├── mpf__rtcp__packet_8h_source.html │ │ │ ├── mpf__rtp__attribs_8h.html │ │ │ ├── mpf__rtp__attribs_8h_source.html │ │ │ ├── mpf__rtp__defs_8h.html │ │ │ ├── mpf__rtp__defs_8h_source.html │ │ │ ├── mpf__rtp__descriptor_8h.html │ │ │ ├── mpf__rtp__descriptor_8h_source.html │ │ │ ├── mpf__rtp__header_8h.html │ │ │ ├── mpf__rtp__header_8h_source.html │ │ │ ├── mpf__rtp__pt_8h.html │ │ │ ├── mpf__rtp__pt_8h_source.html │ │ │ ├── mpf__rtp__stat_8h.html │ │ │ ├── mpf__rtp__stat_8h_source.html │ │ │ ├── mpf__rtp__stream_8h.html │ │ │ ├── mpf__rtp__stream_8h_source.html │ │ │ ├── mpf__rtp__termination__factory_8h.html │ │ │ ├── mpf__rtp__termination__factory_8h_source.html │ │ │ ├── mpf__scheduler_8h.html │ │ │ ├── mpf__scheduler_8h_source.html │ │ │ ├── mpf__stream_8h.html │ │ │ ├── mpf__stream_8h_source.html │ │ │ ├── mpf__stream__descriptor_8h.html │ │ │ ├── mpf__stream__descriptor_8h_source.html │ │ │ ├── mpf__termination_8h.html │ │ │ ├── mpf__termination_8h_source.html │ │ │ ├── mpf__termination__factory_8h.html │ │ │ ├── mpf__termination__factory_8h_source.html │ │ │ ├── mpf__trace_8h.html │ │ │ ├── mpf__trace_8h_source.html │ │ │ ├── mpf__types_8h.html │ │ │ ├── mpf__types_8h_source.html │ │ │ ├── mrcp_8h.html │ │ │ ├── mrcp_8h_source.html │ │ │ ├── mrcp__application_8h.html │ │ │ ├── mrcp__application_8h_source.html │ │ │ ├── mrcp__ca__factory_8h.html │ │ │ ├── mrcp__ca__factory_8h_source.html │ │ │ ├── mrcp__client_8h.html │ │ │ ├── mrcp__client_8h_source.html │ │ │ ├── mrcp__client__connection_8h.html │ │ │ ├── mrcp__client__connection_8h_source.html │ │ │ ├── mrcp__client__session_8h.html │ │ │ ├── mrcp__client__session_8h_source.html │ │ │ ├── mrcp__client__types_8h.html │ │ │ ├── mrcp__client__types_8h_source.html │ │ │ ├── mrcp__connection_8h.html │ │ │ ├── mrcp__connection_8h_source.html │ │ │ ├── mrcp__connection__types_8h.html │ │ │ ├── mrcp__connection__types_8h_source.html │ │ │ ├── mrcp__control__descriptor_8h.html │ │ │ ├── mrcp__control__descriptor_8h_source.html │ │ │ ├── mrcp__engine__factory_8h.html │ │ │ ├── mrcp__engine__factory_8h_source.html │ │ │ ├── mrcp__engine__iface_8h.html │ │ │ ├── mrcp__engine__iface_8h_source.html │ │ │ ├── mrcp__engine__impl_8h.html │ │ │ ├── mrcp__engine__impl_8h_source.html │ │ │ ├── mrcp__engine__loader_8h.html │ │ │ ├── mrcp__engine__loader_8h_source.html │ │ │ ├── mrcp__engine__plugin_8h.html │ │ │ ├── mrcp__engine__plugin_8h_source.html │ │ │ ├── mrcp__engine__types_8h.html │ │ │ ├── mrcp__engine__types_8h_source.html │ │ │ ├── mrcp__generic__header_8h.html │ │ │ ├── mrcp__generic__header_8h_source.html │ │ │ ├── mrcp__header_8h.html │ │ │ ├── mrcp__header_8h_source.html │ │ │ ├── mrcp__header__accessor_8h.html │ │ │ ├── mrcp__header__accessor_8h_source.html │ │ │ ├── mrcp__message_8h.html │ │ │ ├── mrcp__message_8h_source.html │ │ │ ├── mrcp__recog__engine_8h.html │ │ │ ├── mrcp__recog__engine_8h_source.html │ │ │ ├── mrcp__recog__header_8h.html │ │ │ ├── mrcp__recog__header_8h_source.html │ │ │ ├── mrcp__recog__resource_8h.html │ │ │ ├── mrcp__recog__resource_8h_source.html │ │ │ ├── mrcp__recog__state__machine_8h.html │ │ │ ├── mrcp__recog__state__machine_8h_source.html │ │ │ ├── mrcp__recorder__engine_8h.html │ │ │ ├── mrcp__recorder__engine_8h_source.html │ │ │ ├── mrcp__recorder__header_8h.html │ │ │ ├── mrcp__recorder__header_8h_source.html │ │ │ ├── mrcp__recorder__resource_8h.html │ │ │ ├── mrcp__recorder__resource_8h_source.html │ │ │ ├── mrcp__recorder__state__machine_8h.html │ │ │ ├── mrcp__recorder__state__machine_8h_source.html │ │ │ ├── mrcp__resource_8h.html │ │ │ ├── mrcp__resource_8h_source.html │ │ │ ├── mrcp__resource__engine_8h.html │ │ │ ├── mrcp__resource__engine_8h_source.html │ │ │ ├── mrcp__resource__factory_8h.html │ │ │ ├── mrcp__resource__factory_8h_source.html │ │ │ ├── mrcp__resource__loader_8h.html │ │ │ ├── mrcp__resource__loader_8h_source.html │ │ │ ├── mrcp__sdp_8h.html │ │ │ ├── mrcp__sdp_8h_source.html │ │ │ ├── mrcp__server_8h.html │ │ │ ├── mrcp__server_8h_source.html │ │ │ ├── mrcp__server__connection_8h.html │ │ │ ├── mrcp__server__connection_8h_source.html │ │ │ ├── mrcp__server__session_8h.html │ │ │ ├── mrcp__server__session_8h_source.html │ │ │ ├── mrcp__server__types_8h.html │ │ │ ├── mrcp__server__types_8h_source.html │ │ │ ├── mrcp__session_8h.html │ │ │ ├── mrcp__session_8h_source.html │ │ │ ├── mrcp__session__descriptor_8h.html │ │ │ ├── mrcp__session__descriptor_8h_source.html │ │ │ ├── mrcp__sig__agent_8h.html │ │ │ ├── mrcp__sig__agent_8h_source.html │ │ │ ├── mrcp__sig__types_8h.html │ │ │ ├── mrcp__sig__types_8h_source.html │ │ │ ├── mrcp__sofiasip__client__agent_8h.html │ │ │ ├── mrcp__sofiasip__client__agent_8h_source.html │ │ │ ├── mrcp__sofiasip__logger_8h.html │ │ │ ├── mrcp__sofiasip__logger_8h_source.html │ │ │ ├── mrcp__sofiasip__server__agent_8h.html │ │ │ ├── mrcp__sofiasip__server__agent_8h_source.html │ │ │ ├── mrcp__sofiasip__task_8h.html │ │ │ ├── mrcp__sofiasip__task_8h_source.html │ │ │ ├── mrcp__start__line_8h.html │ │ │ ├── mrcp__start__line_8h_source.html │ │ │ ├── mrcp__state__machine_8h.html │ │ │ ├── mrcp__state__machine_8h_source.html │ │ │ ├── mrcp__stream_8h.html │ │ │ ├── mrcp__stream_8h_source.html │ │ │ ├── mrcp__synth__engine_8h.html │ │ │ ├── mrcp__synth__engine_8h_source.html │ │ │ ├── mrcp__synth__header_8h.html │ │ │ ├── mrcp__synth__header_8h_source.html │ │ │ ├── mrcp__synth__resource_8h.html │ │ │ ├── mrcp__synth__resource_8h_source.html │ │ │ ├── mrcp__synth__state__machine_8h.html │ │ │ ├── mrcp__synth__state__machine_8h_source.html │ │ │ ├── mrcp__types_8h.html │ │ │ ├── mrcp__types_8h_source.html │ │ │ ├── mrcp__unirtsp__client__agent_8h.html │ │ │ ├── mrcp__unirtsp__client__agent_8h_source.html │ │ │ ├── mrcp__unirtsp__logger_8h.html │ │ │ ├── mrcp__unirtsp__logger_8h_source.html │ │ │ ├── mrcp__unirtsp__sdp_8h.html │ │ │ ├── mrcp__unirtsp__sdp_8h_source.html │ │ │ ├── mrcp__unirtsp__server__agent_8h.html │ │ │ ├── mrcp__unirtsp__server__agent_8h_source.html │ │ │ ├── mrcp__verifier__engine_8h.html │ │ │ ├── mrcp__verifier__engine_8h_source.html │ │ │ ├── mrcp__verifier__header_8h.html │ │ │ ├── mrcp__verifier__header_8h_source.html │ │ │ ├── mrcp__verifier__resource_8h.html │ │ │ ├── mrcp__verifier__resource_8h_source.html │ │ │ ├── mrcp__verifier__state__machine_8h.html │ │ │ ├── mrcp__verifier__state__machine_8h_source.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── rtsp_8h.html │ │ │ ├── rtsp_8h_source.html │ │ │ ├── rtsp__client_8h.html │ │ │ ├── rtsp__client_8h_source.html │ │ │ ├── rtsp__header_8h.html │ │ │ ├── rtsp__header_8h_source.html │ │ │ ├── rtsp__message_8h.html │ │ │ ├── rtsp__message_8h_source.html │ │ │ ├── rtsp__server_8h.html │ │ │ ├── rtsp__server_8h_source.html │ │ │ ├── rtsp__start__line_8h.html │ │ │ ├── rtsp__start__line_8h_source.html │ │ │ ├── rtsp__stream_8h.html │ │ │ ├── rtsp__stream_8h_source.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── close.png │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── defines_1.html │ │ │ ├── defines_1.js │ │ │ ├── defines_2.html │ │ │ ├── defines_2.js │ │ │ ├── defines_3.html │ │ │ ├── defines_3.js │ │ │ ├── defines_4.html │ │ │ ├── defines_4.js │ │ │ ├── defines_5.html │ │ │ ├── defines_5.js │ │ │ ├── defines_6.html │ │ │ ├── defines_6.js │ │ │ ├── defines_7.html │ │ │ ├── defines_7.js │ │ │ ├── defines_8.html │ │ │ ├── defines_8.js │ │ │ ├── defines_9.html │ │ │ ├── defines_9.js │ │ │ ├── defines_a.html │ │ │ ├── defines_a.js │ │ │ ├── defines_b.html │ │ │ ├── defines_b.js │ │ │ ├── enums_0.html │ │ │ ├── enums_0.js │ │ │ ├── enums_1.html │ │ │ ├── enums_1.js │ │ │ ├── enums_2.html │ │ │ ├── enums_2.js │ │ │ ├── enums_3.html │ │ │ ├── enums_3.js │ │ │ ├── enumvalues_0.html │ │ │ ├── enumvalues_0.js │ │ │ ├── enumvalues_1.html │ │ │ ├── enumvalues_1.js │ │ │ ├── enumvalues_2.html │ │ │ ├── enumvalues_2.js │ │ │ ├── enumvalues_3.html │ │ │ ├── enumvalues_3.js │ │ │ ├── enumvalues_4.html │ │ │ ├── enumvalues_4.js │ │ │ ├── enumvalues_5.html │ │ │ ├── enumvalues_5.js │ │ │ ├── enumvalues_6.html │ │ │ ├── enumvalues_6.js │ │ │ ├── enumvalues_7.html │ │ │ ├── enumvalues_7.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── typedefs_1.html │ │ │ ├── typedefs_1.js │ │ │ ├── typedefs_2.html │ │ │ ├── typedefs_2.js │ │ │ ├── typedefs_3.html │ │ │ ├── typedefs_3.js │ │ │ ├── typedefs_4.html │ │ │ ├── typedefs_4.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_15.html │ │ │ ├── variables_15.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ │ ├── structapt__content__part__t.html │ │ │ ├── structapt__header__field__t.html │ │ │ ├── structapt__header__section__t.html │ │ │ ├── structapt__message__context__t.html │ │ │ ├── structapt__message__generator__vtable__t.html │ │ │ ├── structapt__message__parser__vtable__t.html │ │ │ ├── structapt__pair__t.html │ │ │ ├── structapt__str__t.html │ │ │ ├── structapt__str__table__item__t.html │ │ │ ├── structapt__task__msg__t.html │ │ │ ├── structapt__task__vtable__t.html │ │ │ ├── structapt__test__suite__t.html │ │ │ ├── structapt__text__stream__t.html │ │ │ ├── structdemo__application__t.html │ │ │ ├── structmpf__audio__file__descriptor__t.html │ │ │ ├── structmpf__audio__stream__t.html │ │ │ ├── structmpf__audio__stream__vtable__t.html │ │ │ ├── structmpf__codec__attribs__t.html │ │ │ ├── structmpf__codec__capabilities__t.html │ │ │ ├── structmpf__codec__descriptor__t.html │ │ │ ├── structmpf__codec__frame__t.html │ │ │ ├── structmpf__codec__list__t.html │ │ │ ├── structmpf__codec__t.html │ │ │ ├── structmpf__codec__vtable__t.html │ │ │ ├── structmpf__frame__t.html │ │ │ ├── structmpf__jb__config__t.html │ │ │ ├── structmpf__message__container__t.html │ │ │ ├── structmpf__message__t.html │ │ │ ├── structmpf__named__event__frame__t.html │ │ │ ├── structmpf__object__t.html │ │ │ ├── structmpf__rtp__config__t.html │ │ │ ├── structmpf__rtp__media__descriptor__t.html │ │ │ ├── structmpf__rtp__settings__t.html │ │ │ ├── structmpf__rtp__stream__descriptor__t.html │ │ │ ├── structmpf__rtp__termination__descriptor__t.html │ │ │ ├── structmpf__stream__capabilities__t.html │ │ │ ├── structmpf__termination__factory__t.html │ │ │ ├── structmpf__termination__t.html │ │ │ ├── structmpf__termination__vtable__t.html │ │ │ ├── structmpf__video__stream__t.html │ │ │ ├── structmrcp__app__message__dispatcher__t.html │ │ │ ├── structmrcp__app__message__t.html │ │ │ ├── structmrcp__application__t.html │ │ │ ├── structmrcp__channel__id.html │ │ │ ├── structmrcp__channel__t.html │ │ │ ├── structmrcp__client__profile__t.html │ │ │ ├── structmrcp__client__session__t.html │ │ │ ├── structmrcp__connection__event__vtable__t.html │ │ │ ├── structmrcp__connection__t.html │ │ │ ├── structmrcp__control__channel__t.html │ │ │ ├── structmrcp__control__descriptor__t.html │ │ │ ├── structmrcp__engine__channel__event__vtable__t.html │ │ │ ├── structmrcp__engine__channel__method__vtable__t.html │ │ │ ├── structmrcp__engine__channel__t.html │ │ │ ├── structmrcp__engine__config__t.html │ │ │ ├── structmrcp__engine__event__vtable__t.html │ │ │ ├── structmrcp__engine__method__vtable__t.html │ │ │ ├── structmrcp__engine__t.html │ │ │ ├── structmrcp__generic__header__t.html │ │ │ ├── structmrcp__header__accessor__t.html │ │ │ ├── structmrcp__header__vtable__t.html │ │ │ ├── structmrcp__message__header__t.html │ │ │ ├── structmrcp__message__t.html │ │ │ ├── structmrcp__numeric__speech__length__t.html │ │ │ ├── structmrcp__prosody__param__t.html │ │ │ ├── structmrcp__prosody__rate__t.html │ │ │ ├── structmrcp__prosody__volume__t.html │ │ │ ├── structmrcp__recog__header__t.html │ │ │ ├── structmrcp__recorder__header__t.html │ │ │ ├── structmrcp__request__id__list__t.html │ │ │ ├── structmrcp__resource__t.html │ │ │ ├── structmrcp__server__profile__t.html │ │ │ ├── structmrcp__server__session__t.html │ │ │ ├── structmrcp__session__descriptor__t.html │ │ │ ├── structmrcp__session__event__vtable__t.html │ │ │ ├── structmrcp__session__request__vtable__t.html │ │ │ ├── structmrcp__session__response__vtable__t.html │ │ │ ├── structmrcp__session__t.html │ │ │ ├── structmrcp__sig__agent__t.html │ │ │ ├── structmrcp__sig__message__t.html │ │ │ ├── structmrcp__sig__settings__t.html │ │ │ ├── structmrcp__signaling__message__t.html │ │ │ ├── structmrcp__sofia__client__config__t.html │ │ │ ├── structmrcp__sofia__server__config__t.html │ │ │ ├── structmrcp__speech__length__value__t.html │ │ │ ├── structmrcp__start__line__t.html │ │ │ ├── structmrcp__state__machine__t.html │ │ │ ├── structmrcp__synth__header__t.html │ │ │ ├── structmrcp__verifier__header__t.html │ │ │ ├── structmrcp__voice__param__t.html │ │ │ ├── structrtcp__header__t.html │ │ │ ├── structrtcp__packet__t.html │ │ │ ├── structrtcp__rr__stat__t.html │ │ │ ├── structrtcp__sdes__item__t.html │ │ │ ├── structrtcp__sr__stat__t.html │ │ │ ├── structrtp__extension__header__t.html │ │ │ ├── structrtp__header__t.html │ │ │ ├── structrtp__receiver__t.html │ │ │ ├── structrtp__rx__history__t.html │ │ │ ├── structrtp__rx__periodic__history__t.html │ │ │ ├── structrtp__rx__stat__t.html │ │ │ ├── structrtp__termination__slot__t.html │ │ │ ├── structrtp__transmitter__t.html │ │ │ ├── structrtsp__client__config__t.html │ │ │ ├── structrtsp__client__vtable__t.html │ │ │ ├── structrtsp__header__t.html │ │ │ ├── structrtsp__message__t.html │ │ │ ├── structrtsp__port__range__t.html │ │ │ ├── structrtsp__request__line__t.html │ │ │ ├── structrtsp__server__config__t.html │ │ │ ├── structrtsp__server__vtable__t.html │ │ │ ├── structrtsp__start__line__t.html │ │ │ ├── structrtsp__status__line__t.html │ │ │ ├── structrtsp__transport__t.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── uni__revision_8h.html │ │ │ ├── uni__revision_8h_source.html │ │ │ ├── uni__version_8h.html │ │ │ ├── uni__version_8h_source.html │ │ │ ├── unimrcp__client_8h.html │ │ │ ├── unimrcp__client_8h_source.html │ │ │ ├── unimrcp__server_8h.html │ │ │ └── unimrcp__server_8h_source.html │ ├── doxygen.conf │ ├── doxygen.conf.in │ ├── ea │ │ ├── EARoot │ │ │ ├── EA1.htm │ │ │ ├── EA1 │ │ │ │ ├── EA10.htm │ │ │ │ ├── EA11.htm │ │ │ │ ├── EA12.htm │ │ │ │ ├── EA13.htm │ │ │ │ ├── EA14.htm │ │ │ │ ├── EA15.htm │ │ │ │ ├── EA16.htm │ │ │ │ ├── EA17.htm │ │ │ │ ├── EA18.htm │ │ │ │ ├── EA19.htm │ │ │ │ ├── EA20.htm │ │ │ │ ├── EA21.htm │ │ │ │ ├── EA6.htm │ │ │ │ ├── EA7.png │ │ │ │ ├── EA8.htm │ │ │ │ └── EA9.htm │ │ │ ├── EA2.htm │ │ │ ├── EA2 │ │ │ │ ├── EA1 │ │ │ │ │ ├── EA24.htm │ │ │ │ │ ├── EA25.png │ │ │ │ │ ├── EA26.htm │ │ │ │ │ ├── EA27.png │ │ │ │ │ ├── EA28.htm │ │ │ │ │ ├── EA29.png │ │ │ │ │ ├── EA30.htm │ │ │ │ │ ├── EA31.png │ │ │ │ │ ├── EA32.htm │ │ │ │ │ ├── EA33.png │ │ │ │ │ ├── EA34.htm │ │ │ │ │ ├── EA35.htm │ │ │ │ │ ├── EA36.htm │ │ │ │ │ ├── EA37.htm │ │ │ │ │ ├── EA38.htm │ │ │ │ │ ├── EA39.htm │ │ │ │ │ ├── EA40.htm │ │ │ │ │ ├── EA41.htm │ │ │ │ │ ├── EA42.htm │ │ │ │ │ ├── EA43.htm │ │ │ │ │ ├── EA44.htm │ │ │ │ │ ├── EA45.htm │ │ │ │ │ ├── EA46.htm │ │ │ │ │ ├── EA47.htm │ │ │ │ │ ├── EA48.htm │ │ │ │ │ ├── EA49.htm │ │ │ │ │ └── EA50.htm │ │ │ │ ├── EA2 │ │ │ │ │ ├── EA51.htm │ │ │ │ │ ├── EA52.png │ │ │ │ │ ├── EA53.htm │ │ │ │ │ ├── EA54.png │ │ │ │ │ ├── EA55.htm │ │ │ │ │ ├── EA56.png │ │ │ │ │ ├── EA57.htm │ │ │ │ │ ├── EA58.png │ │ │ │ │ ├── EA59.htm │ │ │ │ │ ├── EA60.png │ │ │ │ │ ├── EA61.htm │ │ │ │ │ ├── EA62.htm │ │ │ │ │ ├── EA63.htm │ │ │ │ │ ├── EA64.htm │ │ │ │ │ ├── EA65.htm │ │ │ │ │ ├── EA66.htm │ │ │ │ │ ├── EA67.htm │ │ │ │ │ ├── EA68.htm │ │ │ │ │ ├── EA69.htm │ │ │ │ │ ├── EA70.htm │ │ │ │ │ ├── EA71.htm │ │ │ │ │ ├── EA72.htm │ │ │ │ │ └── EA73.htm │ │ │ │ ├── EA22.htm │ │ │ │ └── EA23.htm │ │ │ ├── EA3.htm │ │ │ ├── EA3 │ │ │ │ ├── EA1 │ │ │ │ │ ├── EA80.htm │ │ │ │ │ ├── EA81.png │ │ │ │ │ ├── EA82.htm │ │ │ │ │ ├── EA83.htm │ │ │ │ │ └── EA84.htm │ │ │ │ ├── EA2 │ │ │ │ │ ├── EA1 │ │ │ │ │ │ ├── EA100.htm │ │ │ │ │ │ ├── EA101.htm │ │ │ │ │ │ ├── EA102.htm │ │ │ │ │ │ ├── EA103.htm │ │ │ │ │ │ ├── EA104.htm │ │ │ │ │ │ ├── EA105.htm │ │ │ │ │ │ ├── EA106.htm │ │ │ │ │ │ ├── EA107.htm │ │ │ │ │ │ ├── EA98.htm │ │ │ │ │ │ └── EA99.png │ │ │ │ │ ├── EA2 │ │ │ │ │ │ ├── EA108.htm │ │ │ │ │ │ ├── EA109.png │ │ │ │ │ │ ├── EA110.htm │ │ │ │ │ │ ├── EA111.htm │ │ │ │ │ │ ├── EA112.htm │ │ │ │ │ │ ├── EA113.htm │ │ │ │ │ │ ├── EA114.htm │ │ │ │ │ │ └── EA115.htm │ │ │ │ │ ├── EA3 │ │ │ │ │ │ ├── EA116.htm │ │ │ │ │ │ ├── EA117.png │ │ │ │ │ │ ├── EA118.htm │ │ │ │ │ │ ├── EA119.htm │ │ │ │ │ │ ├── EA120.htm │ │ │ │ │ │ ├── EA121.htm │ │ │ │ │ │ ├── EA122.htm │ │ │ │ │ │ ├── EA123.htm │ │ │ │ │ │ └── EA124.htm │ │ │ │ │ ├── EA4 │ │ │ │ │ │ ├── EA125.htm │ │ │ │ │ │ ├── EA126.png │ │ │ │ │ │ ├── EA127.htm │ │ │ │ │ │ └── EA128.htm │ │ │ │ │ ├── EA5 │ │ │ │ │ │ ├── EA129.htm │ │ │ │ │ │ ├── EA130.png │ │ │ │ │ │ ├── EA131.htm │ │ │ │ │ │ ├── EA132.htm │ │ │ │ │ │ ├── EA133.htm │ │ │ │ │ │ ├── EA134.htm │ │ │ │ │ │ ├── EA135.htm │ │ │ │ │ │ ├── EA136.htm │ │ │ │ │ │ └── EA137.htm │ │ │ │ │ ├── EA85.htm │ │ │ │ │ ├── EA86.png │ │ │ │ │ ├── EA87.htm │ │ │ │ │ ├── EA88.htm │ │ │ │ │ ├── EA89.htm │ │ │ │ │ ├── EA90.htm │ │ │ │ │ ├── EA91.htm │ │ │ │ │ ├── EA92.htm │ │ │ │ │ ├── EA93.htm │ │ │ │ │ ├── EA94.htm │ │ │ │ │ ├── EA95.htm │ │ │ │ │ ├── EA96.htm │ │ │ │ │ └── EA97.htm │ │ │ │ ├── EA3 │ │ │ │ │ ├── EA1 │ │ │ │ │ │ ├── EA147.htm │ │ │ │ │ │ ├── EA148.png │ │ │ │ │ │ ├── EA149.htm │ │ │ │ │ │ ├── EA150.htm │ │ │ │ │ │ ├── EA151.htm │ │ │ │ │ │ ├── EA152.htm │ │ │ │ │ │ ├── EA153.htm │ │ │ │ │ │ └── EA154.htm │ │ │ │ │ ├── EA138.htm │ │ │ │ │ ├── EA139.png │ │ │ │ │ ├── EA140.htm │ │ │ │ │ ├── EA141.htm │ │ │ │ │ ├── EA142.htm │ │ │ │ │ ├── EA143.htm │ │ │ │ │ ├── EA144.htm │ │ │ │ │ ├── EA145.htm │ │ │ │ │ ├── EA146.htm │ │ │ │ │ ├── EA2 │ │ │ │ │ │ ├── EA1 │ │ │ │ │ │ │ ├── EA162.htm │ │ │ │ │ │ │ ├── EA163.htm │ │ │ │ │ │ │ └── EA164.htm │ │ │ │ │ │ ├── EA155.htm │ │ │ │ │ │ ├── EA156.png │ │ │ │ │ │ ├── EA157.htm │ │ │ │ │ │ ├── EA158.htm │ │ │ │ │ │ ├── EA159.htm │ │ │ │ │ │ ├── EA160.htm │ │ │ │ │ │ ├── EA161.htm │ │ │ │ │ │ ├── EA2 │ │ │ │ │ │ │ ├── EA165.htm │ │ │ │ │ │ │ ├── EA166.htm │ │ │ │ │ │ │ ├── EA167.htm │ │ │ │ │ │ │ └── EA168.htm │ │ │ │ │ │ ├── EA3 │ │ │ │ │ │ │ ├── EA169.htm │ │ │ │ │ │ │ ├── EA170.htm │ │ │ │ │ │ │ ├── EA171.htm │ │ │ │ │ │ │ └── EA172.htm │ │ │ │ │ │ ├── EA4 │ │ │ │ │ │ │ ├── EA173.htm │ │ │ │ │ │ │ ├── EA174.htm │ │ │ │ │ │ │ ├── EA175.htm │ │ │ │ │ │ │ └── EA176.htm │ │ │ │ │ │ └── EA5 │ │ │ │ │ │ │ ├── EA177.htm │ │ │ │ │ │ │ ├── EA178.htm │ │ │ │ │ │ │ ├── EA179.htm │ │ │ │ │ │ │ └── EA180.htm │ │ │ │ │ └── EA3 │ │ │ │ │ │ ├── EA181.htm │ │ │ │ │ │ ├── EA182.png │ │ │ │ │ │ ├── EA183.htm │ │ │ │ │ │ ├── EA184.htm │ │ │ │ │ │ ├── EA185.htm │ │ │ │ │ │ ├── EA186.htm │ │ │ │ │ │ ├── EA187.htm │ │ │ │ │ │ ├── EA188.htm │ │ │ │ │ │ ├── EA189.htm │ │ │ │ │ │ ├── EA190.htm │ │ │ │ │ │ ├── EA191.htm │ │ │ │ │ │ ├── EA192.htm │ │ │ │ │ │ ├── EA193.htm │ │ │ │ │ │ ├── EA194.htm │ │ │ │ │ │ ├── EA195.htm │ │ │ │ │ │ ├── EA196.htm │ │ │ │ │ │ ├── EA197.htm │ │ │ │ │ │ ├── EA198.htm │ │ │ │ │ │ ├── EA199.htm │ │ │ │ │ │ └── EA200.htm │ │ │ │ ├── EA4 │ │ │ │ │ ├── EA1 │ │ │ │ │ │ ├── EA1 │ │ │ │ │ │ │ ├── EA218.htm │ │ │ │ │ │ │ ├── EA219.png │ │ │ │ │ │ │ ├── EA220.htm │ │ │ │ │ │ │ ├── EA221.htm │ │ │ │ │ │ │ ├── EA222.htm │ │ │ │ │ │ │ └── EA223.htm │ │ │ │ │ │ ├── EA2 │ │ │ │ │ │ │ ├── EA224.htm │ │ │ │ │ │ │ ├── EA225.png │ │ │ │ │ │ │ ├── EA226.htm │ │ │ │ │ │ │ ├── EA227.htm │ │ │ │ │ │ │ ├── EA228.htm │ │ │ │ │ │ │ └── EA229.htm │ │ │ │ │ │ ├── EA209.htm │ │ │ │ │ │ ├── EA210.png │ │ │ │ │ │ ├── EA211.htm │ │ │ │ │ │ ├── EA212.htm │ │ │ │ │ │ ├── EA213.htm │ │ │ │ │ │ ├── EA214.htm │ │ │ │ │ │ ├── EA215.htm │ │ │ │ │ │ ├── EA216.htm │ │ │ │ │ │ ├── EA217.htm │ │ │ │ │ │ └── EA3 │ │ │ │ │ │ │ ├── EA230.htm │ │ │ │ │ │ │ ├── EA231.png │ │ │ │ │ │ │ ├── EA232.htm │ │ │ │ │ │ │ ├── EA233.htm │ │ │ │ │ │ │ └── EA234.htm │ │ │ │ │ ├── EA2 │ │ │ │ │ │ ├── EA1 │ │ │ │ │ │ │ ├── EA246.htm │ │ │ │ │ │ │ ├── EA247.png │ │ │ │ │ │ │ ├── EA248.htm │ │ │ │ │ │ │ ├── EA249.htm │ │ │ │ │ │ │ ├── EA250.htm │ │ │ │ │ │ │ └── EA251.htm │ │ │ │ │ │ ├── EA2 │ │ │ │ │ │ │ ├── EA252.htm │ │ │ │ │ │ │ ├── EA253.png │ │ │ │ │ │ │ ├── EA254.htm │ │ │ │ │ │ │ ├── EA255.png │ │ │ │ │ │ │ ├── EA256.htm │ │ │ │ │ │ │ ├── EA257.htm │ │ │ │ │ │ │ ├── EA258.htm │ │ │ │ │ │ │ ├── EA259.htm │ │ │ │ │ │ │ ├── EA260.htm │ │ │ │ │ │ │ ├── EA261.htm │ │ │ │ │ │ │ ├── EA262.htm │ │ │ │ │ │ │ ├── EA263.htm │ │ │ │ │ │ │ ├── EA264.htm │ │ │ │ │ │ │ ├── EA265.htm │ │ │ │ │ │ │ ├── EA266.htm │ │ │ │ │ │ │ ├── EA267.htm │ │ │ │ │ │ │ ├── EA268.htm │ │ │ │ │ │ │ ├── EA269.htm │ │ │ │ │ │ │ └── EA270.htm │ │ │ │ │ │ ├── EA235.htm │ │ │ │ │ │ ├── EA236.png │ │ │ │ │ │ ├── EA237.htm │ │ │ │ │ │ ├── EA238.htm │ │ │ │ │ │ ├── EA239.htm │ │ │ │ │ │ ├── EA240.htm │ │ │ │ │ │ ├── EA241.htm │ │ │ │ │ │ ├── EA242.htm │ │ │ │ │ │ ├── EA243.htm │ │ │ │ │ │ ├── EA244.htm │ │ │ │ │ │ ├── EA245.htm │ │ │ │ │ │ ├── EA3 │ │ │ │ │ │ │ ├── EA271.htm │ │ │ │ │ │ │ ├── EA272.png │ │ │ │ │ │ │ ├── EA273.htm │ │ │ │ │ │ │ ├── EA274.htm │ │ │ │ │ │ │ └── EA275.htm │ │ │ │ │ │ └── EA4 │ │ │ │ │ │ │ ├── EA276.htm │ │ │ │ │ │ │ ├── EA277.png │ │ │ │ │ │ │ ├── EA278.htm │ │ │ │ │ │ │ ├── EA279.htm │ │ │ │ │ │ │ └── EA280.htm │ │ │ │ │ ├── EA201.htm │ │ │ │ │ ├── EA202.png │ │ │ │ │ ├── EA203.htm │ │ │ │ │ ├── EA204.htm │ │ │ │ │ ├── EA205.htm │ │ │ │ │ ├── EA206.htm │ │ │ │ │ ├── EA207.htm │ │ │ │ │ ├── EA208.htm │ │ │ │ │ ├── EA3 │ │ │ │ │ │ ├── EA281.htm │ │ │ │ │ │ ├── EA282.png │ │ │ │ │ │ ├── EA283.htm │ │ │ │ │ │ ├── EA284.htm │ │ │ │ │ │ └── EA285.htm │ │ │ │ │ ├── EA4 │ │ │ │ │ │ ├── EA286.htm │ │ │ │ │ │ ├── EA287.png │ │ │ │ │ │ ├── EA288.htm │ │ │ │ │ │ ├── EA289.htm │ │ │ │ │ │ └── EA290.htm │ │ │ │ │ ├── EA5 │ │ │ │ │ │ ├── EA1 │ │ │ │ │ │ │ ├── EA302.htm │ │ │ │ │ │ │ ├── EA303.png │ │ │ │ │ │ │ ├── EA304.htm │ │ │ │ │ │ │ ├── EA305.png │ │ │ │ │ │ │ ├── EA306.htm │ │ │ │ │ │ │ ├── EA307.htm │ │ │ │ │ │ │ ├── EA308.htm │ │ │ │ │ │ │ ├── EA309.htm │ │ │ │ │ │ │ ├── EA310.htm │ │ │ │ │ │ │ ├── EA311.htm │ │ │ │ │ │ │ ├── EA312.htm │ │ │ │ │ │ │ ├── EA313.htm │ │ │ │ │ │ │ └── EA314.htm │ │ │ │ │ │ ├── EA2 │ │ │ │ │ │ │ ├── EA315.htm │ │ │ │ │ │ │ ├── EA316.png │ │ │ │ │ │ │ ├── EA317.htm │ │ │ │ │ │ │ ├── EA318.png │ │ │ │ │ │ │ ├── EA319.htm │ │ │ │ │ │ │ ├── EA320.htm │ │ │ │ │ │ │ ├── EA321.htm │ │ │ │ │ │ │ ├── EA322.htm │ │ │ │ │ │ │ ├── EA323.htm │ │ │ │ │ │ │ ├── EA324.htm │ │ │ │ │ │ │ ├── EA325.htm │ │ │ │ │ │ │ ├── EA326.htm │ │ │ │ │ │ │ ├── EA327.htm │ │ │ │ │ │ │ ├── EA328.htm │ │ │ │ │ │ │ ├── EA329.htm │ │ │ │ │ │ │ ├── EA330.htm │ │ │ │ │ │ │ ├── EA331.htm │ │ │ │ │ │ │ ├── EA332.htm │ │ │ │ │ │ │ ├── EA333.htm │ │ │ │ │ │ │ ├── EA334.htm │ │ │ │ │ │ │ ├── EA335.htm │ │ │ │ │ │ │ ├── EA336.htm │ │ │ │ │ │ │ ├── EA337.htm │ │ │ │ │ │ │ ├── EA338.htm │ │ │ │ │ │ │ ├── EA339.htm │ │ │ │ │ │ │ ├── EA340.htm │ │ │ │ │ │ │ ├── EA341.htm │ │ │ │ │ │ │ ├── EA342.htm │ │ │ │ │ │ │ └── EA343.htm │ │ │ │ │ │ ├── EA291.htm │ │ │ │ │ │ ├── EA292.png │ │ │ │ │ │ ├── EA293.htm │ │ │ │ │ │ ├── EA294.htm │ │ │ │ │ │ ├── EA295.htm │ │ │ │ │ │ ├── EA296.htm │ │ │ │ │ │ ├── EA297.htm │ │ │ │ │ │ ├── EA298.htm │ │ │ │ │ │ ├── EA299.htm │ │ │ │ │ │ ├── EA3 │ │ │ │ │ │ │ ├── EA344.htm │ │ │ │ │ │ │ ├── EA345.png │ │ │ │ │ │ │ ├── EA346.htm │ │ │ │ │ │ │ ├── EA347.htm │ │ │ │ │ │ │ ├── EA348.htm │ │ │ │ │ │ │ ├── EA349.htm │ │ │ │ │ │ │ ├── EA350.htm │ │ │ │ │ │ │ ├── EA351.htm │ │ │ │ │ │ │ └── EA352.htm │ │ │ │ │ │ ├── EA300.htm │ │ │ │ │ │ └── EA301.htm │ │ │ │ │ └── EA6 │ │ │ │ │ │ ├── EA1 │ │ │ │ │ │ ├── EA363.htm │ │ │ │ │ │ ├── EA364.png │ │ │ │ │ │ ├── EA365.htm │ │ │ │ │ │ ├── EA366.png │ │ │ │ │ │ ├── EA367.htm │ │ │ │ │ │ ├── EA368.htm │ │ │ │ │ │ ├── EA369.htm │ │ │ │ │ │ ├── EA370.htm │ │ │ │ │ │ ├── EA371.htm │ │ │ │ │ │ ├── EA372.htm │ │ │ │ │ │ ├── EA373.htm │ │ │ │ │ │ ├── EA374.htm │ │ │ │ │ │ └── EA375.htm │ │ │ │ │ │ ├── EA2 │ │ │ │ │ │ ├── EA376.htm │ │ │ │ │ │ ├── EA377.png │ │ │ │ │ │ ├── EA378.htm │ │ │ │ │ │ ├── EA379.png │ │ │ │ │ │ ├── EA380.htm │ │ │ │ │ │ ├── EA381.htm │ │ │ │ │ │ ├── EA382.htm │ │ │ │ │ │ ├── EA383.htm │ │ │ │ │ │ ├── EA384.htm │ │ │ │ │ │ ├── EA385.htm │ │ │ │ │ │ ├── EA386.htm │ │ │ │ │ │ ├── EA387.htm │ │ │ │ │ │ ├── EA388.htm │ │ │ │ │ │ ├── EA389.htm │ │ │ │ │ │ ├── EA390.htm │ │ │ │ │ │ └── EA391.htm │ │ │ │ │ │ ├── EA3 │ │ │ │ │ │ ├── EA392.htm │ │ │ │ │ │ ├── EA393.png │ │ │ │ │ │ ├── EA394.htm │ │ │ │ │ │ ├── EA395.htm │ │ │ │ │ │ ├── EA396.htm │ │ │ │ │ │ ├── EA397.htm │ │ │ │ │ │ ├── EA398.htm │ │ │ │ │ │ ├── EA399.htm │ │ │ │ │ │ └── EA400.htm │ │ │ │ │ │ ├── EA353.htm │ │ │ │ │ │ ├── EA354.png │ │ │ │ │ │ ├── EA355.htm │ │ │ │ │ │ ├── EA356.htm │ │ │ │ │ │ ├── EA357.htm │ │ │ │ │ │ ├── EA358.htm │ │ │ │ │ │ ├── EA359.htm │ │ │ │ │ │ ├── EA360.htm │ │ │ │ │ │ ├── EA361.htm │ │ │ │ │ │ └── EA362.htm │ │ │ │ ├── EA74.htm │ │ │ │ ├── EA75.png │ │ │ │ ├── EA76.htm │ │ │ │ ├── EA77.htm │ │ │ │ ├── EA78.htm │ │ │ │ └── EA79.htm │ │ │ ├── EA4.htm │ │ │ ├── EA4 │ │ │ │ ├── EA1 │ │ │ │ │ ├── EA408.htm │ │ │ │ │ ├── EA409.png │ │ │ │ │ ├── EA410.htm │ │ │ │ │ ├── EA411.htm │ │ │ │ │ ├── EA412.htm │ │ │ │ │ └── EA413.htm │ │ │ │ ├── EA2 │ │ │ │ │ ├── EA414.htm │ │ │ │ │ ├── EA415.png │ │ │ │ │ ├── EA416.htm │ │ │ │ │ ├── EA417.htm │ │ │ │ │ ├── EA418.htm │ │ │ │ │ └── EA419.htm │ │ │ │ ├── EA401.htm │ │ │ │ ├── EA402.png │ │ │ │ ├── EA403.htm │ │ │ │ ├── EA404.htm │ │ │ │ ├── EA405.htm │ │ │ │ ├── EA406.htm │ │ │ │ └── EA407.htm │ │ │ ├── EA5.htm │ │ │ └── EA5 │ │ │ │ ├── EA1 │ │ │ │ ├── EA431.htm │ │ │ │ ├── EA432.png │ │ │ │ ├── EA433.htm │ │ │ │ ├── EA434.htm │ │ │ │ └── EA435.htm │ │ │ │ ├── EA2 │ │ │ │ ├── EA436.htm │ │ │ │ ├── EA437.png │ │ │ │ ├── EA438.htm │ │ │ │ ├── EA439.htm │ │ │ │ └── EA440.htm │ │ │ │ ├── EA3 │ │ │ │ ├── EA441.htm │ │ │ │ ├── EA442.png │ │ │ │ ├── EA443.htm │ │ │ │ ├── EA444.htm │ │ │ │ └── EA445.htm │ │ │ │ ├── EA4 │ │ │ │ ├── EA446.htm │ │ │ │ ├── EA447.png │ │ │ │ ├── EA448.htm │ │ │ │ ├── EA449.htm │ │ │ │ └── EA450.htm │ │ │ │ ├── EA420.htm │ │ │ │ ├── EA421.png │ │ │ │ ├── EA422.htm │ │ │ │ ├── EA423.htm │ │ │ │ ├── EA424.htm │ │ │ │ ├── EA425.htm │ │ │ │ ├── EA426.htm │ │ │ │ ├── EA427.htm │ │ │ │ ├── EA428.htm │ │ │ │ ├── EA429.htm │ │ │ │ └── EA430.htm │ │ ├── blank.htm │ │ ├── css │ │ │ ├── ea.css │ │ │ └── eacont.css │ │ ├── images │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 100.png │ │ │ ├── 101.png │ │ │ ├── 102.png │ │ │ ├── 103.png │ │ │ ├── 104.png │ │ │ ├── 105.png │ │ │ ├── 106.png │ │ │ ├── 107.png │ │ │ ├── 108.png │ │ │ ├── 109.png │ │ │ ├── 11.png │ │ │ ├── 110.png │ │ │ ├── 111.png │ │ │ ├── 112.png │ │ │ ├── 113.png │ │ │ ├── 114.png │ │ │ ├── 115.png │ │ │ ├── 116.png │ │ │ ├── 117.png │ │ │ ├── 118.png │ │ │ ├── 119.png │ │ │ ├── 12.png │ │ │ ├── 120.png │ │ │ ├── 121.png │ │ │ ├── 122.png │ │ │ ├── 123.png │ │ │ ├── 124.png │ │ │ ├── 125.png │ │ │ ├── 126.png │ │ │ ├── 127.png │ │ │ ├── 128.png │ │ │ ├── 129.png │ │ │ ├── 13.png │ │ │ ├── 130.png │ │ │ ├── 131.png │ │ │ ├── 132.png │ │ │ ├── 133.png │ │ │ ├── 134.png │ │ │ ├── 135.png │ │ │ ├── 136.png │ │ │ ├── 137.png │ │ │ ├── 138.png │ │ │ ├── 139.png │ │ │ ├── 14.png │ │ │ ├── 140.png │ │ │ ├── 141.png │ │ │ ├── 142.png │ │ │ ├── 143.png │ │ │ ├── 144.png │ │ │ ├── 145.png │ │ │ ├── 146.png │ │ │ ├── 147.png │ │ │ ├── 148.png │ │ │ ├── 149.png │ │ │ ├── 15.png │ │ │ ├── 150.png │ │ │ ├── 151.png │ │ │ ├── 152.png │ │ │ ├── 153.png │ │ │ ├── 154.png │ │ │ ├── 155.png │ │ │ ├── 156.png │ │ │ ├── 157.png │ │ │ ├── 158.png │ │ │ ├── 159.png │ │ │ ├── 16.png │ │ │ ├── 160.png │ │ │ ├── 161.png │ │ │ ├── 162.png │ │ │ ├── 163.png │ │ │ ├── 164.png │ │ │ ├── 165.png │ │ │ ├── 166.png │ │ │ ├── 167.png │ │ │ ├── 168.png │ │ │ ├── 169.png │ │ │ ├── 17.png │ │ │ ├── 170.png │ │ │ ├── 171.png │ │ │ ├── 172.png │ │ │ ├── 173.png │ │ │ ├── 174.png │ │ │ ├── 175.png │ │ │ ├── 176.png │ │ │ ├── 177.png │ │ │ ├── 178.png │ │ │ ├── 179.png │ │ │ ├── 18.png │ │ │ ├── 180.png │ │ │ ├── 181.png │ │ │ ├── 182.png │ │ │ ├── 183.png │ │ │ ├── 184.png │ │ │ ├── 185.png │ │ │ ├── 186.png │ │ │ ├── 187.png │ │ │ ├── 188.png │ │ │ ├── 189.png │ │ │ ├── 19.png │ │ │ ├── 190.png │ │ │ ├── 191.png │ │ │ ├── 192.png │ │ │ ├── 193.png │ │ │ ├── 194.png │ │ │ ├── 195.png │ │ │ ├── 196.png │ │ │ ├── 197.png │ │ │ ├── 198.png │ │ │ ├── 199.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 200.png │ │ │ ├── 201.png │ │ │ ├── 202.png │ │ │ ├── 203.png │ │ │ ├── 204.png │ │ │ ├── 205.png │ │ │ ├── 206.png │ │ │ ├── 207.png │ │ │ ├── 208.png │ │ │ ├── 209.png │ │ │ ├── 21.png │ │ │ ├── 210.png │ │ │ ├── 211.png │ │ │ ├── 212.png │ │ │ ├── 213.png │ │ │ ├── 214.png │ │ │ ├── 215.png │ │ │ ├── 22.png │ │ │ ├── 23.png │ │ │ ├── 24.png │ │ │ ├── 25.png │ │ │ ├── 26.png │ │ │ ├── 27.png │ │ │ ├── 28.png │ │ │ ├── 29.png │ │ │ ├── 3.png │ │ │ ├── 30.png │ │ │ ├── 31.png │ │ │ ├── 32.png │ │ │ ├── 33.png │ │ │ ├── 34.png │ │ │ ├── 35.png │ │ │ ├── 36.png │ │ │ ├── 37.png │ │ │ ├── 38.png │ │ │ ├── 39.png │ │ │ ├── 4.png │ │ │ ├── 40.png │ │ │ ├── 41.png │ │ │ ├── 42.png │ │ │ ├── 43.png │ │ │ ├── 44.png │ │ │ ├── 45.png │ │ │ ├── 46.png │ │ │ ├── 47.png │ │ │ ├── 48.png │ │ │ ├── 49.png │ │ │ ├── 5.png │ │ │ ├── 50.png │ │ │ ├── 51.png │ │ │ ├── 52.png │ │ │ ├── 53.png │ │ │ ├── 54.png │ │ │ ├── 55.png │ │ │ ├── 56.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 59.png │ │ │ ├── 6.png │ │ │ ├── 60.png │ │ │ ├── 61.png │ │ │ ├── 62.png │ │ │ ├── 63.png │ │ │ ├── 64.png │ │ │ ├── 65.png │ │ │ ├── 66.png │ │ │ ├── 67.png │ │ │ ├── 68.png │ │ │ ├── 69.png │ │ │ ├── 7.png │ │ │ ├── 70.png │ │ │ ├── 71.png │ │ │ ├── 72.png │ │ │ ├── 73.png │ │ │ ├── 74.png │ │ │ ├── 75.png │ │ │ ├── 76.png │ │ │ ├── 77.png │ │ │ ├── 78.png │ │ │ ├── 79.png │ │ │ ├── 8.png │ │ │ ├── 80.png │ │ │ ├── 81.png │ │ │ ├── 82.png │ │ │ ├── 83.png │ │ │ ├── 84.png │ │ │ ├── 85.png │ │ │ ├── 86.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ ├── 89.png │ │ │ ├── 9.png │ │ │ ├── 90.png │ │ │ ├── 91.png │ │ │ ├── 92.png │ │ │ ├── 93.png │ │ │ ├── 94.png │ │ │ ├── 95.png │ │ │ ├── 96.png │ │ │ ├── 97.png │ │ │ ├── 98.png │ │ │ ├── 99.png │ │ │ ├── ea.gif │ │ │ ├── hbg.gif │ │ │ ├── join01.gif │ │ │ ├── join02.gif │ │ │ ├── join03.gif │ │ │ ├── join04.gif │ │ │ ├── minus01.gif │ │ │ ├── minus02.gif │ │ │ ├── minus03.gif │ │ │ ├── plus01.gif │ │ │ ├── plus02.gif │ │ │ └── plus03.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── data │ │ │ │ ├── 051FAF49-3CEB-4a03-B386-6FC9201A978D.xml │ │ │ │ ├── 053A198B-363C-446b-9F99-F803A89244D7.xml │ │ │ │ ├── 06EA5DCA-7A3C-4de5-9F32-03A256F6F514.xml │ │ │ │ ├── 070A68BA-1AC8-450c-983E-C28793FBC300.xml │ │ │ │ ├── 18CE6C9B-9019-48af-8CAD-DD80ABC83A16.xml │ │ │ │ ├── 1C13130C-FB40-4b76-BF62-2E7C58C19A3E.xml │ │ │ │ ├── 1C2F1F50-229F-404e-A1F8-261CD0AA219F.xml │ │ │ │ ├── 1E35D386-7CD2-4b6b-A57C-EE96C9DC73B9.xml │ │ │ │ ├── 1F81B33E-98CB-4f1d-AF83-7EE20F5D9D53.xml │ │ │ │ ├── 25E74233-451E-4b8b-9396-8D18907AF913.xml │ │ │ │ ├── 269797D9-2B6B-42be-A732-13CB516F61F6.xml │ │ │ │ ├── 27B6A0FC-6B58-48ad-BEBF-05E1B7AA6E84.xml │ │ │ │ ├── 37EAF43A-D13B-48ac-A0E4-AB38515A0806.xml │ │ │ │ ├── 3A3C0649-4AB8-43d1-9F18-FC97FA98E262.xml │ │ │ │ ├── 43FD7BF5-9E46-4353-81B5-98D8EF42F2E8.xml │ │ │ │ ├── 464B63E6-32E3-4555-9378-8A47ACFE232C.xml │ │ │ │ ├── 494A7E3C-8456-494a-BCD0-5028ADCAE2C2.xml │ │ │ │ ├── 54F85D67-508F-41b0-A5E6-AC6D94455113.xml │ │ │ │ ├── 603B56EB-3C8D-45b0-9A08-0049919B9BD2.xml │ │ │ │ ├── 6A19D284-6F1B-4e7b-BD4A-8BB2483E65D7.xml │ │ │ │ ├── 6F97B012-B325-4180-8078-1C7A5775660D.xml │ │ │ │ ├── 76F7F8D4-F93F-48ae-B976-B45C5A1038DB.xml │ │ │ │ ├── 7C72BD86-3590-4a6b-9235-7EF09D1F18FD.xml │ │ │ │ ├── 7F301524-235C-4c34-B059-0D8B517A4B67.xml │ │ │ │ ├── 82303462-9BAB-4365-A77D-0680C0C1B2D0.xml │ │ │ │ ├── 8479776A-C2E4-403b-AFDE-39A22BFE6EB2.xml │ │ │ │ ├── 8738DFC0-4EA0-4d0a-89BC-3C00E8EEBF2F.xml │ │ │ │ ├── 9043BFF7-5AE3-4ca9-A1FA-1849BB3FB3D2.xml │ │ │ │ ├── 9764622C-C74E-4dbb-976C-4F2075438C2F.xml │ │ │ │ ├── 99A9CE5F-7D50-484d-940D-CA3856B8D051.xml │ │ │ │ ├── 9B554FB2-647A-4f87-B254-992B3E67FBEE.xml │ │ │ │ ├── 9F9458C7-652F-433d-A10F-4C6D3C279EB1.xml │ │ │ │ ├── A30AAB8F-9929-4fcb-BCD2-DE02CCBC7E88.xml │ │ │ │ ├── A4E25363-A79B-48b9-8B49-ADD57F5F0880.xml │ │ │ │ ├── A6CF7DEC-8D0E-453e-8F95-D17B83E596FE.xml │ │ │ │ ├── B12A9396-47A4-487d-8A0B-9A99ADCCBB1B.xml │ │ │ │ ├── B1EB6F7F-6F27-48be-84E1-02A1BC2FDB6F.xml │ │ │ │ ├── B6A174D8-6DBF-446f-8FDC-5D820214753D.xml │ │ │ │ ├── BB12B178-4499-4bcb-A436-77B1C1125019.xml │ │ │ │ ├── C06315EB-EEAF-4e3f-B268-446EB4535D78.xml │ │ │ │ ├── C4BFAE7F-B404-44c0-97FD-847BF70D3C7B.xml │ │ │ │ ├── C6082D51-8C60-4371-BCD9-C114CC0785BC.xml │ │ │ │ ├── C67ABFA3-BE5C-4f95-AADD-B09212F77B5C.xml │ │ │ │ ├── CB22082C-FDDB-486d-BF87-B9C050129B9F.xml │ │ │ │ ├── D3D20A56-92E8-4ef0-A0BF-B166F906D4EA.xml │ │ │ │ ├── D47CDE81-4DD7-487a-AA79-C7CDFB149746.xml │ │ │ │ ├── DB182005-CEA6-4d23-A193-04AC9E7ADEA8.xml │ │ │ │ ├── EA2A4E5D-D19A-45c8-8FC7-4B81F40B0476.xml │ │ │ │ ├── ED8B5203-F5A1-4685-B64D-3B7891C50884.xml │ │ │ │ ├── EE1A132C-50F3-44e1-BDEC-F91428AFA821.xml │ │ │ │ ├── guidmaps │ │ │ │ │ ├── GuidMap02.xml │ │ │ │ │ ├── GuidMap03.xml │ │ │ │ │ ├── GuidMap04.xml │ │ │ │ │ ├── GuidMap05.xml │ │ │ │ │ ├── GuidMap06.xml │ │ │ │ │ ├── GuidMap07.xml │ │ │ │ │ ├── GuidMap09.xml │ │ │ │ │ ├── GuidMap0a.xml │ │ │ │ │ ├── GuidMap0c.xml │ │ │ │ │ ├── GuidMap0d.xml │ │ │ │ │ ├── GuidMap10.xml │ │ │ │ │ ├── GuidMap11.xml │ │ │ │ │ ├── GuidMap12.xml │ │ │ │ │ ├── GuidMap13.xml │ │ │ │ │ ├── GuidMap14.xml │ │ │ │ │ ├── GuidMap15.xml │ │ │ │ │ ├── GuidMap16.xml │ │ │ │ │ ├── GuidMap18.xml │ │ │ │ │ ├── GuidMap19.xml │ │ │ │ │ ├── GuidMap1a.xml │ │ │ │ │ ├── GuidMap1b.xml │ │ │ │ │ ├── GuidMap1c.xml │ │ │ │ │ ├── GuidMap1d.xml │ │ │ │ │ ├── GuidMap1e.xml │ │ │ │ │ ├── GuidMap1f.xml │ │ │ │ │ ├── GuidMap20.xml │ │ │ │ │ ├── GuidMap21.xml │ │ │ │ │ ├── GuidMap22.xml │ │ │ │ │ ├── GuidMap23.xml │ │ │ │ │ ├── GuidMap24.xml │ │ │ │ │ ├── GuidMap25.xml │ │ │ │ │ ├── GuidMap26.xml │ │ │ │ │ ├── GuidMap27.xml │ │ │ │ │ ├── GuidMap28.xml │ │ │ │ │ ├── GuidMap29.xml │ │ │ │ │ ├── GuidMap2c.xml │ │ │ │ │ ├── GuidMap2e.xml │ │ │ │ │ ├── GuidMap2f.xml │ │ │ │ │ ├── GuidMap30.xml │ │ │ │ │ ├── GuidMap31.xml │ │ │ │ │ ├── GuidMap34.xml │ │ │ │ │ ├── GuidMap36.xml │ │ │ │ │ ├── GuidMap37.xml │ │ │ │ │ ├── GuidMap3a.xml │ │ │ │ │ ├── GuidMap3b.xml │ │ │ │ │ ├── GuidMap3c.xml │ │ │ │ │ ├── GuidMap3d.xml │ │ │ │ │ ├── GuidMap3e.xml │ │ │ │ │ ├── GuidMap41.xml │ │ │ │ │ ├── GuidMap42.xml │ │ │ │ │ ├── GuidMap43.xml │ │ │ │ │ ├── GuidMap44.xml │ │ │ │ │ ├── GuidMap45.xml │ │ │ │ │ ├── GuidMap46.xml │ │ │ │ │ ├── GuidMap47.xml │ │ │ │ │ ├── GuidMap49.xml │ │ │ │ │ ├── GuidMap4a.xml │ │ │ │ │ ├── GuidMap4b.xml │ │ │ │ │ ├── GuidMap4c.xml │ │ │ │ │ ├── GuidMap4d.xml │ │ │ │ │ ├── GuidMap4e.xml │ │ │ │ │ ├── GuidMap50.xml │ │ │ │ │ ├── GuidMap51.xml │ │ │ │ │ ├── GuidMap52.xml │ │ │ │ │ ├── GuidMap53.xml │ │ │ │ │ ├── GuidMap54.xml │ │ │ │ │ ├── GuidMap55.xml │ │ │ │ │ ├── GuidMap56.xml │ │ │ │ │ ├── GuidMap57.xml │ │ │ │ │ ├── GuidMap58.xml │ │ │ │ │ ├── GuidMap59.xml │ │ │ │ │ ├── GuidMap5b.xml │ │ │ │ │ ├── GuidMap5c.xml │ │ │ │ │ ├── GuidMap5d.xml │ │ │ │ │ ├── GuidMap5e.xml │ │ │ │ │ ├── GuidMap5f.xml │ │ │ │ │ ├── GuidMap60.xml │ │ │ │ │ ├── GuidMap61.xml │ │ │ │ │ ├── GuidMap62.xml │ │ │ │ │ ├── GuidMap63.xml │ │ │ │ │ ├── GuidMap64.xml │ │ │ │ │ ├── GuidMap65.xml │ │ │ │ │ ├── GuidMap66.xml │ │ │ │ │ ├── GuidMap67.xml │ │ │ │ │ ├── GuidMap68.xml │ │ │ │ │ ├── GuidMap69.xml │ │ │ │ │ ├── GuidMap6a.xml │ │ │ │ │ ├── GuidMap6b.xml │ │ │ │ │ ├── GuidMap6c.xml │ │ │ │ │ ├── GuidMap6d.xml │ │ │ │ │ ├── GuidMap6e.xml │ │ │ │ │ ├── GuidMap6f.xml │ │ │ │ │ ├── GuidMap70.xml │ │ │ │ │ ├── GuidMap71.xml │ │ │ │ │ ├── GuidMap72.xml │ │ │ │ │ ├── GuidMap74.xml │ │ │ │ │ ├── GuidMap75.xml │ │ │ │ │ ├── GuidMap76.xml │ │ │ │ │ ├── GuidMap77.xml │ │ │ │ │ ├── GuidMap78.xml │ │ │ │ │ ├── GuidMap79.xml │ │ │ │ │ ├── GuidMap7a.xml │ │ │ │ │ ├── GuidMap7b.xml │ │ │ │ │ ├── GuidMap7c.xml │ │ │ │ │ ├── GuidMap7d.xml │ │ │ │ │ ├── GuidMap7f.xml │ │ │ │ │ ├── GuidMap81.xml │ │ │ │ │ ├── GuidMap82.xml │ │ │ │ │ ├── GuidMap84.xml │ │ │ │ │ ├── GuidMap86.xml │ │ │ │ │ ├── GuidMap87.xml │ │ │ │ │ ├── GuidMap89.xml │ │ │ │ │ ├── GuidMap8a.xml │ │ │ │ │ ├── GuidMap8c.xml │ │ │ │ │ ├── GuidMap8e.xml │ │ │ │ │ ├── GuidMap90.xml │ │ │ │ │ ├── GuidMap91.xml │ │ │ │ │ ├── GuidMap92.xml │ │ │ │ │ ├── GuidMap93.xml │ │ │ │ │ ├── GuidMap95.xml │ │ │ │ │ ├── GuidMap96.xml │ │ │ │ │ ├── GuidMap97.xml │ │ │ │ │ ├── GuidMap98.xml │ │ │ │ │ ├── GuidMap99.xml │ │ │ │ │ ├── GuidMap9b.xml │ │ │ │ │ ├── GuidMap9d.xml │ │ │ │ │ ├── GuidMap9e.xml │ │ │ │ │ ├── GuidMap9f.xml │ │ │ │ │ ├── GuidMapa0.xml │ │ │ │ │ ├── GuidMapa1.xml │ │ │ │ │ ├── GuidMapa2.xml │ │ │ │ │ ├── GuidMapa3.xml │ │ │ │ │ ├── GuidMapa4.xml │ │ │ │ │ ├── GuidMapa6.xml │ │ │ │ │ ├── GuidMapa7.xml │ │ │ │ │ ├── GuidMapa8.xml │ │ │ │ │ ├── GuidMapa9.xml │ │ │ │ │ ├── GuidMapab.xml │ │ │ │ │ ├── GuidMapad.xml │ │ │ │ │ ├── GuidMapae.xml │ │ │ │ │ ├── GuidMapaf.xml │ │ │ │ │ ├── GuidMapb0.xml │ │ │ │ │ ├── GuidMapb1.xml │ │ │ │ │ ├── GuidMapb4.xml │ │ │ │ │ ├── GuidMapb6.xml │ │ │ │ │ ├── GuidMapb7.xml │ │ │ │ │ ├── GuidMapb8.xml │ │ │ │ │ ├── GuidMapb9.xml │ │ │ │ │ ├── GuidMapba.xml │ │ │ │ │ ├── GuidMapbb.xml │ │ │ │ │ ├── GuidMapbd.xml │ │ │ │ │ ├── GuidMapbe.xml │ │ │ │ │ ├── GuidMapbf.xml │ │ │ │ │ ├── GuidMapc0.xml │ │ │ │ │ ├── GuidMapc1.xml │ │ │ │ │ ├── GuidMapc2.xml │ │ │ │ │ ├── GuidMapc4.xml │ │ │ │ │ ├── GuidMapc6.xml │ │ │ │ │ ├── GuidMapc7.xml │ │ │ │ │ ├── GuidMapc9.xml │ │ │ │ │ ├── GuidMapcb.xml │ │ │ │ │ ├── GuidMapcc.xml │ │ │ │ │ ├── GuidMapcd.xml │ │ │ │ │ ├── GuidMapcf.xml │ │ │ │ │ ├── GuidMapd0.xml │ │ │ │ │ ├── GuidMapd2.xml │ │ │ │ │ ├── GuidMapd3.xml │ │ │ │ │ ├── GuidMapd4.xml │ │ │ │ │ ├── GuidMapd5.xml │ │ │ │ │ ├── GuidMapd9.xml │ │ │ │ │ ├── GuidMapda.xml │ │ │ │ │ ├── GuidMapdb.xml │ │ │ │ │ ├── GuidMapdc.xml │ │ │ │ │ ├── GuidMapdf.xml │ │ │ │ │ ├── GuidMape0.xml │ │ │ │ │ ├── GuidMape1.xml │ │ │ │ │ ├── GuidMape2.xml │ │ │ │ │ ├── GuidMape4.xml │ │ │ │ │ ├── GuidMape5.xml │ │ │ │ │ ├── GuidMape6.xml │ │ │ │ │ ├── GuidMape8.xml │ │ │ │ │ ├── GuidMape9.xml │ │ │ │ │ ├── GuidMapea.xml │ │ │ │ │ ├── GuidMapeb.xml │ │ │ │ │ ├── GuidMaped.xml │ │ │ │ │ ├── GuidMapee.xml │ │ │ │ │ ├── GuidMapf0.xml │ │ │ │ │ ├── GuidMapf2.xml │ │ │ │ │ ├── GuidMapf3.xml │ │ │ │ │ ├── GuidMapf4.xml │ │ │ │ │ ├── GuidMapf5.xml │ │ │ │ │ ├── GuidMapf6.xml │ │ │ │ │ ├── GuidMapf7.xml │ │ │ │ │ ├── GuidMapf8.xml │ │ │ │ │ ├── GuidMapf9.xml │ │ │ │ │ ├── GuidMapfb.xml │ │ │ │ │ ├── GuidMapfc.xml │ │ │ │ │ ├── GuidMapfd.xml │ │ │ │ │ └── GuidMapfe.xml │ │ │ │ └── root.xml │ │ │ └── displayToc.js │ │ └── toc.htm │ └── mainpage.docs ├── libs │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── apr-toolkit │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aprtoolkit.vcproj │ │ ├── aprtoolkit.vcxproj │ │ ├── aprtoolkit.vcxproj.filters │ │ ├── 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 │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── apt_consumer_task.Plo │ │ │ ├── apt_cyclic_queue.Plo │ │ │ ├── apt_dir_layout.Plo │ │ │ ├── apt_header_field.Plo │ │ │ ├── apt_log.Plo │ │ │ ├── apt_multipart_content.Plo │ │ │ ├── apt_net.Plo │ │ │ ├── apt_nlsml_doc.Plo │ │ │ ├── apt_obj_list.Plo │ │ │ ├── apt_pair.Plo │ │ │ ├── apt_poller_task.Plo │ │ │ ├── apt_pollset.Plo │ │ │ ├── apt_pool.Plo │ │ │ ├── apt_string_table.Plo │ │ │ ├── apt_task.Plo │ │ │ ├── apt_task_msg.Plo │ │ │ ├── apt_test_suite.Plo │ │ │ ├── apt_text_message.Plo │ │ │ ├── apt_text_stream.Plo │ │ │ └── apt_timer_queue.Plo │ │ │ ├── .dirstamp │ │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── codecs │ │ │ └── g711 │ │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ └── g711.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── 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_engine_factory.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_trace.h │ │ │ └── mpf_types.h │ │ ├── mpf.vcproj │ │ ├── mpf.vcxproj │ │ ├── mpf.vcxproj.filters │ │ ├── roo │ │ │ └── .deps │ │ │ │ └── libwebrtcvad.Plo │ │ ├── src │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── mpf_activity_detector.Plo │ │ │ │ ├── mpf_audio_file_stream.Plo │ │ │ │ ├── mpf_bridge.Plo │ │ │ │ ├── mpf_buffer.Plo │ │ │ │ ├── mpf_codec_descriptor.Plo │ │ │ │ ├── mpf_codec_g711.Plo │ │ │ │ ├── mpf_codec_linear.Plo │ │ │ │ ├── mpf_codec_manager.Plo │ │ │ │ ├── mpf_context.Plo │ │ │ │ ├── mpf_decoder.Plo │ │ │ │ ├── mpf_dtmf_detector.Plo │ │ │ │ ├── mpf_dtmf_generator.Plo │ │ │ │ ├── mpf_encoder.Plo │ │ │ │ ├── mpf_engine.Plo │ │ │ │ ├── mpf_engine_factory.Plo │ │ │ │ ├── mpf_file_termination_factory.Plo │ │ │ │ ├── mpf_frame_buffer.Plo │ │ │ │ ├── mpf_jitter_buffer.Plo │ │ │ │ ├── mpf_mixer.Plo │ │ │ │ ├── mpf_multiplier.Plo │ │ │ │ ├── mpf_named_event.Plo │ │ │ │ ├── mpf_resampler.Plo │ │ │ │ ├── mpf_rtp_attribs.Plo │ │ │ │ ├── mpf_rtp_stream.Plo │ │ │ │ ├── mpf_rtp_termination_factory.Plo │ │ │ │ ├── mpf_scheduler.Plo │ │ │ │ ├── mpf_stream.Plo │ │ │ │ ├── mpf_termination.Plo │ │ │ │ └── mpf_termination_factory.Plo │ │ │ ├── .dirstamp │ │ │ ├── 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_engine_factory.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 │ │ └── webrtc │ │ │ ├── common_audio │ │ │ ├── .deps │ │ │ │ ├── signal_processingcomplex_fft.Plo │ │ │ │ ├── signal_processingcross_correlation.Plo │ │ │ │ ├── signal_processingdivision_operations.Plo │ │ │ │ ├── signal_processingdownsample_fast.Plo │ │ │ │ ├── signal_processingenergy.Plo │ │ │ │ ├── signal_processingget_scaling_square.Plo │ │ │ │ ├── signal_processingmin_max_operations.Plo │ │ │ │ ├── signal_processingreal_fft.Plo │ │ │ │ ├── signal_processingresample_48khz.Plo │ │ │ │ ├── signal_processingresample_by_2_internal.Plo │ │ │ │ ├── signal_processingresample_fractional.Plo │ │ │ │ ├── signal_processingspl_init.Plo │ │ │ │ └── signal_processingvector_scaling_operations.Plo │ │ │ ├── signal_processing │ │ │ │ ├── .deps │ │ │ │ │ ├── .dirstamp │ │ │ │ │ ├── complex_bit_reverse.Plo │ │ │ │ │ ├── complex_fft.Plo │ │ │ │ │ ├── cross_correlation.Plo │ │ │ │ │ ├── division_operations.Plo │ │ │ │ │ ├── downsample_fast.Plo │ │ │ │ │ ├── energy.Plo │ │ │ │ │ ├── get_scaling_square.Plo │ │ │ │ │ ├── min_max_operations.Plo │ │ │ │ │ ├── real_fft.Plo │ │ │ │ │ ├── resample_48khz.Plo │ │ │ │ │ ├── resample_by_2_internal.Plo │ │ │ │ │ ├── resample_fractional.Plo │ │ │ │ │ ├── spl_init.Plo │ │ │ │ │ └── vector_scaling_operations.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── complex_bit_reverse.c │ │ │ │ ├── complex_fft.c │ │ │ │ ├── complex_fft_tables.h │ │ │ │ ├── cross_correlation.c │ │ │ │ ├── division_operations.c │ │ │ │ ├── downsample_fast.c │ │ │ │ ├── energy.c │ │ │ │ ├── get_scaling_square.c │ │ │ │ ├── include │ │ │ │ │ ├── real_fft.h │ │ │ │ │ ├── signal_processing_library.h │ │ │ │ │ └── spl_inl.h │ │ │ │ ├── min_max_operations.c │ │ │ │ ├── real_fft.c │ │ │ │ ├── resample_48khz.c │ │ │ │ ├── resample_by_2_internal.c │ │ │ │ ├── resample_by_2_internal.h │ │ │ │ ├── resample_fractional.c │ │ │ │ ├── spl_init.c │ │ │ │ └── vector_scaling_operations.c │ │ │ └── vad │ │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── vad_core.Plo │ │ │ │ ├── vad_filterbank.Plo │ │ │ │ ├── vad_gmm.Plo │ │ │ │ ├── vad_sp.Plo │ │ │ │ └── webrtc_vad.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── include │ │ │ │ └── webrtc_vad.h │ │ │ │ ├── vad_core.c │ │ │ │ ├── vad_core.h │ │ │ │ ├── vad_filterbank.c │ │ │ │ ├── vad_filterbank.h │ │ │ │ ├── vad_gmm.c │ │ │ │ ├── vad_gmm.h │ │ │ │ ├── vad_sp.c │ │ │ │ ├── vad_sp.h │ │ │ │ └── webrtc_vad.c │ │ │ ├── system_wrappers │ │ │ └── interface │ │ │ │ └── cpu_features_wrapper.h │ │ │ └── typedefs.h │ ├── mrcp-client │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── mrcp_application.h │ │ │ ├── mrcp_client.h │ │ │ ├── mrcp_client_session.h │ │ │ └── mrcp_client_types.h │ │ ├── mrcpclient.vcproj │ │ ├── mrcpclient.vcxproj │ │ ├── mrcpclient.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_application.Plo │ │ │ ├── mrcp_client.Plo │ │ │ └── mrcp_client_session.Plo │ │ │ ├── .dirstamp │ │ │ ├── mrcp_application.c │ │ │ ├── mrcp_client.c │ │ │ └── mrcp_client_session.c │ ├── mrcp-engine │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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.vcproj │ │ ├── mrcpengine.vcxproj │ │ ├── mrcpengine.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_engine_factory.Plo │ │ │ ├── mrcp_engine_iface.Plo │ │ │ ├── mrcp_engine_impl.Plo │ │ │ ├── mrcp_engine_loader.Plo │ │ │ ├── mrcp_recog_state_machine.Plo │ │ │ ├── mrcp_recorder_state_machine.Plo │ │ │ ├── mrcp_synth_state_machine.Plo │ │ │ └── mrcp_verifier_state_machine.Plo │ │ │ ├── .dirstamp │ │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── mrcp_server.h │ │ │ ├── mrcp_server_session.h │ │ │ └── mrcp_server_types.h │ │ ├── mrcpserver.vcproj │ │ ├── mrcpserver.vcxproj │ │ ├── mrcpserver.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_server.Plo │ │ │ └── mrcp_server_session.Plo │ │ │ ├── .dirstamp │ │ │ ├── mrcp_server.c │ │ │ └── mrcp_server_session.c │ ├── mrcp-signaling │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── mrcp_session.h │ │ │ ├── mrcp_session_descriptor.h │ │ │ ├── mrcp_sig_agent.h │ │ │ └── mrcp_sig_types.h │ │ ├── mrcpsignaling.vcproj │ │ ├── mrcpsignaling.vcxproj │ │ ├── mrcpsignaling.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_session_descriptor.Plo │ │ │ └── mrcp_sig_agent.Plo │ │ │ ├── .dirstamp │ │ │ ├── mrcp_session_descriptor.c │ │ │ └── mrcp_sig_agent.c │ ├── mrcp │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── control │ │ │ ├── include │ │ │ │ ├── mrcp_resource.h │ │ │ │ ├── mrcp_resource_factory.h │ │ │ │ ├── mrcp_resource_loader.h │ │ │ │ └── mrcp_stream.h │ │ │ └── src │ │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── mrcp_resource_factory.Plo │ │ │ │ ├── mrcp_resource_loader.Plo │ │ │ │ └── mrcp_stream.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── 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 │ │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── mrcp_generic_header.Plo │ │ │ │ ├── mrcp_header.Plo │ │ │ │ ├── mrcp_header_accessor.Plo │ │ │ │ ├── mrcp_message.Plo │ │ │ │ └── mrcp_start_line.Plo │ │ │ │ ├── .dirstamp │ │ │ │ ├── mrcp_generic_header.c │ │ │ │ ├── mrcp_header.c │ │ │ │ ├── mrcp_header_accessor.c │ │ │ │ ├── mrcp_message.c │ │ │ │ └── mrcp_start_line.c │ │ ├── mrcp.vcproj │ │ ├── mrcp.vcxproj │ │ ├── mrcp.vcxproj.filters │ │ └── 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 │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_recog_header.Plo │ │ │ ├── mrcp_recog_resource.Plo │ │ │ ├── mrcp_recorder_header.Plo │ │ │ ├── mrcp_recorder_resource.Plo │ │ │ ├── mrcp_synth_header.Plo │ │ │ ├── mrcp_synth_resource.Plo │ │ │ ├── mrcp_verifier_header.Plo │ │ │ └── mrcp_verifier_resource.Plo │ │ │ ├── .dirstamp │ │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── mrcp_ca_factory.h │ │ │ ├── mrcp_client_connection.h │ │ │ ├── mrcp_connection.h │ │ │ ├── mrcp_connection_types.h │ │ │ ├── mrcp_control_descriptor.h │ │ │ └── mrcp_server_connection.h │ │ ├── mrcpv2transport.vcproj │ │ ├── mrcpv2transport.vcxproj │ │ ├── mrcpv2transport.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_ca_factory.Plo │ │ │ ├── mrcp_client_connection.Plo │ │ │ ├── mrcp_connection.Plo │ │ │ ├── mrcp_control_descriptor.Plo │ │ │ └── mrcp_server_connection.Plo │ │ │ ├── .dirstamp │ │ │ ├── mrcp_ca_factory.c │ │ │ ├── mrcp_client_connection.c │ │ │ ├── mrcp_connection.c │ │ │ ├── mrcp_control_descriptor.c │ │ │ └── mrcp_server_connection.c │ ├── uni-rtsp │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── rtsp.h │ │ │ ├── rtsp_client.h │ │ │ ├── rtsp_header.h │ │ │ ├── rtsp_message.h │ │ │ ├── rtsp_server.h │ │ │ ├── rtsp_start_line.h │ │ │ └── rtsp_stream.h │ │ ├── src │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── rtsp_client.Plo │ │ │ │ ├── rtsp_header.Plo │ │ │ │ ├── rtsp_message.Plo │ │ │ │ ├── rtsp_server.Plo │ │ │ │ ├── rtsp_start_line.Plo │ │ │ │ └── rtsp_stream.Plo │ │ │ ├── .dirstamp │ │ │ ├── rtsp_client.c │ │ │ ├── rtsp_header.c │ │ │ ├── rtsp_message.c │ │ │ ├── rtsp_server.c │ │ │ ├── rtsp_start_line.c │ │ │ └── rtsp_stream.c │ │ ├── unirtsp.vcproj │ │ ├── unirtsp.vcxproj │ │ └── unirtsp.vcxproj.filters │ ├── webrtc_vad.tar.gz │ └── webrtc_vad │ │ └── include │ │ ├── vad.h │ │ └── webrtc_vad.h ├── libtool ├── modules │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── mrcp-sofiasip │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── mrcp_sdp.h │ │ │ ├── mrcp_sofiasip_client_agent.h │ │ │ ├── mrcp_sofiasip_logger.h │ │ │ ├── mrcp_sofiasip_server_agent.h │ │ │ └── mrcp_sofiasip_task.h │ │ ├── mrcpsofiasip.vcproj │ │ ├── mrcpsofiasip.vcxproj │ │ ├── mrcpsofiasip.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── mrcp_sdp.Plo │ │ │ ├── mrcp_sofiasip_client_agent.Plo │ │ │ ├── mrcp_sofiasip_logger.Plo │ │ │ ├── mrcp_sofiasip_server_agent.Plo │ │ │ └── mrcp_sofiasip_task.Plo │ │ │ ├── .dirstamp │ │ │ ├── mrcp_sdp.c │ │ │ ├── mrcp_sofiasip_client_agent.c │ │ │ ├── mrcp_sofiasip_logger.c │ │ │ ├── mrcp_sofiasip_server_agent.c │ │ │ └── mrcp_sofiasip_task.c │ └── mrcp-unirtsp │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ ├── mrcp_unirtsp_client_agent.h │ │ ├── mrcp_unirtsp_logger.h │ │ ├── mrcp_unirtsp_sdp.h │ │ └── mrcp_unirtsp_server_agent.h │ │ ├── mrcpunirtsp.vcproj │ │ ├── mrcpunirtsp.vcxproj │ │ ├── mrcpunirtsp.vcxproj.filters │ │ └── src │ │ ├── .deps │ │ ├── .dirstamp │ │ ├── mrcp_unirtsp_client_agent.Plo │ │ ├── mrcp_unirtsp_logger.Plo │ │ ├── mrcp_unirtsp_sdp.Plo │ │ └── mrcp_unirtsp_server_agent.Plo │ │ ├── .dirstamp │ │ ├── mrcp_unirtsp_client_agent.c │ │ ├── mrcp_unirtsp_logger.c │ │ ├── mrcp_unirtsp_sdp.c │ │ └── mrcp_unirtsp_server_agent.c ├── platforms │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── asr-client │ │ ├── .libs │ │ │ └── asrclient │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asrclient │ │ ├── asrclient.vcproj │ │ ├── asrclient.vcxproj │ │ ├── asrclient.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── main.Po │ │ │ ├── .dirstamp │ │ │ └── main.c │ ├── libasr-client │ │ ├── .libs │ │ │ └── libasrclient.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ └── asr_engine.h │ │ ├── libasrclient.vcproj │ │ ├── libasrclient.vcxproj │ │ ├── libasrclient.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── asr_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── asr_engine.c │ ├── libunimrcp-client │ │ ├── .libs │ │ │ └── libunimrcpclient.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ └── unimrcp_client.h │ │ ├── libunimrcpclient.vcproj │ │ ├── libunimrcpclient.vcxproj │ │ ├── libunimrcpclient.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── unimrcp_client.Plo │ │ │ ├── .dirstamp │ │ │ └── unimrcp_client.c │ ├── libunimrcp-server │ │ ├── .libs │ │ │ └── libunimrcpserver.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ └── unimrcp_server.h │ │ ├── libunimrcpserver.vcproj │ │ ├── libunimrcpserver.vcxproj │ │ ├── libunimrcpserver.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── unimrcp_server.Plo │ │ │ ├── .dirstamp │ │ │ └── unimrcp_server.c │ ├── umc │ │ ├── .libs │ │ │ └── umc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── 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 │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── dtmfscenario.Po │ │ │ │ ├── dtmfsession.Po │ │ │ │ ├── main.Po │ │ │ │ ├── recogscenario.Po │ │ │ │ ├── recogsession.Po │ │ │ │ ├── recorderscenario.Po │ │ │ │ ├── recordersession.Po │ │ │ │ ├── setparamscenario.Po │ │ │ │ ├── setparamsession.Po │ │ │ │ ├── synthscenario.Po │ │ │ │ ├── synthsession.Po │ │ │ │ ├── umcconsole.Po │ │ │ │ ├── umcframework.Po │ │ │ │ ├── umcscenario.Po │ │ │ │ ├── umcsession.Po │ │ │ │ ├── verifierscenario.Po │ │ │ │ └── verifiersession.Po │ │ │ ├── .dirstamp │ │ │ ├── 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 │ │ ├── umc.rc │ │ ├── umc.vcproj │ │ ├── umc.vcxproj │ │ └── umc.vcxproj.filters │ ├── unimrcp-client │ │ ├── .libs │ │ │ └── unimrcpclient │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── demo_application.h │ │ │ ├── demo_framework.h │ │ │ └── demo_util.h │ │ ├── src │ │ │ ├── .deps │ │ │ │ ├── .dirstamp │ │ │ │ ├── demo_bypass_application.Po │ │ │ │ ├── demo_discover_application.Po │ │ │ │ ├── demo_framework.Po │ │ │ │ ├── demo_recog_application.Po │ │ │ │ ├── demo_synth_application.Po │ │ │ │ ├── demo_util.Po │ │ │ │ └── main.Po │ │ │ ├── .dirstamp │ │ │ ├── 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 │ │ ├── unimrcpclient.rc │ │ ├── unimrcpclient.vcproj │ │ ├── unimrcpclient.vcxproj │ │ └── unimrcpclient.vcxproj.filters │ └── unimrcp-server │ │ ├── .libs │ │ └── unimrcpserver │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── src │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ ├── main.Po │ │ │ ├── uni_cmdline.Po │ │ │ └── uni_daemon.Po │ │ ├── .dirstamp │ │ ├── main.c │ │ ├── uni_cmdline.c │ │ ├── uni_daemon.c │ │ └── uni_service.c │ │ ├── unimrcpserver │ │ ├── unimrcpserver.rc │ │ ├── unimrcpserver.vcproj │ │ ├── unimrcpserver.vcxproj │ │ └── unimrcpserver.vcxproj.filters ├── plugins │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── demo-recog │ │ ├── .libs │ │ │ └── demorecog.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── demorecog.vcproj │ │ ├── demorecog.vcxproj │ │ ├── demorecog.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── demo_recog_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── demo_recog_engine.c │ ├── demo-synth │ │ ├── .libs │ │ │ └── demosynth.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── demosynth.vcproj │ │ ├── demosynth.vcxproj │ │ ├── demosynth.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── demo_synth_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── demo_synth_engine.c │ ├── demo-verifier │ │ ├── .libs │ │ │ └── demoverifier.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── demoverifier.vcproj │ │ ├── demoverifier.vcxproj │ │ ├── demoverifier.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── demo_verifier_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── demo_verifier_engine.c │ ├── mrcp-recorder │ │ ├── .libs │ │ │ └── mrcprecorder.lai │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── mrcprecorder.vcproj │ │ ├── mrcprecorder.vcxproj │ │ ├── mrcprecorder.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── mrcp_recorder_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── mrcp_recorder_engine.c │ ├── third-party │ │ └── xfyun │ │ │ ├── README │ │ │ ├── bin │ │ │ ├── gm_continuous_digit.abnf │ │ │ ├── ise_cn │ │ │ │ ├── cn_sentence.txt │ │ │ │ ├── cn_sentence.wav │ │ │ │ ├── cn_syll.txt │ │ │ │ ├── cn_syll.wav │ │ │ │ ├── cn_syll2.txt │ │ │ │ ├── cn_word.txt │ │ │ │ └── cn_word.wav │ │ │ ├── ise_en │ │ │ │ ├── en_sentence.txt │ │ │ │ ├── en_sentence.wav │ │ │ │ ├── en_word.txt │ │ │ │ └── en_word.wav │ │ │ ├── msc │ │ │ │ └── msc.cfg │ │ │ ├── source.txt │ │ │ ├── userwords.txt │ │ │ └── wav │ │ │ │ ├── iflytek01.wav │ │ │ │ ├── iflytek02.wav │ │ │ │ └── weather.pcm │ │ │ ├── doc │ │ │ ├── Grammar Development Guidelines.chm │ │ │ ├── Open Semantic Platform API Documents.pdf │ │ │ ├── Recording API Documents.doc │ │ │ └── readme.txt │ │ │ ├── include │ │ │ ├── msp_cmn.h │ │ │ ├── msp_errors.h │ │ │ ├── msp_types.h │ │ │ ├── qise.h │ │ │ ├── qisr.h │ │ │ └── qtts.h │ │ │ ├── libs │ │ │ ├── x64 │ │ │ │ └── libmsc.so │ │ │ └── x86 │ │ │ │ └── libmsc.so │ │ │ ├── release.txt │ │ │ └── samples │ │ │ ├── iat_online_record_sample │ │ │ ├── 32bit_make.sh │ │ │ ├── 64bit_make.sh │ │ │ ├── Makefile │ │ │ ├── formats.h │ │ │ ├── iat_online_record_sample.c │ │ │ ├── linuxrec.c │ │ │ ├── linuxrec.h │ │ │ ├── speech_recognizer.c │ │ │ └── speech_recognizer.h │ │ │ ├── iat_online_sample │ │ │ ├── 32bit_make.sh │ │ │ ├── 64bit_make.sh │ │ │ ├── Makefile │ │ │ └── iat_online_sample.c │ │ │ ├── ise_online_sample │ │ │ ├── 32bit_make.sh │ │ │ ├── 64bit_make.sh │ │ │ ├── Makefile │ │ │ └── ise_online_sample.c │ │ │ ├── sch_translate_sample │ │ │ ├── 32bit_make.sh │ │ │ ├── 64bit_make.sh │ │ │ ├── Makefile │ │ │ ├── json.c │ │ │ ├── json.h │ │ │ └── sch_speak_sample.c │ │ │ └── tts_online_sample │ │ │ ├── 32bit_make.sh │ │ │ ├── 64bit_make.sh │ │ │ ├── Makefile │ │ │ └── tts_online_sample.c │ ├── xfyun-recog │ │ ├── .libs │ │ │ └── xfyunrecog.lai │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── src │ │ │ ├── .deps │ │ │ ├── .dirstamp │ │ │ └── xfyun_recog_engine.Plo │ │ │ ├── .dirstamp │ │ │ └── xfyun_recog_engine.c │ └── xfyun-synth │ │ ├── .libs │ │ └── xfyunsynth.lai │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── src │ │ ├── .deps │ │ ├── .dirstamp │ │ ├── demo_synth_engine.Plo │ │ └── xfyun_synth_engine.Plo │ │ ├── .dirstamp │ │ └── xfyun_synth_engine.c ├── tests │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── apttest │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── apttest.vcproj │ │ ├── apttest.vcxproj │ │ ├── apttest.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── consumer_task_suite.Po │ │ │ ├── main.Po │ │ │ ├── multipart_suite.Po │ │ │ └── task_suite.Po │ │ │ ├── consumer_task_suite.c │ │ │ ├── main.c │ │ │ ├── multipart_suite.c │ │ │ └── task_suite.c │ ├── mpftest │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── mpftest.vcproj │ │ ├── mpftest.vcxproj │ │ ├── mpftest.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── main.Po │ │ │ └── mpf_suite.Po │ │ │ ├── main.c │ │ │ └── mpf_suite.c │ ├── mrcptest │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── mrcptest.vcproj │ │ ├── mrcptest.vcxproj │ │ ├── mrcptest.vcxproj.filters │ │ ├── src │ │ │ ├── .deps │ │ │ │ ├── main.Po │ │ │ │ ├── parse_gen_suite.Po │ │ │ │ ├── set_get_suite.Po │ │ │ │ └── transparent_set_get_suite.Po │ │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── msg │ │ │ ├── announce.msg │ │ │ ├── ok.msg │ │ │ ├── re-ok.msg │ │ │ ├── re-setup.msg │ │ │ ├── setup.msg │ │ │ ├── teardown.msg │ │ │ └── ultimate.msg │ │ ├── rtsptest.vcproj │ │ ├── rtsptest.vcxproj │ │ ├── rtsptest.vcxproj.filters │ │ └── src │ │ │ ├── .deps │ │ │ ├── main.Po │ │ │ └── parse_gen_suite.Po │ │ │ ├── main.c │ │ │ └── parse_gen_suite.c │ ├── sipp │ │ ├── mrcp_uac_discovery │ │ ├── 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 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── src │ │ ├── .deps │ │ │ └── main.Po │ │ └── main.c │ │ ├── stringtable.in │ │ ├── strtablegen.vcproj │ │ ├── strtablegen.vcxproj │ │ └── strtablegen.vcxproj.filters ├── unimrcp-2010.sln └── unimrcp.sln └── unimrcp-deps-1.5.0 ├── CHANGES-deps ├── README-deps ├── build-dep-libs.sh └── libs ├── apr-util ├── .libs │ └── libaprutil-1.lai ├── .make.dirs ├── CHANGES ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── Makefile.in ├── Makefile.win ├── NOTICE ├── NWGNUmakefile ├── README ├── README.cmake ├── apr-util.pc ├── apr-util.pc.in ├── apr-util.spec ├── aprutil.dep ├── aprutil.dsp ├── aprutil.dsw ├── aprutil.exp ├── aprutil.mak ├── aprutil.vcproj ├── aprutil.vcxproj ├── aprutil.vcxproj.filters ├── apu-1-config ├── apu-config.in ├── apu-config.out ├── 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 │ ├── apr_common.m4 │ ├── apu-conf.m4 │ ├── apu-hints.m4 │ ├── apu-iconv.m4 │ ├── config.guess │ ├── config.sub │ ├── crypto.m4 │ ├── dbd.m4 │ ├── dbm.m4 │ ├── dso.m4 │ ├── find_apr.m4 │ ├── find_apu.m4 │ ├── get-version.sh │ ├── install.sh │ ├── mkdir.sh │ ├── nw_apu_export.inc │ ├── pkg │ │ ├── README │ │ ├── buildpkg.sh │ │ ├── pkginfo │ │ └── pkginfo.in │ ├── preaprutil.dsp │ ├── rpm │ │ └── apr-util.spec.in │ ├── rules.mk │ └── w32locatedb.pl ├── buildconf ├── config.layout ├── config.log ├── config.nice ├── config.status ├── configure ├── configure.in ├── crypto │ ├── apr_crypto.c │ ├── apr_crypto_nss.c │ ├── apr_crypto_nss.dep │ ├── apr_crypto_nss.dsp │ ├── apr_crypto_nss.mak │ ├── apr_crypto_openssl.c │ ├── apr_crypto_openssl.dep │ ├── apr_crypto_openssl.dsp │ ├── apr_crypto_openssl.mak │ ├── apr_md4.c │ ├── apr_md5.c │ ├── apr_passwd.c │ ├── apr_sha1.c │ ├── crypt_blowfish.c │ ├── crypt_blowfish.h │ ├── getuuid.c │ └── uuid.c ├── dbd │ ├── .libs │ │ ├── apr_dbd_odbc.lai │ │ └── apr_dbd_sqlite3.lai │ ├── NWGNUdbdfreetds │ ├── NWGNUdbdmysql │ ├── NWGNUdbdpgsql │ ├── NWGNUdbdsqli2 │ ├── NWGNUdbdsqli3 │ ├── NWGNUmakefile │ ├── apr_dbd.c │ ├── apr_dbd_freetds.c │ ├── apr_dbd_freetds.dep │ ├── apr_dbd_freetds.dsp │ ├── apr_dbd_freetds.mak │ ├── apr_dbd_mysql.c │ ├── apr_dbd_mysql.dep │ ├── apr_dbd_mysql.dsp │ ├── apr_dbd_mysql.mak │ ├── apr_dbd_odbc.c │ ├── apr_dbd_odbc.dep │ ├── apr_dbd_odbc.dsp │ ├── apr_dbd_odbc.mak │ ├── apr_dbd_oracle.c │ ├── apr_dbd_oracle.dep │ ├── apr_dbd_oracle.dsp │ ├── apr_dbd_oracle.mak │ ├── apr_dbd_pgsql.c │ ├── apr_dbd_pgsql.dep │ ├── apr_dbd_pgsql.dsp │ ├── apr_dbd_pgsql.mak │ ├── apr_dbd_sqlite2.c │ ├── apr_dbd_sqlite2.dep │ ├── apr_dbd_sqlite2.dsp │ ├── apr_dbd_sqlite2.mak │ ├── apr_dbd_sqlite3.c │ ├── apr_dbd_sqlite3.dep │ ├── apr_dbd_sqlite3.dsp │ └── apr_dbd_sqlite3.mak ├── dbm │ ├── NWGNUdbmdb │ ├── NWGNUdbmgdbm │ ├── NWGNUmakefile │ ├── apr_dbm.c │ ├── apr_dbm_berkeleydb.c │ ├── apr_dbm_db.dep │ ├── apr_dbm_db.dsp │ ├── apr_dbm_db.mak │ ├── apr_dbm_gdbm.c │ ├── apr_dbm_gdbm.dep │ ├── apr_dbm_gdbm.dsp │ ├── apr_dbm_gdbm.mak │ ├── 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.c ├── export_vars.sh ├── export_vars.sh.in ├── exports.c ├── hooks │ └── apr_hooks.c ├── include │ ├── apr_anylock.h │ ├── apr_base64.h │ ├── apr_buckets.h │ ├── apr_crypto.h │ ├── apr_date.h │ ├── apr_dbd.h │ ├── apr_dbm.h │ ├── apr_hooks.h │ ├── apr_ldap.h │ ├── apr_ldap.h.in │ ├── apr_ldap.hnw │ ├── apr_ldap.hw │ ├── apr_ldap.hwc │ ├── apr_ldap_init.h │ ├── apr_ldap_option.h │ ├── apr_ldap_rebind.h │ ├── apr_ldap_url.h │ ├── apr_md4.h │ ├── apr_md5.h │ ├── apr_memcache.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_thread_pool.h │ ├── apr_uri.h │ ├── apr_uuid.h │ ├── apr_xlate.h │ ├── apr_xml.h │ ├── apu.h │ ├── apu.h.in │ ├── apu.hnw │ ├── apu.hw │ ├── apu.hwc │ ├── apu_errno.h │ ├── apu_version.h │ ├── apu_want.h │ ├── apu_want.h.in │ ├── apu_want.hnw │ ├── apu_want.hw │ └── private │ │ ├── apr_crypto_internal.h │ │ ├── apr_dbd_internal.h │ │ ├── apr_dbd_odbc_v2.h │ │ ├── apr_dbm_private.h │ │ ├── apu_config.h │ │ ├── apu_config.h.in │ │ ├── apu_config.hnw │ │ ├── apu_config.hw │ │ ├── apu_internal.h │ │ ├── apu_select_dbm.h │ │ ├── apu_select_dbm.h.in │ │ └── apu_select_dbm.hw ├── ldap │ ├── NWGNUmakefile │ ├── apr_ldap.dep │ ├── apr_ldap.dsp │ ├── apr_ldap.mak │ ├── apr_ldap_init.c │ ├── apr_ldap_option.c │ ├── apr_ldap_rebind.c │ ├── apr_ldap_stub.c │ └── apr_ldap_url.c ├── libaprutil.dep ├── libaprutil.dsp ├── libaprutil.mak ├── libaprutil.rc ├── libaprutil.vcproj ├── libaprutil.vcxproj ├── libaprutil.vcxproj.filters ├── memcache │ └── apr_memcache.c ├── misc │ ├── apr_date.c │ ├── apr_queue.c │ ├── apr_reslist.c │ ├── apr_rmm.c │ ├── apr_thread_pool.c │ ├── apu_dso.c │ └── apu_version.c ├── renames_pending ├── strmatch │ └── apr_strmatch.c ├── test │ ├── Makefile │ ├── Makefile.in │ ├── Makefile.win │ ├── NWGNUaputest │ ├── NWGNUmakefile │ ├── abts.c │ ├── abts.h │ ├── abts_tests.h │ ├── data │ │ └── billion-laughs.xml │ ├── dbd.c │ ├── nw_misc.c │ ├── test_apu.h │ ├── testall.dsw │ ├── testbuckets.c │ ├── testcrypto.c │ ├── testdate.c │ ├── testdbd.c │ ├── testdbm.c │ ├── testldap.c │ ├── testmd4.c │ ├── testmd5.c │ ├── testmemcache.c │ ├── testpass.c │ ├── testqueue.c │ ├── testreslist.c │ ├── testrmm.c │ ├── teststrmatch.c │ ├── testuri.c │ ├── testutil.c │ ├── testutil.h │ ├── testutildll.dsp │ ├── testutillib.dsp │ ├── testuuid.c │ ├── testxlate.c │ └── testxml.c ├── uri │ └── apr_uri.c ├── xlate │ └── xlate.c └── xml │ ├── NWGNUmakefile │ ├── apr_xml.c │ └── expat │ ├── .libs │ └── libexpat.lai │ ├── COPYING │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── buildconf.sh │ ├── config.log │ ├── config.status │ ├── configure │ ├── configure.in │ ├── conftools │ ├── PrintPath │ ├── ac_c_bigendian_cross.m4 │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── libtool.m4 │ ├── ltmain.sh │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ └── mkinstalldirs │ ├── expat_config.h │ ├── expat_config.h.in │ ├── lib │ ├── ascii.h │ ├── asciitab.h │ ├── expat.dsp │ ├── expat.h │ ├── expat_config.hnw │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── map_osd_ebcdic_df04_1.h │ ├── nametab.h │ ├── osd_ebcdic_df04_1.h │ ├── utf8tab.h │ ├── winconfig.h │ ├── xml.dep │ ├── xml.dsp │ ├── xml.mak │ ├── xml.vcproj │ ├── xml.vcxproj │ ├── xml.vcxproj.filters │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c │ ├── libtool │ └── win32 │ ├── MANIFEST.txt │ └── expat.iss ├── apr ├── .libs │ └── libapr-1.lai ├── .make.dirs ├── CHANGES ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── Makefile.in ├── Makefile.win ├── NOTICE ├── NWGNUmakefile ├── README ├── README.cmake ├── apr-1-config ├── apr-config.in ├── apr-config.out ├── apr.dep ├── apr.dsp ├── apr.dsw ├── apr.exp ├── apr.mak ├── apr.pc ├── apr.pc.in ├── apr.spec ├── apr.vcproj ├── apr.vcxproj ├── apr.vcxproj.filters ├── atomic │ ├── netware │ │ └── apr_atomic.c │ ├── os390 │ │ └── atomic.c │ ├── unix │ │ ├── builtins.c │ │ ├── ia32.c │ │ ├── mutex.c │ │ ├── ppc.c │ │ ├── s390.c │ │ └── solaris.c │ └── win32 │ │ └── apr_atomic.c ├── build-outputs.mk ├── build.conf ├── build │ ├── MakeEtags │ ├── NWGNUenvironment.inc │ ├── NWGNUhead.inc │ ├── NWGNUmakefile │ ├── NWGNUtail.inc │ ├── PrintPath │ ├── aplibtool.c │ ├── apr_common.m4 │ ├── apr_hints.m4 │ ├── apr_network.m4 │ ├── apr_rules.mk │ ├── apr_rules.mk.in │ ├── apr_rules.out │ ├── apr_threads.m4 │ ├── apr_win32.m4 │ ├── aprapp.dep │ ├── aprapp.dsp │ ├── aprapp.mak │ ├── buildcheck.sh │ ├── config.guess │ ├── config.sub │ ├── cvtdsp.pl │ ├── find_apr.m4 │ ├── fixwin32mak.pl │ ├── gen-build.py │ ├── get-version.sh │ ├── install.sh │ ├── jlibtool.c │ ├── libaprapp.dep │ ├── libaprapp.dsp │ ├── libaprapp.mak │ ├── libtool.m4 │ ├── lineends.pl │ ├── ltmain.sh │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── make_exports.awk │ ├── make_nw_export.awk │ ├── make_var_export.awk │ ├── mkdir.sh │ ├── nw_export.inc │ ├── nw_make_header.awk │ ├── nw_ver.awk │ ├── pkg │ │ ├── README │ │ ├── buildpkg.sh │ │ ├── pkginfo │ │ └── pkginfo.in │ ├── preaprapp.dsp │ ├── prelibaprapp.dsp │ ├── rpm │ │ └── apr.spec.in │ ├── run-gcov.sh │ └── win32ver.awk ├── buildconf ├── config.layout ├── config.log ├── config.nice ├── config.status ├── configure ├── configure.in ├── 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 ├── encoding │ └── apr_escape.c ├── export_vars.c ├── exports.c ├── file_io │ ├── netware │ │ ├── filepath.c │ │ ├── filestat.c │ │ ├── filesys.c │ │ ├── flock.c │ │ ├── mktemp.c │ │ └── pipe.c │ ├── os2 │ │ ├── buffer.c │ │ ├── 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 │ │ ├── buffer.c │ │ ├── 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 │ │ ├── buffer.c │ │ ├── dir.c │ │ ├── filedup.c │ │ ├── filepath.c │ │ ├── filestat.c │ │ ├── filesys.c │ │ ├── flock.c │ │ ├── open.c │ │ ├── pipe.c │ │ ├── readwrite.c │ │ └── seek.c ├── helpers │ └── apr_rename.pl ├── include │ ├── apr.h │ ├── apr.h.in │ ├── apr.hnw │ ├── apr.hw │ ├── apr.hwc │ ├── apr_allocator.h │ ├── apr_atomic.h │ ├── apr_dso.h │ ├── apr_env.h │ ├── apr_errno.h │ ├── apr_escape.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_skiplist.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_inherit.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_atomic.h │ │ ├── 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 │ │ ├── apr_escape_test_char.h │ │ ├── apr_private.h │ │ └── apr_private.h.in │ │ └── 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_escape_test_char.h │ │ └── apr_private.h ├── libapr.dep ├── libapr.dsp ├── libapr.mak ├── libapr.rc ├── libapr.vcproj ├── libapr.vcxproj ├── libapr.vcxproj.filters ├── libtool ├── 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 │ │ ├── socket_util.c │ │ ├── sockets.c │ │ └── sockopt.c │ ├── unix │ │ ├── inet_ntop.c │ │ ├── inet_pton.c │ │ ├── multicast.c │ │ ├── sendrecv.c │ │ ├── sockaddr.c │ │ ├── socket_util.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 │ │ ├── pollcb.c │ │ ├── pollset.c │ │ ├── port.c │ │ ├── select.c │ │ └── z_asio.c ├── random │ └── unix │ │ ├── apr_random.c │ │ ├── sha2.c │ │ ├── sha2.h │ │ └── sha2_glue.c ├── 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_skiplist.c │ └── apr_tables.c ├── test │ ├── Makefile │ ├── Makefile.in │ ├── Makefile.win │ ├── NWGNUaprtest │ ├── NWGNUechod │ ├── NWGNUglobalmutexchild │ ├── NWGNUmakefile │ ├── NWGNUmod_test │ ├── NWGNUproc_child │ ├── NWGNUreadchild │ ├── NWGNUsockchild │ ├── NWGNUsockperf │ ├── NWGNUtestatmc │ ├── NWGNUtryread │ ├── README │ ├── abts.c │ ├── abts.h │ ├── abts_tests.h │ ├── data │ │ ├── file_datafile.txt │ │ └── mmap_datafile.txt │ ├── echod.c │ ├── globalmutexchild.c │ ├── internal │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── Makefile.win │ │ ├── testregex.c │ │ └── testucs.c │ ├── mod_test.c │ ├── nw_misc.c │ ├── occhild.c │ ├── proc_child.c │ ├── readchild.c │ ├── sendfile.c │ ├── sockchild.c │ ├── sockperf.c │ ├── testall.dsw │ ├── testapp.c │ ├── testargs.c │ ├── testatomic.c │ ├── testcond.c │ ├── testdir.c │ ├── testdll.dsp │ ├── testdso.c │ ├── testdup.c │ ├── testenv.c │ ├── testescape.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 │ ├── testlib.dsp │ ├── 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 │ ├── testshm.c │ ├── testshm.h │ ├── testshmconsumer.c │ ├── testshmproducer.c │ ├── testskiplist.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 │ │ ├── time.c │ │ └── timestr.c ├── tools │ └── gen_test_char.c └── user │ ├── netware │ ├── groupinfo.c │ └── userinfo.c │ ├── unix │ ├── groupinfo.c │ └── userinfo.c │ └── win32 │ ├── groupinfo.c │ └── userinfo.c └── sofia-sip ├── AUTHORS ├── COPYING ├── COPYRIGHTS ├── ChangeLog ├── ChangeLog.ext-trees ├── Makefile ├── Makefile.am ├── Makefile.in ├── README ├── README.developers ├── RELEASE ├── RELEASE.template ├── TODO ├── aclocal.m4 ├── autoconf-all.cmd ├── autogen.sh ├── autom4te.cache ├── output.0 ├── output.1 ├── requests ├── traces.0 └── traces.1 ├── compile ├── config.guess ├── config.h ├── config.h.in ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── docs ├── build_system.txt ├── devel_platform_notes.txt └── release_management.txt ├── install-sh ├── libsofia-sip-ua-glib ├── ChangeLog ├── Makefile ├── Makefile.am ├── Makefile.in ├── docs │ ├── Doxyfile.aliases │ ├── Doxyfile.conf │ └── Doxyfile.version └── su-glib │ ├── .deps │ ├── su_source.Plo │ ├── su_source_test.Po │ └── torture_su_glib_timer.Po │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 ├── .libs │ └── libsofia-sip-ua.lai ├── ChangeLog ├── Makefile ├── Makefile.am ├── Makefile.in ├── bnf │ ├── .deps │ │ ├── bnf.Plo │ │ └── torture_bnf.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── bnf.c │ ├── bnf.docs │ ├── sofia-sip │ │ ├── bnf.h │ │ └── hostdomain.h │ └── torture_bnf.c ├── docs │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.aliases │ ├── Doxyfile.conf │ ├── Doxyfile.in │ ├── Doxyfile.rfc │ ├── Doxyfile.version │ ├── Doxyfile.version.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ └── sofia-footer.html.in ├── features │ ├── .deps │ │ └── features.Plo │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── features.c │ ├── features.docs │ └── sofia-sip │ │ ├── sofia_features.h │ │ └── sofia_features.h.in ├── http │ ├── .deps │ │ ├── http_basic.Plo │ │ ├── http_extra.Plo │ │ ├── http_header.Plo │ │ ├── http_inlined.Plo │ │ ├── http_parser.Plo │ │ ├── http_parser_table.Plo │ │ ├── http_status.Plo │ │ ├── http_tag.Plo │ │ ├── http_tag_class.Plo │ │ ├── http_tag_ref.Plo │ │ └── test_http.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── http.docs │ ├── http_basic.c │ ├── http_extra.c │ ├── http_header.c │ ├── http_inlined.c │ ├── http_parser.c │ ├── http_parser_table.c │ ├── http_parser_table.c.in │ ├── http_status.c │ ├── http_tag.c │ ├── http_tag.c.in │ ├── http_tag_class.c │ ├── http_tag_ref.c │ ├── sofia-sip │ │ ├── http.h │ │ ├── http_hclasses.h │ │ ├── http_header.h │ │ ├── http_parser.h │ │ ├── http_protos.h │ │ ├── http_protos.h.in │ │ ├── http_status.h │ │ ├── http_tag.h │ │ ├── http_tag.h.in │ │ └── http_tag_class.h │ └── test_http.c ├── ipt │ ├── .deps │ │ ├── base64.Plo │ │ ├── token64.Plo │ │ └── torture_base64.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── .deps │ │ ├── auth_client.Plo │ │ ├── auth_client_ntlm.Plo │ │ ├── auth_common.Plo │ │ ├── auth_digest.Plo │ │ ├── auth_module.Plo │ │ ├── auth_module_http.Plo │ │ ├── auth_module_sip.Plo │ │ ├── auth_ntlm.Plo │ │ ├── auth_plugin.Plo │ │ ├── auth_plugin_delayed.Plo │ │ ├── auth_plugin_ntlm.Plo │ │ ├── auth_tag.Plo │ │ ├── auth_tag_ref.Plo │ │ ├── iptsec_debug.Plo │ │ └── test_auth_digest.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── auth_tag_ref.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 │ ├── .deps │ │ ├── msg.Plo │ │ ├── msg_auth.Plo │ │ ├── msg_basic.Plo │ │ ├── msg_date.Plo │ │ ├── msg_generic.Plo │ │ ├── msg_header_copy.Plo │ │ ├── msg_header_make.Plo │ │ ├── msg_inlined.Plo │ │ ├── msg_mclass.Plo │ │ ├── msg_mime.Plo │ │ ├── msg_mime_table.Plo │ │ ├── msg_name_hash.Po │ │ ├── msg_parser.Plo │ │ ├── msg_parser_util.Plo │ │ ├── msg_tag.Plo │ │ ├── test_class.Po │ │ ├── test_inlined.Po │ │ ├── test_msg.Po │ │ └── test_table.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── 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 │ │ ├── msg_mime_protos.h.in │ │ ├── msg_parser.h │ │ ├── msg_protos.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 │ ├── test_protos.h.in │ ├── test_table.c │ └── test_table.c.in ├── nea │ ├── .deps │ │ ├── nea.Plo │ │ ├── nea_debug.Plo │ │ ├── nea_event.Plo │ │ ├── nea_server.Plo │ │ ├── nea_tag.Plo │ │ └── nea_tag_ref.Plo │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── nea.c │ ├── nea.docs │ ├── nea_debug.c │ ├── nea_debug.h │ ├── nea_event.c │ ├── nea_server.c │ ├── nea_tag.c │ ├── nea_tag_ref.c │ └── sofia-sip │ │ ├── nea.h │ │ └── nea_tag.h ├── nta │ ├── .deps │ │ ├── check_nta.Po │ │ ├── check_nta_api.Po │ │ ├── check_nta_client.Po │ │ ├── check_nta_server.Po │ │ ├── exit77.Po │ │ ├── nta.Plo │ │ ├── nta_check.Plo │ │ ├── nta_tag.Plo │ │ ├── nta_tag_ref.Plo │ │ ├── portbind.Po │ │ ├── sl_read_payload.Plo │ │ ├── sl_utils_log.Plo │ │ ├── sl_utils_print.Plo │ │ ├── test_nta.Po │ │ └── test_nta_api.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── agent.pem │ ├── cafile.pem │ ├── check_nta.c │ ├── check_nta.h │ ├── check_nta_api.c │ ├── check_nta_client.c │ ├── check_nta_server.c │ ├── invite.msc │ ├── nta.c │ ├── nta.docs │ ├── nta_check.c │ ├── nta_internal.h │ ├── nta_tag.c │ ├── nta_tag_ref.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 │ ├── .deps │ │ ├── http-client.Po │ │ ├── http-server.Po │ │ ├── nth_client.Plo │ │ ├── nth_server.Plo │ │ ├── nth_tag.Plo │ │ ├── nth_tag_ref.Plo │ │ └── test_nth.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── agent.pem │ ├── cafile.pem │ ├── http-client.c │ ├── http-server.c │ ├── nth.docs │ ├── nth_client.c │ ├── nth_server.c │ ├── nth_tag.c │ ├── nth_tag_ref.c │ ├── sofia-sip │ │ ├── nth.h │ │ └── nth_tag.h │ └── test_nth.c ├── nua │ ├── .deps │ │ ├── check_etsi.Po │ │ ├── check_nua.Po │ │ ├── check_register.Po │ │ ├── check_session.Po │ │ ├── check_simple.Po │ │ ├── nua.Plo │ │ ├── nua_client.Plo │ │ ├── nua_common.Plo │ │ ├── nua_dialog.Plo │ │ ├── nua_event_server.Plo │ │ ├── nua_extension.Plo │ │ ├── nua_message.Plo │ │ ├── nua_notifier.Plo │ │ ├── nua_options.Plo │ │ ├── nua_params.Plo │ │ ├── nua_publish.Plo │ │ ├── nua_register.Plo │ │ ├── nua_registrar.Plo │ │ ├── nua_server.Plo │ │ ├── nua_session.Plo │ │ ├── nua_stack.Plo │ │ ├── nua_subnotref.Plo │ │ ├── nua_tag.Plo │ │ ├── nua_tag_ref.Plo │ │ └── outbound.Plo │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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_tag_ref.c │ ├── nua_types.h │ ├── outbound.c │ ├── outbound.h │ └── sofia-sip │ │ ├── nua.h │ │ └── nua_tag.h ├── sdp │ ├── .deps │ │ ├── sdp.Plo │ │ ├── sdp_parse.Plo │ │ ├── sdp_print.Plo │ │ ├── sdp_tag.Plo │ │ ├── sdp_tag_ref.Plo │ │ ├── test_sdp.Po │ │ └── torture_sdp.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── errata │ ├── rfc2327.txt │ ├── run_test_sdp │ ├── sdp.bnf │ ├── sdp.c │ ├── sdp.docs │ ├── sdp_parse.c │ ├── sdp_print.c │ ├── sdp_tag.c │ ├── sdp_tag_ref.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 │ ├── .deps │ │ ├── sip_basic.Plo │ │ ├── sip_caller_prefs.Plo │ │ ├── sip_event.Plo │ │ ├── sip_extra.Plo │ │ ├── sip_feature.Plo │ │ ├── sip_header.Plo │ │ ├── sip_inlined.Plo │ │ ├── sip_mime.Plo │ │ ├── sip_parser.Plo │ │ ├── sip_parser_table.Plo │ │ ├── sip_prack.Plo │ │ ├── sip_pref_util.Plo │ │ ├── sip_reason.Plo │ │ ├── sip_refer.Plo │ │ ├── sip_security.Plo │ │ ├── sip_session.Plo │ │ ├── sip_status.Plo │ │ ├── sip_tag.Plo │ │ ├── sip_tag_class.Plo │ │ ├── sip_tag_ref.Plo │ │ ├── sip_time.Plo │ │ ├── sip_util.Plo │ │ ├── test_date.Po │ │ ├── test_sip_msg.Po │ │ ├── torture_sip.Po │ │ └── validator.Po │ ├── ADD-A-HEADER │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── GRAMMAR │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── 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 │ ├── sip_tag.c.in │ ├── sip_tag_class.c │ ├── sip_tag_ref.c │ ├── sip_time.c │ ├── sip_util.c │ ├── sofia-sip │ │ ├── sip.h │ │ ├── sip_extra.h │ │ ├── sip_extra.h.in │ │ ├── sip_hclasses.h │ │ ├── sip_hclasses.h.in │ │ ├── sip_header.h │ │ ├── sip_parser.h │ │ ├── sip_protos.h │ │ ├── sip_protos.h.in │ │ ├── sip_status.h │ │ ├── sip_tag.h │ │ ├── sip_tag.h.in │ │ ├── sip_tag_class.h │ │ └── sip_util.h │ ├── test_date.c │ ├── test_sip_msg.c │ ├── tests │ │ ├── own0.txt │ │ ├── own1.txt │ │ ├── own2.txt │ │ ├── own3.txt │ │ ├── own4.txt │ │ ├── own5.txt │ │ ├── own6.txt │ │ ├── own8.txt │ │ ├── test-ack-1.txt │ │ ├── test1.txt │ │ ├── test10.txt │ │ ├── test10b.txt │ │ ├── test10c.txt │ │ ├── test11.txt │ │ ├── test12.txt │ │ ├── test13.txt │ │ ├── test14-req.txt │ │ ├── test14.txt │ │ ├── test15.txt │ │ ├── test16.txt │ │ ├── test17.txt │ │ ├── test18.txt │ │ ├── test19.txt │ │ ├── test1a.txt │ │ ├── test2.txt │ │ ├── test20.txt │ │ ├── test21.txt │ │ ├── test22.txt │ │ ├── test23.txt │ │ ├── test24.txt │ │ ├── test25.txt │ │ ├── test26.txt │ │ ├── test27.txt │ │ ├── test28.txt │ │ ├── test29.txt │ │ ├── test3.txt │ │ ├── test30.txt │ │ ├── test31.txt │ │ ├── test32.txt │ │ ├── test33.txt │ │ ├── test34.txt │ │ ├── test35.txt │ │ ├── test36.txt │ │ ├── test37.txt │ │ ├── test38.txt │ │ ├── test39.txt │ │ ├── test4.txt │ │ ├── test40.txt │ │ ├── test41.txt │ │ ├── test42.txt │ │ ├── test5.txt │ │ ├── test6.txt │ │ ├── test7.txt │ │ ├── test8.txt │ │ └── test9.txt │ ├── torture_sip.c │ └── validator.c ├── soa │ ├── .deps │ │ ├── soa.Plo │ │ ├── soa_static.Plo │ │ ├── soa_tag.Plo │ │ ├── soa_tag_ref.Plo │ │ └── test_soa.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── soa.c │ ├── soa.docs │ ├── soa_static.c │ ├── soa_tag.c │ ├── soa_tag_ref.c │ ├── sofia-sip │ │ ├── soa.h │ │ ├── soa_add.h │ │ ├── soa_session.h │ │ └── soa_tag.h │ └── test_soa.c ├── sresolv │ ├── .deps │ │ ├── check_sres_sip.Po │ │ ├── sres.Plo │ │ ├── sres_blocking.Plo │ │ ├── sres_cache.Plo │ │ ├── sres_sip.Plo │ │ ├── sresolv.Plo │ │ ├── test_sresolv.Po │ │ └── torture_sresolv.Po │ ├── 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 │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── .deps │ │ ├── lookup_stun_server.Po │ │ ├── stun.Plo │ │ ├── stun_common.Plo │ │ ├── stun_dns.Plo │ │ ├── stun_mini.Plo │ │ ├── stun_tag.Plo │ │ ├── stun_tag_ref.Plo │ │ └── stunc.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── 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 │ ├── stun_tag_ref.c │ ├── stunc │ └── stunc.c ├── su │ ├── .deps │ │ ├── addrinfo.Po │ │ ├── getopt.Plo │ │ ├── inet_ntop.Plo │ │ ├── inet_pton.Plo │ │ ├── localinfo.Po │ │ ├── memccpy.Plo │ │ ├── memcspn.Plo │ │ ├── memmem.Plo │ │ ├── memspn.Plo │ │ ├── poll.Plo │ │ ├── smoothsort.Plo │ │ ├── string0.Plo │ │ ├── strtoull.Plo │ │ ├── su.Plo │ │ ├── su_addrinfo.Plo │ │ ├── su_alloc.Plo │ │ ├── su_alloc_lock.Plo │ │ ├── su_base_port.Plo │ │ ├── su_bm.Plo │ │ ├── su_default_log.Plo │ │ ├── su_devpoll_port.Plo │ │ ├── su_epoll_port.Plo │ │ ├── su_errno.Plo │ │ ├── su_global_log.Plo │ │ ├── su_kqueue_port.Plo │ │ ├── su_localinfo.Plo │ │ ├── su_log.Plo │ │ ├── su_md5.Plo │ │ ├── su_os_nw.Plo │ │ ├── su_osx_runloop.Plo │ │ ├── su_poll_port.Plo │ │ ├── su_port.Plo │ │ ├── su_proxy.Po │ │ ├── su_pthread_port.Plo │ │ ├── su_root.Plo │ │ ├── su_select_port.Plo │ │ ├── su_socket_port.Plo │ │ ├── su_sprintf.Plo │ │ ├── su_strdup.Plo │ │ ├── su_string.Plo │ │ ├── su_strlst.Plo │ │ ├── su_tag.Plo │ │ ├── su_tag_io.Plo │ │ ├── su_tag_ref.Plo │ │ ├── su_taglist.Plo │ │ ├── su_time.Plo │ │ ├── su_time0.Plo │ │ ├── su_timer.Plo │ │ ├── su_uniqueid.Plo │ │ ├── su_vector.Plo │ │ ├── su_wait.Plo │ │ ├── test_htable.Po │ │ ├── test_htable2.Po │ │ ├── test_memmem.Po │ │ ├── test_poll.Po │ │ ├── test_su.Po │ │ ├── test_su_osx.Po │ │ ├── torture_heap.Po │ │ ├── torture_rbtree.Po │ │ ├── torture_su.Po │ │ ├── torture_su_alloc.Po │ │ ├── torture_su_bm.Po │ │ ├── torture_su_port.Po │ │ ├── torture_su_root.Po │ │ ├── torture_su_root_osx.Po │ │ ├── torture_su_tag.Po │ │ ├── torture_su_time.Po │ │ └── torture_su_timer.Po │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── addrinfo │ ├── addrinfo.c │ ├── foo.c │ ├── getopt.c │ ├── inet_ntop.c │ ├── inet_pton.c │ ├── localinfo │ ├── 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 │ │ ├── stamp-h2 │ │ ├── string0.h │ │ ├── su.h │ │ ├── su_addrinfo.h │ │ ├── su_alloc.h │ │ ├── su_alloc_stat.h │ │ ├── su_bm.h │ │ ├── su_config.h │ │ ├── su_configure.h │ │ ├── su_configure.h.in │ │ ├── su_debug.h │ │ ├── su_errno.h │ │ ├── su_localinfo.h │ │ ├── su_log.h │ │ ├── su_md5.h │ │ ├── su_os_nw.h │ │ ├── su_osx_runloop.h │ │ ├── su_random.h │ │ ├── su_string.h │ │ ├── su_strlst.h │ │ ├── su_tag.h │ │ ├── su_tag_class.h │ │ ├── su_tag_inline.h │ │ ├── su_tag_io.h │ │ ├── su_tagarg.h │ │ ├── su_time.h │ │ ├── su_types.h │ │ ├── su_uniqueid.h │ │ ├── su_vector.h │ │ ├── su_wait.h │ │ └── tstdef.h │ ├── string0.c │ ├── strtoull.c │ ├── su.c │ ├── su.docs │ ├── su_addrinfo.c │ ├── su_alloc.c │ ├── su_alloc_lock.c │ ├── su_base_port.c │ ├── su_bm.c │ ├── su_default_log.c │ ├── su_devpoll_port.c │ ├── su_epoll_port.c │ ├── su_errno.c │ ├── su_global_log.c │ ├── su_kqueue_port.c │ ├── su_localinfo.c │ ├── su_log.c │ ├── su_md5.c │ ├── su_module_debug.h │ ├── su_open_c_localinfo.cpp │ ├── su_os_nw.c │ ├── su_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_tag_ref.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 │ ├── .deps │ │ ├── test_tport.Po │ │ ├── tport.Plo │ │ ├── tport_logging.Plo │ │ ├── tport_sigcomp.Plo │ │ ├── tport_stub_sigcomp.Plo │ │ ├── tport_stub_stun.Plo │ │ ├── tport_tag.Plo │ │ ├── tport_tag_ref.Plo │ │ ├── tport_threadpool.Plo │ │ ├── tport_tls.Plo │ │ ├── tport_type_connect.Plo │ │ ├── tport_type_sctp.Plo │ │ ├── tport_type_stun.Plo │ │ ├── tport_type_tcp.Plo │ │ ├── tport_type_tls.Plo │ │ └── tport_type_udp.Plo │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── agent.pem │ ├── cafile.pem │ ├── certificates-update │ ├── certificates.html │ ├── sofia-sip │ │ ├── tport.h │ │ ├── tport_plugins.h │ │ └── tport_tag.h │ ├── test_tport.c │ ├── tls_test_client.c │ ├── tls_test_server.c │ ├── tport.c │ ├── tport.docs │ ├── tport_internal.h │ ├── tport_logging.c │ ├── tport_rand.c │ ├── tport_sigcomp.c │ ├── tport_stub_sigcomp.c │ ├── tport_stub_stun.c │ ├── tport_tag.c │ ├── tport_tag_ref.c │ ├── tport_threadpool.c │ ├── tport_tls.c │ ├── tport_tls.h │ ├── tport_type_connect.c │ ├── tport_type_sctp.c │ ├── tport_type_stun.c │ ├── tport_type_tcp.c │ ├── tport_type_tls.c │ └── tport_type_udp.c └── url │ ├── .deps │ ├── torture_url.Po │ ├── url.Plo │ ├── url_tag.Plo │ └── url_tag_ref.Plo │ ├── ChangeLog │ ├── Doxyfile │ ├── Doxyfile.in │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── sofia-sip │ ├── url.h │ ├── url_tag.h │ └── url_tag_class.h │ ├── torture_url.c │ ├── url.c │ ├── url.docs │ ├── url_tag.c │ ├── url_tag_ref.c │ ├── urlmap.c │ └── urlmap.h ├── libtool ├── ltmain.sh ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 ├── lt~obsolete.m4 ├── sac-coverage.m4 ├── sac-general.m4 ├── sac-openssl.m4 ├── sac-pkg-config.m4 ├── sac-su2.m4 └── sac-tport.m4 ├── man └── man1 │ ├── addrinfo.1 │ ├── localinfo.1 │ ├── sip-date.1 │ ├── sip-dig.1 │ ├── sip-options.1 │ └── stunc.1 ├── missing ├── open_c ├── Makefile ├── Makefile.am ├── Makefile.in ├── autogen.cmd ├── build_sources.cmd ├── config.h ├── 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 ├── Makefile.am ├── Makefile.in ├── sofia-sip-1.12.11-234-gd74df2e.spec ├── sofia-sip-ua-glib.pc ├── sofia-sip-ua-glib.pc.in ├── sofia-sip-ua.pc ├── sofia-sip-ua.pc.in └── sofia-sip.spec.in ├── rules ├── lcov.am ├── recursive.am ├── silent.am ├── sofia.am └── valcheck.am ├── s2check ├── .deps │ ├── s2_localinfo.Po │ ├── s2base.Po │ ├── s2dns.Po │ ├── s2sip.Po │ ├── s2tcase.Po │ └── s2time.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── 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 ├── stamp-h1 ├── tests ├── .deps │ ├── check_dlopen_sofia-check_dlopen_sofia.Po │ ├── check_sofia-check_sofia.Po │ ├── check_sofia-suite_for_nua.Po │ ├── test_100rel.Po │ ├── test_basic_call.Po │ ├── test_call_hold.Po │ ├── test_call_reject.Po │ ├── test_cancel_bye.Po │ ├── test_extension.Po │ ├── test_init.Po │ ├── test_nat.Po │ ├── test_nat_tags.Po │ ├── test_nua.Po │ ├── test_nua_api.Po │ ├── test_nua_params.Po │ ├── test_offer_answer.Po │ ├── test_ops.Po │ ├── test_proxy.Po │ ├── test_refer.Po │ ├── test_register.Po │ ├── test_session_timer.Po │ ├── test_simple.Po │ └── test_sip_events.Po ├── Makefile ├── Makefile.am ├── Makefile.in ├── 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 ├── .deps │ ├── sip-date.Po │ ├── sip-dig.Po │ └── sip-options.Po ├── .libs │ ├── sip-date │ ├── sip-dig │ └── sip-options ├── ChangeLog ├── Doxyfile ├── Doxyfile.in ├── Makefile ├── Makefile.am ├── Makefile.in ├── apps_utils.h ├── sip-date ├── sip-date.c ├── sip-dig ├── sip-dig.c ├── sip-options ├── sip-options.c └── utils.docs └── win32 ├── ChangeLog ├── Makefile ├── Makefile.am ├── Makefile.in ├── README.txt ├── SofiaSIP.dsw ├── SofiaSIP.sln ├── SofiaSIP2010.sln ├── autogen.cmd ├── build_sources.cmd ├── check.cmd ├── config.h ├── config.h.in ├── install.cmd ├── libsofia-sip-ua-static ├── libsofia_sip_ua_static.dsp ├── libsofia_sip_ua_static.vcproj └── libsofia_sip_ua_static.vcxproj ├── libsofia-sip-ua ├── libsofia_sip_ua.dsp ├── libsofia_sip_ua.rc ├── libsofia_sip_ua.vcproj ├── libsofia_sip_ua.vcxproj ├── libsofia_sip_ua.vcxproj.filters └── sofia-sip-ua.def ├── sofia-sip └── su_configure.h ├── tests ├── test_htable │ ├── test_htable.dsp │ ├── test_htable.vcproj │ └── test_htable.vcxproj ├── test_memmem │ ├── test_memmem.dsp │ ├── test_memmem.vcproj │ └── test_memmem.vcxproj ├── test_nta │ ├── test_nta.dsp │ ├── test_nta.vcproj │ └── test_nta.vcxproj ├── test_nua │ ├── test_nat_tags.cpp │ ├── test_nua.dsp │ ├── test_nua.vcproj │ └── test_nua.vcxproj ├── test_su │ ├── test_su.dsp │ ├── test_su.vcproj │ └── test_su.vcxproj ├── test_tport │ ├── test_class.cpp │ ├── test_table.cpp │ ├── test_tport.dsp │ ├── test_tport.vcproj │ └── test_tport.vcxproj ├── torture_rbtree │ ├── torture_rbtree.dsp │ ├── torture_rbtree.vcproj │ └── torture_rbtree.vcxproj ├── torture_su │ ├── torture_su.dsp │ ├── torture_su.vcproj │ └── torture_su.vcxproj ├── torture_su_alloc │ ├── torture_su_alloc.dsp │ ├── torture_su_alloc.vcproj │ └── torture_su_alloc.vcxproj ├── torture_su_bm │ ├── torture_su_bm.dsp │ ├── torture_su_bm.vcproj │ └── torture_su_bm.vcxproj ├── torture_su_port │ ├── torture_su_port.dsp │ └── torture_su_port.vcproj ├── torture_su_root │ ├── torture_su_root.dsp │ ├── torture_su_root.vcproj │ └── torture_su_root.vcxproj ├── torture_su_tag │ ├── torture_su_tag.dsp │ ├── torture_su_tag.vcproj │ └── torture_su_tag.vcxproj ├── torture_su_time │ ├── torture_su_time.dsp │ ├── torture_su_time.vcproj │ └── torture_su_time.vcxproj └── torture_su_timer │ ├── torture_su_timer.dsp │ ├── torture_su_timer.vcproj │ └── torture_su_timer.vcxproj ├── unistd.h ├── utils ├── localinfo │ ├── localinfo.dsp │ ├── localinfo.vcproj │ └── localinfo.vcxproj ├── sip_dig │ ├── sip_dig.dsp │ ├── sip_dig.vcproj │ └── sip_dig.vcxproj ├── sip_options │ ├── sip_options.dsp │ ├── sip_options.vcproj │ └── sip_options.vcxproj ├── sip_options_static │ ├── sip_options_static.dsp │ ├── sip_options_static.vcproj │ └── sip_options_static.vcxproj └── stunc │ ├── stunc.dsp │ ├── stunc.vcproj │ └── stunc.vcxproj ├── version.awk └── version_files.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/README.md -------------------------------------------------------------------------------- /unimrcp-1.5.0/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /unimrcp-1.5.0/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/.vscode/settings.json -------------------------------------------------------------------------------- /unimrcp-1.5.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/AUTHORS -------------------------------------------------------------------------------- /unimrcp-1.5.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/CHANGES -------------------------------------------------------------------------------- /unimrcp-1.5.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/CMakeLists.txt -------------------------------------------------------------------------------- /unimrcp-1.5.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/INSTALL -------------------------------------------------------------------------------- /unimrcp-1.5.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/LICENSE -------------------------------------------------------------------------------- /unimrcp-1.5.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/NOTICE -------------------------------------------------------------------------------- /unimrcp-1.5.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/README -------------------------------------------------------------------------------- /unimrcp-1.5.0/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/acinclude.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/aclocal.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/autom4te.cache/output.0 -------------------------------------------------------------------------------- /unimrcp-1.5.0/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/autom4te.cache/requests -------------------------------------------------------------------------------- /unimrcp-1.5.0/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /unimrcp-1.5.0/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/bootstrap -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/apr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/apr.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/apr_common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/apr_common.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/apu.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/apu.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/find_apr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/find_apr.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/find_apu.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/find_apu.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/libtool.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/ltoptions.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/ltsugar.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/ltversion.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/lt~obsolete.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/sofia-sip.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/sofia-sip.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/acmacros/uni_plugin.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/acmacros/uni_plugin.m4 -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/cmake/FindAPR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/cmake/FindAPR.cmake -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/cmake/FindAPRUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/cmake/FindAPRUtil.cmake -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/cmake/FindSofia.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/cmake/FindSofia.cmake -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/compile -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/config.guess -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/config.sub -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/depcomp -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/get-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/get-version.sh -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/init.d/unimrcpserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/init.d/unimrcpserver -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/install-sh -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/ltmain.sh -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/missing -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/pkgconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/pkgconfig/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/pkgconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/pkgconfig/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/pkgconfig/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/pkgconfig/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/apr.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/apr.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/apt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/apt.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/mpf.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/mpf.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/mrcp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/mrcp.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/mrcpclient.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/mrcpclient.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/mrcpengine.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/mrcpengine.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/mrcpserver.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/mrcpserver.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/sofiasip.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/sofiasip.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unibase.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unibase.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unibin-x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unibin-x64.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unibin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unibin.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unidebug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unidebug.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unilib-x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unilib-x64.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unilib.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unilib.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/uniplugin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/uniplugin.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unirelease.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unirelease.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/props/unirtsp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/props/unirtsp.props -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/rules/uniclientapp.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/rules/uniclientapp.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/rules/uniclientlib.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/rules/uniclientlib.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/rules/uniplugin.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/rules/uniplugin.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/rules/uniserverapp.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/rules/uniserverapp.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/rules/uniserverlib.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/rules/uniserverlib.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/tools/prepare.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/tools/prepare.vcproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/tools/prepare.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/tools/prepare.vcxproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/tools/unimrcp_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/tools/unimrcp_service.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/tools/unimrcpservice.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/tools/unimrcpservice.rc -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/uni_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/uni_revision.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/uni_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/uni_version.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/apr.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/apr.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/apt.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/apt.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/mpf.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/mpf.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/mrcp.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/mrcp.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/unibase.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/unibase.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/unibin.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/unibin.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/unilib.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/unilib.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/build/vsprops/unirtsp.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/build/vsprops/unirtsp.vsprops -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/dirlayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/dirlayout.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/logger.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/umc-scenarios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/umc-scenarios/README -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/unimrcpclient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/unimrcpclient.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/unimrcpclient.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/unimrcpclient.xsd -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/unimrcpserver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/unimrcpserver.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/conf/unimrcpserver.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/conf/unimrcpserver.xsd -------------------------------------------------------------------------------- /unimrcp-1.5.0/config.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/config.layout -------------------------------------------------------------------------------- /unimrcp-1.5.0/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/config.log -------------------------------------------------------------------------------- /unimrcp-1.5.0/config.nice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/config.nice -------------------------------------------------------------------------------- /unimrcp-1.5.0/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/config.status -------------------------------------------------------------------------------- /unimrcp-1.5.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/configure -------------------------------------------------------------------------------- /unimrcp-1.5.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/configure.ac -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/demo-16kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/demo-16kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/demo-8kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/demo-8kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/grammar.jsgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/grammar.jsgf -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/grammar.mixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/grammar.mixed -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/grammar.srgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/grammar.srgs -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/grammar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/grammar.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/johnsmith-16kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/johnsmith-16kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/johnsmith-8kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/johnsmith-8kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/one-16kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/one-16kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/one-8kHz.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/one-8kHz.pcm -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/result-verification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/result-verification.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/result.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/speak.txt: -------------------------------------------------------------------------------- 1 | Welcome to Uni MRCP. -------------------------------------------------------------------------------- /unimrcp-1.5.0/data/speak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/data/speak.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/annotated.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/apt_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/apt_8h.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/bc_s.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/bdwn.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/classes.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/closed.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/deprecated.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/doxygen.css -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/doxygen.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/dynsections.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/files.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2blank.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2cl.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2doc.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2link.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2mnode.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2mo.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2node.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2ns.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/ftv2pnode.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/functions.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/g711_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/g711_8h.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_b.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_c.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_d.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_f.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_g.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_i.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_j.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_m.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_n.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_p.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_r.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_s.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_t.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/globals_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/globals_u.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/index.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/jquery.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/mpf_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/mpf_8h.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/mrcp_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/mrcp_8h.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/nav_f.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/nav_g.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/nav_h.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/open.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/pages.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/rtsp_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/rtsp_8h.html -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_0.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_1.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_2.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_3.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_4.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_5.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_6.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_7.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_8.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_9.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_a.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_b.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_c.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_d.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/search/all_e.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/sync_off.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/sync_on.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/tab_a.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/tab_b.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/tab_h.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/tab_s.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/dox/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/dox/html/tabs.css -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/doxygen.conf -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/doxygen.conf.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA10.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA10.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA11.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA11.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA12.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA12.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA13.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA13.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA14.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA14.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA15.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA15.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA16.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA16.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA17.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA17.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA18.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA18.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA19.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA19.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA20.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA20.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA21.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA21.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA6.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA6.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA7.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA8.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA8.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA1/EA9.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA1/EA9.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA2.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA2/EA22.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA2/EA22.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA2/EA23.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA2/EA23.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA74.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA74.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA75.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA76.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA76.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA77.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA77.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA78.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA78.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA3/EA79.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA3/EA79.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA4.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA4.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/EARoot/EA5.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/EARoot/EA5.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/blank.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/blank.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/css/ea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/css/ea.css -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/css/eacont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/css/eacont.css -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/0.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/1.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/10.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/100.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/101.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/102.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/103.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/104.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/105.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/106.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/107.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/108.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/109.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/11.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/110.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/111.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/112.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/113.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/114.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/115.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/116.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/117.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/118.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/119.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/12.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/120.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/121.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/122.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/123.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/124.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/125.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/126.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/127.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/128.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/129.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/13.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/130.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/131.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/132.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/133.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/134.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/135.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/136.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/137.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/138.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/139.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/14.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/140.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/141.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/142.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/143.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/144.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/145.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/146.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/147.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/148.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/149.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/15.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/150.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/151.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/152.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/153.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/154.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/155.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/156.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/157.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/158.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/159.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/16.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/160.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/161.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/162.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/163.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/164.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/165.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/166.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/167.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/168.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/169.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/17.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/170.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/171.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/172.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/173.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/174.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/175.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/176.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/177.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/178.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/179.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/18.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/180.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/181.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/182.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/183.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/184.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/185.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/186.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/187.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/188.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/189.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/19.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/190.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/191.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/192.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/193.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/194.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/195.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/196.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/197.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/198.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/199.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/2.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/20.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/200.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/201.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/202.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/203.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/204.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/205.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/206.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/207.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/208.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/209.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/21.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/210.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/211.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/212.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/213.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/214.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/215.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/22.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/23.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/24.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/25.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/26.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/27.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/28.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/29.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/3.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/30.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/31.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/32.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/33.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/34.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/35.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/36.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/37.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/38.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/39.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/4.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/40.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/41.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/42.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/43.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/44.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/45.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/46.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/47.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/48.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/49.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/5.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/50.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/51.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/52.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/53.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/54.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/55.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/56.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/57.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/58.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/59.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/6.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/60.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/61.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/62.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/63.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/64.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/65.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/66.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/67.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/68.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/69.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/7.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/70.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/71.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/72.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/73.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/74.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/75.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/76.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/77.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/78.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/79.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/8.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/80.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/81.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/82.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/83.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/84.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/85.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/86.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/87.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/88.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/89.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/9.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/90.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/91.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/92.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/93.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/94.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/95.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/96.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/97.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/98.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/99.png -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/ea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/ea.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/hbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/hbg.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/join01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/join01.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/join02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/join02.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/join03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/join03.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/join04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/join04.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/minus01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/minus01.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/minus02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/minus02.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/minus03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/minus03.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/plus01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/plus01.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/plus02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/plus02.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/images/plus03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/images/plus03.gif -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/index.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/js/data/guidmaps/GuidMap1e.xml: -------------------------------------------------------------------------------- 1 | 1E35D386-7CD2-4b6b-A57C-EE96C9DC73B9/EA3/EA78.htm; 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/js/data/guidmaps/GuidMapbb.xml: -------------------------------------------------------------------------------- 1 | BB12B178-4499-4bcb-A436-77B1C1125019/EA3/EA79.htm; 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/js/data/root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/js/data/root.xml -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/js/displayToc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/js/displayToc.js -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/ea/toc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/ea/toc.htm -------------------------------------------------------------------------------- /unimrcp-1.5.0/docs/mainpage.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/docs/mainpage.docs -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/apr-toolkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/apr-toolkit/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/apr-toolkit/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/apr-toolkit/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/CMakeLists.txt -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/codecs/g711/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/codecs/g711/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/codecs/g711/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/codecs/g711/g711.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/codecs/g711/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/codecs/g711/g711.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/include/mpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/include/mpf.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/mpf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/mpf.vcproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/mpf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/mpf.vcxproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/roo/.deps/libwebrtcvad.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_bridge.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_buffer.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_context.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_decoder.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_encoder.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_engine.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_mixer.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/src/mpf_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/src/mpf_stream.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingcomplex_fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingcross_correlation.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingdivision_operations.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingdownsample_fast.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingenergy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingget_scaling_square.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingmin_max_operations.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingreal_fft.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingresample_48khz.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingresample_by_2_internal.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingresample_fractional.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingspl_init.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/.deps/signal_processingvector_scaling_operations.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/signal_processing/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/signal_processing/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/vad/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/common_audio/vad/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mpf/webrtc/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mpf/webrtc/typedefs.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp-client/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-client/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-client/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp-engine/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-engine/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-engine/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp-server/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-server/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-server/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-signaling/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp-signaling/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/CMakeLists.txt -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/control/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/control/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/include/mrcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/include/mrcp.h -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/message/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/message/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/mrcp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/mrcp.vcproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/mrcp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/mrcp/mrcp.vcxproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/resources/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcp/resources/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcpv2-transport/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/mrcpv2-transport/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/uni-rtsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/uni-rtsp/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/uni-rtsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/uni-rtsp/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/uni-rtsp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/uni-rtsp/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/uni-rtsp/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/uni-rtsp/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/libs/webrtc_vad.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libs/webrtc_vad.tar.gz -------------------------------------------------------------------------------- /unimrcp-1.5.0/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/libtool -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/modules/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/modules/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/modules/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/mrcp-sofiasip/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/mrcp-sofiasip/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/mrcp-unirtsp/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/modules/mrcp-unirtsp/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/asr-client/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/asr-client/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libasr-client/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libasr-client/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libunimrcp-client/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libunimrcp-client/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libunimrcp-server/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/libunimrcp-server/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/.libs/umc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/.libs/umc -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/src/main.cpp -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/umc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/umc -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/umc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/umc.rc -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/umc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/umc.vcproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/umc/umc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/platforms/umc/umc.vcxproj -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/unimrcp-client/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/unimrcp-client/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/unimrcp-server/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/platforms/unimrcp-server/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/plugins/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/plugins/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/plugins/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-recog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/plugins/demo-recog/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-recog/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-recog/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-synth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/plugins/demo-synth/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-synth/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-synth/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-verifier/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/demo-verifier/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/mrcp-recorder/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/mrcp-recorder/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/third-party/xfyun/bin/ise_cn/cn_sentence.txt: -------------------------------------------------------------------------------- 1 | 不管我的梦想能否成为事实 -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/third-party/xfyun/bin/source.txt: -------------------------------------------------------------------------------- 1 | 合肥明天的天气怎么样? -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/third-party/xfyun/release.txt: -------------------------------------------------------------------------------- 1 | 1.1218版本更新信息 2 | 1.增加唤醒闭环上传控制功能; -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/xfyun-recog/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/xfyun-recog/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/xfyun-synth/src/.deps/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/xfyun-synth/src/.deps/demo_synth_engine.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/plugins/xfyun-synth/src/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/apttest/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/apttest/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/apttest/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/src/.deps/consumer_task_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/src/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/src/.deps/multipart_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/src/.deps/task_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/apttest/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/apttest/src/main.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mpftest/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mpftest/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mpftest/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/src/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/src/.deps/mpf_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mpftest/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mpftest/src/main.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/src/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/src/.deps/parse_gen_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/src/.deps/set_get_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/src/.deps/transparent_set_get_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/src/main.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/multi.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/v1/multi.msg -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/pause.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | PAUSE 543258 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/response.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | MRCP/1.0 543257 200 IN-PROGRESS 3 | 4 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/resume.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | RESUME 543260 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/speak.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/v1/speak.msg -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v1/stop.msg: -------------------------------------------------------------------------------- 1 | //speechsynth 2 | STOP 543258 MRCP/1.0 3 | 4 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v2/speak.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/mrcptest/v2/speak.msg -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/mrcptest/v2/stop.msg: -------------------------------------------------------------------------------- 1 | MRCP/2.0 74 STOP 543258 2 | Channel-Identifier:32AECB23433802@speechsynth 3 | 4 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/rtsptest/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/rtsptest/Makefile.am -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/rtsptest/Makefile.in -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/msg/ok.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/rtsptest/msg/ok.msg -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/src/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/src/.deps/parse_gen_suite.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/rtsptest/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/rtsptest/src/main.c -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uac_multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uac_multi -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uac_recog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uac_recog -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uac_synth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uac_synth -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uac_unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uac_unknown -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uac_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uac_update -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uas_recog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uas_recog -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uas_reject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uas_reject -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uas_synth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uas_synth -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/sipp/mrcp_uas_unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/sipp/mrcp_uas_unknown -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/strtablegen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/tests/strtablegen/Makefile -------------------------------------------------------------------------------- /unimrcp-1.5.0/tests/strtablegen/src/.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-1.5.0/unimrcp-2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/unimrcp-2010.sln -------------------------------------------------------------------------------- /unimrcp-1.5.0/unimrcp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-1.5.0/unimrcp.sln -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/CHANGES-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/CHANGES-deps -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/README-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/README-deps -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/build-dep-libs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/build-dep-libs.sh -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/.make.dirs: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr-util/CHANGES -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr-util/LICENSE -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr-util/Makefile -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr-util/NOTICE -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr-util/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr-util/README -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/.make.dirs: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/CHANGES -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/LICENSE -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/Makefile -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/Makefile.in -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/Makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/Makefile.win -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/NOTICE -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/NWGNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/NWGNUmakefile -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/README -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/README.cmake -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr-1-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr-1-config -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr-config.in -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.dep -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.dsp -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.dsw -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.exp -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.mak -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.pc -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.pc.in -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.spec -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.vcproj -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/apr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/apr.vcxproj -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/build.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/build.conf -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/buildconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/buildconf -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/config.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/config.layout -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/config.log -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/config.nice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/config.nice -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/config.status -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/configure -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/configure.in -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/dso/aix/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/dso/aix/dso.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/dso/os2/dso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/dso/os2/dso.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/emacs-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/emacs-mode -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/export_vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/export_vars.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/exports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/exports.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/file_io/os2/copy.c: -------------------------------------------------------------------------------- 1 | #include "../unix/copy.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/file_io/os2/filepath_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/filepath_util.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/file_io/os2/fullrw.c: -------------------------------------------------------------------------------- 1 | #include "../unix/fullrw.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/file_io/os2/mktemp.c: -------------------------------------------------------------------------------- 1 | #include "../unix/mktemp.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/file_io/os2/tempdir.c: -------------------------------------------------------------------------------- 1 | #include "../unix/tempdir.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/include/apr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/include/apr.h -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libapr.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libapr.dep -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libapr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libapr.dsp -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libapr.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libapr.mak -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libapr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libapr.rc -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libapr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libapr.vcproj -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/libtool -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/network_io/os2/inet_ntop.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_ntop.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/network_io/os2/inet_pton.c: -------------------------------------------------------------------------------- 1 | #include "../unix/inet_pton.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/network_io/os2/sockaddr.c: -------------------------------------------------------------------------------- 1 | #include "../unix/sockaddr.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/network_io/os2/socket_util.c: -------------------------------------------------------------------------------- 1 | #include "../unix/socket_util.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/Makefile -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/README -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/abts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/abts.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/abts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/abts.h -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/data/mmap_datafile.txt: -------------------------------------------------------------------------------- 1 | This is the MMAP data file. 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/echod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/echod.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/testoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/testoc.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/test/testud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/apr/test/testud.c -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/apr/threadproc/os2/signals.c: -------------------------------------------------------------------------------- 1 | #include "../unix/signals.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/AUTHORS -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/COPYING -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/README -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/RELEASE -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/TODO -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/autoconf-all.cmd: -------------------------------------------------------------------------------- 1 | @setlocal 2 | 3 | @cd open_c 4 | @call autogen.cmd 5 | 6 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/compile -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/depcomp -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua-glib/su-glib/.deps/su_source.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua-glib/su-glib/.deps/su_source_test.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua-glib/su-glib/.deps/torture_su_glib_timer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/bnf/.deps/torture_bnf.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/http/.deps/test_http.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/ipt/.deps/torture_base64.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/iptsec/.deps/auth_client_ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/iptsec/.deps/auth_ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/iptsec/.deps/auth_plugin_ntlm.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/iptsec/.deps/test_auth_digest.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/msg/.deps/msg_name_hash.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/msg/.deps/test_msg.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/check_nta.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/check_nta_api.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/check_nta_client.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/check_nta_server.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/exit77.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/portbind.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/test_nta.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/.deps/test_nta_api.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nta/run_check_nta: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | $VALGRIND exec ./check_nta "$@" -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nth/.deps/http-client.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nth/.deps/http-server.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nth/.deps/test_nth.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nua/.deps/check_etsi.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nua/.deps/check_nua.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nua/.deps/check_register.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nua/.deps/check_session.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/nua/.deps/check_simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sdp/.deps/test_sdp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sdp/.deps/torture_sdp.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sdp/tests/message-1.sdp: -------------------------------------------------------------------------------- 1 | v=1 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/.deps/test_date.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/.deps/test_sip_msg.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/.deps/torture_sip.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/.deps/validator.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/run_test_date: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./test_date "Sun, 18 Mar 2001 23:01:00 GMT" 3 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sip/tests/own8.txt: -------------------------------------------------------------------------------- 1 | JUNK * SIP/1.0 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/soa/.deps/test_soa.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sresolv/.deps/check_sres_sip.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sresolv/.deps/test_sresolv.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/sresolv/.deps/torture_sresolv.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/stun/.deps/lookup_stun_server.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/getopt.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/inet_ntop.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/inet_pton.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/memccpy.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/memmem.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/poll.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/strtoull.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/su_osx_runloop.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/su_proxy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/su_tag_ref.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_htable.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_htable2.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_memmem.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_poll.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_su.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/test_su_osx.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_heap.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_rbtree.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_alloc.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_bm.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_port.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_root.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_root_osx.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_tag.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_time.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/su/.deps/torture_su_timer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/tport/.deps/test_tport.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/tport/.deps/tport_sigcomp.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/tport/.deps/tport_threadpool.Plo: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libsofia-sip-ua/url/.deps/torture_url.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/libtool -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/addrinfo.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/localinfo.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/sip-date.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/sip-dig.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/sip-options.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/man/man1/stunc.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reSipWebRTC/UniMRCP-with-freeswitch/HEAD/unimrcp-deps-1.5.0/libs/sofia-sip/missing -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2_localinfo.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2base.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2dns.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2sip.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2tcase.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/s2check/.deps/s2time.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/check_dlopen_sofia-check_dlopen_sofia.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/check_sofia-check_sofia.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/check_sofia-suite_for_nua.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_100rel.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_basic_call.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_call_hold.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_call_reject.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_cancel_bye.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_extension.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_init.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_nat.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_nat_tags.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_nua.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_nua_api.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_nua_params.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_offer_answer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_ops.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_proxy.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_refer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_register.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_session_timer.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_simple.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/tests/.deps/test_sip_events.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/win32/tests/test_nua/test_nat_tags.cpp: -------------------------------------------------------------------------------- 1 | #include "test_nat_tags.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/win32/tests/test_tport/test_class.cpp: -------------------------------------------------------------------------------- 1 | #include "test_class.c" 2 | -------------------------------------------------------------------------------- /unimrcp-deps-1.5.0/libs/sofia-sip/win32/tests/test_tport/test_table.cpp: -------------------------------------------------------------------------------- 1 | #include "test_table.c" 2 | --------------------------------------------------------------------------------