mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 17:02:23 +00:00
These codecs are non-free which creates issues for distributions, so let's not require these by default to run our example configs. We can add back in iLBC once we resolve the licensing situation with our in-tree implementation.
55 lines
1.4 KiB
XML
55 lines
1.4 KiB
XML
<configuration name="modules.conf" description="Modules">
|
|
<modules>
|
|
|
|
<!-- Loggers (I'd load these first) -->
|
|
<load module="mod_console"/>
|
|
<load module="mod_logfile"/>
|
|
<!-- <load module="mod_syslog"/> -->
|
|
|
|
<!-- Multi-Faceted -->
|
|
<!-- mod_enum is a dialplan interface, an application interface and an api command interface -->
|
|
<load module="mod_enum"/>
|
|
|
|
<!-- XML Interfaces -->
|
|
<!-- <load module="mod_xml_rpc"/> -->
|
|
<!-- <load module="mod_xml_cdr"/> -->
|
|
|
|
<!-- Event Handlers -->
|
|
<load module="mod_cdr_csv"/>
|
|
<!-- <load module="mod_event_multicast"/> -->
|
|
<load module="mod_event_socket"/>
|
|
|
|
<!-- Endpoints -->
|
|
<!-- <load module="mod_iax"/> -->
|
|
<load module="mod_sofia"/>
|
|
<load module="mod_loopback"/>
|
|
<!-- <load module="mod_woomera"/> -->
|
|
|
|
<!-- Applications -->
|
|
<load module="mod_commands"/>
|
|
<load module="mod_dptools"/>
|
|
<load module="mod_expr"/>
|
|
<load module="mod_limit"/>
|
|
|
|
<!-- Dialplan Interfaces -->
|
|
<load module="mod_dialplan_xml"/>
|
|
|
|
<!-- Codec Interfaces -->
|
|
<load module="mod_voipcodecs"/>
|
|
<load module="mod_g723_1"/>
|
|
<load module="mod_g729"/>
|
|
<load module="mod_amr"/>
|
|
<!--<load module="mod_ilbc"/>-->
|
|
<load module="mod_speex"/>
|
|
<load module="mod_h26x"/>
|
|
<!--<load module="mod_siren"/>-->
|
|
|
|
<!-- Timers -->
|
|
|
|
<!-- Languages -->
|
|
<!-- <load module="mod_perl"/> -->
|
|
<load module="mod_lua"/>
|
|
|
|
</modules>
|
|
</configuration>
|