├── .gitignore ├── LICENSE ├── LICENSE.LGPL ├── Makefile.am ├── Makefile.legacy ├── README ├── UPGRADE.txt ├── acinclude.m4 ├── assigned-spans.conf.sample ├── bittest.h ├── blacklist.sample ├── bootstrap.sh ├── configure.ac ├── dahdi-bash-completion ├── dahdi.init ├── dahdi.rules ├── dahdi.xml ├── dahdi_cfg.c ├── dahdi_diag.c ├── dahdi_maint.c ├── dahdi_monitor.c ├── dahdi_pcap.c ├── dahdi_scan.c ├── dahdi_span_assignments ├── dahdi_span_types ├── dahdi_speed.c ├── dahdi_test.c ├── dahdi_tool.c ├── dahdi_tools_version.h ├── dahdi_waitfor_span_assignments ├── doc ├── Makefile.am ├── dahdi_cfg.8 ├── dahdi_diag.8 ├── dahdi_maint.8 ├── dahdi_monitor.8 ├── dahdi_scan.8 ├── dahdi_span_assignments.8 ├── dahdi_span_types.8 ├── dahdi_test.8 ├── dahdi_tool.8 ├── dahdi_waitfor_span_assignments.8 ├── fxotune.8 ├── fxstest.8 ├── patgen.8 └── pattest.8 ├── fxotune.c ├── fxotune.h ├── fxstest.c ├── hdlcgen.c ├── hdlcstress.c ├── hdlctest.c ├── hdlcverify.c ├── hotplug ├── Makefile.am ├── dahdi_auto_assign_compat ├── dahdi_handle_device ├── dahdi_span_config ├── handle_device.d │ ├── 10-span-types │ ├── 20-span-assignments │ └── 30-xpp-sync └── span_config.d │ ├── 10-dahdi-cfg │ ├── 20-fxotune │ └── 50-asterisk ├── ifup-hdlc ├── init.conf.sample ├── install-sh ├── m4 └── .placeholder ├── makeopts.in ├── modprobe.conf.sample ├── modules.sample ├── patgen.c ├── patlooptest.c ├── pattest.c ├── ppp ├── Makefile.am └── dahdi.c ├── sethdlc.c ├── span-types.conf.sample ├── system.conf.sample ├── timertest.c ├── tonezone.c ├── tonezone.h ├── version.c.in ├── wavformat.h ├── xpp ├── 50-dahdi.conf ├── Makefile.am ├── README.Astribank ├── astribank.c ├── astribank.h ├── astribank_allow.8 ├── astribank_allow.c ├── astribank_hexload.8 ├── astribank_hexload.c ├── astribank_hook ├── astribank_is_starting.8 ├── astribank_is_starting.c ├── astribank_license.c ├── astribank_license.h ├── astribank_tool.8 ├── astribank_tool.c ├── astribank_upgrade ├── dahdi.cgi ├── dahdi_drivers ├── dahdi_genconf ├── dahdi_hardware ├── dahdi_registration ├── echo_loader.c ├── echo_loader.h ├── genconf_parameters ├── hexfile.c ├── hexfile.h ├── lsdahdi ├── mpptalk.c ├── mpptalk.h ├── oct612x │ ├── Makefile.am │ ├── apilib │ │ ├── bt │ │ │ ├── octapi_bt0.c │ │ │ └── octapi_bt0_private.h │ │ ├── largmath │ │ │ └── octapi_largmath.c │ │ └── llman │ │ │ ├── octapi_llman.c │ │ │ └── octapi_llman_private.h │ ├── get_discards │ ├── include │ │ ├── apilib │ │ │ ├── octapi_bt0.h │ │ │ ├── octapi_largmath.h │ │ │ └── octapi_llman.h │ │ ├── digium_unused.h │ │ ├── oct6100api │ │ │ ├── oct6100_adpcm_chan_inst.h │ │ │ ├── oct6100_adpcm_chan_pub.h │ │ │ ├── oct6100_api.h │ │ │ ├── oct6100_api_inst.h │ │ │ ├── oct6100_apimi.h │ │ │ ├── oct6100_apiud.h │ │ │ ├── oct6100_channel_inst.h │ │ │ ├── oct6100_channel_pub.h │ │ │ ├── oct6100_chip_open_inst.h │ │ │ ├── oct6100_chip_open_pub.h │ │ │ ├── oct6100_chip_stats_inst.h │ │ │ ├── oct6100_chip_stats_pub.h │ │ │ ├── oct6100_conf_bridge_inst.h │ │ │ ├── oct6100_conf_bridge_pub.h │ │ │ ├── oct6100_debug_inst.h │ │ │ ├── oct6100_debug_pub.h │ │ │ ├── oct6100_defines.h │ │ │ ├── oct6100_errors.h │ │ │ ├── oct6100_events_inst.h │ │ │ ├── oct6100_events_pub.h │ │ │ ├── oct6100_interrupts_inst.h │ │ │ ├── oct6100_interrupts_pub.h │ │ │ ├── oct6100_mixer_inst.h │ │ │ ├── oct6100_mixer_pub.h │ │ │ ├── oct6100_phasing_tsst_inst.h │ │ │ ├── oct6100_phasing_tsst_pub.h │ │ │ ├── oct6100_playout_buf_inst.h │ │ │ ├── oct6100_playout_buf_pub.h │ │ │ ├── oct6100_remote_debug_inst.h │ │ │ ├── oct6100_remote_debug_pub.h │ │ │ ├── oct6100_tlv_inst.h │ │ │ ├── oct6100_tone_detection_inst.h │ │ │ ├── oct6100_tone_detection_pub.h │ │ │ ├── oct6100_tsi_cnct_inst.h │ │ │ ├── oct6100_tsi_cnct_pub.h │ │ │ └── oct6100_tsst_inst.h │ │ ├── octdef.h │ │ ├── octmac.h │ │ ├── octosdependant.h │ │ ├── octrpc │ │ │ ├── oct6100_rpc_protocol.h │ │ │ └── rpc_protocol.h │ │ ├── octtype.h │ │ ├── octtypevx.h │ │ └── octtypewin.h │ ├── octasic-helper │ ├── octdeviceapi │ │ └── oct6100api │ │ │ ├── oct6100_adpcm_chan_priv.h │ │ │ ├── oct6100_api │ │ │ ├── oct6100_adpcm_chan.c │ │ │ ├── oct6100_channel.c │ │ │ ├── oct6100_chip_open.c │ │ │ ├── oct6100_chip_stats.c │ │ │ ├── oct6100_conf_bridge.c │ │ │ ├── oct6100_debug.c │ │ │ ├── oct6100_events.c │ │ │ ├── oct6100_interrupts.c │ │ │ ├── oct6100_memory.c │ │ │ ├── oct6100_miscellaneous.c │ │ │ ├── oct6100_mixer.c │ │ │ ├── oct6100_phasing_tsst.c │ │ │ ├── oct6100_playout_buf.c │ │ │ ├── oct6100_remote_debug.c │ │ │ ├── oct6100_tlv.c │ │ │ ├── oct6100_tone_detection.c │ │ │ ├── oct6100_tsi_cnct.c │ │ │ ├── oct6100_tsst.c │ │ │ └── oct6100_user.c │ │ │ ├── oct6100_apimi │ │ │ └── oct6100_mask_interrupts.c │ │ │ ├── oct6100_channel_priv.h │ │ │ ├── oct6100_chip_open_priv.h │ │ │ ├── oct6100_chip_stats_priv.h │ │ │ ├── oct6100_conf_bridge_priv.h │ │ │ ├── oct6100_debug_priv.h │ │ │ ├── oct6100_events_priv.h │ │ │ ├── oct6100_interrupts_priv.h │ │ │ ├── oct6100_memory_priv.h │ │ │ ├── oct6100_miscellaneous_priv.h │ │ │ ├── oct6100_mixer_priv.h │ │ │ ├── oct6100_phasing_tsst_priv.h │ │ │ ├── oct6100_playout_buf_priv.h │ │ │ ├── oct6100_remote_debug_priv.h │ │ │ ├── oct6100_tlv_priv.h │ │ │ ├── oct6100_tone_detection_priv.h │ │ │ ├── oct6100_tsi_cnct_priv.h │ │ │ ├── oct6100_tsst_priv.h │ │ │ └── oct6100_version.h │ └── test.c ├── parse_span_specs.c ├── parse_span_specs.h ├── perl_modules │ ├── Dahdi.pm │ ├── Dahdi │ │ ├── Chans.pm │ │ ├── Config │ │ │ ├── Gen.pm │ │ │ ├── Gen │ │ │ │ ├── Assignedspans.pm │ │ │ │ ├── Chandahdi.pm │ │ │ │ ├── Freepbxdb.pm │ │ │ │ ├── Modules.pm │ │ │ │ ├── Spantypes.pm │ │ │ │ ├── System.pm │ │ │ │ ├── Unicall.pm │ │ │ │ ├── Users.pm │ │ │ │ └── Xpporder.pm │ │ │ └── Params.pm │ │ ├── Hardware.pm │ │ ├── Hardware │ │ │ ├── PCI.pm │ │ │ └── USB.pm │ │ ├── Span.pm │ │ ├── Utils.pm │ │ ├── Xpp.pm │ │ └── Xpp │ │ │ ├── Line.pm │ │ │ ├── Mpp.pm │ │ │ ├── Xbus.pm │ │ │ └── Xpd.pm │ └── Makefile.am ├── pic_loader.c ├── pic_loader.h ├── test_parse.c ├── twinstar ├── twinstar_hook ├── twinstar_setup ├── waitfor_xpds ├── xpp.rules ├── xpp_blink ├── xpp_fxloader ├── xpp_modprobe ├── xpp_sync ├── xpp_timing └── xtalk │ ├── Makefile.am │ ├── debug.c │ ├── debug.h │ ├── include │ └── xtalk │ │ ├── api_defs.h │ │ ├── debug.h │ │ ├── firmware_defs.h │ │ ├── proto.h │ │ ├── proto_raw.h │ │ ├── proto_sync.h │ │ ├── xlist.h │ │ ├── xtalk_iface.h │ │ ├── xusb.h │ │ └── xusb_iface.h │ ├── xlist.c │ ├── xlist.h │ ├── xlist_test.c │ ├── xtalk-xusb.c │ ├── xtalk_base.c │ ├── xtalk_base.h │ ├── xtalk_raw.c │ ├── xtalk_raw_test.c │ ├── xtalk_send.8 │ ├── xtalk_send.c │ ├── xtalk_sync.c │ ├── xtalk_test.c │ ├── xusb_common.c │ ├── xusb_common.h │ ├── xusb_libusb.c │ ├── xusb_libusbx.c │ ├── xusb_test.c │ └── xusb_test_bypath.c └── zonedata.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/Makefile.legacy -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/README -------------------------------------------------------------------------------- /UPGRADE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/UPGRADE.txt -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /assigned-spans.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/assigned-spans.conf.sample -------------------------------------------------------------------------------- /bittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/bittest.h -------------------------------------------------------------------------------- /blacklist.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/blacklist.sample -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/configure.ac -------------------------------------------------------------------------------- /dahdi-bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi-bash-completion -------------------------------------------------------------------------------- /dahdi.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi.init -------------------------------------------------------------------------------- /dahdi.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi.rules -------------------------------------------------------------------------------- /dahdi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi.xml -------------------------------------------------------------------------------- /dahdi_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_cfg.c -------------------------------------------------------------------------------- /dahdi_diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_diag.c -------------------------------------------------------------------------------- /dahdi_maint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_maint.c -------------------------------------------------------------------------------- /dahdi_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_monitor.c -------------------------------------------------------------------------------- /dahdi_pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_pcap.c -------------------------------------------------------------------------------- /dahdi_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_scan.c -------------------------------------------------------------------------------- /dahdi_span_assignments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_span_assignments -------------------------------------------------------------------------------- /dahdi_span_types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_span_types -------------------------------------------------------------------------------- /dahdi_speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_speed.c -------------------------------------------------------------------------------- /dahdi_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_test.c -------------------------------------------------------------------------------- /dahdi_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_tool.c -------------------------------------------------------------------------------- /dahdi_tools_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_tools_version.h -------------------------------------------------------------------------------- /dahdi_waitfor_span_assignments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/dahdi_waitfor_span_assignments -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/dahdi_cfg.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_cfg.8 -------------------------------------------------------------------------------- /doc/dahdi_diag.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_diag.8 -------------------------------------------------------------------------------- /doc/dahdi_maint.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_maint.8 -------------------------------------------------------------------------------- /doc/dahdi_monitor.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_monitor.8 -------------------------------------------------------------------------------- /doc/dahdi_scan.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_scan.8 -------------------------------------------------------------------------------- /doc/dahdi_span_assignments.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_span_assignments.8 -------------------------------------------------------------------------------- /doc/dahdi_span_types.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_span_types.8 -------------------------------------------------------------------------------- /doc/dahdi_test.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_test.8 -------------------------------------------------------------------------------- /doc/dahdi_tool.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_tool.8 -------------------------------------------------------------------------------- /doc/dahdi_waitfor_span_assignments.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/dahdi_waitfor_span_assignments.8 -------------------------------------------------------------------------------- /doc/fxotune.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/fxotune.8 -------------------------------------------------------------------------------- /doc/fxstest.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/fxstest.8 -------------------------------------------------------------------------------- /doc/patgen.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/patgen.8 -------------------------------------------------------------------------------- /doc/pattest.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/doc/pattest.8 -------------------------------------------------------------------------------- /fxotune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/fxotune.c -------------------------------------------------------------------------------- /fxotune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/fxotune.h -------------------------------------------------------------------------------- /fxstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/fxstest.c -------------------------------------------------------------------------------- /hdlcgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hdlcgen.c -------------------------------------------------------------------------------- /hdlcstress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hdlcstress.c -------------------------------------------------------------------------------- /hdlctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hdlctest.c -------------------------------------------------------------------------------- /hdlcverify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hdlcverify.c -------------------------------------------------------------------------------- /hotplug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/Makefile.am -------------------------------------------------------------------------------- /hotplug/dahdi_auto_assign_compat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/dahdi_auto_assign_compat -------------------------------------------------------------------------------- /hotplug/dahdi_handle_device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/dahdi_handle_device -------------------------------------------------------------------------------- /hotplug/dahdi_span_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/dahdi_span_config -------------------------------------------------------------------------------- /hotplug/handle_device.d/10-span-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/handle_device.d/10-span-types -------------------------------------------------------------------------------- /hotplug/handle_device.d/20-span-assignments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/handle_device.d/20-span-assignments -------------------------------------------------------------------------------- /hotplug/handle_device.d/30-xpp-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/handle_device.d/30-xpp-sync -------------------------------------------------------------------------------- /hotplug/span_config.d/10-dahdi-cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/span_config.d/10-dahdi-cfg -------------------------------------------------------------------------------- /hotplug/span_config.d/20-fxotune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/span_config.d/20-fxotune -------------------------------------------------------------------------------- /hotplug/span_config.d/50-asterisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/hotplug/span_config.d/50-asterisk -------------------------------------------------------------------------------- /ifup-hdlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/ifup-hdlc -------------------------------------------------------------------------------- /init.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/init.conf.sample -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/install-sh -------------------------------------------------------------------------------- /m4/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /makeopts.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/makeopts.in -------------------------------------------------------------------------------- /modprobe.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/modprobe.conf.sample -------------------------------------------------------------------------------- /modules.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/modules.sample -------------------------------------------------------------------------------- /patgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/patgen.c -------------------------------------------------------------------------------- /patlooptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/patlooptest.c -------------------------------------------------------------------------------- /pattest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/pattest.c -------------------------------------------------------------------------------- /ppp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/ppp/Makefile.am -------------------------------------------------------------------------------- /ppp/dahdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/ppp/dahdi.c -------------------------------------------------------------------------------- /sethdlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/sethdlc.c -------------------------------------------------------------------------------- /span-types.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/span-types.conf.sample -------------------------------------------------------------------------------- /system.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/system.conf.sample -------------------------------------------------------------------------------- /timertest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/timertest.c -------------------------------------------------------------------------------- /tonezone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/tonezone.c -------------------------------------------------------------------------------- /tonezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/tonezone.h -------------------------------------------------------------------------------- /version.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/version.c.in -------------------------------------------------------------------------------- /wavformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/wavformat.h -------------------------------------------------------------------------------- /xpp/50-dahdi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/50-dahdi.conf -------------------------------------------------------------------------------- /xpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/Makefile.am -------------------------------------------------------------------------------- /xpp/README.Astribank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/README.Astribank -------------------------------------------------------------------------------- /xpp/astribank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank.c -------------------------------------------------------------------------------- /xpp/astribank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank.h -------------------------------------------------------------------------------- /xpp/astribank_allow.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_allow.8 -------------------------------------------------------------------------------- /xpp/astribank_allow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_allow.c -------------------------------------------------------------------------------- /xpp/astribank_hexload.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_hexload.8 -------------------------------------------------------------------------------- /xpp/astribank_hexload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_hexload.c -------------------------------------------------------------------------------- /xpp/astribank_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_hook -------------------------------------------------------------------------------- /xpp/astribank_is_starting.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_is_starting.8 -------------------------------------------------------------------------------- /xpp/astribank_is_starting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_is_starting.c -------------------------------------------------------------------------------- /xpp/astribank_license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_license.c -------------------------------------------------------------------------------- /xpp/astribank_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_license.h -------------------------------------------------------------------------------- /xpp/astribank_tool.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_tool.8 -------------------------------------------------------------------------------- /xpp/astribank_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_tool.c -------------------------------------------------------------------------------- /xpp/astribank_upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/astribank_upgrade -------------------------------------------------------------------------------- /xpp/dahdi.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/dahdi.cgi -------------------------------------------------------------------------------- /xpp/dahdi_drivers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/dahdi_drivers -------------------------------------------------------------------------------- /xpp/dahdi_genconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/dahdi_genconf -------------------------------------------------------------------------------- /xpp/dahdi_hardware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/dahdi_hardware -------------------------------------------------------------------------------- /xpp/dahdi_registration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/dahdi_registration -------------------------------------------------------------------------------- /xpp/echo_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/echo_loader.c -------------------------------------------------------------------------------- /xpp/echo_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/echo_loader.h -------------------------------------------------------------------------------- /xpp/genconf_parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/genconf_parameters -------------------------------------------------------------------------------- /xpp/hexfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/hexfile.c -------------------------------------------------------------------------------- /xpp/hexfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/hexfile.h -------------------------------------------------------------------------------- /xpp/lsdahdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/lsdahdi -------------------------------------------------------------------------------- /xpp/mpptalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/mpptalk.c -------------------------------------------------------------------------------- /xpp/mpptalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/mpptalk.h -------------------------------------------------------------------------------- /xpp/oct612x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/Makefile.am -------------------------------------------------------------------------------- /xpp/oct612x/apilib/bt/octapi_bt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/apilib/bt/octapi_bt0.c -------------------------------------------------------------------------------- /xpp/oct612x/apilib/bt/octapi_bt0_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/apilib/bt/octapi_bt0_private.h -------------------------------------------------------------------------------- /xpp/oct612x/apilib/largmath/octapi_largmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/apilib/largmath/octapi_largmath.c -------------------------------------------------------------------------------- /xpp/oct612x/apilib/llman/octapi_llman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/apilib/llman/octapi_llman.c -------------------------------------------------------------------------------- /xpp/oct612x/apilib/llman/octapi_llman_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/apilib/llman/octapi_llman_private.h -------------------------------------------------------------------------------- /xpp/oct612x/get_discards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/get_discards -------------------------------------------------------------------------------- /xpp/oct612x/include/apilib/octapi_bt0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/apilib/octapi_bt0.h -------------------------------------------------------------------------------- /xpp/oct612x/include/apilib/octapi_largmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/apilib/octapi_largmath.h -------------------------------------------------------------------------------- /xpp/oct612x/include/apilib/octapi_llman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/apilib/octapi_llman.h -------------------------------------------------------------------------------- /xpp/oct612x/include/digium_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/digium_unused.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_adpcm_chan_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_adpcm_chan_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_adpcm_chan_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_adpcm_chan_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_api.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_api_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_api_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_apimi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_apimi.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_apiud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_apiud.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_channel_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_channel_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_channel_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_channel_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_chip_open_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_chip_open_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_chip_open_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_chip_open_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_chip_stats_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_chip_stats_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_chip_stats_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_chip_stats_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_conf_bridge_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_conf_bridge_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_conf_bridge_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_conf_bridge_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_debug_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_debug_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_debug_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_debug_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_defines.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_errors.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_events_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_events_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_events_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_events_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_interrupts_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_interrupts_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_interrupts_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_interrupts_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_mixer_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_mixer_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_mixer_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_mixer_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_phasing_tsst_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_phasing_tsst_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_phasing_tsst_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_phasing_tsst_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_playout_buf_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_playout_buf_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_playout_buf_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_playout_buf_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_remote_debug_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_remote_debug_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_remote_debug_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_remote_debug_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tlv_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tlv_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tone_detection_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tone_detection_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tone_detection_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tone_detection_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tsi_cnct_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tsi_cnct_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tsi_cnct_pub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tsi_cnct_pub.h -------------------------------------------------------------------------------- /xpp/oct612x/include/oct6100api/oct6100_tsst_inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/oct6100api/oct6100_tsst_inst.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octdef.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octmac.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octosdependant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octosdependant.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octrpc/oct6100_rpc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octrpc/oct6100_rpc_protocol.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octrpc/rpc_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octrpc/rpc_protocol.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octtype.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octtypevx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octtypevx.h -------------------------------------------------------------------------------- /xpp/oct612x/include/octtypewin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/include/octtypewin.h -------------------------------------------------------------------------------- /xpp/oct612x/octasic-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octasic-helper -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_adpcm_chan_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_adpcm_chan_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_adpcm_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_adpcm_chan.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_channel.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_open.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_chip_stats.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_conf_bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_conf_bridge.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_debug.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_events.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_interrupts.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_memory.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_miscellaneous.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_miscellaneous.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_mixer.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_phasing_tsst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_phasing_tsst.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_playout_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_playout_buf.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_remote_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_remote_debug.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tlv.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tone_detection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tone_detection.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tsi_cnct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tsi_cnct.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tsst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_tsst.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_api/oct6100_user.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_apimi/oct6100_mask_interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_apimi/oct6100_mask_interrupts.c -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_channel_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_channel_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_chip_open_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_chip_open_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_chip_stats_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_chip_stats_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_conf_bridge_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_conf_bridge_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_debug_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_debug_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_events_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_events_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_interrupts_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_interrupts_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_memory_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_memory_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_miscellaneous_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_miscellaneous_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_mixer_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_mixer_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_phasing_tsst_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_phasing_tsst_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_playout_buf_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_playout_buf_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_remote_debug_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_remote_debug_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_tlv_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_tlv_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_tone_detection_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_tone_detection_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_tsi_cnct_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_tsi_cnct_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_tsst_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_tsst_priv.h -------------------------------------------------------------------------------- /xpp/oct612x/octdeviceapi/oct6100api/oct6100_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/octdeviceapi/oct6100api/oct6100_version.h -------------------------------------------------------------------------------- /xpp/oct612x/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/oct612x/test.c -------------------------------------------------------------------------------- /xpp/parse_span_specs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/parse_span_specs.c -------------------------------------------------------------------------------- /xpp/parse_span_specs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/parse_span_specs.h -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Chans.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Chans.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Assignedspans.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Assignedspans.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Chandahdi.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Freepbxdb.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Freepbxdb.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Modules.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Modules.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Spantypes.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Spantypes.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/System.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/System.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Unicall.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Unicall.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Users.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Users.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Gen/Xpporder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Gen/Xpporder.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Config/Params.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Config/Params.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Hardware.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Hardware.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Hardware/PCI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Hardware/PCI.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Hardware/USB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Hardware/USB.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Span.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Span.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Utils.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Xpp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Xpp.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Xpp/Line.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Xpp/Line.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Xpp/Mpp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Xpp/Mpp.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Xpp/Xbus.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Xpp/Xbus.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Dahdi/Xpp/Xpd.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Dahdi/Xpp/Xpd.pm -------------------------------------------------------------------------------- /xpp/perl_modules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/perl_modules/Makefile.am -------------------------------------------------------------------------------- /xpp/pic_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/pic_loader.c -------------------------------------------------------------------------------- /xpp/pic_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/pic_loader.h -------------------------------------------------------------------------------- /xpp/test_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/test_parse.c -------------------------------------------------------------------------------- /xpp/twinstar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/twinstar -------------------------------------------------------------------------------- /xpp/twinstar_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/twinstar_hook -------------------------------------------------------------------------------- /xpp/twinstar_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/twinstar_setup -------------------------------------------------------------------------------- /xpp/waitfor_xpds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/waitfor_xpds -------------------------------------------------------------------------------- /xpp/xpp.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp.rules -------------------------------------------------------------------------------- /xpp/xpp_blink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp_blink -------------------------------------------------------------------------------- /xpp/xpp_fxloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp_fxloader -------------------------------------------------------------------------------- /xpp/xpp_modprobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp_modprobe -------------------------------------------------------------------------------- /xpp/xpp_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp_sync -------------------------------------------------------------------------------- /xpp/xpp_timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xpp_timing -------------------------------------------------------------------------------- /xpp/xtalk/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/Makefile.am -------------------------------------------------------------------------------- /xpp/xtalk/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/debug.c -------------------------------------------------------------------------------- /xpp/xtalk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/debug.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/api_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/api_defs.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/debug.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/firmware_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/firmware_defs.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/proto.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/proto_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/proto_raw.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/proto_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/proto_sync.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/xlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/xlist.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/xtalk_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/xtalk_iface.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/xusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/xusb.h -------------------------------------------------------------------------------- /xpp/xtalk/include/xtalk/xusb_iface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/include/xtalk/xusb_iface.h -------------------------------------------------------------------------------- /xpp/xtalk/xlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xlist.c -------------------------------------------------------------------------------- /xpp/xtalk/xlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xlist.h -------------------------------------------------------------------------------- /xpp/xtalk/xlist_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xlist_test.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk-xusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk-xusb.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_base.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_base.h -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_raw.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_raw_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_raw_test.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_send.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_send.8 -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_send.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_sync.c -------------------------------------------------------------------------------- /xpp/xtalk/xtalk_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xtalk_test.c -------------------------------------------------------------------------------- /xpp/xtalk/xusb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_common.c -------------------------------------------------------------------------------- /xpp/xtalk/xusb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_common.h -------------------------------------------------------------------------------- /xpp/xtalk/xusb_libusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_libusb.c -------------------------------------------------------------------------------- /xpp/xtalk/xusb_libusbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_libusbx.c -------------------------------------------------------------------------------- /xpp/xtalk/xusb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_test.c -------------------------------------------------------------------------------- /xpp/xtalk/xusb_test_bypath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/xpp/xtalk/xusb_test_bypath.c -------------------------------------------------------------------------------- /zonedata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asterisk/dahdi-tools/HEAD/zonedata.c --------------------------------------------------------------------------------