├── .clang-format ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── COPYING ├── ChangeLog ├── INSTALL ├── ISSUES ├── Makefile ├── README ├── README.md ├── doc ├── README.md ├── docbook │ ├── Makefile │ ├── Makefile.module │ ├── README │ ├── TODO │ ├── catalog.xml │ ├── common.xsl │ ├── dep.xsl │ ├── entities.xml │ ├── html.chunked.xsl │ ├── html.common.xsl │ ├── html.xsl │ ├── man.xsl │ ├── readme.xsl │ ├── sr-doc.css │ └── txt.xsl ├── doxygen │ ├── main.dox │ ├── ser.doxygen │ └── versionfilter.sh ├── man │ ├── kamailio.8 │ └── kamailio.cfg.5 ├── misc │ ├── AUTHORS │ ├── CREDITS │ ├── HISTORY │ ├── NEWS │ ├── README-MODULES │ ├── TODO │ ├── config_migration.txt │ ├── cvs-commit-rules.txt │ ├── ser.txt │ └── sr-coding-style.txt ├── scripts │ └── cdefs2doc │ │ ├── dump_cfg_defs.pl │ │ ├── dump_counters.pl │ │ ├── dump_rpcs.pl │ │ └── dump_selects.pl ├── stylesheets │ ├── dbschema │ │ ├── README │ │ ├── dtd │ │ │ └── dbschema.dtd │ │ └── xsl │ │ │ ├── common.xsl │ │ │ ├── dbtext.xsl │ │ │ ├── docbook.xsl │ │ │ ├── mysql.xsl │ │ │ ├── oracle.xsl │ │ │ ├── postgres.xsl │ │ │ └── sql.xsl │ ├── dbschema2docbook.xsl │ ├── dbschema_k │ │ ├── bookinfo.xml │ │ ├── catalog.xml │ │ ├── dtd │ │ │ └── dbschema.dtd │ │ └── xsl │ │ │ ├── common.xsl │ │ │ ├── db_berkeley.xsl │ │ │ ├── db_redis.xsl │ │ │ ├── db_sqlite.xsl │ │ │ ├── dbdoc.xsl │ │ │ ├── dbschema2docbook.xsl │ │ │ ├── dbtext.xsl │ │ │ ├── docbook.xsl │ │ │ ├── modules_c.xsl │ │ │ ├── modules_h.xsl │ │ │ ├── mongodb.xsl │ │ │ ├── mysql.xsl │ │ │ ├── oracle.xsl │ │ │ ├── pi_framework_mod.xsl │ │ │ ├── pi_framework_table.xsl │ │ │ ├── postgres.xsl │ │ │ └── sql.xsl │ └── serdoc2man.xsl └── tutorials │ ├── cfg.txt │ ├── cfg_list │ ├── Makefile │ ├── cfg_carrierroute.txt │ ├── cfg_core.txt │ ├── cfg_debugger.txt │ ├── cfg_dispatcher.txt │ ├── cfg_ims_registrar_scscf.txt │ ├── cfg_malloc_test.txt │ ├── cfg_maxfwd.txt │ ├── cfg_outbound.txt │ ├── cfg_registrar.txt │ ├── cfg_rtpengine.txt │ ├── cfg_sctp.txt │ ├── cfg_siputils.txt │ ├── cfg_stun.txt │ ├── cfg_tcp.txt │ ├── cfg_tls.txt │ ├── cfg_tm.txt │ ├── cfg_websocket.txt │ ├── cfg_xlog.txt │ └── docbook │ │ ├── Makefile │ │ ├── cfg_carrierroute.xml │ │ ├── cfg_core.xml │ │ ├── cfg_debugger.xml │ │ ├── cfg_dispatcher.xml │ │ ├── cfg_ims_registrar_scscf.xml │ │ ├── cfg_malloc_test.xml │ │ ├── cfg_maxfwd.xml │ │ ├── cfg_outbound.xml │ │ ├── cfg_registrar.xml │ │ ├── cfg_rtpengine.xml │ │ ├── cfg_sctp.xml │ │ ├── cfg_siputils.xml │ │ ├── cfg_stun.xml │ │ ├── cfg_tcp.xml │ │ ├── cfg_tls.xml │ │ ├── cfg_tm.xml │ │ ├── cfg_var_list.xml │ │ ├── cfg_websocket.xml │ │ └── cfg_xlog.xml │ ├── counter_list │ ├── Makefile │ ├── counters_cdp.txt │ ├── counters_dns.txt │ ├── counters_ims_charging.txt │ ├── counters_ims_dialog.txt │ ├── counters_ims_qos.txt │ ├── counters_ims_usrloc_scscf.txt │ ├── counters_mysql.txt │ ├── counters_sctp.txt │ ├── counters_tcp.txt │ └── docbook │ │ ├── Makefile │ │ ├── counter_list.xml │ │ ├── counters_cdp.xml │ │ ├── counters_dns.xml │ │ ├── counters_ims_charging.xml │ │ ├── counters_ims_dialog.xml │ │ ├── counters_ims_qos.xml │ │ ├── counters_ims_usrloc_scscf.xml │ │ ├── counters_mysql.xml │ │ ├── counters_sctp.xml │ │ └── counters_tcp.xml │ ├── dns.txt │ ├── dst_blacklist.txt │ ├── locking.txt │ ├── logging-api.txt │ ├── management_api.txt │ ├── modules_init.txt │ ├── parse_headers.txt │ ├── presence │ ├── Makefile │ ├── biblio.xml │ ├── cfg │ │ ├── full_ps.cfg │ │ └── ps.cfg │ ├── draft_iptel_im_rules.xml │ ├── examples.xml │ ├── install.xml │ ├── intro.xml │ ├── presence_book.xml │ ├── trouble.xml │ └── xcap.xml │ ├── rpc │ ├── Makefile │ ├── kamailio_rpc.txt │ └── kamailio_rpc.xml │ ├── rpc_list │ ├── Makefile │ ├── docbook │ │ ├── Makefile │ │ ├── rpc_app_jsdt.xml │ │ ├── rpc_app_lua.xml │ │ ├── rpc_app_perl.xml │ │ ├── rpc_app_sqlang.xml │ │ ├── rpc_auth_ephemeral.xml │ │ ├── rpc_auth_xkeys.xml │ │ ├── rpc_benchmark.xml │ │ ├── rpc_call_obj.xml │ │ ├── rpc_carrierroute.xml │ │ ├── rpc_cdp.xml │ │ ├── rpc_cfg_rpc.xml │ │ ├── rpc_cfgt.xml │ │ ├── rpc_cfgutils.xml │ │ ├── rpc_cnxcc.xml │ │ ├── rpc_core.xml │ │ ├── rpc_corex.xml │ │ ├── rpc_counters.xml │ │ ├── rpc_cplc.xml │ │ ├── rpc_ctl.xml │ │ ├── rpc_db_berkeley.xml │ │ ├── rpc_db_flatstore.xml │ │ ├── rpc_db_text.xml │ │ ├── rpc_debugger.xml │ │ ├── rpc_dialog.xml │ │ ├── rpc_dialplan.xml │ │ ├── rpc_dispatcher.xml │ │ ├── rpc_dmq.xml │ │ ├── rpc_domain.xml │ │ ├── rpc_drouting.xml │ │ ├── rpc_htable.xml │ │ ├── rpc_http_client.xml │ │ ├── rpc_imc.xml │ │ ├── rpc_ims_dialog.xml │ │ ├── rpc_ims_registrar_scscf.xml │ │ ├── rpc_ims_usrloc_pcscf.xml │ │ ├── rpc_ims_usrloc_scscf.xml │ │ ├── rpc_jsonrpc-s.xml │ │ ├── rpc_jsonrpcs.xml │ │ ├── rpc_keepalive.xml │ │ ├── rpc_kex.xml │ │ ├── rpc_lcr.xml │ │ ├── rpc_list.xml │ │ ├── rpc_malloc_test.xml │ │ ├── rpc_matrix.xml │ │ ├── rpc_mi_rpc.xml │ │ ├── rpc_mqueue.xml │ │ ├── rpc_msrp.xml │ │ ├── rpc_mtree.xml │ │ ├── rpc_nathelper.xml │ │ ├── rpc_pdb.xml │ │ ├── rpc_pdt.xml │ │ ├── rpc_permissions.xml │ │ ├── rpc_pike.xml │ │ ├── rpc_pipelimit.xml │ │ ├── rpc_prefix_route.xml │ │ ├── rpc_presence.xml │ │ ├── rpc_pua.xml │ │ ├── rpc_pua_rpc.xml │ │ ├── rpc_pv.xml │ │ ├── rpc_ratelimit.xml │ │ ├── rpc_regex.xml │ │ ├── rpc_rls.xml │ │ ├── rpc_rtpengine.xml │ │ ├── rpc_rtpproxy.xml │ │ ├── rpc_sca.xml │ │ ├── rpc_sctp.xml │ │ ├── rpc_sipcapture.xml │ │ ├── rpc_siptrace.xml │ │ ├── rpc_sl.xml │ │ ├── rpc_statsc.xml │ │ ├── rpc_tls.xml │ │ ├── rpc_tm.xml │ │ ├── rpc_tsilo.xml │ │ ├── rpc_uac.xml │ │ ├── rpc_uid_domain.xml │ │ ├── rpc_uid_gflags.xml │ │ ├── rpc_userblacklist.xml │ │ ├── rpc_usrloc.xml │ │ ├── rpc_websocket.xml │ │ ├── rpc_xcap_client.xml │ │ └── rpc_xhttp_pi.xml │ ├── rpc_app_jsdt.txt │ ├── rpc_app_lua.txt │ ├── rpc_app_perl.txt │ ├── rpc_app_sqlang.txt │ ├── rpc_auth_ephemeral.txt │ ├── rpc_auth_xkeys.txt │ ├── rpc_benchmark.txt │ ├── rpc_call_obj.txt │ ├── rpc_carrierroute.txt │ ├── rpc_cdp.txt │ ├── rpc_cfg_rpc.txt │ ├── rpc_cfgt.txt │ ├── rpc_cfgutils.txt │ ├── rpc_cnxcc.txt │ ├── rpc_core.txt │ ├── rpc_corex.txt │ ├── rpc_counters.txt │ ├── rpc_cplc.txt │ ├── rpc_ctl.txt │ ├── rpc_db_berkeley.txt │ ├── rpc_db_flatstore.txt │ ├── rpc_db_text.txt │ ├── rpc_debugger.txt │ ├── rpc_dialog.txt │ ├── rpc_dialplan.txt │ ├── rpc_dispatcher.txt │ ├── rpc_dmq.txt │ ├── rpc_domain.txt │ ├── rpc_drouting.txt │ ├── rpc_htable.txt │ ├── rpc_http_client.txt │ ├── rpc_imc.txt │ ├── rpc_ims_dialog.txt │ ├── rpc_ims_registrar_scscf.txt │ ├── rpc_ims_usrloc_pcscf.txt │ ├── rpc_ims_usrloc_scscf.txt │ ├── rpc_jsonrpc-s.txt │ ├── rpc_jsonrpcs.txt │ ├── rpc_keepalive.txt │ ├── rpc_kex.txt │ ├── rpc_lcr.txt │ ├── rpc_malloc_test.txt │ ├── rpc_matrix.txt │ ├── rpc_mi_rpc.txt │ ├── rpc_mqueue.txt │ ├── rpc_msrp.txt │ ├── rpc_mtree.txt │ ├── rpc_nathelper.txt │ ├── rpc_pdb.txt │ ├── rpc_pdt.txt │ ├── rpc_permissions.txt │ ├── rpc_pike.txt │ ├── rpc_pipelimit.txt │ ├── rpc_prefix_route.txt │ ├── rpc_presence.txt │ ├── rpc_pua.txt │ ├── rpc_pua_rpc.txt │ ├── rpc_pv.txt │ ├── rpc_ratelimit.txt │ ├── rpc_regex.txt │ ├── rpc_rls.txt │ ├── rpc_rtpengine.txt │ ├── rpc_rtpproxy.txt │ ├── rpc_sca.txt │ ├── rpc_sctp.txt │ ├── rpc_sipcapture.txt │ ├── rpc_siptrace.txt │ ├── rpc_sl.txt │ ├── rpc_statsc.txt │ ├── rpc_tls.txt │ ├── rpc_tm.txt │ ├── rpc_tsilo.txt │ ├── rpc_uac.txt │ ├── rpc_uid_domain.txt │ ├── rpc_uid_gflags.txt │ ├── rpc_userblacklist.txt │ ├── rpc_usrloc.txt │ ├── rpc_websocket.txt │ ├── rpc_xcap_client.txt │ └── rpc_xhttp_pi.txt │ ├── select_list │ ├── Makefile │ ├── docbook │ │ ├── Makefile │ │ ├── intro.xml │ │ ├── select_avp.xml │ │ ├── select_cnxcc.xml │ │ ├── select_core.xml │ │ ├── select_db2_ops.xml │ │ ├── select_list.xml │ │ ├── select_nathelper.xml │ │ ├── select_textopsx.xml │ │ ├── select_timer.xml │ │ ├── select_tls.xml │ │ ├── select_tm.xml │ │ └── select_xmlrpc.xml │ ├── select_avp.txt │ ├── select_cnxcc.txt │ ├── select_core.txt │ ├── select_db2_ops.txt │ ├── select_nathelper.txt │ ├── select_textopsx.txt │ ├── select_timer.txt │ ├── select_tls.txt │ ├── select_tm.txt │ └── select_xmlrpc.txt │ ├── ser_radius │ ├── Makefile │ └── ser_radius.xml │ ├── serdev │ ├── Makefile │ ├── contact_body.xml │ ├── contact_parser.xml │ ├── cseq_body.xml │ ├── cseq_parser.xml │ ├── data_structures.xml │ ├── db_con_t.xml │ ├── db_interface.xml │ ├── db_key_t.xml │ ├── db_res_t.xml │ ├── db_row_t.xml │ ├── db_type_t.xml │ ├── db_val_t.xml │ ├── digest_parser.xml │ ├── event_parser.xml │ ├── event_t.xml │ ├── exp_body_t.xml │ ├── expires_parser.xml │ ├── fline_parser.xml │ ├── from_parser.xml │ ├── hdr_field.xml │ ├── hfname_parser.xml │ ├── ip_addr.xml │ ├── locking.xml │ ├── lump.xml │ ├── lump_rpl.xml │ ├── main_loop.xml │ ├── modiface.xml │ ├── module_exports.xml │ ├── msg_parser.xml │ ├── msg_start.xml │ ├── routing_engine.xml │ ├── select_module.xml │ ├── serdev.xml │ ├── shutdown.xml │ ├── sip_msg.xml │ ├── sip_uri.xml │ ├── sr_module.xml │ ├── startup.xml │ ├── str.xml │ ├── to_body.xml │ ├── to_parser.xml │ ├── via_body.xml │ └── via_parser.xml │ ├── serfaq │ ├── Makefile │ └── serfaq.xml │ ├── serhowto │ ├── Makefile │ └── ser-howto.xml │ ├── seruser │ ├── Makefile │ ├── apps.xml │ ├── db_fifo.xml │ ├── general.xml │ ├── intro.xml │ ├── operation.xml │ ├── otherapps.xml │ ├── reference.xml │ ├── seruser.xml │ └── voicemail.xml │ ├── sip │ ├── Makefile │ ├── figures │ │ ├── bye.dia │ │ ├── bye.eps │ │ ├── bye.png │ │ ├── companies.dia │ │ ├── companies.eps │ │ ├── companies.png │ │ ├── dialog.dia │ │ ├── dialog.eps │ │ ├── dialog.png │ │ ├── event.dia │ │ ├── event.eps │ │ ├── event.png │ │ ├── invite1.dia │ │ ├── invite1.eps │ │ ├── invite1.png │ │ ├── message.dia │ │ ├── message.eps │ │ ├── message.png │ │ ├── redirect.dia │ │ ├── redirect.eps │ │ ├── redirect.png │ │ ├── register.dia │ │ ├── register.eps │ │ ├── register.png │ │ ├── registrar.dia │ │ ├── registrar.eps │ │ ├── registrar.png │ │ ├── transaction.dia │ │ ├── transaction.eps │ │ ├── transaction.png │ │ ├── trapezoid.dia │ │ ├── trapezoid.eps │ │ ├── trapezoid.png │ │ ├── ua.dia │ │ ├── ua.eps │ │ └── ua.png │ └── sip_introduction.xml │ ├── tcp_tunning.txt │ └── timers.txt ├── etc ├── kamailio.cfg └── sip-router.cfg ├── misc ├── examples │ ├── exec │ │ ├── exec.cfg │ │ ├── exec_dist.cfg │ │ ├── exec_s2.cfg │ │ ├── exec_s3.cfg │ │ ├── exec_s4.cfg │ │ ├── exec_s5.cfg │ │ └── exec_s5b.cfg │ ├── ims │ │ ├── icscf │ │ │ ├── README.md │ │ │ ├── icscf.cfg.sample │ │ │ ├── icscf.sql │ │ │ ├── icscf.xml.sample │ │ │ └── kamailio.cfg │ │ ├── ims_dnszone │ │ │ └── mnc001.mcc001.3gppnetwork.org │ │ ├── pcscf │ │ │ ├── README.md │ │ │ ├── dispatcher.list.sample │ │ │ ├── kamailio.cfg │ │ │ ├── pcscf.cfg.sample │ │ │ ├── pcscf.xml.sample │ │ │ ├── route │ │ │ │ ├── mo.cfg │ │ │ │ ├── mt.cfg │ │ │ │ ├── register.cfg │ │ │ │ ├── rtp.cfg │ │ │ │ ├── websocket.cfg │ │ │ │ └── xmlrpc.cfg │ │ │ ├── sems │ │ │ │ ├── etc │ │ │ │ │ ├── methodmap.conf │ │ │ │ │ ├── mo.sbcprofile.conf │ │ │ │ │ ├── monitoring.conf │ │ │ │ │ ├── mt.sbcprofile.conf │ │ │ │ │ ├── nocache.sbcprofile.conf │ │ │ │ │ ├── refuse.sbcprofile.conf │ │ │ │ │ ├── refuse_with_200.sbcprofile.conf │ │ │ │ │ ├── register.sbcprofile.conf │ │ │ │ │ ├── rurimap.conf │ │ │ │ │ ├── sbc.conf │ │ │ │ │ ├── stats.conf │ │ │ │ │ └── xmlrpc2di.conf │ │ │ │ └── sems.conf │ │ │ └── tls.cfg.sample │ │ └── scscf │ │ │ ├── CxDataType_Rel6.xsd │ │ │ ├── CxDataType_Rel7.xsd │ │ │ ├── CxDataType_Rel8.xsd │ │ │ ├── README.md │ │ │ ├── dispatcher.list.sample │ │ │ ├── kamailio.cfg │ │ │ ├── scscf.cfg.sample │ │ │ └── scscf.xml.sample │ ├── kamailio │ │ ├── acc-mysql.cfg │ │ ├── acc.cfg │ │ ├── ctd.sh │ │ ├── exec_s3.cfg │ │ ├── exec_s4.cfg │ │ ├── exec_s5.cfg │ │ ├── flag_reply.cfg │ │ ├── fork.cfg │ │ ├── logging.cfg │ │ ├── msilo.cfg │ │ ├── nathelper.cfg │ │ ├── pstn.cfg │ │ ├── redirect.cfg │ │ ├── replicate.cfg │ │ ├── serial_183.cfg │ │ └── web_im │ │ │ ├── README │ │ │ ├── click_to_dial.html │ │ │ ├── click_to_dial.php │ │ │ ├── send_im.html │ │ │ └── send_im.php │ ├── kemi │ │ ├── kamailio-basic-kemi-jsdt.js │ │ ├── kamailio-basic-kemi-lua.lua │ │ ├── kamailio-basic-kemi-native.cfg │ │ ├── kamailio-basic-kemi-python.py │ │ ├── kamailio-basic-kemi-ruby.rb │ │ ├── kamailio-basic-kemi-sqlang.sq │ │ └── kamailio-basic-kemi.cfg │ ├── mixed │ │ ├── acc.cfg │ │ ├── ccdiversion.cfg │ │ ├── dbtext.cfg │ │ ├── flag_reply.cfg │ │ ├── kamailio-minimal-anycast.cfg │ │ ├── kamailio-minimal-proxy.cfg │ │ ├── logging.cfg │ │ ├── msilo.cfg │ │ ├── nathelper.cfg │ │ ├── onr.cfg │ │ ├── pstn.cfg │ │ ├── redirect.cfg │ │ ├── replicate.cfg │ │ ├── rules.m4 │ │ ├── serial_183.cfg │ │ ├── sip-router.cfg.m4 │ │ ├── snmp.cfg │ │ ├── uas.cfg │ │ ├── vm_proxy.cfg │ │ ├── voicemail.cfg │ │ ├── welcome.cfg │ │ └── xhttp.cfg │ ├── obsoleted │ │ ├── backup.cfg │ │ ├── bat.cfg │ │ ├── blb.cfg │ │ ├── imgw.cfg │ │ ├── mobile66.cfg │ │ ├── register.cfg │ │ ├── secondary.cfg │ │ ├── sercheck │ │ ├── sip2jabd │ │ ├── sms.cfg │ │ ├── smsgw.cfg │ │ ├── test.cfg │ │ ├── tmtest.cfg │ │ ├── to_fox.cfg │ │ └── use_jabs.cfg │ ├── outbound │ │ ├── edge.cfg │ │ ├── edge_websocket.cfg │ │ └── registrar.cfg │ ├── pi_framework │ │ └── pi_framework.xml │ ├── pkg │ │ ├── kamailio-basic.cfg │ │ ├── kamailio-oob.cfg │ │ ├── sip-router-basic.cfg │ │ ├── sip-router-oob.cfg │ │ └── sipcapture.cfg │ ├── presence │ │ ├── full-no-failover.cfg │ │ └── no-db.cfg │ ├── scripts │ │ ├── ctd.sh │ │ ├── geo_split.sh │ │ ├── serresponse │ │ ├── sr │ │ └── web_im │ │ │ ├── README │ │ │ ├── click_to_dial.html │ │ │ ├── click_to_dial.php │ │ │ ├── send_im.html │ │ │ └── send_im.php │ └── webrtc │ │ ├── kamailio-default-websocket.cfg │ │ └── websocket.cfg ├── extra │ └── vim │ │ ├── Makefile │ │ ├── README │ │ ├── ftdetect │ │ └── kamailio.vim │ │ └── syntax │ │ └── kamailio.vim ├── reasons │ ├── reasons-cs_CZ.iso-8859-2.txt │ └── reasons-en_US.ascii.txt ├── scripts │ ├── dbtext │ │ ├── ser_db │ │ │ ├── acc │ │ │ ├── attr_types │ │ │ ├── contact_attrs │ │ │ ├── cpl │ │ │ ├── credentials │ │ │ ├── customers │ │ │ ├── domain │ │ │ ├── domain_attrs │ │ │ ├── domain_settings │ │ │ ├── global_attrs │ │ │ ├── grp │ │ │ ├── gw │ │ │ ├── gw_grp │ │ │ ├── i18n │ │ │ ├── ipmatch │ │ │ ├── lcr │ │ │ ├── location │ │ │ ├── missed_calls │ │ │ ├── offline_winfo │ │ │ ├── pdt │ │ │ ├── phonebook │ │ │ ├── presentity │ │ │ ├── presentity_contact │ │ │ ├── presentity_extensions │ │ │ ├── presentity_notes │ │ │ ├── presentity_persons │ │ │ ├── rls_subscription │ │ │ ├── rls_vs │ │ │ ├── rls_vs_names │ │ │ ├── sd_attrs │ │ │ ├── silo │ │ │ ├── speed_dial │ │ │ ├── trusted │ │ │ ├── tuple_extensions │ │ │ ├── tuple_notes │ │ │ ├── uri │ │ │ ├── uri_attrs │ │ │ ├── user_attrs │ │ │ └── watcherinfo │ │ └── ser_dbtext.sh │ ├── filter_log.sh │ ├── harv_ser.sh │ ├── kam_to_sr.sh │ ├── logging │ │ ├── fix-logs │ │ └── fix-logs-all │ ├── mysql │ │ ├── my_create.sql │ │ ├── my_data.sql │ │ ├── my_drop.sql │ │ └── sip-router_mysql.sh │ ├── oracle │ │ ├── or_create.sql │ │ ├── or_data.sql │ │ └── or_drop.sql │ ├── postgres │ │ ├── pg_create.sql │ │ ├── pg_data.sql │ │ ├── pg_drop.sql │ │ └── ser_postgres.sh │ ├── ser_to_sr.sh │ ├── serconf.sh │ └── serstats ├── tls-ca │ ├── README │ ├── ca.conf │ ├── request.conf │ ├── rootCA │ │ ├── cacert.pem │ │ ├── certs │ │ │ └── 01.pem │ │ ├── index.txt │ │ ├── private │ │ │ └── cakey.pem │ │ └── serial │ ├── user.conf │ └── user │ │ ├── user-calist.pem │ │ ├── user-cert.pem │ │ ├── user-cert_req.pem │ │ └── user-privkey.pem └── tools │ ├── fifo_relay │ └── fifo_server.php │ ├── kemi │ ├── README.md │ └── kemi-code-gen.py │ ├── pike_top │ ├── INSTALL │ ├── Makefile │ └── pike_top.c │ ├── profile │ ├── launch.sh │ └── profile.cfg │ ├── protoshoot │ ├── Makefile │ ├── README │ └── protoshoot.c │ ├── route_graph │ └── route_graph.py │ └── sipgrep │ ├── README │ └── sipgrep ├── pkg ├── kamailio │ ├── Makefile │ ├── README.md │ ├── alpine │ │ ├── APKBUILD │ │ ├── kamailio.initd │ │ ├── kamailio.pre-install │ │ └── kamailio.pre-upgrade │ ├── centos │ │ └── README.md │ ├── deb │ │ ├── bionic │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── buster │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── debian │ │ │ ├── backports │ │ │ │ ├── bionic │ │ │ │ ├── buster │ │ │ │ ├── jessie │ │ │ │ ├── precise │ │ │ │ ├── sid │ │ │ │ ├── stretch │ │ │ │ ├── trusty │ │ │ │ ├── wheezy │ │ │ │ └── xenial │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── jessie │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-mysql-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── precise │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-mysql-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── sid │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── stretch │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── trusty │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-mysql-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ ├── wheezy │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-mysql-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ │ └── format │ │ │ └── watch │ │ └── xenial │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── kamailio-autheph-modules.lintian-overrides │ │ │ ├── kamailio-berkeley-bin.dirs │ │ │ ├── kamailio-dnssec-modules.lintian-overrides │ │ │ ├── kamailio-mysql-modules.lintian-overrides │ │ │ ├── kamailio-outbound-modules.lintian-overrides │ │ │ ├── kamailio-tls-modules.lintian-overrides │ │ │ ├── kamailio-websocket-modules.lintian-overrides │ │ │ ├── kamailio.README.Debian │ │ │ ├── kamailio.default │ │ │ ├── kamailio.examples │ │ │ ├── kamailio.init │ │ │ ├── kamailio.lintian-overrides │ │ │ ├── kamailio.postinst │ │ │ ├── kamailio.service │ │ │ ├── rules │ │ │ ├── source.lintian-overrides │ │ │ ├── source │ │ │ └── format │ │ │ └── watch │ ├── fedora │ │ └── README.md │ ├── freebsd │ │ ├── Makefile │ │ ├── distinfo │ │ ├── files │ │ │ ├── patch-Makefile │ │ │ ├── patch-Makefile-mysql │ │ │ ├── patch-Makefile.defs │ │ │ ├── pkg-deinstall.in │ │ │ └── pkg-install.in │ │ └── pkg-descr │ ├── netbsd │ │ ├── COMMENT │ │ ├── DESCR │ │ ├── Makefile │ │ ├── PLIST │ │ └── distinfo │ ├── obs │ │ ├── README │ │ ├── kamailio.init │ │ ├── kamailio.service │ │ ├── kamailio.spec │ │ ├── kamailio.sysconfig │ │ ├── kamailio.tmpfiles │ │ ├── meta │ │ ├── prjconf │ │ ├── sipcapture.service │ │ ├── sipcapture.sysconfig │ │ └── sipcapture.tmpfiles │ ├── openbsd │ │ ├── Makefile │ │ ├── distinfo │ │ ├── patches │ │ │ ├── patch-etc_kamailio_cfg │ │ │ ├── patch-modules_perl_Makefile │ │ │ └── patch-scripts_kamctlrc │ │ └── pkg │ │ │ ├── COMMENT │ │ │ ├── DESCR │ │ │ ├── DESCR-berkeleydb │ │ │ ├── DESCR-carrierroute │ │ │ ├── DESCR-ldap │ │ │ ├── DESCR-main │ │ │ ├── DESCR-mysql │ │ │ ├── DESCR-perl │ │ │ ├── DESCR-postgresql │ │ │ ├── DESCR-radius │ │ │ ├── DESCR-snmpstats │ │ │ ├── DESCR-xcap_client │ │ │ ├── DESCR-xmlrpc │ │ │ ├── PFRAG.shared-berkeleydb │ │ │ ├── PFRAG.shared-carrierroute │ │ │ ├── PFRAG.shared-ldap │ │ │ ├── PFRAG.shared-main │ │ │ ├── PFRAG.shared-mysql │ │ │ ├── PFRAG.shared-perl │ │ │ ├── PFRAG.shared-postgresql │ │ │ ├── PFRAG.shared-radius │ │ │ ├── PFRAG.shared-snmpstats │ │ │ ├── PFRAG.shared-xcap_client │ │ │ ├── PFRAG.shared-xmlrpc │ │ │ ├── PLIST │ │ │ ├── PLIST-berkeleydb │ │ │ ├── PLIST-carrierroute │ │ │ ├── PLIST-ldap │ │ │ ├── PLIST-main │ │ │ ├── PLIST-mysql │ │ │ ├── PLIST-perl │ │ │ ├── PLIST-postgresql │ │ │ ├── PLIST-radius │ │ │ ├── PLIST-snmpstats │ │ │ ├── PLIST-xcap_client │ │ │ └── PLIST-xmlrpc │ ├── opensuse │ │ └── README.md │ ├── oracle │ │ └── README.md │ ├── rhel │ │ └── README.md │ └── solaris │ │ ├── kamailio-manifest.xml │ │ ├── pkginfo │ │ └── prototype └── ser │ └── README.md ├── src ├── Makefile ├── Makefile.cfg ├── Makefile.defs ├── Makefile.dirs ├── Makefile.groups ├── Makefile.libs ├── Makefile.modules ├── Makefile.radius ├── Makefile.rules ├── Makefile.shared ├── Makefile.sources ├── Makefile.targets ├── Makefile.utils ├── core │ ├── action.c │ ├── action.h │ ├── async_task.c │ ├── async_task.h │ ├── atomic │ │ ├── atomic_alpha.h │ │ ├── atomic_arm.h │ │ ├── atomic_common.h │ │ ├── atomic_mips2.h │ │ ├── atomic_native.h │ │ ├── atomic_ppc.h │ │ ├── atomic_sparc.h │ │ ├── atomic_sparc64.h │ │ ├── atomic_unknown.h │ │ └── atomic_x86.h │ ├── atomic_ops.c │ ├── atomic_ops.h │ ├── atomic_ops_init.h │ ├── basex.c │ ├── basex.h │ ├── bit_count.c │ ├── bit_count.h │ ├── bit_scan.c │ ├── bit_scan.h │ ├── bit_test.h │ ├── ccopts.sh │ ├── ccver.sh │ ├── cfg.lex │ ├── cfg.y │ ├── cfg │ │ ├── cfg.c │ │ ├── cfg.h │ │ ├── cfg_ctx.c │ │ ├── cfg_ctx.h │ │ ├── cfg_script.c │ │ ├── cfg_script.h │ │ ├── cfg_select.c │ │ ├── cfg_select.h │ │ ├── cfg_struct.c │ │ └── cfg_struct.h │ ├── cfg_core.c │ ├── cfg_core.h │ ├── cfg_parser.c │ ├── cfg_parser.h │ ├── char_msg_val.h │ ├── clist.h │ ├── comp_defs.h │ ├── compiler_opt.h │ ├── config.h │ ├── core_cmd.c │ ├── core_cmd.h │ ├── core_stats.h │ ├── counters.c │ ├── counters.h │ ├── crc.c │ ├── crc.h │ ├── daemonize.c │ ├── daemonize.h │ ├── data_lump.c │ ├── data_lump.h │ ├── data_lump_rpl.c │ ├── data_lump_rpl.h │ ├── dns_cache.c │ ├── dns_cache.h │ ├── dns_func.c │ ├── dns_func.h │ ├── dns_wrappers.h │ ├── dprint.c │ ├── dprint.h │ ├── dset.c │ ├── dset.h │ ├── dst_blacklist.c │ ├── dst_blacklist.h │ ├── endianness.c │ ├── endianness.h │ ├── error.c │ ├── error.h │ ├── events.c │ ├── events.h │ ├── fastlock.h │ ├── fix_lumps.h │ ├── flags.c │ ├── flags.h │ ├── fmsg.c │ ├── fmsg.h │ ├── forward.c │ ├── forward.h │ ├── futexlock.h │ ├── globals.h │ ├── hash_func.c │ ├── hash_func.h │ ├── hashes.h │ ├── id.c │ ├── id.h │ ├── io_wait.c │ ├── io_wait.h │ ├── ip_addr.c │ ├── ip_addr.h │ ├── kemi.c │ ├── kemi.h │ ├── list.h │ ├── local_timer.c │ ├── local_timer.h │ ├── lock_alloc.h │ ├── lock_ops.c │ ├── lock_ops.h │ ├── lock_ops_init.h │ ├── locking.c │ ├── locking.h │ ├── lump_struct.h │ ├── lvalue.c │ ├── lvalue.h │ ├── make_and_install │ ├── md5.c │ ├── md5.h │ ├── md5utils.c │ ├── md5utils.h │ ├── mem │ │ ├── Readme.tlsf.txt │ │ ├── dl_config.h │ │ ├── dl_malloc.c │ │ ├── dl_malloc.h │ │ ├── f_malloc.c │ │ ├── f_malloc.h │ │ ├── ll_malloc.c │ │ ├── ll_malloc.h │ │ ├── mem.h │ │ ├── memapi.h │ │ ├── memcore.h │ │ ├── memdbg.h │ │ ├── meminfo.h │ │ ├── memtest.c │ │ ├── pkg.c │ │ ├── pkg.h │ │ ├── q_malloc.c │ │ ├── q_malloc.h │ │ ├── sf_malloc.c │ │ ├── sf_malloc.h │ │ ├── shm.c │ │ ├── shm.h │ │ ├── shm_mem.h │ │ ├── src_loc.h │ │ ├── tlsf_malloc.c │ │ ├── tlsf_malloc.h │ │ └── tlsf_malloc_bits.h │ ├── mod_fix.c │ ├── mod_fix.h │ ├── modparam.c │ ├── modparam.h │ ├── msg_translator.c │ ├── msg_translator.h │ ├── name_alias.h │ ├── nonsip_hooks.c │ ├── nonsip_hooks.h │ ├── onsend.h │ ├── parser │ │ ├── case_acce.h │ │ ├── case_allo.h │ │ ├── case_auth.h │ │ ├── case_c_inf.h │ │ ├── case_call.h │ │ ├── case_cont.h │ │ ├── case_cseq.h │ │ ├── case_date.h │ │ ├── case_dive.h │ │ ├── case_even.h │ │ ├── case_expi.h │ │ ├── case_from.h │ │ ├── case_iden.h │ │ ├── case_max.h │ │ ├── case_min.h │ │ ├── case_orga.h │ │ ├── case_p_as.h │ │ ├── case_p_pr.h │ │ ├── case_path.h │ │ ├── case_prio.h │ │ ├── case_priv.h │ │ ├── case_prox.h │ │ ├── case_reas.h │ │ ├── case_reco.h │ │ ├── case_refe.h │ │ ├── case_reje.h │ │ ├── case_remo.h │ │ ├── case_requ.h │ │ ├── case_retr.h │ │ ├── case_rout.h │ │ ├── case_serv.h │ │ ├── case_sess.h │ │ ├── case_sip.h │ │ ├── case_subj.h │ │ ├── case_subs.h │ │ ├── case_supp.h │ │ ├── case_to.h │ │ ├── case_unsu.h │ │ ├── case_user.h │ │ ├── case_via.h │ │ ├── case_www.h │ │ ├── contact │ │ │ ├── contact.c │ │ │ ├── contact.h │ │ │ ├── parse_contact.c │ │ │ └── parse_contact.h │ │ ├── digest │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_keys.h │ │ │ ├── digest_parser.c │ │ │ ├── digest_parser.h │ │ │ ├── param_parser.c │ │ │ └── param_parser.h │ │ ├── hf.c │ │ ├── hf.h │ │ ├── keys.h │ │ ├── msg_parser.c │ │ ├── msg_parser.h │ │ ├── parse_addr_spec.c │ │ ├── parse_addr_spec.h │ │ ├── parse_allow.c │ │ ├── parse_allow.h │ │ ├── parse_body.c │ │ ├── parse_body.h │ │ ├── parse_content.c │ │ ├── parse_content.h │ │ ├── parse_cseq.c │ │ ├── parse_cseq.h │ │ ├── parse_date.c │ │ ├── parse_date.h │ │ ├── parse_def.h │ │ ├── parse_disposition.c │ │ ├── parse_disposition.h │ │ ├── parse_diversion.c │ │ ├── parse_diversion.h │ │ ├── parse_event.c │ │ ├── parse_event.h │ │ ├── parse_expires.c │ │ ├── parse_expires.h │ │ ├── parse_fline.c │ │ ├── parse_fline.h │ │ ├── parse_from.c │ │ ├── parse_from.h │ │ ├── parse_hname2.c │ │ ├── parse_hname2.h │ │ ├── parse_identity.c │ │ ├── parse_identity.h │ │ ├── parse_identityinfo.c │ │ ├── parse_identityinfo.h │ │ ├── parse_methods.c │ │ ├── parse_methods.h │ │ ├── parse_nameaddr.c │ │ ├── parse_nameaddr.h │ │ ├── parse_option_tags.c │ │ ├── parse_option_tags.h │ │ ├── parse_param.c │ │ ├── parse_param.h │ │ ├── parse_ppi_pai.c │ │ ├── parse_ppi_pai.h │ │ ├── parse_privacy.c │ │ ├── parse_privacy.h │ │ ├── parse_refer_to.c │ │ ├── parse_refer_to.h │ │ ├── parse_require.c │ │ ├── parse_require.h │ │ ├── parse_retry_after.c │ │ ├── parse_retry_after.h │ │ ├── parse_rpid.c │ │ ├── parse_rpid.h │ │ ├── parse_rr.c │ │ ├── parse_rr.h │ │ ├── parse_sipifmatch.c │ │ ├── parse_sipifmatch.h │ │ ├── parse_subscription_state.c │ │ ├── parse_subscription_state.h │ │ ├── parse_supported.c │ │ ├── parse_supported.h │ │ ├── parse_to.c │ │ ├── parse_to.h │ │ ├── parse_uri.c │ │ ├── parse_uri.h │ │ ├── parse_via.c │ │ ├── parse_via.h │ │ ├── parser_f.c │ │ ├── parser_f.h │ │ └── sdp │ │ │ ├── sdp.c │ │ │ ├── sdp.h │ │ │ ├── sdp_cloner.h │ │ │ ├── sdp_helpr_funcs.c │ │ │ └── sdp_helpr_funcs.h │ ├── pass_fd.c │ ├── pass_fd.h │ ├── poll_types.h │ ├── ppcfg.c │ ├── ppcfg.h │ ├── proxy.c │ ├── proxy.h │ ├── pt.c │ ├── pt.h │ ├── pv_core.c │ ├── pv_core.h │ ├── pvapi.c │ ├── pvapi.h │ ├── pvar.h │ ├── qvalue.c │ ├── qvalue.h │ ├── rad_dict.h │ ├── rand │ │ ├── fastrand.c │ │ ├── fastrand.h │ │ ├── isaac │ │ │ ├── rand.c │ │ │ ├── rand.h │ │ │ └── standard.h │ │ └── kam_rand.h │ ├── raw_listener.c │ ├── raw_listener.h │ ├── raw_sock.c │ ├── raw_sock.h │ ├── re.c │ ├── re.h │ ├── receive.c │ ├── receive.h │ ├── resolve.c │ ├── resolve.h │ ├── route.c │ ├── route.h │ ├── route_struct.c │ ├── route_struct.h │ ├── rpc.h │ ├── rpc_lookup.c │ ├── rpc_lookup.h │ ├── rvalue.c │ ├── rvalue.h │ ├── sched_yield.h │ ├── script_cb.c │ ├── script_cb.h │ ├── sctp_core.c │ ├── sctp_core.h │ ├── select.c │ ├── select.h │ ├── select_buf.c │ ├── select_buf.h │ ├── select_core.c │ ├── select_core.h │ ├── ser_time.h │ ├── shm_init.c │ ├── shm_init.h │ ├── signals.c │ ├── signals.h │ ├── sip_msg_clone.c │ ├── sip_msg_clone.h │ ├── sock_ut.c │ ├── sock_ut.h │ ├── socket_info.c │ ├── socket_info.h │ ├── sr_compat.c │ ├── sr_compat.h │ ├── sr_module.c │ ├── sr_module.h │ ├── srapi.c │ ├── srapi.h │ ├── str.c │ ├── str.h │ ├── str_hash.h │ ├── str_list.c │ ├── str_list.h │ ├── strutils.c │ ├── strutils.h │ ├── stun.c │ ├── stun.h │ ├── switch.c │ ├── switch.h │ ├── tags.h │ ├── tcp_conn.h │ ├── tcp_ev.h │ ├── tcp_info.h │ ├── tcp_init.h │ ├── tcp_int_send.h │ ├── tcp_main.c │ ├── tcp_options.c │ ├── tcp_options.h │ ├── tcp_read.c │ ├── tcp_read.h │ ├── tcp_server.h │ ├── tcp_stats.c │ ├── tcp_stats.h │ ├── timer.c │ ├── timer.h │ ├── timer_funcs.h │ ├── timer_proc.c │ ├── timer_proc.h │ ├── timer_ticks.h │ ├── tls_hooks.c │ ├── tls_hooks.h │ ├── tls_hooks_init.h │ ├── trim.h │ ├── tsend.c │ ├── tsend.h │ ├── udp_server.c │ ├── udp_server.h │ ├── usr_avp.c │ ├── usr_avp.h │ ├── ut.c │ ├── ut.h │ ├── ver.c │ ├── ver.h │ ├── ver_defs.h │ ├── xavp.c │ └── xavp.h ├── lib │ ├── Makefile │ ├── Makefile.defs │ ├── Makefile.nonser │ ├── README │ ├── binrpc │ │ ├── Makefile │ │ ├── Makefile.nonser │ │ ├── README │ │ ├── binrpc_api.c │ │ └── binrpc_api.h │ ├── cds │ │ ├── .cvsignore │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.nonser │ │ ├── base64.c │ │ ├── base64.h │ │ ├── cds.c │ │ ├── cds.h │ │ ├── dbid.c │ │ ├── dbid.h │ │ ├── doc │ │ │ ├── Makefile │ │ │ ├── cds.xml │ │ │ ├── cds_free.xml │ │ │ ├── cds_free_ptr.xml │ │ │ ├── cds_malloc.xml │ │ │ ├── cds_malloc_ptr.xml │ │ │ ├── cds_mutex_destroy.xml │ │ │ ├── cds_mutex_init.xml │ │ │ ├── cds_mutex_lock.xml │ │ │ ├── cds_mutex_t.xml │ │ │ ├── cds_mutex_unlock.xml │ │ │ ├── create_message.xml │ │ │ ├── create_message_ex.xml │ │ │ ├── destroy_sstream.xml │ │ │ ├── dstr_append.xml │ │ │ ├── dstr_get_data.xml │ │ │ ├── dstr_init.xml │ │ │ ├── dstring.xml │ │ │ ├── dstring_t.xml │ │ │ ├── free_message.xml │ │ │ ├── get_serialized_sstream.xml │ │ │ ├── init_input_sstream.xml │ │ │ ├── init_message_ex.xml │ │ │ ├── init_output_sstream.xml │ │ │ ├── is_msg_queue_empty.xml │ │ │ ├── memory.xml │ │ │ ├── mq_message_t.xml │ │ │ ├── msg_queue.xml │ │ │ ├── msg_queue_destroy.xml │ │ │ ├── msg_queue_init.xml │ │ │ ├── msg_queue_init_ex.xml │ │ │ ├── msg_queue_t.xml │ │ │ ├── pop_message.xml │ │ │ ├── push_message.xml │ │ │ ├── serialization.xml │ │ │ ├── serialize_char.xml │ │ │ ├── serialize_int.xml │ │ │ ├── serialize_str.xml │ │ │ ├── serialize_uchar.xml │ │ │ ├── serialize_uint.xml │ │ │ ├── set_data_destroy_function.xml │ │ │ ├── sstr.xml │ │ │ ├── sstream_get.xml │ │ │ ├── sstream_get_str.xml │ │ │ ├── sstream_get_str_ex.xml │ │ │ ├── sstream_put.xml │ │ │ ├── sstream_put_str.xml │ │ │ ├── sstream_put_zt.xml │ │ │ ├── sstream_t.xml │ │ │ ├── str_clear.xml │ │ │ ├── str_dup.xml │ │ │ ├── str_free.xml │ │ │ ├── str_free_content.xml │ │ │ ├── str_other.xml │ │ │ ├── str_t.xml │ │ │ └── sync.xml │ │ ├── dstring.c │ │ ├── dstring.h │ │ ├── hash_table.c │ │ ├── hash_table.h │ │ ├── list.h │ │ ├── logger.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── msg_queue.c │ │ ├── msg_queue.h │ │ ├── ptr_vector.c │ │ ├── ptr_vector.h │ │ ├── ref_cntr.c │ │ ├── ref_cntr.h │ │ ├── rr_serialize.c │ │ ├── rr_serialize.h │ │ ├── ser_profile.c │ │ ├── ser_profile.h │ │ ├── serialize.c │ │ ├── serialize.h │ │ ├── simple_profile.c │ │ ├── simple_profile.h │ │ ├── sip_utils.c │ │ ├── sip_utils.h │ │ ├── sstr.c │ │ ├── sstr.h │ │ ├── sync.h │ │ ├── vector.c │ │ └── vector.h │ ├── doc │ │ ├── Makefile │ │ ├── collection.xml │ │ └── libraries.xml │ ├── doxygen.cfg │ ├── ims │ │ ├── Makefile │ │ ├── ims_getters.c │ │ ├── ims_getters.h │ │ └── useful_defs.h │ ├── presence │ │ ├── .cvsignore │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.nonser │ │ ├── doc │ │ │ ├── Makefile │ │ │ └── presence.xml │ │ ├── domain_maintainer.c │ │ ├── domain_maintainer.h │ │ ├── lpidf.c │ │ ├── lpidf.h │ │ ├── notifier.h │ │ ├── notifier_domain.c │ │ ├── notifier_domain.h │ │ ├── pidf.c │ │ ├── pidf.h │ │ ├── pres_doc.c │ │ ├── pres_doc.h │ │ ├── qsa.c │ │ ├── qsa.h │ │ ├── qsa_params.c │ │ ├── qsa_params.h │ │ ├── subscriber.h │ │ ├── subscription_info.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── xml_utils.c │ │ ├── xml_utils.h │ │ ├── xpidf.c │ │ └── xpidf.h │ ├── print │ │ ├── .cvsignore │ │ ├── Makefile │ │ ├── README │ │ ├── print.c │ │ └── print.h │ ├── shm_regex │ │ ├── Makefile │ │ ├── README │ │ ├── shm_regex.c │ │ └── shm_regex.h │ ├── srdb1 │ │ ├── Makefile │ │ ├── README │ │ ├── db.c │ │ ├── db.h │ │ ├── db_cap.h │ │ ├── db_con.h │ │ ├── db_id.c │ │ ├── db_id.h │ │ ├── db_key.h │ │ ├── db_locking.h │ │ ├── db_op.h │ │ ├── db_pool.c │ │ ├── db_pool.h │ │ ├── db_pooling.h │ │ ├── db_query.c │ │ ├── db_query.h │ │ ├── db_res.c │ │ ├── db_res.h │ │ ├── db_row.c │ │ ├── db_row.h │ │ ├── db_ut.c │ │ ├── db_ut.h │ │ ├── db_val.c │ │ ├── db_val.h │ │ └── schema │ │ │ ├── Makefile │ │ │ ├── acc.xml │ │ │ ├── acc_cdrs.xml │ │ │ ├── address.xml │ │ │ ├── aliases.xml │ │ │ ├── carrier_name.xml │ │ │ ├── carrierfailureroute.xml │ │ │ ├── carrierroute.xml │ │ │ ├── cpl.xml │ │ │ ├── dbaliases.xml │ │ │ ├── dialog.xml │ │ │ ├── dialog_vars.xml │ │ │ ├── dialplan.xml │ │ │ ├── dispatcher.xml │ │ │ ├── domain.xml │ │ │ ├── domain_attrs.xml │ │ │ ├── domain_name.xml │ │ │ ├── domainpolicy.xml │ │ │ ├── dr_gateways.xml │ │ │ ├── dr_groups.xml │ │ │ ├── dr_gw_lists.xml │ │ │ ├── dr_rules.xml │ │ │ ├── entities.xml │ │ │ ├── globalblacklist.xml │ │ │ ├── grp.xml │ │ │ ├── htable.xml │ │ │ ├── imc_members.xml │ │ │ ├── imc_rooms.xml │ │ │ ├── kamailio-acc.xml │ │ │ ├── kamailio-alias_db.xml │ │ │ ├── kamailio-auth_db.xml │ │ │ ├── kamailio-avpops.xml │ │ │ ├── kamailio-carrierroute.xml │ │ │ ├── kamailio-cpl.xml │ │ │ ├── kamailio-dialog.xml │ │ │ ├── kamailio-dialplan.xml │ │ │ ├── kamailio-dispatcher.xml │ │ │ ├── kamailio-domain.xml │ │ │ ├── kamailio-domainpolicy.xml │ │ │ ├── kamailio-drouting.xml │ │ │ ├── kamailio-extensions.xml │ │ │ ├── kamailio-group.xml │ │ │ ├── kamailio-htable.xml │ │ │ ├── kamailio-imc.xml │ │ │ ├── kamailio-lcr.xml │ │ │ ├── kamailio-matrix.xml │ │ │ ├── kamailio-mohqueue.xml │ │ │ ├── kamailio-msilo.xml │ │ │ ├── kamailio-mtree.xml │ │ │ ├── kamailio-pdt.xml │ │ │ ├── kamailio-permissions.xml │ │ │ ├── kamailio-pipelimit.xml │ │ │ ├── kamailio-presence.xml │ │ │ ├── kamailio-purple.xml │ │ │ ├── kamailio-registrar.xml │ │ │ ├── kamailio-rls.xml │ │ │ ├── kamailio-rtpengine.xml │ │ │ ├── kamailio-rtpproxy.xml │ │ │ ├── kamailio-sca.xml │ │ │ ├── kamailio-siptrace.xml │ │ │ ├── kamailio-speeddial.xml │ │ │ ├── kamailio-standard.xml │ │ │ ├── kamailio-topos.xml │ │ │ ├── kamailio-uac.xml │ │ │ ├── kamailio-uid_auth_db.xml │ │ │ ├── kamailio-uid_avp_db.xml │ │ │ ├── kamailio-uid_domain.xml │ │ │ ├── kamailio-uid_gflags.xml │ │ │ ├── kamailio-uid_uri_db.xml │ │ │ ├── kamailio-uri_db.xml │ │ │ ├── kamailio-userblacklist.xml │ │ │ ├── kamailio-usrloc.xml │ │ │ ├── lcr_gw.xml │ │ │ ├── lcr_rule.xml │ │ │ ├── lcr_rule_target.xml │ │ │ ├── location.xml │ │ │ ├── location_attrs.xml │ │ │ ├── matrix.xml │ │ │ ├── missed_calls.xml │ │ │ ├── mohqcalls.xml │ │ │ ├── mohqueues.xml │ │ │ ├── mtree.xml │ │ │ ├── mtrees.xml │ │ │ ├── pdt.xml │ │ │ ├── pipelimit.xml │ │ │ ├── pr_active_watchers.xml │ │ │ ├── pr_presentity.xml │ │ │ ├── pr_pua.xml │ │ │ ├── pr_watchers.xml │ │ │ ├── pr_xcap.xml │ │ │ ├── purplemap.xml │ │ │ ├── re_grp.xml │ │ │ ├── rls_presentity.xml │ │ │ ├── rls_watchers.xml │ │ │ ├── rtpengine.xml │ │ │ ├── rtpproxy.xml │ │ │ ├── sca.xml │ │ │ ├── secfilter.xml │ │ │ ├── silo.xml │ │ │ ├── sip_trace.xml │ │ │ ├── speed_dial.xml │ │ │ ├── subscriber.xml │ │ │ ├── template.xml │ │ │ ├── topos_d.xml │ │ │ ├── topos_t.xml │ │ │ ├── trusted.xml │ │ │ ├── uacreg.xml │ │ │ ├── uid_credentials.xml │ │ │ ├── uid_domain.xml │ │ │ ├── uid_domain_attrs.xml │ │ │ ├── uid_global_attrs.xml │ │ │ ├── uid_uri.xml │ │ │ ├── uid_uri_attrs.xml │ │ │ ├── uid_user_attrs.xml │ │ │ ├── uri.xml │ │ │ ├── userblacklist.xml │ │ │ ├── usr_preferences.xml │ │ │ └── version.xml │ ├── srdb2 │ │ ├── Makefile │ │ ├── README │ │ ├── db.c │ │ ├── db.h │ │ ├── db_cmd.c │ │ ├── db_cmd.h │ │ ├── db_con.c │ │ ├── db_con.h │ │ ├── db_ctx.c │ │ ├── db_ctx.h │ │ ├── db_drv.c │ │ ├── db_drv.h │ │ ├── db_fld.c │ │ ├── db_fld.h │ │ ├── db_gen.c │ │ ├── db_gen.h │ │ ├── db_pool.c │ │ ├── db_pool.h │ │ ├── db_rec.c │ │ ├── db_rec.h │ │ ├── db_res.c │ │ ├── db_res.h │ │ ├── db_uri.c │ │ ├── db_uri.h │ │ └── schema │ │ │ ├── Makefile │ │ │ ├── acc.xml │ │ │ ├── aliases.xml │ │ │ ├── attr_types.xml │ │ │ ├── contact_attrs.xml │ │ │ ├── cpl.xml │ │ │ ├── credentials.xml │ │ │ ├── customers.xml │ │ │ ├── domain.xml │ │ │ ├── domain_attrs.xml │ │ │ ├── domain_settings.xml │ │ │ ├── entities.xml │ │ │ ├── extra_attrs.xml │ │ │ ├── global_attrs.xml │ │ │ ├── grp.xml │ │ │ ├── gw.xml │ │ │ ├── gw_grp.xml │ │ │ ├── i18n-cs.xml │ │ │ ├── i18n-en.xml │ │ │ ├── i18n.xml │ │ │ ├── ipmatch.xml │ │ │ ├── lcr.xml │ │ │ ├── location.xml │ │ │ ├── missed_calls.xml │ │ │ ├── offline_winfo.xml │ │ │ ├── pdt.xml │ │ │ ├── phonebook.xml │ │ │ ├── presentity.xml │ │ │ ├── presentity_contact.xml │ │ │ ├── presentity_extensions.xml │ │ │ ├── presentity_notes.xml │ │ │ ├── rls_subscription.xml │ │ │ ├── rls_vs.xml │ │ │ ├── rls_vs_names.xml │ │ │ ├── sd_attrs.xml │ │ │ ├── ser.xml │ │ │ ├── silo.xml │ │ │ ├── speed_dial.xml │ │ │ ├── trusted.xml │ │ │ ├── tuple_extensions.xml │ │ │ ├── tuple_notes.xml │ │ │ ├── uri.xml │ │ │ ├── uri_attrs.xml │ │ │ ├── user_attrs.xml │ │ │ └── watcherinfo.xml │ ├── srutils │ │ ├── Makefile │ │ ├── README │ │ ├── sha256.c │ │ ├── sha256.h │ │ ├── shautils.c │ │ ├── shautils.h │ │ ├── srjson.c │ │ ├── srjson.h │ │ ├── sruid.c │ │ ├── sruid.h │ │ ├── tmrec.c │ │ └── tmrec.h │ ├── trie │ │ ├── Makefile │ │ ├── dtrie.c │ │ └── dtrie.h │ └── xcap │ │ ├── ChangeLog │ │ ├── Makefile │ │ ├── Makefile.nonser │ │ ├── common_policy.c │ │ ├── common_policy.h │ │ ├── doc │ │ ├── Makefile │ │ └── xcap.xml │ │ ├── msg_rules.c │ │ ├── msg_rules.h │ │ ├── parse_common_rules.c │ │ ├── parse_common_rules.h │ │ ├── parse_msg_rules.c │ │ ├── parse_msg_rules.h │ │ ├── parse_pres_rules.c │ │ ├── parse_pres_rules.h │ │ ├── pres_rules.c │ │ ├── pres_rules.h │ │ ├── resource_list.c │ │ ├── resource_list.h │ │ ├── resource_lists_parser.c │ │ ├── resource_lists_parser.h │ │ ├── rls_services_parser.c │ │ ├── rls_services_parser.h │ │ ├── xcap_client.c │ │ ├── xcap_client.h │ │ ├── xcap_result_codes.h │ │ ├── xml_utils.c │ │ └── xml_utils.h ├── main.c └── modules │ ├── acc │ ├── Makefile │ ├── README │ ├── acc.c │ ├── acc.h │ ├── acc_api.h │ ├── acc_cdr.c │ ├── acc_cdr.h │ ├── acc_extra.c │ ├── acc_extra.h │ ├── acc_logic.c │ ├── acc_logic.h │ ├── acc_mod.c │ ├── acc_mod.h │ └── doc │ │ ├── Makefile │ │ ├── acc.xml │ │ ├── acc_admin.xml │ │ └── acc_faq.xml │ ├── acc_diameter │ ├── Makefile │ ├── README │ ├── acc_diameter_mod.c │ ├── diam_avp.c │ ├── diam_dict.h │ ├── diam_message.c │ ├── diam_message.h │ ├── diam_tcp.c │ ├── diam_tcp.h │ └── doc │ │ ├── Makefile │ │ ├── acc_diameter.xml │ │ └── acc_diameter_admin.xml │ ├── acc_json │ ├── Makefile │ ├── README │ ├── acc_json_mod.c │ ├── acc_json_mod.h │ └── doc │ │ ├── Makefile │ │ ├── acc_json.xml │ │ └── acc_json_admin.xml │ ├── acc_radius │ ├── Makefile │ ├── README │ ├── acc_radius_mod.c │ ├── acc_radius_mod.h │ └── doc │ │ ├── Makefile │ │ ├── acc_radius.xml │ │ └── acc_radius_admin.xml │ ├── alias_db │ ├── Makefile │ ├── README │ ├── alias_db.c │ ├── alias_db.h │ ├── alookup.c │ ├── alookup.h │ ├── api.h │ └── doc │ │ ├── Makefile │ │ ├── alias_db.xml │ │ └── alias_db_admin.xml │ ├── app_java │ ├── BUILDING_JAR.TXT │ ├── Makefile │ ├── QUICKSTART.TXT │ ├── README │ ├── README-draft │ ├── app_java_mod.c │ ├── app_java_mod.h │ ├── doc │ │ ├── Makefile │ │ ├── app_java.xml │ │ └── app_java_admin.xml │ ├── global.h │ ├── java_iface.c │ ├── java_iface.h │ ├── java_msgobj.c │ ├── java_msgobj.h │ ├── java_native_methods.c │ ├── java_native_methods.h │ ├── java_sig_parser.c │ ├── java_sig_parser.h │ ├── java_support.c │ ├── java_support.h │ ├── kamailio_java_folder │ │ ├── java-untested │ │ │ ├── Kamailio.java │ │ │ ├── WrappedMethods.java │ │ │ ├── build.xml │ │ │ └── siprouter_src │ │ │ │ ├── CoreMethods.java │ │ │ │ ├── IPPair.java │ │ │ │ ├── NativeInterface.java │ │ │ │ ├── NativeMethods.java │ │ │ │ └── SipMsg.java │ │ └── java │ │ │ ├── Kamailio.java │ │ │ ├── build.xml │ │ │ └── siprouter_src │ │ │ ├── IPPair.java │ │ │ ├── NativeInterface.java │ │ │ ├── NativeMethods.java │ │ │ └── SipMsg.java │ ├── utils.c │ └── utils.h │ ├── app_jsdt │ ├── Makefile │ ├── README │ ├── app_jsdt_api.c │ ├── app_jsdt_api.h │ ├── app_jsdt_kemi_export.c │ ├── app_jsdt_kemi_export.h │ ├── app_jsdt_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── app_jsdt.xml │ │ └── app_jsdt_admin.xml │ ├── duk_config.h │ ├── duktape.c │ ├── duktape.h │ └── utils │ │ └── app_jsdt_ctl │ ├── app_lua │ ├── Makefile │ ├── README │ ├── app_lua_api.c │ ├── app_lua_api.h │ ├── app_lua_kemi_export.c │ ├── app_lua_kemi_export.h │ ├── app_lua_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── app_lua.xml │ │ └── app_lua_admin.xml │ ├── modapi.h │ └── utils │ │ └── app_lua_ctl │ ├── app_lua_sr │ ├── Makefile │ ├── README │ ├── app_lua_sr_api.c │ ├── app_lua_sr_api.h │ ├── app_lua_sr_exp.c │ ├── app_lua_sr_exp.h │ ├── app_lua_sr_mod.c │ └── doc │ │ ├── Makefile │ │ ├── app_lua_sr.xml │ │ └── app_lua_sr_admin.xml │ ├── app_mono │ ├── Makefile │ ├── README │ ├── app_mono_api.c │ ├── app_mono_api.h │ ├── app_mono_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── app_mono.xml │ │ └── app_mono_admin.xml │ └── lib │ │ └── SR.cs │ ├── app_perl │ ├── Makefile │ ├── README │ ├── app_perl_mod.c │ ├── app_perl_mod.h │ ├── doc │ │ ├── Makefile │ │ ├── app_perl.xml │ │ ├── app_perl_admin.xml │ │ ├── app_perl_faq.xml │ │ ├── app_perl_pod.xml │ │ ├── app_perl_samples.xml │ │ └── samples │ │ │ ├── branches.pl │ │ │ ├── firstline.pl │ │ │ ├── flags.pl │ │ │ ├── functions.pl │ │ │ ├── headers.pl │ │ │ ├── logging.pl │ │ │ ├── messagedump.pl │ │ │ ├── persistence.pl │ │ │ ├── phonenumbers.pl │ │ │ └── pseudovars.pl │ ├── kamailioxs.xs │ ├── lib │ │ └── perl │ │ │ ├── Kamailio.pm │ │ │ └── Kamailio │ │ │ ├── Constants.pm │ │ │ ├── LDAPUtils │ │ │ ├── LDAPConf.pm │ │ │ └── LDAPConnection.pm │ │ │ ├── Message.pm │ │ │ ├── Utils │ │ │ ├── Debug.pm │ │ │ └── PhoneNumbers.pm │ │ │ ├── VDB.pm │ │ │ └── VDB │ │ │ ├── Adapter │ │ │ ├── AccountingSIPtrace.pm │ │ │ ├── Alias.pm │ │ │ ├── Auth.pm │ │ │ ├── Describe.pm │ │ │ ├── Speeddial.pm │ │ │ └── TableVersions.pm │ │ │ ├── Column.pm │ │ │ ├── Pair.pm │ │ │ ├── ReqCond.pm │ │ │ ├── Result.pm │ │ │ ├── VTab.pm │ │ │ └── Value.pm │ ├── perlfunc.c │ ├── perlfunc.h │ └── typemap │ ├── app_python │ ├── Makefile │ ├── README │ ├── README.TestCase-Loggers │ ├── app_python_mod.c │ ├── app_python_mod.h │ ├── apy_kemi.c │ ├── apy_kemi.h │ ├── apy_kemi_export.c │ ├── apy_kemi_export.h │ ├── doc │ │ ├── Makefile │ │ ├── app_python.xml │ │ └── app_python_admin.xml │ ├── mod_Core.c │ ├── mod_Core.h │ ├── mod_Logger.c │ ├── mod_Logger.h │ ├── mod_Ranks.c │ ├── mod_Ranks.h │ ├── mod_Router.c │ ├── mod_Router.h │ ├── msgobj_struct.h │ ├── python_examples │ │ ├── Loggers.py │ │ ├── TestCase_Traceback.py │ │ └── handler.py │ ├── python_exec.c │ ├── python_exec.h │ ├── python_iface.c │ ├── python_iface.h │ ├── python_msgobj.c │ ├── python_msgobj.h │ ├── python_support.c │ ├── python_support.h │ └── utils │ │ └── app_python_ctl │ ├── app_python3 │ ├── Makefile │ ├── README │ ├── README.TestCase-Loggers │ ├── app_python3_mod.c │ ├── app_python3_mod.h │ ├── apy_kemi.c │ ├── apy_kemi.h │ ├── apy_kemi_export.c │ ├── apy_kemi_export.h │ ├── doc │ │ ├── Makefile │ │ ├── app_python3.xml │ │ └── app_python3_admin.xml │ ├── mod_Core.c │ ├── mod_Core.h │ ├── mod_Logger.c │ ├── mod_Logger.h │ ├── mod_Ranks.c │ ├── mod_Ranks.h │ ├── mod_Router.c │ ├── mod_Router.h │ ├── msgobj_struct.h │ ├── python_examples │ │ ├── Loggers.py │ │ ├── TestCase_Traceback.py │ │ └── handler.py │ ├── python_exec.c │ ├── python_exec.h │ ├── python_iface.c │ ├── python_iface.h │ ├── python_msgobj.c │ ├── python_msgobj.h │ ├── python_support.c │ ├── python_support.h │ └── utils │ │ └── app_python_ctl │ ├── app_ruby │ ├── Makefile │ ├── README │ ├── app_ruby_api.c │ ├── app_ruby_api.h │ ├── app_ruby_kemi_export.c │ ├── app_ruby_kemi_export.h │ ├── app_ruby_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── app_ruby.xml │ │ └── app_ruby_admin.xml │ └── utils │ │ └── app_ruby_ctl │ ├── app_sqlang │ ├── Makefile │ ├── README │ ├── app_sqlang_api.c │ ├── app_sqlang_api.h │ ├── app_sqlang_kemi_export.c │ ├── app_sqlang_kemi_export.h │ ├── app_sqlang_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── app_sqlang.xml │ │ └── app_sqlang_admin.xml │ ├── squirrel │ │ ├── include │ │ │ ├── sqconfig.h │ │ │ ├── sqstdaux.h │ │ │ ├── sqstdblob.h │ │ │ ├── sqstdio.h │ │ │ ├── sqstdmath.h │ │ │ ├── sqstdstring.h │ │ │ ├── sqstdsystem.h │ │ │ └── squirrel.h │ │ ├── sqstdlib │ │ │ ├── Makefile │ │ │ ├── sqstdaux.cpp │ │ │ ├── sqstdblob.cpp │ │ │ ├── sqstdblobimpl.h │ │ │ ├── sqstdio.cpp │ │ │ ├── sqstdlib.dsp │ │ │ ├── sqstdmath.cpp │ │ │ ├── sqstdrex.cpp │ │ │ ├── sqstdstream.cpp │ │ │ ├── sqstdstream.h │ │ │ ├── sqstdstring.cpp │ │ │ └── sqstdsystem.cpp │ │ └── squirrel │ │ │ ├── Makefile │ │ │ ├── sqapi.cpp │ │ │ ├── sqarray.h │ │ │ ├── sqbaselib.cpp │ │ │ ├── sqclass.cpp │ │ │ ├── sqclass.h │ │ │ ├── sqclosure.h │ │ │ ├── sqcompiler.cpp │ │ │ ├── sqcompiler.h │ │ │ ├── sqdebug.cpp │ │ │ ├── sqfuncproto.h │ │ │ ├── sqfuncstate.cpp │ │ │ ├── sqfuncstate.h │ │ │ ├── sqlexer.cpp │ │ │ ├── sqlexer.h │ │ │ ├── sqmem.cpp │ │ │ ├── sqobject.cpp │ │ │ ├── sqobject.h │ │ │ ├── sqopcodes.h │ │ │ ├── sqpcheader.h │ │ │ ├── sqstate.cpp │ │ │ ├── sqstate.h │ │ │ ├── sqstring.h │ │ │ ├── sqtable.cpp │ │ │ ├── sqtable.h │ │ │ ├── squirrel.dsp │ │ │ ├── squserdata.h │ │ │ ├── squtils.h │ │ │ ├── sqvm.cpp │ │ │ └── sqvm.h │ └── utils │ │ └── app_sqlang_ctl │ ├── async │ ├── Makefile │ ├── README │ ├── async_mod.c │ ├── async_sleep.c │ ├── async_sleep.h │ └── doc │ │ ├── Makefile │ │ ├── async.xml │ │ └── async_admin.xml │ ├── auth │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── auth.xml │ ├── auth_mod.c │ ├── auth_mod.h │ ├── challenge.c │ ├── challenge.h │ ├── doc │ │ ├── Makefile │ │ ├── auth.xml │ │ ├── auth_functions.xml │ │ └── auth_params.xml │ ├── nc.c │ ├── nc.h │ ├── nid.c │ ├── nid.h │ ├── nonce.c │ ├── nonce.h │ ├── ot_nonce.c │ ├── ot_nonce.h │ ├── rfc2617.c │ ├── rfc2617.h │ ├── rfc2617_sha256.c │ ├── rfc2617_sha256.h │ └── todo.txt │ ├── auth_db │ ├── Makefile │ ├── README │ ├── api.h │ ├── auth_db_mod.c │ ├── auth_db_mod.h │ ├── authorize.c │ ├── authorize.h │ └── doc │ │ ├── Makefile │ │ ├── auth_db.xml │ │ └── auth_db_admin.xml │ ├── auth_diameter │ ├── Makefile │ ├── README │ ├── auth_diameter.c │ ├── auth_diameter.h │ ├── authorize.c │ ├── authorize.h │ ├── avp.c │ ├── defs.h │ ├── diameter_msg.h │ ├── doc │ │ ├── Makefile │ │ ├── auth_diameter.xml │ │ └── auth_diameter_admin.xml │ ├── message.c │ ├── tcp_comm.c │ ├── tcp_comm.h │ └── user_in.c │ ├── auth_ephemeral │ ├── Makefile │ ├── README │ ├── auth_ephemeral_mod.c │ ├── auth_ephemeral_mod.h │ ├── authorize.c │ ├── authorize.h │ ├── checks.c │ ├── checks.h │ └── doc │ │ ├── Makefile │ │ ├── auth_ephemeral.xml │ │ └── auth_ephemeral_admin.xml │ ├── auth_identity │ ├── Makefile │ ├── README │ ├── auth_crypt.c │ ├── auth_dynstr.c │ ├── auth_hdrs.c │ ├── auth_http.c │ ├── auth_identity.c │ ├── auth_identity.h │ ├── auth_identity.xml │ ├── auth_tables.c │ └── doc │ │ ├── Makefile │ │ ├── auth_identity.xml │ │ ├── auth_identity_functions.xml │ │ └── auth_identity_params.xml │ ├── auth_radius │ ├── Makefile │ ├── README │ ├── auth_radius.c │ ├── auth_radius.h │ ├── authorize.c │ ├── authorize.h │ ├── cfg │ │ ├── dictionary.kamailio │ │ └── dictionary.sip-router │ ├── doc │ │ ├── Makefile │ │ ├── auth_radius.xml │ │ └── auth_radius_admin.xml │ ├── extra.c │ ├── extra.h │ ├── sterman.c │ └── sterman.h │ ├── auth_xkeys │ ├── Makefile │ ├── README │ ├── auth_xkeys.c │ ├── auth_xkeys.h │ ├── auth_xkeys_mod.c │ └── doc │ │ ├── Makefile │ │ ├── auth_xkeys.xml │ │ └── auth_xkeys_admin.xml │ ├── avp │ ├── Makefile │ ├── README │ ├── avp.c │ ├── avp.xml │ └── doc │ │ ├── Makefile │ │ ├── avp.xml │ │ ├── avp_functions.xml │ │ └── avp_params.xml │ ├── avpops │ ├── Makefile │ ├── README │ ├── avpops.c │ ├── avpops_db.c │ ├── avpops_db.h │ ├── avpops_impl.c │ ├── avpops_impl.h │ ├── avpops_parse.c │ ├── avpops_parse.h │ └── doc │ │ ├── Makefile │ │ ├── avpops.xml │ │ └── avpops_admin.xml │ ├── benchmark │ ├── Makefile │ ├── README │ ├── benchmark.c │ ├── benchmark.h │ ├── benchmark_api.h │ └── doc │ │ ├── Makefile │ │ ├── benchmark.xml │ │ ├── benchmark_admin.xml │ │ └── benchmark_devel.xml │ ├── blst │ ├── Makefile │ ├── README │ ├── blst.c │ └── doc │ │ ├── Makefile │ │ ├── blst.xml │ │ ├── blst_functions.xml │ │ └── blst_params.xml │ ├── call_control │ ├── Makefile │ ├── README │ ├── call_control.c │ └── doc │ │ ├── Makefile │ │ ├── call_control.8 │ │ ├── call_control.xml │ │ └── call_control_admin.xml │ ├── call_obj │ ├── Makefile │ ├── README │ ├── call_obj_mod.c │ ├── cobj.c │ ├── cobj.h │ └── doc │ │ ├── Makefile │ │ ├── call_obj.xml │ │ └── call_obj_admin.xml │ ├── carrierroute │ ├── Makefile │ ├── README │ ├── carrierroute.c │ ├── carrierroute.h │ ├── config.c │ ├── config.h │ ├── cr_carrier.c │ ├── cr_carrier.h │ ├── cr_config.c │ ├── cr_config.h │ ├── cr_data.c │ ├── cr_data.h │ ├── cr_db.c │ ├── cr_db.h │ ├── cr_domain.c │ ├── cr_domain.h │ ├── cr_fifo.c │ ├── cr_fifo.h │ ├── cr_fixup.c │ ├── cr_fixup.h │ ├── cr_func.c │ ├── cr_func.h │ ├── cr_map.c │ ├── cr_map.h │ ├── cr_rule.c │ ├── cr_rule.h │ ├── db_carrierroute.c │ ├── db_carrierroute.h │ ├── doc │ │ ├── Makefile │ │ ├── carrierroute.xml │ │ ├── carrierroute_admin.xml │ │ ├── carrierroute_db.xml │ │ └── rpc.xml │ ├── parser_carrierroute.c │ ├── parser_carrierroute.h │ ├── prime_hash.c │ └── prime_hash.h │ ├── cdp │ ├── Makefile │ ├── README │ ├── acceptor.c │ ├── acceptor.h │ ├── acctstatemachine.c │ ├── acctstatemachine.h │ ├── api_process.c │ ├── api_process.h │ ├── authstatemachine.c │ ├── authstatemachine.h │ ├── cdp_functions.c │ ├── cdp_functions.h │ ├── cdp_load.c │ ├── cdp_load.h │ ├── cdp_mod.c │ ├── cdp_mod.h │ ├── cdp_rpc.c │ ├── cdp_rpc.h │ ├── cdp_stats.c │ ├── cdp_stats.h │ ├── common.c │ ├── common.h │ ├── config.c │ ├── config.h │ ├── configdtd.h │ ├── configexample │ │ └── ConfigExample.xml │ ├── configparser.c │ ├── diameter.h │ ├── diameter_api.h │ ├── diameter_avp.c │ ├── diameter_code_avp.h │ ├── diameter_code_result.h │ ├── diameter_comm.c │ ├── diameter_epc.h │ ├── diameter_epc_code_app.h │ ├── diameter_epc_code_avp.h │ ├── diameter_epc_code_cmd.h │ ├── diameter_epc_code_result.h │ ├── diameter_ims.h │ ├── diameter_ims_code_app.h │ ├── diameter_ims_code_avp.h │ ├── diameter_ims_code_cmd.h │ ├── diameter_ims_code_result.h │ ├── diameter_msg.c │ ├── diameter_peer.c │ ├── diameter_peer.h │ ├── doc │ │ ├── Makefile │ │ ├── RFC3588.vsd │ │ ├── cdp.xml │ │ ├── cdp_admin.xml │ │ ├── cdp_devel.xml │ │ └── cdp_faq.xml │ ├── globals.c │ ├── globals.h │ ├── images │ │ ├── RFC3588_acct_state_machine_client.png │ │ ├── RFC3588_acct_state_machine_server.png │ │ ├── RFC3588_auth_state_machine_client.png │ │ ├── RFC3588_auth_state_machine_server.png │ │ ├── RFC3588_peer_state_machine_1.png │ │ └── RFC3588_peer_state_machine_2.png │ ├── peer.c │ ├── peer.h │ ├── peermanager.c │ ├── peermanager.h │ ├── peerstatemachine.c │ ├── peerstatemachine.h │ ├── receiver.c │ ├── receiver.h │ ├── routing.c │ ├── routing.h │ ├── sem.h │ ├── session.c │ ├── session.h │ ├── tcp_accept.c │ ├── tcp_accept.h │ ├── timer.c │ ├── timer.h │ ├── transaction.c │ ├── transaction.h │ ├── utils.h │ ├── worker.c │ └── worker.h │ ├── cdp_avp │ ├── Makefile │ ├── README │ ├── avp_add.c │ ├── avp_add.h │ ├── avp_get.c │ ├── avp_get.h │ ├── avp_get_base_data_format.c │ ├── avp_get_base_data_format.h │ ├── avp_new.c │ ├── avp_new.h │ ├── avp_new_base_data_format.c │ ├── avp_new_base_data_format.h │ ├── base.c │ ├── base.h │ ├── ccapp.c │ ├── ccapp.h │ ├── cdp_avp_mod.c │ ├── cdp_avp_mod.h │ ├── doc │ │ ├── Makefile │ │ ├── cdp_avp.xml │ │ ├── cdp_avp_admin.xml │ │ ├── cdp_avp_devel.xml │ │ └── cdp_avp_faq.xml │ ├── epcapp.c │ ├── epcapp.h │ ├── get_reference.h │ ├── get_reference.sh │ ├── imsapp.c │ ├── imsapp.h │ ├── macros.h │ ├── nasapp.c │ └── nasapp.h │ ├── cfg_db │ ├── Makefile │ ├── README │ ├── cfg_db.c │ └── doc │ │ ├── Makefile │ │ ├── cfg_db.xml │ │ └── cfg_db_params.xml │ ├── cfg_rpc │ ├── Makefile │ ├── README │ ├── cfg_rpc.c │ └── doc │ │ ├── Makefile │ │ ├── cfg_rpc.xml │ │ └── rpc.xml │ ├── cfgt │ ├── Makefile │ ├── README │ ├── cfgt.c │ ├── cfgt.h │ ├── cfgt_int.c │ ├── cfgt_int.h │ ├── cfgt_json.c │ ├── cfgt_json.h │ ├── cfgt_mod.c │ ├── cfgt_mod.h │ └── doc │ │ ├── Makefile │ │ ├── cfgt.xml │ │ └── cfgt_admin.xml │ ├── cfgutils │ ├── Makefile │ ├── README │ ├── api.h │ ├── cfgutils.c │ └── doc │ │ ├── Makefile │ │ ├── cfgutils.xml │ │ └── cfgutils_admin.xml │ ├── cnxcc │ ├── Makefile │ ├── README │ ├── cnxcc.c │ ├── cnxcc.h │ ├── cnxcc_check.c │ ├── cnxcc_check.h │ ├── cnxcc_mod.c │ ├── cnxcc_mod.h │ ├── cnxcc_redis.c │ ├── cnxcc_redis.h │ ├── cnxcc_rpc.c │ ├── cnxcc_rpc.h │ ├── cnxcc_select.c │ ├── cnxcc_select.h │ ├── cnxcc_sip_msg_faker.c │ ├── cnxcc_sip_msg_faker.h │ ├── doc │ │ ├── Makefile │ │ ├── cnxcc.xml │ │ └── cnxcc_admin.xml │ └── example │ │ └── kamailio-cnxcc.cfg │ ├── corex │ ├── Makefile │ ├── README │ ├── corex_lib.c │ ├── corex_lib.h │ ├── corex_mod.c │ ├── corex_nio.c │ ├── corex_nio.h │ ├── corex_rpc.c │ ├── corex_rpc.h │ ├── corex_var.c │ ├── corex_var.h │ └── doc │ │ ├── Makefile │ │ ├── corex.xml │ │ └── corex_admin.xml │ ├── counters │ ├── Makefile │ ├── README │ ├── counters.c │ └── doc │ │ ├── Makefile │ │ ├── counters.xml │ │ ├── counters_functions.xml │ │ ├── counters_params.xml │ │ └── counters_rpc.xml │ ├── cplc │ ├── CPL_tree.h │ ├── Makefile │ ├── README │ ├── cpl-06.dtd │ ├── cpl_db.c │ ├── cpl_db.h │ ├── cpl_env.h │ ├── cpl_loader.c │ ├── cpl_loader.h │ ├── cpl_log.c │ ├── cpl_log.h │ ├── cpl_nonsig.c │ ├── cpl_nonsig.h │ ├── cpl_parser.c │ ├── cpl_parser.h │ ├── cpl_proxy.h │ ├── cpl_run.c │ ├── cpl_run.h │ ├── cpl_sig.c │ ├── cpl_sig.h │ ├── cpl_switches.h │ ├── cpl_time.c │ ├── cpl_time.h │ ├── cpl_utils.h │ ├── cplc.c │ ├── doc │ │ ├── Makefile │ │ ├── cplc.xml │ │ └── cplc_admin.xml │ ├── loc_set.h │ ├── sub_list.c │ └── sub_list.h │ ├── crypto │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── crypto_mod.c │ ├── crypto_uuid.c │ ├── crypto_uuid.h │ └── doc │ │ ├── Makefile │ │ ├── crypto.xml │ │ └── crypto_admin.xml │ ├── ctl │ ├── Makefile │ ├── README │ ├── binrpc.c │ ├── binrpc.h │ ├── binrpc_run.c │ ├── binrpc_run.h │ ├── ctl.c │ ├── ctl.cfg │ ├── ctl.h │ ├── ctl_defaults.h │ ├── ctrl_socks.c │ ├── ctrl_socks.h │ ├── doc │ │ ├── Makefile │ │ ├── ctl.xml │ │ ├── ctl_params.xml │ │ └── ctl_rpc.xml │ ├── fifo_server.c │ ├── fifo_server.h │ ├── init_socks.c │ ├── init_socks.h │ ├── io_listener.c │ └── io_listener.h │ ├── db2_ldap │ ├── Makefile │ ├── README │ ├── db2_ldap_mod.c │ ├── db2_ldap_mod.h │ ├── doc │ │ ├── Makefile │ │ └── db2_ldap.xml │ ├── ld_cfg.c │ ├── ld_cfg.h │ ├── ld_cmd.c │ ├── ld_cmd.h │ ├── ld_con.c │ ├── ld_con.h │ ├── ld_fld.c │ ├── ld_fld.h │ ├── ld_res.c │ ├── ld_res.h │ ├── ld_uri.c │ ├── ld_uri.h │ ├── ldap.cfg │ ├── ser-ldap.cfg │ ├── ser.schema │ ├── standards.txt │ └── todo.txt │ ├── db2_ops │ ├── Makefile │ ├── README │ ├── db2_ops.c │ └── doc │ │ ├── Makefile │ │ └── db2_ops.xml │ ├── db_berkeley │ ├── Makefile │ ├── README │ ├── bdb_cmd.c │ ├── bdb_cmd.h │ ├── bdb_con.c │ ├── bdb_con.h │ ├── bdb_crs_compat.h │ ├── bdb_fld.c │ ├── bdb_fld.h │ ├── bdb_lib.c │ ├── bdb_lib.h │ ├── bdb_mod.c │ ├── bdb_mod.h │ ├── bdb_res.c │ ├── bdb_res.h │ ├── bdb_uri.c │ ├── bdb_uri.h │ ├── db_berkeley.c │ ├── db_berkeley.h │ ├── doc │ │ ├── Makefile │ │ ├── db_berkeley.xml │ │ └── db_berkeley_admin.xml │ ├── km_bdb_lib.c │ ├── km_bdb_lib.h │ ├── km_bdb_res.c │ ├── km_bdb_res.h │ ├── km_bdb_util.c │ ├── km_bdb_util.h │ ├── km_bdb_val.c │ ├── km_bdb_val.h │ └── km_doc │ │ ├── Makefile │ │ ├── db_berkeley.xml │ │ └── db_berkeley_admin.xml │ ├── db_cassandra │ ├── Cassandra.cpp │ ├── Cassandra.h │ ├── Makefile │ ├── README │ ├── cassandra_constants.cpp │ ├── cassandra_constants.h │ ├── cassandra_types.cpp │ ├── cassandra_types.h │ ├── db_cassandra.c │ ├── dbcassa_base.cpp │ ├── dbcassa_base.h │ ├── dbcassa_table.c │ ├── dbcassa_table.h │ ├── doc │ │ ├── Makefile │ │ ├── db_cassandra.xml │ │ └── db_cassandra_admin.xml │ └── kamailio_cassa.cfg │ ├── db_cluster │ ├── Makefile │ ├── README │ ├── db_cluster_mod.c │ ├── dbcl_api.c │ ├── dbcl_api.h │ ├── dbcl_data.c │ ├── dbcl_data.h │ └── doc │ │ ├── Makefile │ │ ├── db_cluster.xml │ │ └── db_cluster_admin.xml │ ├── db_flatstore │ ├── Makefile │ ├── README │ ├── db_flatstore.c │ ├── db_flatstore.h │ ├── doc │ │ ├── Makefile │ │ ├── db_flatstore.xml │ │ ├── db_flatstore_functions.xml │ │ └── db_flatstore_params.xml │ ├── flat_cmd.c │ ├── flat_cmd.h │ ├── flat_con.c │ ├── flat_con.h │ ├── flat_rpc.c │ ├── flat_rpc.h │ ├── flat_uri.c │ ├── flat_uri.h │ ├── km_doc │ │ ├── Makefile │ │ ├── db_flatstore.xml │ │ ├── db_flatstore_admin.xml │ │ └── db_flatstore_devel.xml │ ├── km_flat_con.c │ ├── km_flat_con.h │ ├── km_flat_id.c │ ├── km_flat_id.h │ ├── km_flat_pool.c │ ├── km_flat_pool.h │ ├── km_flatstore.c │ ├── km_flatstore.h │ ├── km_flatstore_mod.c │ ├── km_flatstore_mod.h │ ├── ser-flatstore.cfg │ └── todo.txt │ ├── db_mongodb │ ├── Makefile │ ├── README │ ├── db_mongodb_mod.c │ ├── doc │ │ ├── Makefile │ │ ├── db_mongodb.xml │ │ └── db_mongodb_admin.xml │ ├── mongodb_connection.c │ ├── mongodb_connection.h │ ├── mongodb_dbase.c │ └── mongodb_dbase.h │ ├── db_mysql │ ├── Makefile │ ├── README │ ├── db_mysql.c │ ├── db_mysql.h │ ├── doc │ │ ├── Makefile │ │ ├── db_mysql.xml │ │ ├── db_mysql_admin.xml │ │ └── mysql_parser.dia │ ├── km_db_mysql.c │ ├── km_db_mysql.h │ ├── km_dbase.c │ ├── km_dbase.h │ ├── km_my_con.c │ ├── km_my_con.h │ ├── km_res.c │ ├── km_res.h │ ├── km_row.c │ ├── km_row.h │ ├── km_val.c │ ├── km_val.h │ ├── my_cmd.c │ ├── my_cmd.h │ ├── my_con.c │ ├── my_con.h │ ├── my_fld.c │ ├── my_fld.h │ ├── my_res.c │ ├── my_res.h │ ├── my_uri.c │ └── my_uri.h │ ├── db_oracle │ ├── Makefile │ ├── README │ ├── asynch.c │ ├── asynch.h │ ├── db_oracle.c │ ├── dbase.c │ ├── dbase.h │ ├── doc │ │ ├── Makefile │ │ ├── db_oracle.xml │ │ └── db_oracle_admin.xml │ ├── ora_con.c │ ├── ora_con.h │ ├── res.c │ ├── res.h │ ├── val.c │ └── val.h │ ├── db_perlvdb │ ├── Makefile │ ├── README │ ├── db_perlvdb.c │ ├── db_perlvdb.h │ ├── doc │ │ ├── Makefile │ │ ├── db_perlvdb.xml │ │ ├── db_perlvdb_admin.xml │ │ ├── db_perlvdb_devel.xml │ │ └── samples │ │ │ ├── alias_ldap.pm │ │ │ ├── flatstoresimulator.pm │ │ │ ├── simplealias.pm │ │ │ ├── simpleauth.pm │ │ │ └── simplespeeddial.pm │ ├── perlvdb_conv.c │ ├── perlvdb_conv.h │ ├── perlvdb_oohelpers.c │ ├── perlvdb_oohelpers.h │ ├── perlvdbfunc.c │ └── perlvdbfunc.h │ ├── db_postgres │ ├── Makefile │ ├── README │ ├── db_postgres.c │ ├── db_postgres.h │ ├── doc │ │ ├── Makefile │ │ ├── db_postgres.xml │ │ └── db_postgres_admin.xml │ ├── km_dbase.c │ ├── km_dbase.h │ ├── km_pg_con.c │ ├── km_pg_con.h │ ├── km_pg_type.h │ ├── km_res.c │ ├── km_res.h │ ├── km_val.c │ ├── km_val.h │ ├── pg_cmd.c │ ├── pg_cmd.h │ ├── pg_con.c │ ├── pg_con.h │ ├── pg_fld.c │ ├── pg_fld.h │ ├── pg_mod.c │ ├── pg_mod.h │ ├── pg_oid.c │ ├── pg_oid.h │ ├── pg_res.c │ ├── pg_res.h │ ├── pg_sql.c │ ├── pg_sql.h │ ├── pg_uri.c │ └── pg_uri.h │ ├── db_redis │ ├── Makefile │ ├── README │ ├── db_redis_mod.c │ ├── db_redis_mod.h │ ├── doc │ │ ├── Makefile │ │ ├── db_redis.xml │ │ └── db_redis_admin.xml │ ├── redis_connection.c │ ├── redis_connection.h │ ├── redis_dbase.c │ ├── redis_dbase.h │ ├── redis_table.c │ └── redis_table.h │ ├── db_sqlite │ ├── Makefile │ ├── README │ ├── db_sqlite.c │ ├── db_sqlite.h │ ├── dbase.c │ ├── dbase.h │ └── doc │ │ ├── Makefile │ │ ├── db_sqlite.xml │ │ └── db_sqlite_admin.xml │ ├── db_text │ ├── Makefile │ ├── README │ ├── db_text.c │ ├── db_text.h │ ├── dbt_api.c │ ├── dbt_api.h │ ├── dbt_base.c │ ├── dbt_file.c │ ├── dbt_lib.c │ ├── dbt_lib.h │ ├── dbt_raw_query.c │ ├── dbt_raw_query.h │ ├── dbt_raw_util.c │ ├── dbt_raw_util.h │ ├── dbt_res.c │ ├── dbt_res.h │ ├── dbt_tb.c │ ├── dbt_util.c │ ├── dbt_util.h │ └── doc │ │ ├── Makefile │ │ ├── db_text.cfg │ │ ├── db_text.xml │ │ ├── db_text_admin.xml │ │ └── db_text_devel.xml │ ├── db_unixodbc │ ├── Makefile │ ├── README │ ├── connection.c │ ├── connection.h │ ├── db_unixodbc.c │ ├── db_unixodbc.h │ ├── dbase.c │ ├── dbase.h │ ├── doc │ │ ├── Makefile │ │ ├── db_unixodbc.xml │ │ ├── db_unixodbc_admin.xml │ │ └── db_unixodbc_devel.xml │ ├── list.c │ ├── list.h │ ├── res.c │ ├── res.h │ ├── row.c │ ├── row.h │ ├── val.c │ └── val.h │ ├── debugger │ ├── Makefile │ ├── README │ ├── debugger_act.c │ ├── debugger_act.h │ ├── debugger_api.c │ ├── debugger_api.h │ ├── debugger_config.c │ ├── debugger_config.h │ ├── debugger_json.c │ ├── debugger_json.h │ ├── debugger_mod.c │ └── doc │ │ ├── Makefile │ │ ├── debugger.xml │ │ └── debugger_admin.xml │ ├── dialog │ ├── Makefile │ ├── README │ ├── dialog.c │ ├── dlg_cb.c │ ├── dlg_cb.h │ ├── dlg_cseq.c │ ├── dlg_cseq.h │ ├── dlg_db_handler.c │ ├── dlg_db_handler.h │ ├── dlg_dmq.c │ ├── dlg_dmq.h │ ├── dlg_handlers.c │ ├── dlg_handlers.h │ ├── dlg_hash.c │ ├── dlg_hash.h │ ├── dlg_load.h │ ├── dlg_profile.c │ ├── dlg_profile.h │ ├── dlg_req_within.c │ ├── dlg_req_within.h │ ├── dlg_timer.c │ ├── dlg_timer.h │ ├── dlg_transfer.c │ ├── dlg_transfer.h │ ├── dlg_var.c │ ├── dlg_var.h │ └── doc │ │ ├── Makefile │ │ ├── dialog.xml │ │ ├── dialog_admin.xml │ │ ├── dialog_devel.xml │ │ └── dialog_faq.xml │ ├── dialplan │ ├── Makefile │ ├── README │ ├── dialplan.c │ ├── dialplan.h │ ├── doc │ │ ├── Makefile │ │ ├── dialplan.xml │ │ ├── dialplan_admin.xml │ │ └── dialplan_devel.xml │ ├── dp_db.c │ ├── dp_db.h │ └── dp_repl.c │ ├── dispatcher │ ├── Makefile │ ├── README │ ├── api.h │ ├── config.c │ ├── config.h │ ├── dispatch.c │ ├── dispatch.h │ ├── dispatcher.c │ ├── doc │ │ ├── Makefile │ │ ├── dispatcher.cfg │ │ ├── dispatcher.list │ │ ├── dispatcher.xml │ │ ├── dispatcher_admin.xml │ │ └── dispatcher_faq.xml │ ├── ds_ht.c │ └── ds_ht.h │ ├── diversion │ ├── Makefile │ ├── README │ ├── diversion.c │ └── doc │ │ ├── Makefile │ │ ├── diversion.xml │ │ ├── diversion_admin.xml │ │ └── diversion_devel.xml │ ├── dmq │ ├── Makefile │ ├── README │ ├── bind_dmq.c │ ├── bind_dmq.h │ ├── dmq.c │ ├── dmq.h │ ├── dmq_funcs.c │ ├── dmq_funcs.h │ ├── dmqnode.c │ ├── dmqnode.h │ ├── doc │ │ ├── Makefile │ │ ├── dmq.xml │ │ ├── dmq_admin.xml │ │ └── dmq_devel.xml │ ├── message.c │ ├── message.h │ ├── notification_peer.c │ ├── notification_peer.h │ ├── peer.c │ ├── peer.h │ ├── worker.c │ └── worker.h │ ├── dmq_usrloc │ ├── Makefile │ ├── README │ ├── dmq_usrloc.c │ ├── doc │ │ ├── Makefile │ │ ├── dmq_usrloc.xml │ │ └── dmq_usrloc_admin.xml │ ├── usrloc_sync.c │ └── usrloc_sync.h │ ├── dnssec │ ├── Makefile │ ├── README │ ├── dnssec_func.c │ ├── dnssec_func.h │ ├── dnssec_mod.c │ └── doc │ │ ├── Makefile │ │ ├── dnssec.xml │ │ └── dnssec_admin.xml │ ├── domain │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── domain.xml │ │ ├── domain_admin.xml │ │ └── domain_devel.xml │ ├── domain.c │ ├── domain.h │ ├── domain_mod.c │ ├── domain_mod.h │ ├── hash.c │ └── hash.h │ ├── domainpolicy │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── domainpolicy.xml │ │ └── domainpolicy_admin.xml │ ├── domainpolicy.c │ ├── domainpolicy.h │ ├── domainpolicy_mod.c │ └── domainpolicy_mod.h │ ├── drouting │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── drouting.xml │ │ ├── drouting_admin.xml │ │ └── drouting_devel.xml │ ├── dr_load.c │ ├── dr_load.h │ ├── dr_time.c │ ├── dr_time.h │ ├── drouting.c │ ├── parse.h │ ├── prefix_tree.c │ ├── prefix_tree.h │ ├── routing.c │ └── routing.h │ ├── enum │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── enum.xml │ │ └── enum_admin.xml │ ├── enum.c │ ├── enum.h │ ├── enum_mod.c │ └── enum_mod.h │ ├── erlang │ ├── Makefile │ ├── README │ ├── cnode.c │ ├── cnode.h │ ├── doc │ │ ├── Makefile │ │ ├── erlang.xml │ │ ├── erlang_admin.xml │ │ ├── erlang_devel.xml │ │ └── erlang_use.xml │ ├── epmd.c │ ├── epmd.h │ ├── erl_api.c │ ├── erl_api.h │ ├── erl_helpers.c │ ├── erl_helpers.h │ ├── erlang_mod.c │ ├── erlang_mod.h │ ├── handle_emsg.c │ ├── handle_emsg.h │ ├── handle_rpc.c │ ├── handle_rpc.h │ ├── pv_atom.c │ ├── pv_atom.h │ ├── pv_list.c │ ├── pv_list.h │ ├── pv_pid.c │ ├── pv_pid.h │ ├── pv_ref.c │ ├── pv_ref.h │ ├── pv_tuple.c │ ├── pv_tuple.h │ ├── pv_xbuff.c │ ├── pv_xbuff.h │ ├── worker.c │ └── worker.h │ ├── evapi │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── evapi.xml │ │ └── evapi_admin.xml │ ├── evapi_dispatch.c │ ├── evapi_dispatch.h │ └── evapi_mod.c │ ├── evrexec │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── evrexec.xml │ │ └── evrexec_admin.xml │ └── evrexec_mod.c │ ├── exec │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── exec.xml │ │ └── exec_admin.xml │ ├── exec.c │ ├── exec.h │ ├── exec_hf.c │ ├── exec_hf.h │ ├── exec_mod.c │ ├── kill.c │ └── kill.h │ ├── geoip │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── geoip.xml │ │ └── geoip_admin.xml │ ├── geoip_mod.c │ ├── geoip_pv.c │ └── geoip_pv.h │ ├── geoip2 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── geoip2.xml │ │ └── geoip2_admin.xml │ ├── geoip2_mod.c │ ├── geoip2_pv.c │ └── geoip2_pv.h │ ├── group │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── group.xml │ │ └── group_admin.xml │ ├── group.c │ ├── group.h │ ├── group_mod.c │ ├── group_mod.h │ ├── re_group.c │ └── re_group.h │ ├── gzcompress │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── gzcompress.xml │ │ └── gzcompress_admin.xml │ └── gzcompress_mod.c │ ├── h350 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── h350.xml │ │ ├── h350_admin.xml │ │ └── h350_biblio.xml │ ├── h350_exp_fn.c │ ├── h350_exp_fn.h │ ├── h350_mod.c │ └── h350_mod.h │ ├── htable │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── htable.xml │ │ └── htable_admin.xml │ ├── ht_api.c │ ├── ht_api.h │ ├── ht_db.c │ ├── ht_db.h │ ├── ht_dmq.c │ ├── ht_dmq.h │ ├── ht_var.c │ ├── ht_var.h │ └── htable.c │ ├── http_async_client │ ├── Makefile │ ├── README │ ├── async_http.c │ ├── async_http.h │ ├── doc │ │ ├── Makefile │ │ ├── http_async_client.xml │ │ └── http_async_client_admin.xml │ ├── hm_hash.c │ ├── hm_hash.h │ ├── http_async_client_mod.c │ ├── http_multi.c │ └── http_multi.h │ ├── http_client │ ├── Makefile │ ├── README │ ├── TODO.txt │ ├── curl_api.c │ ├── curl_api.h │ ├── curlcon.c │ ├── curlcon.h │ ├── curlrpc.c │ ├── curlrpc.h │ ├── doc │ │ ├── Makefile │ │ ├── http_client.xml │ │ ├── http_client_admin.xml │ │ └── http_client_devel.xml │ ├── functions.c │ ├── functions.h │ ├── http_client.c │ └── http_client.h │ ├── imc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── imc.cfg │ │ ├── imc.xml │ │ └── imc_admin.xml │ ├── imc.c │ ├── imc.h │ ├── imc_cmd.c │ ├── imc_cmd.h │ ├── imc_mng.c │ └── imc_mng.h │ ├── ims_auth │ ├── Makefile │ ├── README │ ├── api.h │ ├── authorize.c │ ├── authorize.h │ ├── blurb │ ├── conversion.c │ ├── conversion.h │ ├── cxdx_avp.c │ ├── cxdx_avp.h │ ├── cxdx_mar.c │ ├── cxdx_mar.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_auth.xml │ │ └── ims_auth_admin.xml │ ├── ims_auth_mod.c │ ├── ims_auth_mod.h │ ├── pvt_message.c │ ├── pvt_message.h │ ├── rfc2617.c │ ├── rfc2617.h │ ├── sip_messages.h │ ├── stats.c │ ├── stats.h │ ├── utils.c │ └── utils.h │ ├── ims_charging │ ├── Makefile │ ├── README │ ├── Ro_data.c │ ├── Ro_data.h │ ├── ccr.c │ ├── ccr.h │ ├── config.h │ ├── dialog.c │ ├── dialog.h │ ├── diameter_ro.c │ ├── diameter_ro.h │ ├── doc │ │ ├── Makefile │ │ ├── images │ │ │ ├── charging1.png │ │ │ └── charging2.png │ │ ├── ims_charging.xml │ │ └── ims_charging_admin.xml │ ├── ims_charging_mod.c │ ├── ims_charging_mod.h │ ├── ims_charging_stats.c │ ├── ims_charging_stats.h │ ├── ims_ro.c │ ├── ims_ro.h │ ├── ro_avp.c │ ├── ro_avp.h │ ├── ro_db_handler.c │ ├── ro_db_handler.h │ ├── ro_fixup.c │ ├── ro_fixup.h │ ├── ro_session_hash.c │ ├── ro_session_hash.h │ ├── ro_timer.c │ └── ro_timer.h │ ├── ims_dialog │ ├── Makefile │ ├── README │ ├── dlg_cb.c │ ├── dlg_cb.h │ ├── dlg_db_handler.c │ ├── dlg_db_handler.h │ ├── dlg_handlers.c │ ├── dlg_handlers.h │ ├── dlg_hash.c │ ├── dlg_hash.h │ ├── dlg_load.h │ ├── dlg_ng_stats.c │ ├── dlg_ng_stats.h │ ├── dlg_profile.c │ ├── dlg_profile.h │ ├── dlg_req_within.c │ ├── dlg_req_within.h │ ├── dlg_timer.c │ ├── dlg_timer.h │ ├── dlg_var.c │ ├── dlg_var.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_dialog.xml │ │ ├── ims_dialog_admin.xml │ │ ├── ims_dialog_devel.xml │ │ └── ims_dialog_faq.xml │ └── ims_dialog.c │ ├── ims_diameter_server │ ├── Makefile │ ├── README │ ├── avp_helper.c │ ├── avp_helper.h │ ├── cJSON.c │ ├── cJSON.h │ ├── doc │ │ ├── Makefile │ │ └── ims_diameter_server.xml │ ├── examples │ │ ├── hss.xml │ │ └── kamailio.cfg │ ├── ims_diameter_server.c │ ├── ims_diameter_server.h │ └── sem.h │ ├── ims_icscf │ ├── Makefile │ ├── README │ ├── cxdx_avp.c │ ├── cxdx_avp.h │ ├── cxdx_lir.c │ ├── cxdx_lir.h │ ├── cxdx_uar.c │ ├── cxdx_uar.h │ ├── db.c │ ├── db.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_icscf.xml │ │ └── ims_icscf_admin.xml │ ├── ims_icscf_mod.c │ ├── ims_icscf_mod.h │ ├── location.c │ ├── location.h │ ├── nds.c │ ├── nds.h │ ├── registration.c │ ├── registration.h │ ├── scscf_list.c │ ├── scscf_list.h │ ├── sip_messages.h │ ├── stats.c │ └── stats.h │ ├── ims_ipsec_pcscf │ ├── Makefile │ ├── README │ ├── cmd.c │ ├── cmd.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_ipsec_pcscf.xml │ │ └── ims_ipsec_pcscf_admin.xml │ ├── ims_ipsec_pcscf_mod.c │ ├── ipsec.c │ ├── ipsec.h │ ├── port_gen.c │ ├── port_gen.h │ ├── run_spi_list_tests.sh │ ├── sec_agree.c │ ├── sec_agree.h │ ├── spi_gen.c │ ├── spi_gen.h │ ├── spi_list.c │ ├── spi_list.h │ └── spi_list_tests.c │ ├── ims_isc │ ├── Makefile │ ├── README │ ├── blurb │ ├── checker.c │ ├── checker.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_isc.xml │ │ └── ims_isc_admin.xml │ ├── ims_isc_mod.c │ ├── ims_isc_mod.h │ ├── isc.c │ ├── isc.h │ ├── mark.c │ ├── mark.h │ ├── third_party_reg.c │ └── third_party_reg.h │ ├── ims_ocs │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ └── ims_ocs.xml │ ├── examples │ │ ├── full │ │ │ ├── hss_db.sql │ │ │ ├── kamailio.cfg │ │ │ ├── ocs.cfg.sample │ │ │ └── ocs.xml.sample │ │ └── simple │ │ │ ├── kamailio.cfg │ │ │ ├── ocs.cfg.sample │ │ │ └── ocs.xml.sample │ ├── ims_ocs_mod.c │ ├── ims_ocs_mod.h │ ├── msg_faker.c │ ├── msg_faker.h │ ├── ocs_avp_helper.c │ ├── ocs_avp_helper.h │ └── sem.h │ ├── ims_qos │ ├── Makefile │ ├── README │ ├── cdpeventprocessor.c │ ├── cdpeventprocessor.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_qos.xml │ │ └── ims_qos_admin.xml │ ├── ims_qos_mod.c │ ├── ims_qos_mod.h │ ├── ims_qos_stats.c │ ├── ims_qos_stats.h │ ├── rx_aar.c │ ├── rx_aar.h │ ├── rx_asr.c │ ├── rx_asr.h │ ├── rx_authdata.c │ ├── rx_authdata.h │ ├── rx_avp.c │ ├── rx_avp.h │ ├── rx_str.c │ ├── rx_str.h │ ├── sem.h │ ├── stats.c │ └── stats.h │ ├── ims_registrar_pcscf │ ├── Makefile │ ├── README │ ├── async_reginfo.c │ ├── async_reginfo.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_registrar_pcscf.xml │ │ └── ims_registrar_pcscf_admin.xml │ ├── ims_registrar_pcscf_mod.c │ ├── ims_registrar_pcscf_mod.h │ ├── notify.c │ ├── notify.h │ ├── save.c │ ├── save.h │ ├── sec_agree.c │ ├── sec_agree.h │ ├── sem.h │ ├── service_routes.c │ ├── service_routes.h │ ├── subscribe.c │ ├── subscribe.h │ ├── ul_callback.c │ └── ul_callback.h │ ├── ims_registrar_scscf │ ├── CxDataType_Rel6.xsd │ ├── CxDataType_Rel7.xsd │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── common.c │ ├── common.h │ ├── config.c │ ├── config.h │ ├── cxdx_avp.c │ ├── cxdx_avp.h │ ├── cxdx_callbacks.c │ ├── cxdx_callbacks.h │ ├── cxdx_sar.c │ ├── cxdx_sar.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_registrar_scscf.xml │ │ ├── ims_registrar_scscf_admin.xml │ │ └── ims_registrar_scscf_faq.xml │ ├── ims_registrar_scscf_mod.c │ ├── ims_registrar_scscf_mod.h │ ├── lookup.c │ ├── lookup.h │ ├── path.c │ ├── path.h │ ├── pvt_message.c │ ├── pvt_message.h │ ├── reg_rpc.c │ ├── reg_rpc.h │ ├── registrar_notify.c │ ├── registrar_notify.h │ ├── regpv.c │ ├── regpv.h │ ├── regtime.c │ ├── regtime.h │ ├── reply.c │ ├── reply.h │ ├── rerrno.c │ ├── rerrno.h │ ├── save.c │ ├── save.h │ ├── sem.h │ ├── server_assignment.c │ ├── server_assignment.h │ ├── sip_msg.c │ ├── sip_msg.h │ ├── stats.c │ ├── stats.h │ ├── userdata_parser.c │ ├── userdata_parser.h │ ├── usrloc_cb.c │ └── usrloc_cb.h │ ├── ims_usrloc_pcscf │ ├── Makefile │ ├── README │ ├── dlist.c │ ├── dlist.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_usrloc_pcscf.xml │ │ ├── ims_usrloc_pcscf_admin.xml │ │ └── ims_usrloc_pcscf_faq.xml │ ├── hslot.c │ ├── hslot.h │ ├── ims_usrloc_pcscf_mod.c │ ├── ims_usrloc_pcscf_mod.h │ ├── pcontact.c │ ├── pcontact.h │ ├── reginfo.c │ ├── reginfo.h │ ├── udomain.c │ ├── udomain.h │ ├── ul_callback.c │ ├── ul_callback.h │ ├── ul_rpc.c │ ├── ul_rpc.h │ ├── usrloc.c │ ├── usrloc.h │ ├── usrloc_db.c │ ├── usrloc_db.h │ ├── utime.c │ └── utime.h │ ├── ims_usrloc_scscf │ ├── Makefile │ ├── README │ ├── bin_utils.c │ ├── bin_utils.h │ ├── contact_dlg_handlers.c │ ├── contact_hslot.c │ ├── contact_hslot.h │ ├── dlist.c │ ├── dlist.h │ ├── doc │ │ ├── Makefile │ │ ├── ims_usrloc_scscf.xml │ │ ├── ims_usrloc_scscf_admin.xml │ │ └── ims_usrloc_scscf_faq.xml │ ├── hslot.c │ ├── hslot.h │ ├── hslot_sp.c │ ├── hslot_sp.h │ ├── impurecord.c │ ├── impurecord.h │ ├── ims_usrloc_scscf_mod.c │ ├── ims_usrloc_scscf_mod.h │ ├── subscribe.c │ ├── subscribe.h │ ├── ucontact.c │ ├── ucontact.h │ ├── udomain.c │ ├── udomain.h │ ├── ul_callback.c │ ├── ul_callback.h │ ├── ul_rpc.c │ ├── ul_rpc.h │ ├── ul_scscf_stats.c │ ├── ul_scscf_stats.h │ ├── usrloc.c │ ├── usrloc.h │ ├── usrloc_db.c │ ├── usrloc_db.h │ ├── utime.c │ └── utime.h │ ├── ipops │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── compile_ip_parser.rl.sh │ ├── compile_rfc1918_parser.rl.sh │ ├── detailed_ip_type.c │ ├── detailed_ip_type.h │ ├── doc │ │ ├── Makefile │ │ ├── ipops.xml │ │ └── ipops_admin.xml │ ├── ip_parser.c │ ├── ip_parser.h │ ├── ip_parser.rl │ ├── ipops_mod.c │ ├── ipops_pv.c │ ├── ipops_pv.h │ ├── rfc1918_parser.c │ ├── rfc1918_parser.h │ └── rfc1918_parser.rl │ ├── jansson │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── jansson.xml │ │ └── jansson_admin.xml │ ├── jansson_funcs.c │ ├── jansson_funcs.h │ ├── jansson_mod.c │ ├── jansson_path.c │ ├── jansson_path.h │ ├── jansson_utils.c │ └── jansson_utils.h │ ├── janssonrpcc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── janssonrpcc.xml │ │ └── janssonrpcc_admin.xml │ ├── janssonrpc.h │ ├── janssonrpc_connect.c │ ├── janssonrpc_connect.h │ ├── janssonrpc_funcs.c │ ├── janssonrpc_funcs.h │ ├── janssonrpc_global.c │ ├── janssonrpc_io.c │ ├── janssonrpc_io.h │ ├── janssonrpc_request.c │ ├── janssonrpc_request.h │ ├── janssonrpc_server.c │ ├── janssonrpc_server.h │ ├── janssonrpc_srv.c │ ├── janssonrpc_srv.h │ ├── janssonrpcc_mod.c │ ├── netstring.c │ ├── netstring.h │ ├── test │ │ ├── mem-test.sh │ │ ├── run-tests.sh │ │ └── test.cfg │ └── unit_tests │ │ ├── Makefile │ │ ├── netstring.c │ │ ├── seatest │ │ ├── license.txt │ │ ├── seatest.c │ │ └── seatest.h │ │ └── test.h │ ├── json │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── json.xml │ │ └── json_admin.xml │ ├── json_funcs.c │ ├── json_funcs.h │ ├── json_mod.c │ ├── json_trans.c │ └── json_trans.h │ ├── jsonrpcc │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── jsonrpcc.xml │ │ └── jsonrpcc_admin.xml │ ├── jsonrpc.c │ ├── jsonrpc.h │ ├── jsonrpc_io.c │ ├── jsonrpc_io.h │ ├── jsonrpc_request.c │ ├── jsonrpc_request.h │ ├── jsonrpcc_mod.c │ ├── netstring.c │ └── netstring.h │ ├── jsonrpcs │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── jsonrpcs.xml │ │ └── jsonrpcs_admin.xml │ ├── jsonrpcs_fifo.c │ ├── jsonrpcs_mod.c │ ├── jsonrpcs_mod.h │ └── jsonrpcs_sock.c │ ├── kazoo │ ├── Makefile │ ├── README │ ├── const.c │ ├── const.h │ ├── defs.h │ ├── doc │ │ ├── Makefile │ │ ├── kazoo.xml │ │ └── kazoo_admin.xml │ ├── kazoo.c │ ├── kz_amqp.c │ ├── kz_amqp.h │ ├── kz_fixup.c │ ├── kz_fixup.h │ ├── kz_hash.c │ ├── kz_hash.h │ ├── kz_json.c │ ├── kz_json.h │ ├── kz_pua.c │ ├── kz_pua.h │ ├── kz_trans.c │ └── kz_trans.h │ ├── keepalive │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── keepalive.xml │ │ ├── keepalive_admin.xml │ │ └── keepalive_devel.xml │ ├── keepalive.h │ ├── keepalive_api.c │ ├── keepalive_core.c │ ├── keepalive_mod.c │ └── keepalive_rpc.c │ ├── kemix │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── kemix.xml │ │ └── kemix_admin.xml │ └── kemix_mod.c │ ├── kex │ ├── Makefile │ ├── README │ ├── core_stats.c │ ├── core_stats.h │ ├── doc │ │ ├── Makefile │ │ ├── kex.xml │ │ └── kex_admin.xml │ ├── flags.c │ ├── flags.h │ ├── kex_mod.c │ ├── km_core.c │ ├── km_core.h │ ├── mod_stats.c │ ├── mod_stats.h │ ├── pkg_stats.c │ └── pkg_stats.h │ ├── lcr │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── lcr.xml │ │ └── lcr_admin.xml │ ├── hash.c │ ├── hash.h │ ├── lcr_mod.c │ ├── lcr_mod.h │ ├── lcr_rpc.c │ ├── lcr_rpc.h │ └── utils │ │ ├── lcr_upgrade_from_3.1.sh │ │ ├── lcr_weight_test.awk │ │ └── lcr_weight_test.sh │ ├── ldap │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── ldap.xml │ │ ├── ldap_admin.xml │ │ ├── ldap_biblio.xml │ │ └── ldap_devel.xml │ ├── etc │ │ └── ldap.cfg │ ├── iniparser.c │ ├── iniparser.h │ ├── ld_session.c │ ├── ld_session.h │ ├── ldap_api_fn.c │ ├── ldap_api_fn.h │ ├── ldap_connect.c │ ├── ldap_connect.h │ ├── ldap_escape.c │ ├── ldap_escape.h │ ├── ldap_exp_fn.c │ ├── ldap_exp_fn.h │ └── ldap_mod.c │ ├── log_custom │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── log_custom.xml │ │ └── log_custom_admin.xml │ └── log_custom_mod.c │ ├── log_systemd │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── log_systemd.xml │ │ └── log_systemd_admin.xml │ ├── journal_send.c │ ├── journal_send.h │ └── log_systemd_mod.c │ ├── lost │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── lost.xml │ │ └── lost_admin.xml │ ├── functions.c │ ├── functions.h │ ├── lost.c │ ├── pidf.c │ ├── pidf.h │ ├── utilities.c │ └── utilities.h │ ├── malloc_test │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── malloc_test.xml │ │ ├── malloc_test_functions.xml │ │ ├── malloc_test_params.xml │ │ └── malloc_test_rpc.xml │ └── malloc_test.c │ ├── mangler │ ├── Makefile │ ├── README │ ├── common.h │ ├── contact_ops.c │ ├── contact_ops.h │ ├── doc │ │ ├── Makefile │ │ ├── mangler.xml │ │ ├── mangler_functions.xml │ │ └── mangler_params.xml │ ├── ip_helper.c │ ├── ip_helper.h │ ├── mangler.c │ ├── mangler.cfg │ ├── mangler.h │ ├── sdp_mangler.c │ ├── sdp_mangler.h │ ├── utils.c │ └── utils.h │ ├── matrix │ ├── Makefile │ ├── README │ ├── db_matrix.c │ ├── db_matrix.h │ ├── doc │ │ ├── Makefile │ │ ├── matrix.xml │ │ ├── matrix_admin.xml │ │ └── matrix_db.xml │ └── matrix.c │ ├── maxfwd │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── maxfwd.xml │ │ └── maxfwd_admin.xml │ ├── maxfwd.c │ ├── mf_funcs.c │ └── mf_funcs.h │ ├── mediaproxy │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── mediaproxy.xml │ │ └── mediaproxy_admin.xml │ └── mediaproxy.c │ ├── memcached │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── memcached.xml │ │ └── memcached_admin.xml │ ├── mcd_var.c │ ├── mcd_var.h │ ├── memcached.c │ └── memcached.h │ ├── misc_radius │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── misc_radius.xml │ │ └── misc_radius_admin.xml │ ├── extra.c │ ├── extra.h │ ├── functions.c │ ├── functions.h │ ├── misc_radius.c │ ├── misc_radius.h │ └── radius.h │ ├── mohqueue │ ├── Makefile │ ├── NOTES │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── mohqueue.xml │ │ └── mohqueue_admin.xml │ ├── mohq_common.h │ ├── mohq_db.c │ ├── mohq_db.h │ ├── mohq_funcs.c │ ├── mohq_funcs.h │ ├── mohq_locks.c │ ├── mohq_locks.h │ ├── mohqueue_mod.c │ └── mohqueue_mod.h │ ├── mqueue │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── mqueue.xml │ │ └── mqueue_admin.xml │ ├── mqueue_api.c │ ├── mqueue_api.h │ └── mqueue_mod.c │ ├── msilo │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── msilo.cfg │ │ ├── msilo.xml │ │ └── msilo_admin.xml │ ├── ms_msg_list.c │ ├── ms_msg_list.h │ ├── msfuncs.c │ ├── msfuncs.h │ └── msilo.c │ ├── msrp │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── msrp.xml │ │ └── msrp_admin.xml │ ├── msrp_cmap.c │ ├── msrp_cmap.h │ ├── msrp_env.c │ ├── msrp_env.h │ ├── msrp_mod.c │ ├── msrp_netio.c │ ├── msrp_netio.h │ ├── msrp_parser.c │ ├── msrp_parser.h │ ├── msrp_vars.c │ └── msrp_vars.h │ ├── mtree │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── mtree.xml │ │ ├── mtree_admin.xml │ │ └── mtree_devel.xml │ ├── mtree.c │ ├── mtree.h │ └── mtree_mod.c │ ├── nat_traversal │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── nat_traversal.xml │ │ └── nat_traversal_admin.xml │ └── nat_traversal.c │ ├── nathelper │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── nathelper.xml │ │ ├── nathelper_admin.xml │ │ └── nathelper_faq.xml │ ├── examples │ │ ├── 4to6.cfg │ │ └── alg.cfg │ ├── nathelper.c │ ├── nathelper.cfg │ ├── nathelper.h │ ├── nathelper_rtpp.cfg │ ├── nhelpr_funcs.c │ ├── nhelpr_funcs.h │ └── sip_pinger.h │ ├── ndb_cassandra │ ├── .gitignore │ ├── Cassandra.cpp │ ├── Cassandra.h │ ├── Makefile │ ├── README │ ├── cassandra_constants.cpp │ ├── cassandra_constants.h │ ├── cassandra_types.cpp │ ├── cassandra_types.h │ ├── doc │ │ ├── Makefile │ │ ├── ndb_cassandra.xml │ │ └── ndb_cassandra_admin.xml │ ├── ndb_cassandra.c │ ├── test-cpp │ │ ├── Cassandra.cpp │ │ ├── Cassandra.h │ │ ├── Makefile │ │ ├── cassandra_constants.cpp │ │ ├── cassandra_constants.h │ │ ├── cassandra_types.cpp │ │ ├── cassandra_types.h │ │ ├── test.c │ │ ├── thrift_wrapper.cpp │ │ └── thrift_wrapper.h │ ├── thrift_wrapper.cpp │ └── thrift_wrapper.h │ ├── ndb_mongodb │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── ndb_mongodb.xml │ │ └── ndb_mongodb_admin.xml │ ├── mongodb_client.c │ ├── mongodb_client.h │ └── ndb_mongodb_mod.c │ ├── ndb_redis │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── ndb_redis.xml │ │ └── ndb_redis_admin.xml │ ├── ndb_redis_mod.c │ ├── redis_client.c │ └── redis_client.h │ ├── nosip │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── nosip.xml │ │ └── nosip_admin.xml │ └── nosip_mod.c │ ├── nsq │ ├── Makefile │ ├── README │ ├── defs.h │ ├── doc │ │ ├── Makefile │ │ ├── nsq.xml │ │ └── nsq_admin.xml │ ├── nsq_mod.c │ ├── nsq_mod.h │ ├── nsq_reader.c │ └── nsq_reader.h │ ├── osp │ ├── Makefile │ ├── README │ ├── RELEASE-NOTES.txt │ ├── destination.c │ ├── destination.h │ ├── doc │ │ ├── Makefile │ │ ├── osp.xml │ │ ├── osp_admin.xml │ │ └── osp_devel.xml │ ├── etc │ │ ├── cacert_0.pem │ │ ├── localcert.pem │ │ ├── pkey.pem │ │ └── sample-osp-openser.cfg │ ├── globals.c │ ├── orig_transaction.c │ ├── orig_transaction.h │ ├── osp_mod.c │ ├── osp_mod.h │ ├── osptoolkit.c │ ├── osptoolkit.h │ ├── provider.c │ ├── provider.h │ ├── sipheader.c │ ├── sipheader.h │ ├── term_transaction.c │ ├── term_transaction.h │ ├── tm.c │ ├── tm.h │ ├── usage.c │ └── usage.h │ ├── outbound │ ├── Makefile │ ├── README │ ├── api.h │ ├── config.c │ ├── config.h │ ├── doc │ │ ├── Makefile │ │ ├── outbound.xml │ │ └── outbound_admin.xml │ └── outbound_mod.c │ ├── p_usrloc │ ├── Makefile │ ├── README │ ├── config.c │ ├── config.h │ ├── dlist.c │ ├── dlist.h │ ├── doc │ │ ├── Makefile │ │ ├── p_usrloc.xml │ │ ├── p_usrloc_admin.xml │ │ └── p_usrloc_devel.xml │ ├── hslot.c │ ├── hslot.h │ ├── location.sql │ ├── p_usrloc.sql │ ├── p_usrloc_mod.c │ ├── p_usrloc_mod.h │ ├── ucontact.c │ ├── ucontact.h │ ├── udomain.c │ ├── udomain.h │ ├── ul_callback.c │ ├── ul_check.c │ ├── ul_check.h │ ├── ul_db.c │ ├── ul_db.h │ ├── ul_db_api.c │ ├── ul_db_api.h │ ├── ul_db_del.c │ ├── ul_db_del.h │ ├── ul_db_failover.c │ ├── ul_db_failover.h │ ├── ul_db_failover_func.c │ ├── ul_db_failover_func.h │ ├── ul_db_form_query.c │ ├── ul_db_form_query.h │ ├── ul_db_handle.c │ ├── ul_db_handle.h │ ├── ul_db_ins.c │ ├── ul_db_ins.h │ ├── ul_db_ins_upd.c │ ├── ul_db_ins_upd.h │ ├── ul_db_layer.c │ ├── ul_db_layer.h │ ├── ul_db_query.c │ ├── ul_db_query.h │ ├── ul_db_repl.c │ ├── ul_db_repl.h │ ├── ul_db_tran.c │ ├── ul_db_tran.h │ ├── ul_db_upd.c │ ├── ul_db_upd.h │ ├── ul_db_watch.c │ ├── ul_db_watch.h │ ├── ul_mi.c │ ├── ul_mi.h │ ├── urecord.c │ ├── urecord.h │ ├── usrloc.c │ ├── utime.c │ └── utime.h │ ├── path │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── path.xml │ │ └── path_admin.xml │ ├── path.c │ ├── path.h │ ├── path_mod.c │ └── path_mod.h │ ├── pdb │ ├── Makefile │ ├── README │ ├── common.h │ ├── doc │ │ ├── Makefile │ │ ├── pdb.xml │ │ └── pdb_admin.xml │ └── pdb.c │ ├── pdt │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pdt.cfg │ │ ├── pdt.xml │ │ ├── pdt_admin.xml │ │ ├── pdt_fifo_add.sh │ │ ├── pdt_fifo_delete.sh │ │ └── pdt_fifo_list.sh │ ├── pdt.c │ ├── pdtree.c │ └── pdtree.h │ ├── peering │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── peering.xml │ │ └── peering_admin.xml │ ├── peering.c │ ├── peering.h │ ├── verify.c │ └── verify.h │ ├── permissions │ ├── Makefile │ ├── README │ ├── address.c │ ├── address.h │ ├── config │ │ ├── permissions.allow │ │ ├── permissions.deny │ │ ├── register.allow │ │ └── register.deny │ ├── doc │ │ ├── Makefile │ │ ├── permissions.xml │ │ └── permissions_admin.xml │ ├── hash.c │ ├── hash.h │ ├── parse_config.c │ ├── parse_config.h │ ├── permissions.c │ ├── permissions.h │ ├── rpc.c │ ├── rpc.h │ ├── rule.c │ ├── rule.h │ ├── trusted.c │ └── trusted.h │ ├── phonenum │ ├── Makefile │ ├── README │ ├── cphonenumber.cpp │ ├── cphonenumber.h │ ├── doc │ │ ├── Makefile │ │ ├── phonenum.xml │ │ └── phonenum_admin.xml │ ├── phonenum_mod.c │ ├── phonenum_pv.c │ └── phonenum_pv.h │ ├── pike │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pike.xml │ │ ├── pike_admin.xml │ │ ├── pike_devel.xml │ │ └── pike_rpc.xml │ ├── ip_tree.c │ ├── ip_tree.h │ ├── pike.c │ ├── pike_funcs.c │ ├── pike_funcs.h │ ├── pike_rpc.c │ ├── pike_rpc.h │ ├── pike_top.c │ ├── pike_top.h │ ├── timer.c │ └── timer.h │ ├── pipelimit │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pipelimit.xml │ │ └── pipelimit_admin.xml │ ├── pipelimit.c │ ├── pl_db.c │ ├── pl_db.h │ ├── pl_ht.c │ ├── pl_ht.h │ ├── pl_statistics.c │ └── pl_statistics.h │ ├── prefix_route │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── prefix_route.xml │ │ ├── prefix_route_extra.xml │ │ ├── prefix_route_functions.xml │ │ ├── prefix_route_params.xml │ │ └── prefix_route_rpc.xml │ ├── pr.h │ ├── pr_rpc.c │ ├── prefix_route.c │ ├── prefix_route.sql │ ├── tree.c │ └── tree.h │ ├── presence │ ├── Makefile │ ├── README │ ├── bind_presence.c │ ├── bind_presence.h │ ├── doc │ │ ├── Makefile │ │ ├── presence.xml │ │ ├── presence_admin.xml │ │ └── presence_devel.xml │ ├── event_list.c │ ├── event_list.h │ ├── hash.c │ ├── hash.h │ ├── notify.c │ ├── notify.h │ ├── presence.c │ ├── presence.h │ ├── presence_dmq.c │ ├── presence_dmq.h │ ├── presentity.c │ ├── presentity.h │ ├── publish.c │ ├── publish.h │ ├── subscribe.c │ ├── subscribe.h │ ├── utils_func.c │ └── utils_func.h │ ├── presence_conference │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_conference.xml │ │ └── presence_conference_admin.xml │ ├── notify_body.c │ ├── notify_body.h │ ├── pidf.c │ ├── pidf.h │ ├── presence_conference.c │ ├── presence_conference.h │ ├── publish.xml │ └── test_framework │ │ ├── client.sh │ │ ├── dereg.sh │ │ ├── functions │ │ ├── notify.sh │ │ ├── publish.sh │ │ ├── register.sh │ │ └── subscribe.sh │ │ ├── presence_tests │ │ ├── clean_subscribers.sh │ │ ├── config.sh │ │ ├── presence_subscribe_suite.sh │ │ ├── send_publish.sh │ │ └── send_subscribe.sh │ │ ├── publish.xml │ │ ├── scen.sh │ │ └── xml │ │ ├── notify.xml │ │ ├── publish.xml │ │ ├── register.xml │ │ └── subscribe.xml │ ├── presence_dialoginfo │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_dialoginfo.xml │ │ └── presence_dialoginfo_admin.xml │ ├── notify_body.c │ ├── notify_body.h │ ├── pidf.c │ ├── pidf.h │ ├── presence_dialoginfo.c │ └── presence_dialoginfo.h │ ├── presence_mwi │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_mwi.xml │ │ └── presence_mwi_admin.xml │ ├── presence_mwi.c │ └── presence_mwi.h │ ├── presence_profile │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_profile.xml │ │ └── presence_profile_admin.xml │ ├── presence_profile.c │ └── presence_profile.h │ ├── presence_reginfo │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_reginfo.xml │ │ └── presence_reginfo_admin.xml │ ├── presence_reginfo.c │ └── presence_reginfo.h │ ├── presence_xml │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── presence_xml.xml │ │ ├── presence_xml_admin.xml │ │ └── presence_xml_devel.xml │ ├── notify_body.c │ ├── notify_body.h │ ├── pidf.c │ ├── pidf.h │ ├── pres_check.c │ ├── pres_check.h │ ├── presence_xml.c │ ├── presence_xml.h │ ├── xcap_auth.c │ └── xcap_auth.h │ ├── print │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ ├── params.xml │ │ └── print.xml │ └── print.c │ ├── print_lib │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ └── print_lib.xml │ └── print_lib.c │ ├── pua │ ├── Makefile │ ├── README │ ├── add_events.c │ ├── add_events.h │ ├── doc │ │ ├── Makefile │ │ ├── pua.xml │ │ ├── pua_admin.xml │ │ └── pua_devel.xml │ ├── event_list.c │ ├── event_list.h │ ├── hash.c │ ├── hash.h │ ├── pidf.c │ ├── pidf.h │ ├── pua.c │ ├── pua.h │ ├── pua_bind.c │ ├── pua_bind.h │ ├── pua_callback.c │ ├── pua_callback.h │ ├── pua_db.c │ ├── pua_db.h │ ├── send_publish.c │ ├── send_publish.h │ ├── send_subscribe.c │ └── send_subscribe.h │ ├── pua_bla │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pua_bla.xml │ │ └── pua_bla_admin.xml │ ├── notify.c │ ├── pua_bla.c │ ├── pua_bla.h │ ├── registrar_cb.c │ └── registrar_cb.h │ ├── pua_dialoginfo │ ├── Makefile │ ├── README │ ├── dialog_publish.c │ ├── doc │ │ ├── Makefile │ │ ├── pua_dialoginfo.xml │ │ └── pua_dialoginfo_admin.xml │ ├── pua_dialoginfo.c │ └── pua_dialoginfo.h │ ├── pua_json │ ├── Makefile │ ├── README │ ├── defs.h │ ├── doc │ │ ├── Makefile │ │ ├── pua_json.xml │ │ └── pua_json_admin.xml │ ├── pua_json_mod.c │ ├── pua_json_mod.h │ ├── pua_json_publish.c │ └── pua_json_publish.h │ ├── pua_reginfo │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pua_reginfo.xml │ │ └── pua_reginfo_admin.xml │ ├── notify.c │ ├── notify.h │ ├── pua_reginfo.c │ ├── pua_reginfo.h │ ├── subscribe.c │ ├── subscribe.h │ ├── usrloc_cb.c │ └── usrloc_cb.h │ ├── pua_rpc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pua_rpc.xml │ │ └── pua_rpc_admin.xml │ └── pua_rpc.c │ ├── pua_usrloc │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── pua_usrloc.xml │ │ └── pua_usrloc_admin.xml │ ├── pua_usrloc.c │ ├── pua_usrloc.h │ └── ul_publish.c │ ├── pua_xmpp │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pua_xmpp.xml │ │ ├── pua_xmpp_admin.xml │ │ └── pua_xmpp_devel.xml │ ├── pidf.c │ ├── pidf.h │ ├── pua_xmpp.c │ ├── pua_xmpp.h │ ├── request_winfo.c │ ├── request_winfo.h │ ├── simple2xmpp.c │ ├── simple2xmpp.h │ ├── xmpp2simple.c │ └── xmpp2simple.h │ ├── pv │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── pv.xml │ │ └── pv_admin.xml │ ├── pv.c │ ├── pv_api.c │ ├── pv_api.h │ ├── pv_branch.c │ ├── pv_branch.h │ ├── pv_core.c │ ├── pv_core.h │ ├── pv_select.c │ ├── pv_select.h │ ├── pv_shv.c │ ├── pv_shv.h │ ├── pv_stats.c │ ├── pv_stats.h │ ├── pv_svar.c │ ├── pv_svar.h │ ├── pv_time.c │ ├── pv_time.h │ ├── pv_trans.c │ ├── pv_trans.h │ ├── pv_xavp.c │ └── pv_xavp.h │ ├── qos │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── qos.xml │ │ ├── qos_admin.xml │ │ └── qos_devel.xml │ ├── qos.c │ ├── qos_cb.c │ ├── qos_cb.h │ ├── qos_ctx_helpers.c │ ├── qos_ctx_helpers.h │ ├── qos_handlers.c │ ├── qos_handlers.h │ └── qos_load.h │ ├── rabbitmq │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── rabbitmq.xml │ │ └── rabbitmq_admin.xml │ ├── rabbitmq.c │ ├── rabbitmq.h │ ├── utils.c │ └── utils.h │ ├── ratelimit │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── ratelimit.xml │ │ └── ratelimit_admin.xml │ ├── ratelimit.c │ ├── rl_statistics.c │ └── rl_statistics.h │ ├── regex │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── regex.xml │ │ └── regex_admin.xml │ └── regex_mod.c │ ├── registrar │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── common.c │ ├── common.h │ ├── config.c │ ├── config.h │ ├── doc │ │ ├── Makefile │ │ ├── registrar.xml │ │ ├── registrar_admin.xml │ │ └── registrar_faq.xml │ ├── lookup.c │ ├── lookup.h │ ├── path.c │ ├── path.h │ ├── registrar.c │ ├── registrar.h │ ├── regpv.c │ ├── regpv.h │ ├── regtime.c │ ├── regtime.h │ ├── reply.c │ ├── reply.h │ ├── rerrno.c │ ├── rerrno.h │ ├── save.c │ ├── save.h │ ├── sip_msg.c │ └── sip_msg.h │ ├── rls │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── rls.xml │ │ ├── rls_admin.xml │ │ └── rls_devel.xml │ ├── list.h │ ├── notify.c │ ├── notify.h │ ├── resource_notify.c │ ├── resource_notify.h │ ├── rls.c │ ├── rls.h │ ├── rls_db.c │ ├── subscribe.c │ ├── subscribe.h │ ├── utils.c │ └── utils.h │ ├── rr │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── rr.xml │ │ ├── rr_admin.xml │ │ └── rr_devel.xml │ ├── loose.c │ ├── loose.h │ ├── record.c │ ├── record.h │ ├── rr_cb.c │ ├── rr_cb.h │ ├── rr_mod.c │ └── rr_mod.h │ ├── rtimer │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── rtimer.xml │ │ └── rtimer_admin.xml │ └── rtimer_mod.c │ ├── rtjson │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── rtjson.xml │ │ └── rtjson_admin.xml │ ├── rtjson_mod.c │ ├── rtjson_routing.c │ └── rtjson_routing.h │ ├── rtp_media_server │ ├── Makefile │ ├── README │ ├── config_example │ │ └── kamailio.cfg │ ├── doc │ │ ├── Makefile │ │ ├── design_notes.txt │ │ ├── rtp_media_server.xml │ │ └── rtp_media_server_admin.xml │ ├── docker │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── rtp_media_server.sh │ ├── install_bc.sh │ ├── rms_dialog_info.c │ ├── rms_dialog_info.h │ ├── rms_media.c │ ├── rms_media.h │ ├── rms_sdp.c │ ├── rms_sdp.h │ ├── rms_util.h │ ├── rtp_media_server.c │ └── rtp_media_server.h │ ├── rtpengine │ ├── Makefile │ ├── README │ ├── bencode.c │ ├── bencode.h │ ├── compat.h │ ├── config.c │ ├── config.h │ ├── doc │ │ ├── Makefile │ │ ├── rtpengine.xml │ │ ├── rtpengine_admin.xml │ │ └── rtpengine_faq.xml │ ├── rtpengine.c │ ├── rtpengine.h │ ├── rtpengine_db.c │ ├── rtpengine_funcs.c │ ├── rtpengine_funcs.h │ ├── rtpengine_hash.c │ └── rtpengine_hash.h │ ├── rtpproxy │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── rtpproxy.xml │ │ ├── rtpproxy_admin.xml │ │ └── rtpproxy_faq.xml │ ├── examples │ │ ├── 4to6.cfg │ │ └── alg.cfg │ ├── rtpproxy.c │ ├── rtpproxy.h │ ├── rtpproxy_db.c │ ├── rtpproxy_funcs.c │ ├── rtpproxy_funcs.h │ ├── rtpproxy_stream.c │ ├── rtpproxy_stream.h │ └── test │ │ ├── exec_pjsua.txt │ │ ├── exec_rtpproxy.txt │ │ ├── kamailio.cfg │ │ └── rtpproxy.patch │ ├── sanity │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── sanity.xml │ │ └── sanity_admin.xml │ ├── sanity.c │ ├── sanity.h │ ├── sanity_mod.c │ └── sanity_mod.h │ ├── sca │ ├── LICENSE │ ├── Makefile │ ├── NOTES │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sca.cfg │ │ ├── sca.xml │ │ └── sca_admin.xml │ ├── sca.c │ ├── sca.h │ ├── sca_appearance.c │ ├── sca_appearance.h │ ├── sca_call_info.c │ ├── sca_call_info.h │ ├── sca_common.h │ ├── sca_db.c │ ├── sca_db.h │ ├── sca_dialog.c │ ├── sca_dialog.h │ ├── sca_event.c │ ├── sca_event.h │ ├── sca_hash.c │ ├── sca_hash.h │ ├── sca_notify.c │ ├── sca_notify.h │ ├── sca_reply.c │ ├── sca_reply.h │ ├── sca_rpc.c │ ├── sca_rpc.h │ ├── sca_subscribe.c │ ├── sca_subscribe.h │ ├── sca_util.c │ └── sca_util.h │ ├── sctp │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sctp.xml │ │ └── sctp_admin.xml │ ├── sctp_ev.h │ ├── sctp_mod.c │ ├── sctp_options.c │ ├── sctp_options.h │ ├── sctp_rpc.c │ ├── sctp_rpc.h │ ├── sctp_server.c │ ├── sctp_server.h │ ├── sctp_sockopts.h │ ├── sctp_stats.c │ └── sctp_stats.h │ ├── sdpops │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── sdpops.xml │ │ └── sdpops_admin.xml │ ├── sdpops_data.c │ ├── sdpops_data.h │ └── sdpops_mod.c │ ├── seas │ ├── Makefile │ ├── README │ ├── cluster.c │ ├── cluster.h │ ├── doc │ │ ├── Makefile │ │ ├── images │ │ │ ├── image005.gif │ │ │ ├── image007.gif │ │ │ ├── image010.gif │ │ │ ├── image016.gif │ │ │ ├── image018.gif │ │ │ ├── image020.gif │ │ │ ├── image021.gif │ │ │ ├── image024.png │ │ │ ├── image025.gif │ │ │ ├── image026.png │ │ │ ├── image029.gif │ │ │ ├── image031.gif │ │ │ ├── image032.png │ │ │ ├── image034.png │ │ │ ├── image037.gif │ │ │ ├── image038.png │ │ │ ├── image041.gif │ │ │ ├── image043.gif │ │ │ ├── image044.gif │ │ │ ├── image045.png │ │ │ ├── image052.gif │ │ │ ├── image054.gif │ │ │ ├── image056.gif │ │ │ ├── image058.gif │ │ │ ├── image059.gif │ │ │ ├── image060.gif │ │ │ ├── image062.gif │ │ │ ├── image064.gif │ │ │ ├── image065.gif │ │ │ ├── image066.gif │ │ │ ├── image067.gif │ │ │ ├── image068.gif │ │ │ ├── image069.gif │ │ │ ├── image100.gif │ │ │ ├── image101.gif │ │ │ ├── image102.gif │ │ │ ├── image103.gif │ │ │ ├── image104.gif │ │ │ ├── image105.gif │ │ │ ├── image106.gif │ │ │ ├── image107.gif │ │ │ ├── image108.gif │ │ │ ├── image109.gif │ │ │ ├── image110.gif │ │ │ └── image111.gif │ │ ├── seas.xml │ │ ├── seas_admin.xml │ │ ├── seas_devel.xml │ │ └── xml2sgml.sh │ ├── encode_allow.c │ ├── encode_allow.h │ ├── encode_contact.c │ ├── encode_contact.h │ ├── encode_content_disposition.c │ ├── encode_content_disposition.h │ ├── encode_content_length.c │ ├── encode_content_length.h │ ├── encode_content_type.c │ ├── encode_content_type.h │ ├── encode_cseq.c │ ├── encode_cseq.h │ ├── encode_digest.c │ ├── encode_digest.h │ ├── encode_expires.c │ ├── encode_expires.h │ ├── encode_header.c │ ├── encode_header.h │ ├── encode_msg.c │ ├── encode_msg.h │ ├── encode_parameters.c │ ├── encode_parameters.h │ ├── encode_route.c │ ├── encode_route.h │ ├── encode_to_body.c │ ├── encode_to_body.h │ ├── encode_uri.c │ ├── encode_uri.h │ ├── encode_via.c │ ├── encode_via.h │ ├── event_dispatcher.c │ ├── event_dispatcher.h │ ├── ha.c │ ├── ha.h │ ├── seas.c │ ├── seas.h │ ├── seas_action.c │ ├── seas_action.h │ ├── seas_error.h │ ├── statistics.c │ ├── statistics.h │ ├── utils.c │ ├── utils.h │ └── xaddress.h │ ├── secfilter │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── secfilter.xml │ │ └── secfilter_admin.xml │ ├── secfilter.c │ ├── secfilter.h │ ├── secfilter_db.c │ ├── secfilter_hdr.c │ └── secfilter_rpc.c │ ├── sipcapture │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sipcapture.xml │ │ └── sipcapture_admin.xml │ ├── examples │ │ └── kamailio.cfg │ ├── hash_mode.c │ ├── hash_mode.h │ ├── hep.c │ ├── hep.h │ ├── sipcapture.c │ ├── sipcapture.h │ └── sql │ │ ├── create_sipcapture_postgress.sql │ │ ├── homer_databases.sql │ │ ├── homer_user.sql │ │ ├── schema_configuration.sql │ │ ├── schema_data.sql │ │ └── schema_statistic.sql │ ├── sipdump │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sipdump.xml │ │ └── sipdump_admin.xml │ ├── sipdump_mod.c │ ├── sipdump_write.c │ └── sipdump_write.h │ ├── sipjson │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sipjson.xml │ │ └── sipjson_admin.xml │ └── sipjson_mod.c │ ├── sipt │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sipt.xml │ │ └── sipt_admin.xml │ ├── sdp_mangle.c │ ├── sdp_mangle.h │ ├── sipt.c │ ├── ss7.h │ └── ss7_parser.c │ ├── siptrace │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── siptrace.xml │ │ └── siptrace_admin.xml │ ├── siptrace.c │ ├── siptrace_data.h │ ├── siptrace_hep.c │ ├── siptrace_hep.h │ ├── siptrace_send.c │ └── siptrace_send.h │ ├── siputils │ ├── Makefile │ ├── README │ ├── chargingvector.c │ ├── chargingvector.h │ ├── checks.c │ ├── checks.h │ ├── config.c │ ├── config.h │ ├── contact_ops.c │ ├── contact_ops.h │ ├── doc │ │ ├── Makefile │ │ ├── siputils.xml │ │ └── siputils_admin.xml │ ├── options.c │ ├── options.h │ ├── ring.c │ ├── ring.h │ ├── rpid.c │ ├── rpid.h │ ├── sipops.c │ ├── sipops.h │ ├── siputils.c │ ├── siputils.h │ ├── utils.c │ └── utils.h │ ├── sl │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sl.xml │ │ ├── sl_functions.xml │ │ ├── sl_params.xml │ │ └── sl_stats.xml │ ├── sl.c │ ├── sl.h │ ├── sl_funcs.c │ ├── sl_funcs.h │ ├── sl_stats.c │ └── sl_stats.h │ ├── sms │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ ├── params.xml │ │ └── sms.xml │ ├── etc │ │ └── ser.cfg │ ├── libsms_charset.c │ ├── libsms_charset.h │ ├── libsms_getsms.c │ ├── libsms_modem.c │ ├── libsms_modem.h │ ├── libsms_putsms.c │ ├── libsms_sms.h │ ├── sms.c │ ├── sms_funcs.c │ ├── sms_funcs.h │ ├── sms_report.c │ └── sms_report.h │ ├── smsops │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── smsops.xml │ │ └── smsops_admin.xml │ ├── examples │ │ ├── kamailio.cfg │ │ └── smsc.cfg │ ├── smsops.c │ ├── smsops_impl.c │ └── smsops_impl.h │ ├── snmpstats │ ├── Makefile │ ├── README │ ├── alarm_checks.c │ ├── alarm_checks.h │ ├── doc │ │ ├── Makefile │ │ ├── snmpstats.xml │ │ ├── snmpstats_admin.xml │ │ └── snmpstats_faq.xml │ ├── hashTable.c │ ├── hashTable.h │ ├── interprocess_buffer.c │ ├── interprocess_buffer.h │ ├── kamailioNet.c │ ├── kamailioNet.h │ ├── kamailioNetConfig.c │ ├── kamailioNetConfig.h │ ├── kamailioServer.c │ ├── kamailioServer.h │ ├── mibs │ │ ├── KAMAILIO-MIB │ │ ├── KAMAILIO-REG-MIB │ │ ├── KAMAILIO-SIP-COMMON-MIB │ │ ├── KAMAILIO-SIP-SERVER-MIB │ │ └── KAMAILIO-TC │ ├── snmpMIBNotifications.c │ ├── snmpMIBNotifications.h │ ├── snmpObjects.c │ ├── snmpObjects.h │ ├── snmpSIPCommonObjects.c │ ├── snmpSIPCommonObjects.h │ ├── snmpSIPContactTable.c │ ├── snmpSIPContactTable.h │ ├── snmpSIPMethodSupportedTable.c │ ├── snmpSIPMethodSupportedTable.h │ ├── snmpSIPPortTable.c │ ├── snmpSIPPortTable.h │ ├── snmpSIPRegUserLookupTable.c │ ├── snmpSIPRegUserLookupTable.h │ ├── snmpSIPRegUserTable.c │ ├── snmpSIPRegUserTable.h │ ├── snmpSIPServerObjects.c │ ├── snmpSIPServerObjects.h │ ├── snmpSIPStatusCodesTable.c │ ├── snmpSIPStatusCodesTable.h │ ├── snmp_statistics.c │ ├── snmp_statistics.h │ ├── snmpstats.c │ ├── snmpstats.h │ ├── snmpstats_globals.h │ ├── sub_agent.c │ ├── sub_agent.h │ ├── utilities.c │ └── utilities.h │ ├── speeddial │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── speeddial.cfg │ │ ├── speeddial.xml │ │ └── speeddial_admin.xml │ ├── sdlookup.c │ ├── sdlookup.h │ ├── speeddial.c │ └── speeddial.h │ ├── sqlops │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sqlops.xml │ │ └── sqlops_admin.xml │ ├── sql_api.c │ ├── sql_api.h │ ├── sql_trans.c │ ├── sql_trans.h │ ├── sql_var.c │ ├── sql_var.h │ └── sqlops.c │ ├── ss7ops │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── ss7ops.xml │ │ └── ss7ops_admin.xml │ ├── isup_generated.c │ ├── isup_generated.h │ ├── isup_parsed.c │ ├── isup_parsed.h │ └── ss7ops_mod.c │ ├── sst │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── sst.xml │ │ └── sst_admin.xml │ ├── parse_sst.c │ ├── parse_sst.h │ ├── sst.c │ ├── sst_handlers.c │ ├── sst_handlers.h │ ├── sst_rpc.c │ └── sst_rpc.h │ ├── statistics │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── statistics.xml │ │ └── statistics_admin.xml │ ├── statistics.c │ ├── stats_funcs.c │ └── stats_funcs.h │ ├── statsc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── statsc.xml │ │ └── statsc_admin.xml │ └── statsc_mod.c │ ├── statsd │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── statsd.xml │ │ └── statsd_admin.xml │ ├── lib_statsd.c │ ├── lib_statsd.h │ └── statsd.c │ ├── stun │ ├── Makefile │ ├── README │ ├── config.c │ ├── config.h │ ├── doc │ │ ├── Makefile │ │ ├── stun.xml │ │ └── stun_admin.xml │ ├── kam_stun.c │ ├── kam_stun.h │ └── stun_mod.c │ ├── tcpops │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── eventroutes.xml │ │ ├── functions.xml │ │ ├── params.xml │ │ └── tcpops.xml │ ├── tcpops.c │ ├── tcpops.h │ └── tcpops_mod.c │ ├── textops │ ├── Makefile │ ├── README │ ├── api.c │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── textops.xml │ │ ├── textops_admin.xml │ │ └── textops_devel.xml │ ├── textops.c │ ├── textops.h │ ├── txt_var.c │ └── txt_var.h │ ├── textopsx │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ ├── selects.xml │ │ └── textopsx.xml │ └── textopsx.c │ ├── timer │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ └── timer.xml │ └── timer.c │ ├── tls │ ├── Makefile │ ├── README │ ├── README.TLS │ ├── doc │ │ ├── Makefile │ │ ├── certs_howto.xml │ │ ├── functions.xml │ │ ├── history.xml │ │ ├── hsm_howto.xml │ │ ├── params.xml │ │ ├── rpc.xml │ │ └── tls.xml │ ├── fixed_c_zlib.h │ ├── fortuna │ │ ├── Makefile │ │ ├── fortuna.c │ │ ├── fortuna.h │ │ ├── random.c │ │ ├── random.h │ │ ├── rijndael.c │ │ ├── rijndael.h │ │ ├── rijndael.tbl │ │ ├── sha256.c │ │ └── sha256.h │ ├── sbufq.h │ ├── tls.cfg │ ├── tls_bio.c │ ├── tls_bio.h │ ├── tls_cert.sh │ ├── tls_cfg.c │ ├── tls_cfg.h │ ├── tls_config.c │ ├── tls_config.h │ ├── tls_ct_q.h │ ├── tls_ct_wrq.c │ ├── tls_ct_wrq.h │ ├── tls_domain.c │ ├── tls_domain.h │ ├── tls_dump_vf.c │ ├── tls_dump_vf.h │ ├── tls_init.c │ ├── tls_init.h │ ├── tls_locking.c │ ├── tls_locking.h │ ├── tls_map.c │ ├── tls_map.h │ ├── tls_mod.c │ ├── tls_mod.h │ ├── tls_rand.c │ ├── tls_rand.h │ ├── tls_rpc.c │ ├── tls_rpc.h │ ├── tls_select.c │ ├── tls_select.h │ ├── tls_server.c │ ├── tls_server.h │ ├── tls_util.c │ ├── tls_util.h │ ├── tls_verify.c │ ├── tls_verify.h │ ├── todo.txt │ └── utils │ │ └── openssl_mutex_shared │ │ ├── Makefile │ │ ├── README.md │ │ └── openssl_mutex_shared.c │ ├── tm │ ├── Makefile │ ├── README │ ├── callid.c │ ├── callid.h │ ├── config.c │ ├── config.h │ ├── dlg.c │ ├── dlg.h │ ├── doc │ │ ├── Makefile │ │ ├── api.xml │ │ ├── event_routes.xml │ │ ├── functions.xml │ │ ├── params.xml │ │ ├── rpc.xml │ │ └── tm.xml │ ├── h_table.c │ ├── h_table.h │ ├── lock.c │ ├── lock.h │ ├── lw_parser.c │ ├── lw_parser.h │ ├── rpc_uac.c │ ├── rpc_uac.h │ ├── select.c │ ├── select.h │ ├── sip_msg.c │ ├── sip_msg.h │ ├── t_append_branches.c │ ├── t_append_branches.h │ ├── t_cancel.c │ ├── t_cancel.h │ ├── t_fifo.c │ ├── t_fifo.h │ ├── t_funcs.c │ ├── t_funcs.h │ ├── t_fwd.c │ ├── t_fwd.h │ ├── t_hooks.c │ ├── t_hooks.h │ ├── t_lookup.c │ ├── t_lookup.h │ ├── t_msgbuilder.c │ ├── t_msgbuilder.h │ ├── t_reply.c │ ├── t_reply.h │ ├── t_serial.c │ ├── t_serial.h │ ├── t_stats.c │ ├── t_stats.h │ ├── t_suspend.c │ ├── t_suspend.h │ ├── test.c │ ├── test │ │ └── kill_sem.sh │ ├── timer.c │ ├── timer.h │ ├── tm.c │ ├── tm_load.c │ ├── tm_load.h │ ├── uac.c │ ├── uac.h │ └── ut.h │ ├── tmrec │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── tmrec.xml │ │ └── tmrec_admin.xml │ ├── period.c │ ├── period.h │ └── tmrec_mod.c │ ├── tmx │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── tmx.xml │ │ └── tmx_admin.xml │ ├── t_var.c │ ├── t_var.h │ ├── tmx_mod.c │ ├── tmx_mod.h │ ├── tmx_pretran.c │ └── tmx_pretran.h │ ├── topoh │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── topoh.xml │ │ └── topoh_admin.xml │ ├── th_mask.c │ ├── th_mask.h │ ├── th_msg.c │ ├── th_msg.h │ └── topoh_mod.c │ ├── topos │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── topos.xml │ │ └── topos_admin.xml │ ├── topos_mod.c │ ├── tps_msg.c │ ├── tps_msg.h │ ├── tps_storage.c │ └── tps_storage.h │ ├── topos_redis │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── topos_redis.xml │ │ └── topos_redis_admin.xml │ ├── topos_redis_mod.c │ ├── topos_redis_storage.c │ └── topos_redis_storage.h │ ├── tsilo │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── tsilo.xml │ │ └── tsilo_admin.xml │ ├── ts_append.c │ ├── ts_append.h │ ├── ts_handlers.c │ ├── ts_handlers.h │ ├── ts_hash.c │ ├── ts_hash.h │ ├── ts_rpc.c │ ├── ts_rpc.h │ ├── ts_store.c │ ├── ts_store.h │ ├── tsilo.c │ └── tsilo.h │ ├── uac │ ├── Makefile │ ├── README │ ├── api.h │ ├── auth.c │ ├── auth.h │ ├── auth_alg.c │ ├── auth_alg.h │ ├── auth_hdr.c │ ├── auth_hdr.h │ ├── doc │ │ ├── Makefile │ │ ├── uac.xml │ │ └── uac_admin.xml │ ├── replace.c │ ├── replace.h │ ├── uac.c │ ├── uac_reg.c │ ├── uac_reg.h │ ├── uac_send.c │ └── uac_send.h │ ├── uac_redirect │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── uac_redirect.xml │ │ └── uac_redirect_admin.xml │ ├── rd_filter.c │ ├── rd_filter.h │ ├── rd_funcs.c │ ├── rd_funcs.h │ └── uac_redirect.c │ ├── uid_auth_db │ ├── .cvsignore │ ├── Makefile │ ├── README │ ├── aaa_avps.h │ ├── auth_db.xml │ ├── authorize.c │ ├── authorize.h │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ ├── params.xml │ │ └── uid_auth_db.xml │ ├── uid_auth_db_mod.c │ └── uid_auth_db_mod.h │ ├── uid_avp_db │ ├── Makefile │ ├── README │ ├── avp_db.xml │ ├── doc │ │ ├── Makefile │ │ ├── avp_dialogs.cfg │ │ ├── fifo.xml │ │ ├── functions.xml │ │ ├── params.xml │ │ └── uid_avp_db.xml │ ├── extra_attrs.c │ ├── extra_attrs.h │ ├── uid_avp_db.c │ └── uid_avp_db.h │ ├── uid_domain │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── domain_api.xml │ │ ├── fifo.xml │ │ ├── functions.xml │ │ ├── params.xml │ │ └── uid_domain.xml │ ├── domain.c │ ├── domain.h │ ├── domain_api.c │ ├── domain_api.h │ ├── domain_rpc.c │ ├── domain_rpc.h │ ├── hash.c │ ├── hash.h │ ├── ser-domain.cfg │ ├── uid_domain_mod.c │ └── uid_domain_mod.h │ ├── uid_gflags │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── fifo.xml │ │ ├── functions.xml │ │ ├── params.xml │ │ ├── uid_gflags.xml │ │ └── xmlrpc.xml │ └── uid_gflags.c │ ├── uid_uri_db │ ├── Makefile │ ├── README │ ├── checks.c │ ├── checks.h │ ├── doc │ │ ├── Makefile │ │ ├── functions.xml │ │ ├── params.xml │ │ └── uid_uri_db.xml │ ├── uid_uri_db_mod.c │ └── uid_uri_db_mod.h │ ├── uri_db │ ├── Makefile │ ├── README │ ├── checks.c │ ├── checks.h │ ├── doc │ │ ├── Makefile │ │ ├── uri_db.xml │ │ └── uri_db_admin.xml │ ├── uri_db.c │ └── uri_db.h │ ├── userblacklist │ ├── Makefile │ ├── README │ ├── db.c │ ├── db.h │ ├── db_userblacklist.c │ ├── db_userblacklist.h │ ├── doc │ │ ├── Makefile │ │ ├── userblacklist.xml │ │ └── userblacklist_admin.xml │ └── userblacklist.c │ ├── usrloc │ ├── Makefile │ ├── README │ ├── dlist.c │ ├── dlist.h │ ├── doc │ │ ├── Makefile │ │ ├── usrloc.xml │ │ ├── usrloc_admin.xml │ │ └── usrloc_devel.xml │ ├── hslot.c │ ├── hslot.h │ ├── ucontact.c │ ├── ucontact.h │ ├── udomain.c │ ├── udomain.h │ ├── ul_callback.c │ ├── ul_callback.h │ ├── ul_rpc.c │ ├── ul_rpc.h │ ├── urecord.c │ ├── urecord.h │ ├── usrloc.c │ ├── usrloc.h │ ├── usrloc_mod.c │ ├── usrloc_mod.h │ ├── utime.c │ └── utime.h │ ├── utils │ ├── Makefile │ ├── README │ ├── conf.c │ ├── conf.h │ ├── doc │ │ ├── Makefile │ │ ├── utils.xml │ │ └── utils_admin.xml │ ├── pidf.c │ ├── pidf.h │ ├── utils.c │ ├── utils.h │ ├── xcap_auth.c │ └── xcap_auth.h │ ├── uuid │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── uuid.xml │ │ └── uuid_admin.xml │ └── uuid_mod.c │ ├── websocket │ ├── Makefile │ ├── README │ ├── config.c │ ├── config.h │ ├── doc │ │ ├── Makefile │ │ ├── websocket.xml │ │ └── websocket_admin.xml │ ├── utf8_decode.h │ ├── websocket.c │ ├── websocket.h │ ├── ws_conn.c │ ├── ws_conn.h │ ├── ws_frame.c │ ├── ws_frame.h │ ├── ws_handshake.c │ └── ws_handshake.h │ ├── xcap_client │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xcap_client.xml │ │ ├── xcap_client_admin.xml │ │ └── xcap_client_devel.xml │ ├── xcap_callbacks.c │ ├── xcap_callbacks.h │ ├── xcap_client.c │ ├── xcap_client.h │ ├── xcap_functions.c │ └── xcap_functions.h │ ├── xcap_server │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xcap_server.xml │ │ └── xcap_server_admin.xml │ ├── xcap_misc.c │ ├── xcap_misc.h │ └── xcap_server.c │ ├── xhttp │ ├── Makefile │ ├── README │ ├── api.h │ ├── doc │ │ ├── Makefile │ │ ├── xhttp.xml │ │ └── xhttp_admin.xml │ ├── xhttp_mod.c │ ├── xhttp_trans.c │ └── xhttp_trans.h │ ├── xhttp_pi │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xhttp_pi.xml │ │ └── xhttp_pi_admin.xml │ ├── http_db_handler.c │ ├── http_db_handler.h │ ├── xhttp_pi.c │ ├── xhttp_pi.h │ ├── xhttp_pi_fnc.c │ └── xhttp_pi_fnc.h │ ├── xhttp_prom │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xhttp_prom.xml │ │ └── xhttp_prom_admin.xml │ ├── prom.c │ ├── prom.h │ ├── prom_metric.c │ ├── prom_metric.h │ ├── xhttp_prom.c │ └── xhttp_prom.h │ ├── xhttp_rpc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xhttp_rpc.xml │ │ └── xhttp_rpc_admin.xml │ ├── xhttp_rpc.c │ ├── xhttp_rpc.h │ ├── xhttp_rpc_fnc.c │ └── xhttp_rpc_fnc.h │ ├── xlog │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xlog.xml │ │ └── xlog_admin.xml │ ├── xl_lib.c │ ├── xl_lib.h │ └── xlog.c │ ├── xmlops │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xmlops.xml │ │ └── xmlops_admin.xml │ ├── pv_xml.c │ ├── pv_xml.h │ └── xmlops_mod.c │ ├── xmlrpc │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── xmlrpc.xml │ │ ├── xmlrpc_admin.xml │ │ ├── xmlrpc_example.dia │ │ └── xmlrpc_example.png │ ├── examples │ │ ├── xmlrpc_test.pl │ │ ├── xmlrpc_test.py │ │ └── xmlrpc_test2.py │ ├── http.c │ ├── http.h │ ├── xmlrpc.c │ └── xmlrpc.h │ ├── xmpp │ ├── Makefile │ ├── README │ ├── doc │ │ ├── Makefile │ │ ├── openser-xmpp.cfg │ │ ├── xmpp.xml │ │ └── xmpp_admin.xml │ ├── network.c │ ├── network.h │ ├── sha.c │ ├── util.c │ ├── xmpp.c │ ├── xmpp.h │ ├── xmpp_api.c │ ├── xmpp_api.h │ ├── xmpp_component.c │ ├── xmpp_server.c │ ├── xode.c │ ├── xode.h │ ├── xode_from.c │ ├── xode_str.c │ ├── xpool.c │ ├── xsnprintf.c │ └── xstream.c │ └── xprint │ ├── Makefile │ ├── README │ ├── doc │ ├── Makefile │ ├── api.xml │ ├── functions.xml │ ├── params.xml │ └── xprint.xml │ ├── xp_lib.c │ ├── xp_lib.h │ └── xprint.c ├── test ├── README.md ├── misc │ ├── cfg │ │ ├── acc-test.cfg │ │ ├── bad_eof.cfg │ │ ├── centauri.cfg │ │ ├── echo.cfg │ │ ├── flood.cfg │ │ ├── gen.cfg │ │ ├── mobile61.cfg │ │ ├── nc.cfg │ │ ├── ser.cfg │ │ ├── sf.cfg │ │ ├── stateless.cfg │ │ ├── stress.cfg │ │ ├── struas.cfg │ │ ├── t_debug2.cfg │ │ ├── t_debug3.cfg │ │ ├── tcp.cfg │ │ ├── tcp_tunnel1.cfg │ │ ├── tcp_tunnel2.cfg │ │ ├── td.cfg │ │ ├── test-throughput.cfg │ │ ├── test.cfg │ │ ├── test1.cfg │ │ ├── test2.cfg │ │ ├── test3.cfg │ │ ├── th-uri-2.cfg │ │ ├── th-uri-8.cfg │ │ ├── th-uri-fast.cfg │ │ ├── th-uri.cfg │ │ ├── tp.cfg │ │ ├── tx.cfg │ │ ├── use_jab.cfg │ │ ├── xx.cfg │ │ └── xy.cfg │ ├── code │ │ ├── atomic_test.c │ │ ├── atomic_test2.c │ │ ├── auto.c │ │ ├── basex.c │ │ ├── bit_scan_test.c │ │ ├── dns_query.c │ │ ├── endian_test.c │ │ ├── gethostbyaddr.c │ │ ├── gethostbyname.c │ │ ├── ifls.c │ │ ├── lock_test.c │ │ ├── locking │ │ │ ├── Makefile │ │ │ ├── locking_test.c │ │ │ └── test_results.txt │ │ ├── mips_lock.c │ │ ├── p_uri.c │ │ ├── parse_to_body.c │ │ ├── profile.h │ │ ├── re_test.c │ │ ├── resolver_test.c │ │ ├── shoot.c │ │ ├── shoot2.c │ │ ├── sock_conn.c │ │ ├── sock_disc.c │ │ ├── test.c │ │ ├── udp.c │ │ ├── udp_flood_disc.c │ │ ├── udp_test_proxy.c │ │ └── via_parse.c │ ├── extra │ │ ├── basex.txt │ │ ├── bt.gdb │ │ ├── file_copyright.txt │ │ ├── gcc_version.sh │ │ ├── gcc_version_test.sh │ │ ├── gcc_versions.txt │ │ ├── gplall.sh │ │ ├── gplize.awk │ │ ├── module_compile_status.txt │ │ ├── perf.txt │ │ ├── resolver.txt │ │ └── transaction.fifo │ └── sip │ │ ├── bad_uri.sip │ │ ├── bad_via1.sip │ │ ├── bad_via2.sip │ │ ├── bad_via3.sip │ │ ├── bc2.sip │ │ ├── bye00.sip │ │ ├── bye_chris.sip │ │ ├── dns.sip │ │ ├── inv_srv.sip │ │ ├── invite00.sip │ │ ├── invite01.sip │ │ ├── invite02.sip │ │ ├── invite03.sip │ │ ├── invite04.sip │ │ ├── invite05.sip │ │ ├── invite1.sip │ │ ├── invite3-callid.sip │ │ ├── invite4-cseq.sip │ │ ├── invite5-callid.sip │ │ ├── invite6-badbranch-via.sip │ │ ├── long.sip │ │ ├── message.sip │ │ ├── message02.sip │ │ ├── message03.sip │ │ ├── ms-invite-00-rpl.sip │ │ ├── ms-invite-00.sip │ │ ├── ms-invite-01-rpl.sip │ │ ├── msbye.sip │ │ ├── nmr.sip │ │ ├── no_eom_reply.sip │ │ ├── pingtel.sip │ │ ├── register.sip │ │ ├── register02.sip │ │ ├── register03.sip │ │ ├── register04.sip │ │ ├── repl1.sip │ │ ├── req-test1.sip │ │ ├── req-tm1.sip │ │ ├── req1.sip │ │ ├── req2.sip │ │ ├── route.sip │ │ ├── rport.sip │ │ ├── sg.sip │ │ ├── short_nonce.sip │ │ └── short_reply.sip ├── mkinclude │ ├── findkampath.sh │ ├── ipaddr.mak │ ├── kambin.mak │ ├── kamdefault.mak │ └── kamversion.mak ├── mod_httpapitest │ ├── Makefile │ ├── httpapitest.c │ └── test │ │ ├── Makefile │ │ ├── curlapi.cfg │ │ └── test.log ├── travis │ ├── README.md │ ├── build_deps.sh │ ├── build_travis.sh │ └── databases_travis.sh └── unit │ ├── 1.sh │ ├── 10.sh │ ├── 11.cfg │ ├── 11.sh │ ├── 12.cfg │ ├── 12.sh │ ├── 13.cfg │ ├── 13.sh │ ├── 14.cfg │ ├── 14.sh │ ├── 15.sh │ ├── 16.sh │ ├── 17.sh │ ├── 18.sh │ ├── 19.cfg │ ├── 19.sh │ ├── 2.cfg │ ├── 2.sh │ ├── 20.cfg │ ├── 20.sh │ ├── 21.cfg │ ├── 21.sh │ ├── 22.cfg │ ├── 22.sh │ ├── 23.sh │ ├── 24.sh │ ├── 25.cfg │ ├── 25.sh │ ├── 26.cfg │ ├── 26.sh │ ├── 27.sh │ ├── 28.cfg │ ├── 28.sh │ ├── 29.sh │ ├── 3.sh │ ├── 30.cfg │ ├── 30.sh │ ├── 31.sh │ ├── 32.sh │ ├── 33.cfg │ ├── 33.sh │ ├── 34.cfg │ ├── 34.sh │ ├── 35.cfg │ ├── 35.sh │ ├── 36.sh │ ├── 37.sh │ ├── 38.sh │ ├── 39.sh │ ├── 4.sh │ ├── 40.cfg │ ├── 40.sh │ ├── 41.cfg │ ├── 41.sh │ ├── 42.sh │ ├── 43.sh │ ├── 44.sh │ ├── 45.cfg │ ├── 45.sh │ ├── 46.sh │ ├── 5.cfg │ ├── 5.sh │ ├── 50.cfg │ ├── 50.sh │ ├── 6.sh │ ├── 60-message-sdp0.sip │ ├── 60-message-sdp1.sip │ ├── 60-message-sdp2.sip │ ├── 60-message-sdp3.sip │ ├── 60-message-sdp4.sip │ ├── 60-message-sdp5.sip │ ├── 60-message-sdp6.sip │ ├── 60-message-sdp7.sip │ ├── 60-message-sdp8.sip │ ├── 60-message-sdp9.sip │ ├── 60.cfg │ ├── 60.sh │ ├── 61-message-sdp.sip │ ├── 61.cfg │ ├── 61.sh │ ├── 7.cfg │ ├── 7.sh │ ├── 8.sh │ ├── 9.sh │ ├── Makefile │ ├── README │ ├── carrierroute-2.cfg │ ├── carrierroute.cfg │ ├── cpl_ignore.xml │ ├── cpl_test.xml │ ├── failure_route.xml │ ├── include │ ├── common │ ├── database │ ├── database.sh │ ├── require │ └── require.sh │ ├── inv_auth.xml │ ├── invite.sip │ ├── presence.cfg │ ├── publish.csv │ ├── publish_scenario.xml │ ├── reg_auth.xml │ ├── register.sip │ ├── route-empty.cfg │ ├── subscribe_notify.csv │ ├── subscribe_notify_scenario.xml │ └── unregister.sip └── utils ├── README-UTILS ├── db_berkeley ├── Makefile ├── kambdb_recover.c └── kambdb_recover.h ├── db_oracle ├── Makefile ├── getres.c ├── orasel.c ├── orasel.h ├── outres.c ├── selcon.c └── util.c ├── kamcmd ├── EXAMPLES ├── Makefile ├── README ├── TODO ├── kamcmd.8 ├── kamcmd.c ├── license.h ├── parse_listen_id.c └── parse_listen_id.h ├── kamctl ├── Makefile ├── README ├── db_berkeley │ └── kamailio │ │ ├── acc │ │ ├── acc_cdrs │ │ ├── active_watchers │ │ ├── address │ │ ├── aliases │ │ ├── carrier_name │ │ ├── carrierfailureroute │ │ ├── carrierroute │ │ ├── cpl │ │ ├── dbaliases │ │ ├── dialog │ │ ├── dialog_vars │ │ ├── dialplan │ │ ├── dispatcher │ │ ├── domain │ │ ├── domain_attrs │ │ ├── domain_name │ │ ├── domainpolicy │ │ ├── dr_gateways │ │ ├── dr_groups │ │ ├── dr_gw_lists │ │ ├── dr_rules │ │ ├── globalblacklist │ │ ├── grp │ │ ├── htable │ │ ├── imc_members │ │ ├── imc_rooms │ │ ├── lcr_gw │ │ ├── lcr_rule │ │ ├── lcr_rule_target │ │ ├── location │ │ ├── location_attrs │ │ ├── matrix │ │ ├── missed_calls │ │ ├── mohqcalls │ │ ├── mohqueues │ │ ├── mtree │ │ ├── mtrees │ │ ├── pdt │ │ ├── pl_pipes │ │ ├── presentity │ │ ├── pua │ │ ├── purplemap │ │ ├── re_grp │ │ ├── rls_presentity │ │ ├── rls_watchers │ │ ├── rtpengine │ │ ├── rtpproxy │ │ ├── sca_subscriptions │ │ ├── silo │ │ ├── sip_trace │ │ ├── speed_dial │ │ ├── subscriber │ │ ├── topos_d │ │ ├── topos_t │ │ ├── trusted │ │ ├── uacreg │ │ ├── uid_credentials │ │ ├── uid_domain │ │ ├── uid_domain_attrs │ │ ├── uid_global_attrs │ │ ├── uid_uri │ │ ├── uid_uri_attrs │ │ ├── uid_user_attrs │ │ ├── uri │ │ ├── userblacklist │ │ ├── usr_preferences │ │ ├── version │ │ ├── watchers │ │ └── xcap ├── db_redis │ └── kamailio │ │ ├── acc │ │ ├── acc_cdrs │ │ ├── active_watchers │ │ ├── address │ │ ├── aliases │ │ ├── carrier_name │ │ ├── carrierfailureroute │ │ ├── carrierroute │ │ ├── cpl │ │ ├── dbaliases │ │ ├── dialog │ │ ├── dialog_vars │ │ ├── dialplan │ │ ├── dispatcher │ │ ├── domain │ │ ├── domain_attrs │ │ ├── domain_name │ │ ├── domainpolicy │ │ ├── dr_gateways │ │ ├── dr_groups │ │ ├── dr_gw_lists │ │ ├── dr_rules │ │ ├── globalblacklist │ │ ├── grp │ │ ├── htable │ │ ├── imc_members │ │ ├── imc_rooms │ │ ├── lcr_gw │ │ ├── lcr_rule │ │ ├── lcr_rule_target │ │ ├── location │ │ ├── location_attrs │ │ ├── matrix │ │ ├── missed_calls │ │ ├── mohqcalls │ │ ├── mohqueues │ │ ├── mtree │ │ ├── mtrees │ │ ├── pdt │ │ ├── pl_pipes │ │ ├── presentity │ │ ├── pua │ │ ├── purplemap │ │ ├── re_grp │ │ ├── rls_presentity │ │ ├── rls_watchers │ │ ├── rtpengine │ │ ├── rtpproxy │ │ ├── sca_subscriptions │ │ ├── silo │ │ ├── sip_trace │ │ ├── speed_dial │ │ ├── subscriber │ │ ├── topos_d │ │ ├── topos_t │ │ ├── trusted │ │ ├── uacreg │ │ ├── uid_credentials │ │ ├── uid_domain │ │ ├── uid_domain_attrs │ │ ├── uid_global_attrs │ │ ├── uid_uri │ │ ├── uid_uri_attrs │ │ ├── uid_user_attrs │ │ ├── uri │ │ ├── userblacklist │ │ ├── usr_preferences │ │ ├── version │ │ ├── watchers │ │ └── xcap ├── db_sqlite │ ├── acc-create.sql │ ├── alias_db-create.sql │ ├── auth_db-create.sql │ ├── avpops-create.sql │ ├── carrierroute-create.sql │ ├── cpl-create.sql │ ├── dialog-create.sql │ ├── dialplan-create.sql │ ├── dispatcher-create.sql │ ├── domain-create.sql │ ├── domainpolicy-create.sql │ ├── drouting-create.sql │ ├── group-create.sql │ ├── htable-create.sql │ ├── imc-create.sql │ ├── lcr-create.sql │ ├── matrix-create.sql │ ├── mohqueue-create.sql │ ├── msilo-create.sql │ ├── mtree-create.sql │ ├── pdt-create.sql │ ├── permissions-create.sql │ ├── pipelimit-create.sql │ ├── presence-create.sql │ ├── purple-create.sql │ ├── registrar-create.sql │ ├── rls-create.sql │ ├── rtpengine-create.sql │ ├── rtpproxy-create.sql │ ├── sca-create.sql │ ├── secfilter-create.sql │ ├── siptrace-create.sql │ ├── speeddial-create.sql │ ├── standard-create.sql │ ├── topos-create.sql │ ├── uac-create.sql │ ├── uid_auth_db-create.sql │ ├── uid_avp_db-create.sql │ ├── uid_domain-create.sql │ ├── uid_gflags-create.sql │ ├── uid_uri_db-create.sql │ ├── uri_db-create.sql │ ├── userblacklist-create.sql │ └── usrloc-create.sql ├── dbcassandra │ └── kamailio │ │ ├── domain │ │ ├── domain_attrs │ │ ├── location │ │ ├── subscriber │ │ └── version ├── dbtext │ └── kamailio │ │ ├── acc │ │ ├── acc_cdrs │ │ ├── active_watchers │ │ ├── address │ │ ├── aliases │ │ ├── carrier_name │ │ ├── carrierfailureroute │ │ ├── carrierroute │ │ ├── cpl │ │ ├── dbaliases │ │ ├── dialog │ │ ├── dialog_vars │ │ ├── dialplan │ │ ├── dispatcher │ │ ├── domain │ │ ├── domain_attrs │ │ ├── domain_name │ │ ├── domainpolicy │ │ ├── dr_gateways │ │ ├── dr_groups │ │ ├── dr_gw_lists │ │ ├── dr_rules │ │ ├── globalblacklist │ │ ├── grp │ │ ├── htable │ │ ├── imc_members │ │ ├── imc_rooms │ │ ├── lcr_gw │ │ ├── lcr_rule │ │ ├── lcr_rule_target │ │ ├── location │ │ ├── location_attrs │ │ ├── matrix │ │ ├── missed_calls │ │ ├── mohqcalls │ │ ├── mohqueues │ │ ├── mtree │ │ ├── mtrees │ │ ├── pdt │ │ ├── pl_pipes │ │ ├── presentity │ │ ├── pua │ │ ├── purplemap │ │ ├── re_grp │ │ ├── rls_presentity │ │ ├── rls_watchers │ │ ├── rtpengine │ │ ├── rtpproxy │ │ ├── sca_subscriptions │ │ ├── silo │ │ ├── sip_trace │ │ ├── speed_dial │ │ ├── subscriber │ │ ├── topos_d │ │ ├── topos_t │ │ ├── trusted │ │ ├── uacreg │ │ ├── uid_credentials │ │ ├── uid_domain │ │ ├── uid_domain_attrs │ │ ├── uid_global_attrs │ │ ├── uid_uri │ │ ├── uid_uri_attrs │ │ ├── uid_user_attrs │ │ ├── uri │ │ ├── userblacklist │ │ ├── usr_preferences │ │ ├── version │ │ ├── watchers │ │ └── xcap ├── dbtextdb │ ├── __init__.py │ ├── dbtextdb.py │ ├── dbtextdb_test.py │ └── tests │ │ ├── bad_table_auto_dupe │ │ ├── bad_table_int │ │ ├── bad_table_long_row │ │ ├── bad_table_null │ │ ├── bad_table_short_row │ │ ├── bad_table_wrong_type │ │ ├── subscriber │ │ ├── test │ │ ├── unsorted_table │ │ └── unsorted_table2 ├── kamctl ├── kamctl.8 ├── kamctl.base ├── kamctl.ctlbase ├── kamctl.db_berkeley ├── kamctl.dbtext ├── kamctl.mysql ├── kamctl.oracle ├── kamctl.pgsql ├── kamctl.rpcfifo ├── kamctl.ser ├── kamctl.sqlbase ├── kamctl.sqlite ├── kamctlrc ├── kamdbctl ├── kamdbctl.8 ├── kamdbctl.base ├── kamdbctl.db_berkeley ├── kamdbctl.dbtext ├── kamdbctl.mysql ├── kamdbctl.oracle ├── kamdbctl.pgsql ├── kamdbctl.sqlite ├── kamdbfunc.oracle ├── mongodb │ └── kamailio │ │ ├── acc.json │ │ ├── acc_cdrs.json │ │ ├── active_watchers.json │ │ ├── address.json │ │ ├── aliases.json │ │ ├── carrier_name.json │ │ ├── carrierfailureroute.json │ │ ├── carrierroute.json │ │ ├── cpl.json │ │ ├── dbaliases.json │ │ ├── dialog.json │ │ ├── dialog_vars.json │ │ ├── dialplan.json │ │ ├── dispatcher.json │ │ ├── domain.json │ │ ├── domain_attrs.json │ │ ├── domain_name.json │ │ ├── domainpolicy.json │ │ ├── dr_gateways.json │ │ ├── dr_groups.json │ │ ├── dr_gw_lists.json │ │ ├── dr_rules.json │ │ ├── globalblacklist.json │ │ ├── grp.json │ │ ├── htable.json │ │ ├── imc_members.json │ │ ├── imc_rooms.json │ │ ├── lcr_gw.json │ │ ├── lcr_rule.json │ │ ├── lcr_rule_target.json │ │ ├── location.json │ │ ├── location_attrs.json │ │ ├── matrix.json │ │ ├── missed_calls.json │ │ ├── mohqcalls.json │ │ ├── mohqueues.json │ │ ├── mtree.json │ │ ├── mtrees.json │ │ ├── pdt.json │ │ ├── pl_pipes.json │ │ ├── presentity.json │ │ ├── pua.json │ │ ├── purplemap.json │ │ ├── re_grp.json │ │ ├── rls_presentity.json │ │ ├── rls_watchers.json │ │ ├── rtpengine.json │ │ ├── rtpproxy.json │ │ ├── sca_subscriptions.json │ │ ├── silo.json │ │ ├── sip_trace.json │ │ ├── speed_dial.json │ │ ├── subscriber.json │ │ ├── topos_d.json │ │ ├── topos_t.json │ │ ├── trusted.json │ │ ├── uacreg.json │ │ ├── uid_credentials.json │ │ ├── uid_domain.json │ │ ├── uid_domain_attrs.json │ │ ├── uid_global_attrs.json │ │ ├── uid_uri.json │ │ ├── uid_uri_attrs.json │ │ ├── uid_user_attrs.json │ │ ├── uri.json │ │ ├── userblacklist.json │ │ ├── usr_preferences.json │ │ ├── version-create.mongo │ │ ├── version.json │ │ ├── watchers.json │ │ └── xcap.json ├── mysql │ ├── acc-create.sql │ ├── alias_db-create.sql │ ├── auth_db-create.sql │ ├── avpops-create.sql │ ├── carrierroute-create.sql │ ├── cpl-create.sql │ ├── dialog-create.sql │ ├── dialplan-create.sql │ ├── dispatcher-create.sql │ ├── domain-create.sql │ ├── domainpolicy-create.sql │ ├── drouting-create.sql │ ├── group-create.sql │ ├── htable-create.sql │ ├── imc-create.sql │ ├── ims_charging-create.sql │ ├── ims_dialog-create.sql │ ├── ims_usrloc_pcscf-create.sql │ ├── ims_usrloc_scscf-create.sql │ ├── lcr-create.sql │ ├── matrix-create.sql │ ├── mohqueue-create.sql │ ├── msilo-create.sql │ ├── mtree-create.sql │ ├── pdt-create.sql │ ├── permissions-create.sql │ ├── pipelimit-create.sql │ ├── presence-create.sql │ ├── purple-create.sql │ ├── registrar-create.sql │ ├── rls-create.sql │ ├── rtpengine-create.sql │ ├── rtpproxy-create.sql │ ├── sca-create.sql │ ├── secfilter-create.sql │ ├── siptrace-create.sql │ ├── speeddial-create.sql │ ├── standard-create.sql │ ├── topos-create.sql │ ├── uac-create.sql │ ├── uid_auth_db-create.sql │ ├── uid_avp_db-create.sql │ ├── uid_domain-create.sql │ ├── uid_gflags-create.sql │ ├── uid_uri_db-create.sql │ ├── uri_db-create.sql │ ├── userblacklist-create.sql │ └── usrloc-create.sql ├── oracle │ ├── README.TYPES │ ├── acc-create.sql │ ├── admin │ │ ├── README │ │ ├── _create_as_sys.tmpl │ │ └── _drop_as_sys.tmpl │ ├── alias_db-create.sql │ ├── auth_db-create.sql │ ├── avpops-create.sql │ ├── carrierroute-create.sql │ ├── cpl-create.sql │ ├── dialog-create.sql │ ├── dialplan-create.sql │ ├── dispatcher-create.sql │ ├── domain-create.sql │ ├── domainpolicy-create.sql │ ├── drouting-create.sql │ ├── group-create.sql │ ├── htable-create.sql │ ├── imc-create.sql │ ├── inc │ │ ├── _create_compat.sql │ │ ├── _createsch.tmpl │ │ ├── _dropsch.tmpl │ │ ├── _grantfunc.tmpl │ │ └── _grantroot.tmpl │ ├── lcr-create.sql │ ├── matrix-create.sql │ ├── mohqueue-create.sql │ ├── msilo-create.sql │ ├── mtree-create.sql │ ├── pdt-create.sql │ ├── permissions-create.sql │ ├── pipelimit-create.sql │ ├── presence-create.sql │ ├── purple-create.sql │ ├── registrar-create.sql │ ├── rls-create.sql │ ├── rtpengine-create.sql │ ├── rtpproxy-create.sql │ ├── sca-create.sql │ ├── secfilter-create.sql │ ├── siptrace-create.sql │ ├── speeddial-create.sql │ ├── standard-create.sql │ ├── topos-create.sql │ ├── uac-create.sql │ ├── uid_auth_db-create.sql │ ├── uid_avp_db-create.sql │ ├── uid_domain-create.sql │ ├── uid_gflags-create.sql │ ├── uid_uri_db-create.sql │ ├── uri_db-create.sql │ ├── userblacklist-create.sql │ └── usrloc-create.sql ├── postgres │ ├── acc-create.sql │ ├── alias_db-create.sql │ ├── auth_db-create.sql │ ├── avpops-create.sql │ ├── carrierroute-create.sql │ ├── cpl-create.sql │ ├── dialog-create.sql │ ├── dialplan-create.sql │ ├── dispatcher-create.sql │ ├── domain-create.sql │ ├── domainpolicy-create.sql │ ├── drouting-create.sql │ ├── group-create.sql │ ├── htable-create.sql │ ├── imc-create.sql │ ├── lcr-create.sql │ ├── matrix-create.sql │ ├── mohqueue-create.sql │ ├── msilo-create.sql │ ├── mtree-create.sql │ ├── pdt-create.sql │ ├── permissions-create.sql │ ├── pipelimit-create.sql │ ├── presence-create.sql │ ├── purple-create.sql │ ├── registrar-create.sql │ ├── rls-create.sql │ ├── rtpengine-create.sql │ ├── rtpproxy-create.sql │ ├── sca-create.sql │ ├── secfilter-create.sql │ ├── siptrace-create.sql │ ├── speeddial-create.sql │ ├── standard-create.sql │ ├── topos-create.sql │ ├── uac-create.sql │ ├── uid_auth_db-create.sql │ ├── uid_avp_db-create.sql │ ├── uid_domain-create.sql │ ├── uid_gflags-create.sql │ ├── uid_uri_db-create.sql │ ├── uri_db-create.sql │ ├── userblacklist-create.sql │ └── usrloc-create.sql └── xhttp_pi │ ├── acc-mod │ ├── acc-table │ ├── alias_db-mod │ ├── alias_db-table │ ├── auth_db-mod │ ├── auth_db-table │ ├── avpops-mod │ ├── avpops-table │ ├── carrierroute-mod │ ├── carrierroute-table │ ├── cpl-mod │ ├── cpl-table │ ├── dialog-mod │ ├── dialog-table │ ├── dialplan-mod │ ├── dialplan-table │ ├── dispatcher-mod │ ├── dispatcher-table │ ├── domain-mod │ ├── domain-table │ ├── domainpolicy-mod │ ├── domainpolicy-table │ ├── drouting-mod │ ├── drouting-table │ ├── group-mod │ ├── group-table │ ├── htable-mod │ ├── htable-table │ ├── imc-mod │ ├── imc-table │ ├── lcr-mod │ ├── lcr-table │ ├── matrix-mod │ ├── matrix-table │ ├── mohqueue-mod │ ├── mohqueue-table │ ├── msilo-mod │ ├── msilo-table │ ├── mtree-mod │ ├── mtree-table │ ├── pdt-mod │ ├── pdt-table │ ├── permissions-mod │ ├── permissions-table │ ├── pi_framework-00 │ ├── pi_framework-01 │ ├── pi_framework-02 │ ├── pi_framework.xml │ ├── pipelimit-mod │ ├── pipelimit-table │ ├── presence-mod │ ├── presence-table │ ├── purple-mod │ ├── purple-table │ ├── registrar-mod │ ├── registrar-table │ ├── rls-mod │ ├── rls-table │ ├── rtpengine-mod │ ├── rtpengine-table │ ├── rtpproxy-mod │ ├── rtpproxy-table │ ├── sca-mod │ ├── sca-table │ ├── siptrace-mod │ ├── siptrace-table │ ├── speeddial-mod │ ├── speeddial-table │ ├── standard-mod │ ├── standard-table │ ├── topos-mod │ ├── topos-table │ ├── uac-mod │ ├── uac-table │ ├── uid_auth_db-mod │ ├── uid_auth_db-table │ ├── uid_avp_db-mod │ ├── uid_avp_db-table │ ├── uid_domain-mod │ ├── uid_domain-table │ ├── uid_gflags-mod │ ├── uid_gflags-table │ ├── uid_uri_db-mod │ ├── uid_uri_db-table │ ├── uri_db-mod │ ├── uri_db-table │ ├── userblacklist-mod │ ├── userblacklist-table │ ├── usrloc-mod │ └── usrloc-table ├── kamunix ├── Makefile ├── kamunix.8 └── kamunix.c └── pdbt ├── .gitignore ├── Makefile ├── carrier.c ├── carrier.h ├── common.c ├── common.h ├── debian ├── NEWS ├── changelog ├── compat ├── control ├── copyright ├── pdb-server.dirs ├── pdb-server.init.d ├── pdb-server.install ├── pdb-server.postinst ├── pdb-tools.install └── rules ├── docs ├── data_format.txt └── network_protocol.txt ├── dt.c ├── dt.h ├── dtm.c ├── dtm.h ├── log.c ├── log.h ├── pdb_server.c ├── pdb_server.conf ├── pdb_server_backend.c ├── pdb_server_backend.h ├── pdbt.c └── scripts ├── get_carrier_names_finland.sh ├── get_carrier_names_germany.pl └── get_carrier_names_germany.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/INSTALL -------------------------------------------------------------------------------- /ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/ISSUES -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/docbook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/Makefile -------------------------------------------------------------------------------- /doc/docbook/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/README -------------------------------------------------------------------------------- /doc/docbook/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/TODO -------------------------------------------------------------------------------- /doc/docbook/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/catalog.xml -------------------------------------------------------------------------------- /doc/docbook/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/common.xsl -------------------------------------------------------------------------------- /doc/docbook/dep.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/dep.xsl -------------------------------------------------------------------------------- /doc/docbook/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/entities.xml -------------------------------------------------------------------------------- /doc/docbook/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/html.xsl -------------------------------------------------------------------------------- /doc/docbook/man.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/man.xsl -------------------------------------------------------------------------------- /doc/docbook/readme.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/readme.xsl -------------------------------------------------------------------------------- /doc/docbook/sr-doc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/sr-doc.css -------------------------------------------------------------------------------- /doc/docbook/txt.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/docbook/txt.xsl -------------------------------------------------------------------------------- /doc/doxygen/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/doxygen/main.dox -------------------------------------------------------------------------------- /doc/doxygen/ser.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/doxygen/ser.doxygen -------------------------------------------------------------------------------- /doc/man/kamailio.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/man/kamailio.8 -------------------------------------------------------------------------------- /doc/man/kamailio.cfg.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/man/kamailio.cfg.5 -------------------------------------------------------------------------------- /doc/misc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/AUTHORS -------------------------------------------------------------------------------- /doc/misc/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/CREDITS -------------------------------------------------------------------------------- /doc/misc/HISTORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/HISTORY -------------------------------------------------------------------------------- /doc/misc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/NEWS -------------------------------------------------------------------------------- /doc/misc/README-MODULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/README-MODULES -------------------------------------------------------------------------------- /doc/misc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/TODO -------------------------------------------------------------------------------- /doc/misc/ser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/misc/ser.txt -------------------------------------------------------------------------------- /doc/tutorials/cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/tutorials/cfg.txt -------------------------------------------------------------------------------- /doc/tutorials/dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/tutorials/dns.txt -------------------------------------------------------------------------------- /doc/tutorials/locking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/tutorials/locking.txt -------------------------------------------------------------------------------- /doc/tutorials/timers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/doc/tutorials/timers.txt -------------------------------------------------------------------------------- /etc/kamailio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/etc/kamailio.cfg -------------------------------------------------------------------------------- /etc/sip-router.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/etc/sip-router.cfg -------------------------------------------------------------------------------- /misc/examples/ims/pcscf/dispatcher.list.sample: -------------------------------------------------------------------------------- 1 | # SBC's 2 | 2 sip:11.22.33.44:5070 3 | -------------------------------------------------------------------------------- /misc/examples/ims/pcscf/sems/etc/methodmap.conf: -------------------------------------------------------------------------------- 1 | OPTIONS=>refuse_with_200 2 | REGISTER=>register 3 | -------------------------------------------------------------------------------- /misc/examples/ims/pcscf/sems/etc/refuse.sbcprofile.conf: -------------------------------------------------------------------------------- 1 | refuse_with="403 Forbidden" 2 | -------------------------------------------------------------------------------- /misc/examples/ims/pcscf/sems/etc/refuse_with_200.sbcprofile.conf: -------------------------------------------------------------------------------- 1 | refuse_with="200 OK" 2 | -------------------------------------------------------------------------------- /misc/examples/ims/pcscf/sems/etc/rurimap.conf: -------------------------------------------------------------------------------- 1 | ims.voiceblue.com=>mo 2 | -------------------------------------------------------------------------------- /misc/examples/scripts/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/examples/scripts/sr -------------------------------------------------------------------------------- /misc/extra/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/extra/vim/Makefile -------------------------------------------------------------------------------- /misc/extra/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/extra/vim/README -------------------------------------------------------------------------------- /misc/scripts/dbtext/ser_db/gw_grp: -------------------------------------------------------------------------------- 1 | grp_id(int,auto) grp_name(str) 2 | -------------------------------------------------------------------------------- /misc/scripts/harv_ser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/scripts/harv_ser.sh -------------------------------------------------------------------------------- /misc/scripts/kam_to_sr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/scripts/kam_to_sr.sh -------------------------------------------------------------------------------- /misc/scripts/mysql/my_drop.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/scripts/oracle/or_drop.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/scripts/postgres/pg_drop.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /misc/scripts/ser_to_sr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/scripts/ser_to_sr.sh -------------------------------------------------------------------------------- /misc/scripts/serconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/scripts/serconf.sh -------------------------------------------------------------------------------- /misc/scripts/serstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/scripts/serstats -------------------------------------------------------------------------------- /misc/tls-ca/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tls-ca/README -------------------------------------------------------------------------------- /misc/tls-ca/ca.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tls-ca/ca.conf -------------------------------------------------------------------------------- /misc/tls-ca/request.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tls-ca/request.conf -------------------------------------------------------------------------------- /misc/tls-ca/rootCA/serial: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /misc/tls-ca/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tls-ca/user.conf -------------------------------------------------------------------------------- /misc/tools/kemi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tools/kemi/README.md -------------------------------------------------------------------------------- /misc/tools/sipgrep/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/misc/tools/sipgrep/README -------------------------------------------------------------------------------- /pkg/kamailio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/Makefile -------------------------------------------------------------------------------- /pkg/kamailio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/README.md -------------------------------------------------------------------------------- /pkg/kamailio/alpine/kamailio.pre-upgrade: -------------------------------------------------------------------------------- 1 | kamailio.pre-install -------------------------------------------------------------------------------- /pkg/kamailio/deb/bionic/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/bionic/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/bionic/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/bionic/source.lintian-overrides: -------------------------------------------------------------------------------- 1 | kamailio source: debian-watch-file-in-native-package 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/bionic/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/buster/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/buster/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/buster/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/buster/source.lintian-overrides: -------------------------------------------------------------------------------- 1 | kamailio source: debian-watch-file-in-native-package 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/buster/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/debian/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/debian/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/debian/source.lintian-overrides: -------------------------------------------------------------------------------- 1 | kamailio source: debian-watch-file-in-native-package 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/jessie/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/jessie/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/jessie/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/jessie/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/precise/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/precise/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/precise/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/precise/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/sid/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/sid/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/sid/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/sid/source.lintian-overrides: -------------------------------------------------------------------------------- 1 | kamailio source: debian-watch-file-in-native-package 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/sid/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/stretch/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/stretch/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/stretch/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/stretch/source.lintian-overrides: -------------------------------------------------------------------------------- 1 | kamailio source: debian-watch-file-in-native-package 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/stretch/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/trusty/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/trusty/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/trusty/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/trusty/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/wheezy/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/wheezy/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/wheezy/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/wheezy/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/xenial/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/xenial/kamailio-berkeley-bin.dirs: -------------------------------------------------------------------------------- 1 | usr/sbin 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/xenial/kamailio.examples: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /pkg/kamailio/deb/xenial/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/kamailio/netbsd/COMMENT: -------------------------------------------------------------------------------- 1 | Kamailio, very fast and configurable SIP proxy 2 | -------------------------------------------------------------------------------- /pkg/kamailio/netbsd/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/netbsd/DESCR -------------------------------------------------------------------------------- /pkg/kamailio/netbsd/PLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/netbsd/PLIST -------------------------------------------------------------------------------- /pkg/kamailio/netbsd/distinfo: -------------------------------------------------------------------------------- 1 | MD5 (kamailio-1.2.0-notls_src.tar.gz) = 9ca396cb5d95623206b109bdfb4c6374 2 | -------------------------------------------------------------------------------- /pkg/kamailio/obs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/obs/README -------------------------------------------------------------------------------- /pkg/kamailio/obs/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/obs/meta -------------------------------------------------------------------------------- /pkg/kamailio/obs/prjconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/kamailio/obs/prjconf -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/COMMENT: -------------------------------------------------------------------------------- 1 | Kamailio, very fast and configurable SIP proxy 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-berkeleydb: -------------------------------------------------------------------------------- 1 | kamailio berkeley DB module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-carrierroute: -------------------------------------------------------------------------------- 1 | kamailio carrierroute module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-ldap: -------------------------------------------------------------------------------- 1 | kamailio LDAP modules 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-mysql: -------------------------------------------------------------------------------- 1 | kamailio mysql module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-perl: -------------------------------------------------------------------------------- 1 | kamailio perl modules 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-postgresql: -------------------------------------------------------------------------------- 1 | kamailio postgresql module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-radius: -------------------------------------------------------------------------------- 1 | kamailio RADIUS modules 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-snmpstats: -------------------------------------------------------------------------------- 1 | kamailio snmpstats module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-xcap_client: -------------------------------------------------------------------------------- 1 | kamailio XCAP client module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/DESCR-xmlrpc: -------------------------------------------------------------------------------- 1 | kamailio XML-RPC module 2 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/PFRAG.shared-mysql: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | lib/kamailio/modules/db_mysql.so 3 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/PFRAG.shared-snmpstats: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | lib/kamailio/modules/snmpstats.so 3 | -------------------------------------------------------------------------------- /pkg/kamailio/openbsd/pkg/PFRAG.shared-xmlrpc: -------------------------------------------------------------------------------- 1 | @comment $OpenBSD$ 2 | lib/kamailio/modules/mi_xmlrpc.so 3 | -------------------------------------------------------------------------------- /pkg/ser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/pkg/ser/README.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.cfg -------------------------------------------------------------------------------- /src/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.defs -------------------------------------------------------------------------------- /src/Makefile.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.dirs -------------------------------------------------------------------------------- /src/Makefile.groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.groups -------------------------------------------------------------------------------- /src/Makefile.libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.libs -------------------------------------------------------------------------------- /src/Makefile.modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.modules -------------------------------------------------------------------------------- /src/Makefile.radius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.radius -------------------------------------------------------------------------------- /src/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.rules -------------------------------------------------------------------------------- /src/Makefile.shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.shared -------------------------------------------------------------------------------- /src/Makefile.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.sources -------------------------------------------------------------------------------- /src/Makefile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.targets -------------------------------------------------------------------------------- /src/Makefile.utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/Makefile.utils -------------------------------------------------------------------------------- /src/core/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/action.c -------------------------------------------------------------------------------- /src/core/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/action.h -------------------------------------------------------------------------------- /src/core/async_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/async_task.c -------------------------------------------------------------------------------- /src/core/async_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/async_task.h -------------------------------------------------------------------------------- /src/core/atomic_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/atomic_ops.c -------------------------------------------------------------------------------- /src/core/atomic_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/atomic_ops.h -------------------------------------------------------------------------------- /src/core/basex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/basex.c -------------------------------------------------------------------------------- /src/core/basex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/basex.h -------------------------------------------------------------------------------- /src/core/bit_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/bit_count.c -------------------------------------------------------------------------------- /src/core/bit_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/bit_count.h -------------------------------------------------------------------------------- /src/core/bit_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/bit_scan.c -------------------------------------------------------------------------------- /src/core/bit_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/bit_scan.h -------------------------------------------------------------------------------- /src/core/bit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/bit_test.h -------------------------------------------------------------------------------- /src/core/ccopts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ccopts.sh -------------------------------------------------------------------------------- /src/core/ccver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ccver.sh -------------------------------------------------------------------------------- /src/core/cfg.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg.lex -------------------------------------------------------------------------------- /src/core/cfg.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg.y -------------------------------------------------------------------------------- /src/core/cfg/cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg.c -------------------------------------------------------------------------------- /src/core/cfg/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg.h -------------------------------------------------------------------------------- /src/core/cfg/cfg_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_ctx.c -------------------------------------------------------------------------------- /src/core/cfg/cfg_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_ctx.h -------------------------------------------------------------------------------- /src/core/cfg/cfg_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_script.c -------------------------------------------------------------------------------- /src/core/cfg/cfg_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_script.h -------------------------------------------------------------------------------- /src/core/cfg/cfg_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_select.c -------------------------------------------------------------------------------- /src/core/cfg/cfg_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_select.h -------------------------------------------------------------------------------- /src/core/cfg/cfg_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_struct.c -------------------------------------------------------------------------------- /src/core/cfg/cfg_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg/cfg_struct.h -------------------------------------------------------------------------------- /src/core/cfg_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg_core.c -------------------------------------------------------------------------------- /src/core/cfg_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg_core.h -------------------------------------------------------------------------------- /src/core/cfg_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg_parser.c -------------------------------------------------------------------------------- /src/core/cfg_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/cfg_parser.h -------------------------------------------------------------------------------- /src/core/char_msg_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/char_msg_val.h -------------------------------------------------------------------------------- /src/core/clist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/clist.h -------------------------------------------------------------------------------- /src/core/comp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/comp_defs.h -------------------------------------------------------------------------------- /src/core/compiler_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/compiler_opt.h -------------------------------------------------------------------------------- /src/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/config.h -------------------------------------------------------------------------------- /src/core/core_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/core_cmd.c -------------------------------------------------------------------------------- /src/core/core_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/core_cmd.h -------------------------------------------------------------------------------- /src/core/core_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/core_stats.h -------------------------------------------------------------------------------- /src/core/counters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/counters.c -------------------------------------------------------------------------------- /src/core/counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/counters.h -------------------------------------------------------------------------------- /src/core/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/crc.c -------------------------------------------------------------------------------- /src/core/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/crc.h -------------------------------------------------------------------------------- /src/core/daemonize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/daemonize.c -------------------------------------------------------------------------------- /src/core/daemonize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/daemonize.h -------------------------------------------------------------------------------- /src/core/data_lump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/data_lump.c -------------------------------------------------------------------------------- /src/core/data_lump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/data_lump.h -------------------------------------------------------------------------------- /src/core/data_lump_rpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/data_lump_rpl.c -------------------------------------------------------------------------------- /src/core/data_lump_rpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/data_lump_rpl.h -------------------------------------------------------------------------------- /src/core/dns_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dns_cache.c -------------------------------------------------------------------------------- /src/core/dns_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dns_cache.h -------------------------------------------------------------------------------- /src/core/dns_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dns_func.c -------------------------------------------------------------------------------- /src/core/dns_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dns_func.h -------------------------------------------------------------------------------- /src/core/dns_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dns_wrappers.h -------------------------------------------------------------------------------- /src/core/dprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dprint.c -------------------------------------------------------------------------------- /src/core/dprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dprint.h -------------------------------------------------------------------------------- /src/core/dset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dset.c -------------------------------------------------------------------------------- /src/core/dset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dset.h -------------------------------------------------------------------------------- /src/core/dst_blacklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dst_blacklist.c -------------------------------------------------------------------------------- /src/core/dst_blacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/dst_blacklist.h -------------------------------------------------------------------------------- /src/core/endianness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/endianness.c -------------------------------------------------------------------------------- /src/core/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/endianness.h -------------------------------------------------------------------------------- /src/core/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/error.c -------------------------------------------------------------------------------- /src/core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/error.h -------------------------------------------------------------------------------- /src/core/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/events.c -------------------------------------------------------------------------------- /src/core/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/events.h -------------------------------------------------------------------------------- /src/core/fastlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/fastlock.h -------------------------------------------------------------------------------- /src/core/fix_lumps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/fix_lumps.h -------------------------------------------------------------------------------- /src/core/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/flags.c -------------------------------------------------------------------------------- /src/core/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/flags.h -------------------------------------------------------------------------------- /src/core/fmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/fmsg.c -------------------------------------------------------------------------------- /src/core/fmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/fmsg.h -------------------------------------------------------------------------------- /src/core/forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/forward.c -------------------------------------------------------------------------------- /src/core/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/forward.h -------------------------------------------------------------------------------- /src/core/futexlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/futexlock.h -------------------------------------------------------------------------------- /src/core/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/globals.h -------------------------------------------------------------------------------- /src/core/hash_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/hash_func.c -------------------------------------------------------------------------------- /src/core/hash_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/hash_func.h -------------------------------------------------------------------------------- /src/core/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/hashes.h -------------------------------------------------------------------------------- /src/core/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/id.c -------------------------------------------------------------------------------- /src/core/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/id.h -------------------------------------------------------------------------------- /src/core/io_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/io_wait.c -------------------------------------------------------------------------------- /src/core/io_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/io_wait.h -------------------------------------------------------------------------------- /src/core/ip_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ip_addr.c -------------------------------------------------------------------------------- /src/core/ip_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ip_addr.h -------------------------------------------------------------------------------- /src/core/kemi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/kemi.c -------------------------------------------------------------------------------- /src/core/kemi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/kemi.h -------------------------------------------------------------------------------- /src/core/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/list.h -------------------------------------------------------------------------------- /src/core/local_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/local_timer.c -------------------------------------------------------------------------------- /src/core/local_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/local_timer.h -------------------------------------------------------------------------------- /src/core/lock_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lock_alloc.h -------------------------------------------------------------------------------- /src/core/lock_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lock_ops.c -------------------------------------------------------------------------------- /src/core/lock_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lock_ops.h -------------------------------------------------------------------------------- /src/core/lock_ops_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lock_ops_init.h -------------------------------------------------------------------------------- /src/core/locking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/locking.c -------------------------------------------------------------------------------- /src/core/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/locking.h -------------------------------------------------------------------------------- /src/core/lump_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lump_struct.h -------------------------------------------------------------------------------- /src/core/lvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lvalue.c -------------------------------------------------------------------------------- /src/core/lvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/lvalue.h -------------------------------------------------------------------------------- /src/core/make_and_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/make_and_install -------------------------------------------------------------------------------- /src/core/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/md5.c -------------------------------------------------------------------------------- /src/core/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/md5.h -------------------------------------------------------------------------------- /src/core/md5utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/md5utils.c -------------------------------------------------------------------------------- /src/core/md5utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/md5utils.h -------------------------------------------------------------------------------- /src/core/mem/dl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/dl_config.h -------------------------------------------------------------------------------- /src/core/mem/dl_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/dl_malloc.c -------------------------------------------------------------------------------- /src/core/mem/dl_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/dl_malloc.h -------------------------------------------------------------------------------- /src/core/mem/f_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/f_malloc.c -------------------------------------------------------------------------------- /src/core/mem/f_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/f_malloc.h -------------------------------------------------------------------------------- /src/core/mem/ll_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/ll_malloc.c -------------------------------------------------------------------------------- /src/core/mem/ll_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/ll_malloc.h -------------------------------------------------------------------------------- /src/core/mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/mem.h -------------------------------------------------------------------------------- /src/core/mem/memapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/memapi.h -------------------------------------------------------------------------------- /src/core/mem/memcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/memcore.h -------------------------------------------------------------------------------- /src/core/mem/memdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/memdbg.h -------------------------------------------------------------------------------- /src/core/mem/meminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/meminfo.h -------------------------------------------------------------------------------- /src/core/mem/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/memtest.c -------------------------------------------------------------------------------- /src/core/mem/pkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/pkg.c -------------------------------------------------------------------------------- /src/core/mem/pkg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/pkg.h -------------------------------------------------------------------------------- /src/core/mem/q_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/q_malloc.c -------------------------------------------------------------------------------- /src/core/mem/q_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/q_malloc.h -------------------------------------------------------------------------------- /src/core/mem/sf_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/sf_malloc.c -------------------------------------------------------------------------------- /src/core/mem/sf_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/sf_malloc.h -------------------------------------------------------------------------------- /src/core/mem/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/shm.c -------------------------------------------------------------------------------- /src/core/mem/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/shm.h -------------------------------------------------------------------------------- /src/core/mem/shm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/shm_mem.h -------------------------------------------------------------------------------- /src/core/mem/src_loc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mem/src_loc.h -------------------------------------------------------------------------------- /src/core/mod_fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mod_fix.c -------------------------------------------------------------------------------- /src/core/mod_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/mod_fix.h -------------------------------------------------------------------------------- /src/core/modparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/modparam.c -------------------------------------------------------------------------------- /src/core/modparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/modparam.h -------------------------------------------------------------------------------- /src/core/msg_translator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/msg_translator.c -------------------------------------------------------------------------------- /src/core/msg_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/msg_translator.h -------------------------------------------------------------------------------- /src/core/name_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/name_alias.h -------------------------------------------------------------------------------- /src/core/nonsip_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/nonsip_hooks.c -------------------------------------------------------------------------------- /src/core/nonsip_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/nonsip_hooks.h -------------------------------------------------------------------------------- /src/core/onsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/onsend.h -------------------------------------------------------------------------------- /src/core/parser/case_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/case_to.h -------------------------------------------------------------------------------- /src/core/parser/hf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/hf.c -------------------------------------------------------------------------------- /src/core/parser/hf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/hf.h -------------------------------------------------------------------------------- /src/core/parser/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/keys.h -------------------------------------------------------------------------------- /src/core/parser/sdp/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/sdp/sdp.c -------------------------------------------------------------------------------- /src/core/parser/sdp/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/parser/sdp/sdp.h -------------------------------------------------------------------------------- /src/core/pass_fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pass_fd.c -------------------------------------------------------------------------------- /src/core/pass_fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pass_fd.h -------------------------------------------------------------------------------- /src/core/poll_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/poll_types.h -------------------------------------------------------------------------------- /src/core/ppcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ppcfg.c -------------------------------------------------------------------------------- /src/core/ppcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ppcfg.h -------------------------------------------------------------------------------- /src/core/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/proxy.c -------------------------------------------------------------------------------- /src/core/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/proxy.h -------------------------------------------------------------------------------- /src/core/pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pt.c -------------------------------------------------------------------------------- /src/core/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pt.h -------------------------------------------------------------------------------- /src/core/pv_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pv_core.c -------------------------------------------------------------------------------- /src/core/pv_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pv_core.h -------------------------------------------------------------------------------- /src/core/pvapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pvapi.c -------------------------------------------------------------------------------- /src/core/pvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pvapi.h -------------------------------------------------------------------------------- /src/core/pvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/pvar.h -------------------------------------------------------------------------------- /src/core/qvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/qvalue.c -------------------------------------------------------------------------------- /src/core/qvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/qvalue.h -------------------------------------------------------------------------------- /src/core/rad_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rad_dict.h -------------------------------------------------------------------------------- /src/core/rand/fastrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rand/fastrand.c -------------------------------------------------------------------------------- /src/core/rand/fastrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rand/fastrand.h -------------------------------------------------------------------------------- /src/core/rand/kam_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rand/kam_rand.h -------------------------------------------------------------------------------- /src/core/raw_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/raw_listener.c -------------------------------------------------------------------------------- /src/core/raw_listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/raw_listener.h -------------------------------------------------------------------------------- /src/core/raw_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/raw_sock.c -------------------------------------------------------------------------------- /src/core/raw_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/raw_sock.h -------------------------------------------------------------------------------- /src/core/re.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/re.c -------------------------------------------------------------------------------- /src/core/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/re.h -------------------------------------------------------------------------------- /src/core/receive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/receive.c -------------------------------------------------------------------------------- /src/core/receive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/receive.h -------------------------------------------------------------------------------- /src/core/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/resolve.c -------------------------------------------------------------------------------- /src/core/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/resolve.h -------------------------------------------------------------------------------- /src/core/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/route.c -------------------------------------------------------------------------------- /src/core/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/route.h -------------------------------------------------------------------------------- /src/core/route_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/route_struct.c -------------------------------------------------------------------------------- /src/core/route_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/route_struct.h -------------------------------------------------------------------------------- /src/core/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rpc.h -------------------------------------------------------------------------------- /src/core/rpc_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rpc_lookup.c -------------------------------------------------------------------------------- /src/core/rpc_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rpc_lookup.h -------------------------------------------------------------------------------- /src/core/rvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rvalue.c -------------------------------------------------------------------------------- /src/core/rvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/rvalue.h -------------------------------------------------------------------------------- /src/core/sched_yield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sched_yield.h -------------------------------------------------------------------------------- /src/core/script_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/script_cb.c -------------------------------------------------------------------------------- /src/core/script_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/script_cb.h -------------------------------------------------------------------------------- /src/core/sctp_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sctp_core.c -------------------------------------------------------------------------------- /src/core/sctp_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sctp_core.h -------------------------------------------------------------------------------- /src/core/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select.c -------------------------------------------------------------------------------- /src/core/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select.h -------------------------------------------------------------------------------- /src/core/select_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select_buf.c -------------------------------------------------------------------------------- /src/core/select_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select_buf.h -------------------------------------------------------------------------------- /src/core/select_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select_core.c -------------------------------------------------------------------------------- /src/core/select_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/select_core.h -------------------------------------------------------------------------------- /src/core/ser_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ser_time.h -------------------------------------------------------------------------------- /src/core/shm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/shm_init.c -------------------------------------------------------------------------------- /src/core/shm_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/shm_init.h -------------------------------------------------------------------------------- /src/core/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/signals.c -------------------------------------------------------------------------------- /src/core/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/signals.h -------------------------------------------------------------------------------- /src/core/sip_msg_clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sip_msg_clone.c -------------------------------------------------------------------------------- /src/core/sip_msg_clone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sip_msg_clone.h -------------------------------------------------------------------------------- /src/core/sock_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sock_ut.c -------------------------------------------------------------------------------- /src/core/sock_ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sock_ut.h -------------------------------------------------------------------------------- /src/core/socket_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/socket_info.c -------------------------------------------------------------------------------- /src/core/socket_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/socket_info.h -------------------------------------------------------------------------------- /src/core/sr_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sr_compat.c -------------------------------------------------------------------------------- /src/core/sr_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sr_compat.h -------------------------------------------------------------------------------- /src/core/sr_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sr_module.c -------------------------------------------------------------------------------- /src/core/sr_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/sr_module.h -------------------------------------------------------------------------------- /src/core/srapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/srapi.c -------------------------------------------------------------------------------- /src/core/srapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/srapi.h -------------------------------------------------------------------------------- /src/core/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/str.c -------------------------------------------------------------------------------- /src/core/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/str.h -------------------------------------------------------------------------------- /src/core/str_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/str_hash.h -------------------------------------------------------------------------------- /src/core/str_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/str_list.c -------------------------------------------------------------------------------- /src/core/str_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/str_list.h -------------------------------------------------------------------------------- /src/core/strutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/strutils.c -------------------------------------------------------------------------------- /src/core/strutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/strutils.h -------------------------------------------------------------------------------- /src/core/stun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/stun.c -------------------------------------------------------------------------------- /src/core/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/stun.h -------------------------------------------------------------------------------- /src/core/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/switch.c -------------------------------------------------------------------------------- /src/core/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/switch.h -------------------------------------------------------------------------------- /src/core/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tags.h -------------------------------------------------------------------------------- /src/core/tcp_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_conn.h -------------------------------------------------------------------------------- /src/core/tcp_ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_ev.h -------------------------------------------------------------------------------- /src/core/tcp_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_info.h -------------------------------------------------------------------------------- /src/core/tcp_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_init.h -------------------------------------------------------------------------------- /src/core/tcp_int_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_int_send.h -------------------------------------------------------------------------------- /src/core/tcp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_main.c -------------------------------------------------------------------------------- /src/core/tcp_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_options.c -------------------------------------------------------------------------------- /src/core/tcp_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_options.h -------------------------------------------------------------------------------- /src/core/tcp_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_read.c -------------------------------------------------------------------------------- /src/core/tcp_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_read.h -------------------------------------------------------------------------------- /src/core/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_server.h -------------------------------------------------------------------------------- /src/core/tcp_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_stats.c -------------------------------------------------------------------------------- /src/core/tcp_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tcp_stats.h -------------------------------------------------------------------------------- /src/core/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer.c -------------------------------------------------------------------------------- /src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer.h -------------------------------------------------------------------------------- /src/core/timer_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer_funcs.h -------------------------------------------------------------------------------- /src/core/timer_proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer_proc.c -------------------------------------------------------------------------------- /src/core/timer_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer_proc.h -------------------------------------------------------------------------------- /src/core/timer_ticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/timer_ticks.h -------------------------------------------------------------------------------- /src/core/tls_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tls_hooks.c -------------------------------------------------------------------------------- /src/core/tls_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tls_hooks.h -------------------------------------------------------------------------------- /src/core/tls_hooks_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tls_hooks_init.h -------------------------------------------------------------------------------- /src/core/trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/trim.h -------------------------------------------------------------------------------- /src/core/tsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tsend.c -------------------------------------------------------------------------------- /src/core/tsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/tsend.h -------------------------------------------------------------------------------- /src/core/udp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/udp_server.c -------------------------------------------------------------------------------- /src/core/udp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/udp_server.h -------------------------------------------------------------------------------- /src/core/usr_avp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/usr_avp.c -------------------------------------------------------------------------------- /src/core/usr_avp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/usr_avp.h -------------------------------------------------------------------------------- /src/core/ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ut.c -------------------------------------------------------------------------------- /src/core/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ut.h -------------------------------------------------------------------------------- /src/core/ver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ver.c -------------------------------------------------------------------------------- /src/core/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ver.h -------------------------------------------------------------------------------- /src/core/ver_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/ver_defs.h -------------------------------------------------------------------------------- /src/core/xavp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/xavp.c -------------------------------------------------------------------------------- /src/core/xavp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/core/xavp.h -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/Makefile -------------------------------------------------------------------------------- /src/lib/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/Makefile.defs -------------------------------------------------------------------------------- /src/lib/Makefile.nonser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/Makefile.nonser -------------------------------------------------------------------------------- /src/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/README -------------------------------------------------------------------------------- /src/lib/binrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/binrpc/Makefile -------------------------------------------------------------------------------- /src/lib/binrpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/binrpc/README -------------------------------------------------------------------------------- /src/lib/cds/.cvsignore: -------------------------------------------------------------------------------- 1 | libser_cds.so.* 2 | 3 | -------------------------------------------------------------------------------- /src/lib/cds/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ChangeLog -------------------------------------------------------------------------------- /src/lib/cds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/Makefile -------------------------------------------------------------------------------- /src/lib/cds/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/base64.c -------------------------------------------------------------------------------- /src/lib/cds/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/base64.h -------------------------------------------------------------------------------- /src/lib/cds/cds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/cds.c -------------------------------------------------------------------------------- /src/lib/cds/cds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/cds.h -------------------------------------------------------------------------------- /src/lib/cds/dbid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/dbid.c -------------------------------------------------------------------------------- /src/lib/cds/dbid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/dbid.h -------------------------------------------------------------------------------- /src/lib/cds/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/doc/Makefile -------------------------------------------------------------------------------- /src/lib/cds/doc/cds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/doc/cds.xml -------------------------------------------------------------------------------- /src/lib/cds/doc/sstr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/doc/sstr.xml -------------------------------------------------------------------------------- /src/lib/cds/doc/str_t.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/doc/str_t.xml -------------------------------------------------------------------------------- /src/lib/cds/doc/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/doc/sync.xml -------------------------------------------------------------------------------- /src/lib/cds/dstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/dstring.c -------------------------------------------------------------------------------- /src/lib/cds/dstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/dstring.h -------------------------------------------------------------------------------- /src/lib/cds/hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/hash_table.c -------------------------------------------------------------------------------- /src/lib/cds/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/hash_table.h -------------------------------------------------------------------------------- /src/lib/cds/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/list.h -------------------------------------------------------------------------------- /src/lib/cds/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/logger.h -------------------------------------------------------------------------------- /src/lib/cds/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/memory.c -------------------------------------------------------------------------------- /src/lib/cds/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/memory.h -------------------------------------------------------------------------------- /src/lib/cds/msg_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/msg_queue.c -------------------------------------------------------------------------------- /src/lib/cds/msg_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/msg_queue.h -------------------------------------------------------------------------------- /src/lib/cds/ptr_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ptr_vector.c -------------------------------------------------------------------------------- /src/lib/cds/ptr_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ptr_vector.h -------------------------------------------------------------------------------- /src/lib/cds/ref_cntr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ref_cntr.c -------------------------------------------------------------------------------- /src/lib/cds/ref_cntr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ref_cntr.h -------------------------------------------------------------------------------- /src/lib/cds/ser_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ser_profile.c -------------------------------------------------------------------------------- /src/lib/cds/ser_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/ser_profile.h -------------------------------------------------------------------------------- /src/lib/cds/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/serialize.c -------------------------------------------------------------------------------- /src/lib/cds/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/serialize.h -------------------------------------------------------------------------------- /src/lib/cds/sip_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/sip_utils.c -------------------------------------------------------------------------------- /src/lib/cds/sip_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/sip_utils.h -------------------------------------------------------------------------------- /src/lib/cds/sstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/sstr.c -------------------------------------------------------------------------------- /src/lib/cds/sstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/sstr.h -------------------------------------------------------------------------------- /src/lib/cds/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/sync.h -------------------------------------------------------------------------------- /src/lib/cds/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/vector.c -------------------------------------------------------------------------------- /src/lib/cds/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/cds/vector.h -------------------------------------------------------------------------------- /src/lib/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/doc/Makefile -------------------------------------------------------------------------------- /src/lib/doc/libraries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/doc/libraries.xml -------------------------------------------------------------------------------- /src/lib/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/doxygen.cfg -------------------------------------------------------------------------------- /src/lib/ims/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/ims/Makefile -------------------------------------------------------------------------------- /src/lib/ims/ims_getters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/ims/ims_getters.c -------------------------------------------------------------------------------- /src/lib/ims/ims_getters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/ims/ims_getters.h -------------------------------------------------------------------------------- /src/lib/ims/useful_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/ims/useful_defs.h -------------------------------------------------------------------------------- /src/lib/presence/.cvsignore: -------------------------------------------------------------------------------- 1 | libser_presence.so.* 2 | 3 | -------------------------------------------------------------------------------- /src/lib/presence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/Makefile -------------------------------------------------------------------------------- /src/lib/presence/lpidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/lpidf.c -------------------------------------------------------------------------------- /src/lib/presence/lpidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/lpidf.h -------------------------------------------------------------------------------- /src/lib/presence/pidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/pidf.c -------------------------------------------------------------------------------- /src/lib/presence/pidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/pidf.h -------------------------------------------------------------------------------- /src/lib/presence/qsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/qsa.c -------------------------------------------------------------------------------- /src/lib/presence/qsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/qsa.h -------------------------------------------------------------------------------- /src/lib/presence/qsa_params.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /src/lib/presence/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/utils.c -------------------------------------------------------------------------------- /src/lib/presence/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/utils.h -------------------------------------------------------------------------------- /src/lib/presence/xpidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/xpidf.c -------------------------------------------------------------------------------- /src/lib/presence/xpidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/presence/xpidf.h -------------------------------------------------------------------------------- /src/lib/print/.cvsignore: -------------------------------------------------------------------------------- 1 | libprint.so.* 2 | 3 | -------------------------------------------------------------------------------- /src/lib/print/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/print/Makefile -------------------------------------------------------------------------------- /src/lib/print/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/print/README -------------------------------------------------------------------------------- /src/lib/print/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/print/print.c -------------------------------------------------------------------------------- /src/lib/print/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/print/print.h -------------------------------------------------------------------------------- /src/lib/shm_regex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/shm_regex/README -------------------------------------------------------------------------------- /src/lib/srdb1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/Makefile -------------------------------------------------------------------------------- /src/lib/srdb1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/README -------------------------------------------------------------------------------- /src/lib/srdb1/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db.c -------------------------------------------------------------------------------- /src/lib/srdb1/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_cap.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_con.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_id.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_id.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_key.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_op.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_pool.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_pool.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_query.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_query.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_res.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_res.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_row.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_row.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_ut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_ut.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_ut.h -------------------------------------------------------------------------------- /src/lib/srdb1/db_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_val.c -------------------------------------------------------------------------------- /src/lib/srdb1/db_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb1/db_val.h -------------------------------------------------------------------------------- /src/lib/srdb2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/Makefile -------------------------------------------------------------------------------- /src/lib/srdb2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/README -------------------------------------------------------------------------------- /src/lib/srdb2/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db.c -------------------------------------------------------------------------------- /src/lib/srdb2/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_cmd.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_cmd.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_con.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_con.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_con.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_ctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_ctx.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_ctx.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_drv.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_drv.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_fld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_fld.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_fld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_fld.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_gen.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_gen.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_pool.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_pool.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_rec.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_rec.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_res.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_res.h -------------------------------------------------------------------------------- /src/lib/srdb2/db_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_uri.c -------------------------------------------------------------------------------- /src/lib/srdb2/db_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srdb2/db_uri.h -------------------------------------------------------------------------------- /src/lib/srutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/Makefile -------------------------------------------------------------------------------- /src/lib/srutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/README -------------------------------------------------------------------------------- /src/lib/srutils/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/sha256.c -------------------------------------------------------------------------------- /src/lib/srutils/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/sha256.h -------------------------------------------------------------------------------- /src/lib/srutils/srjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/srjson.c -------------------------------------------------------------------------------- /src/lib/srutils/srjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/srjson.h -------------------------------------------------------------------------------- /src/lib/srutils/sruid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/sruid.c -------------------------------------------------------------------------------- /src/lib/srutils/sruid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/sruid.h -------------------------------------------------------------------------------- /src/lib/srutils/tmrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/tmrec.c -------------------------------------------------------------------------------- /src/lib/srutils/tmrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/srutils/tmrec.h -------------------------------------------------------------------------------- /src/lib/trie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/trie/Makefile -------------------------------------------------------------------------------- /src/lib/trie/dtrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/trie/dtrie.c -------------------------------------------------------------------------------- /src/lib/trie/dtrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/trie/dtrie.h -------------------------------------------------------------------------------- /src/lib/xcap/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/ChangeLog -------------------------------------------------------------------------------- /src/lib/xcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/Makefile -------------------------------------------------------------------------------- /src/lib/xcap/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/doc/Makefile -------------------------------------------------------------------------------- /src/lib/xcap/doc/xcap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/doc/xcap.xml -------------------------------------------------------------------------------- /src/lib/xcap/msg_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/msg_rules.c -------------------------------------------------------------------------------- /src/lib/xcap/msg_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/msg_rules.h -------------------------------------------------------------------------------- /src/lib/xcap/pres_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/pres_rules.c -------------------------------------------------------------------------------- /src/lib/xcap/pres_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/pres_rules.h -------------------------------------------------------------------------------- /src/lib/xcap/xml_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/xml_utils.c -------------------------------------------------------------------------------- /src/lib/xcap/xml_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/lib/xcap/xml_utils.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/main.c -------------------------------------------------------------------------------- /src/modules/acc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/Makefile -------------------------------------------------------------------------------- /src/modules/acc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/README -------------------------------------------------------------------------------- /src/modules/acc/acc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc.c -------------------------------------------------------------------------------- /src/modules/acc/acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc.h -------------------------------------------------------------------------------- /src/modules/acc/acc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc_api.h -------------------------------------------------------------------------------- /src/modules/acc/acc_cdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc_cdr.c -------------------------------------------------------------------------------- /src/modules/acc/acc_cdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc_cdr.h -------------------------------------------------------------------------------- /src/modules/acc/acc_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc_mod.c -------------------------------------------------------------------------------- /src/modules/acc/acc_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/acc/acc_mod.h -------------------------------------------------------------------------------- /src/modules/app_perl/typemap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/async/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/async/README -------------------------------------------------------------------------------- /src/modules/auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/Makefile -------------------------------------------------------------------------------- /src/modules/auth/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/README -------------------------------------------------------------------------------- /src/modules/auth/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/api.c -------------------------------------------------------------------------------- /src/modules/auth/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/api.h -------------------------------------------------------------------------------- /src/modules/auth/auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/auth.xml -------------------------------------------------------------------------------- /src/modules/auth/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nc.c -------------------------------------------------------------------------------- /src/modules/auth/nc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nc.h -------------------------------------------------------------------------------- /src/modules/auth/nid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nid.c -------------------------------------------------------------------------------- /src/modules/auth/nid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nid.h -------------------------------------------------------------------------------- /src/modules/auth/nonce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nonce.c -------------------------------------------------------------------------------- /src/modules/auth/nonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/nonce.h -------------------------------------------------------------------------------- /src/modules/auth/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth/todo.txt -------------------------------------------------------------------------------- /src/modules/auth_db/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/auth_db/api.h -------------------------------------------------------------------------------- /src/modules/avp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/avp/Makefile -------------------------------------------------------------------------------- /src/modules/avp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/avp/README -------------------------------------------------------------------------------- /src/modules/avp/avp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/avp/avp.c -------------------------------------------------------------------------------- /src/modules/avp/avp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/avp/avp.xml -------------------------------------------------------------------------------- /src/modules/avpops/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/avpops/README -------------------------------------------------------------------------------- /src/modules/blst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/blst/Makefile -------------------------------------------------------------------------------- /src/modules/blst/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/blst/README -------------------------------------------------------------------------------- /src/modules/blst/blst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/blst/blst.c -------------------------------------------------------------------------------- /src/modules/cdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/Makefile -------------------------------------------------------------------------------- /src/modules/cdp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/README -------------------------------------------------------------------------------- /src/modules/cdp/cdp_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/cdp_mod.c -------------------------------------------------------------------------------- /src/modules/cdp/cdp_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/cdp_mod.h -------------------------------------------------------------------------------- /src/modules/cdp/cdp_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/cdp_rpc.c -------------------------------------------------------------------------------- /src/modules/cdp/cdp_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/cdp_rpc.h -------------------------------------------------------------------------------- /src/modules/cdp/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/common.c -------------------------------------------------------------------------------- /src/modules/cdp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/common.h -------------------------------------------------------------------------------- /src/modules/cdp/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/config.c -------------------------------------------------------------------------------- /src/modules/cdp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/config.h -------------------------------------------------------------------------------- /src/modules/cdp/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/globals.c -------------------------------------------------------------------------------- /src/modules/cdp/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/globals.h -------------------------------------------------------------------------------- /src/modules/cdp/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/peer.c -------------------------------------------------------------------------------- /src/modules/cdp/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/peer.h -------------------------------------------------------------------------------- /src/modules/cdp/routing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/routing.c -------------------------------------------------------------------------------- /src/modules/cdp/routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/routing.h -------------------------------------------------------------------------------- /src/modules/cdp/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/sem.h -------------------------------------------------------------------------------- /src/modules/cdp/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/session.c -------------------------------------------------------------------------------- /src/modules/cdp/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/session.h -------------------------------------------------------------------------------- /src/modules/cdp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/timer.c -------------------------------------------------------------------------------- /src/modules/cdp/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/timer.h -------------------------------------------------------------------------------- /src/modules/cdp/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/utils.h -------------------------------------------------------------------------------- /src/modules/cdp/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/worker.c -------------------------------------------------------------------------------- /src/modules/cdp/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cdp/worker.h -------------------------------------------------------------------------------- /src/modules/cfg_db/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cfg_db/README -------------------------------------------------------------------------------- /src/modules/cfgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cfgt/Makefile -------------------------------------------------------------------------------- /src/modules/cfgt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cfgt/README -------------------------------------------------------------------------------- /src/modules/cfgt/cfgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cfgt/cfgt.c -------------------------------------------------------------------------------- /src/modules/cfgt/cfgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cfgt/cfgt.h -------------------------------------------------------------------------------- /src/modules/cnxcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cnxcc/README -------------------------------------------------------------------------------- /src/modules/cnxcc/cnxcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cnxcc/cnxcc.c -------------------------------------------------------------------------------- /src/modules/cnxcc/cnxcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cnxcc/cnxcc.h -------------------------------------------------------------------------------- /src/modules/corex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/corex/README -------------------------------------------------------------------------------- /src/modules/cplc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cplc/Makefile -------------------------------------------------------------------------------- /src/modules/cplc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cplc/README -------------------------------------------------------------------------------- /src/modules/cplc/cpl_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cplc/cpl_db.c -------------------------------------------------------------------------------- /src/modules/cplc/cpl_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cplc/cpl_db.h -------------------------------------------------------------------------------- /src/modules/cplc/cplc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/cplc/cplc.c -------------------------------------------------------------------------------- /src/modules/crypto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/crypto/README -------------------------------------------------------------------------------- /src/modules/crypto/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/crypto/api.c -------------------------------------------------------------------------------- /src/modules/crypto/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/crypto/api.h -------------------------------------------------------------------------------- /src/modules/ctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/Makefile -------------------------------------------------------------------------------- /src/modules/ctl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/README -------------------------------------------------------------------------------- /src/modules/ctl/binrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/binrpc.c -------------------------------------------------------------------------------- /src/modules/ctl/binrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/binrpc.h -------------------------------------------------------------------------------- /src/modules/ctl/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/ctl.c -------------------------------------------------------------------------------- /src/modules/ctl/ctl.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/ctl.cfg -------------------------------------------------------------------------------- /src/modules/ctl/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ctl/ctl.h -------------------------------------------------------------------------------- /src/modules/dialog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dialog/README -------------------------------------------------------------------------------- /src/modules/dmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/Makefile -------------------------------------------------------------------------------- /src/modules/dmq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/README -------------------------------------------------------------------------------- /src/modules/dmq/dmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/dmq.c -------------------------------------------------------------------------------- /src/modules/dmq/dmq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/dmq.h -------------------------------------------------------------------------------- /src/modules/dmq/dmqnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/dmqnode.c -------------------------------------------------------------------------------- /src/modules/dmq/dmqnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/dmqnode.h -------------------------------------------------------------------------------- /src/modules/dmq/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/message.c -------------------------------------------------------------------------------- /src/modules/dmq/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/message.h -------------------------------------------------------------------------------- /src/modules/dmq/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/peer.c -------------------------------------------------------------------------------- /src/modules/dmq/peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/peer.h -------------------------------------------------------------------------------- /src/modules/dmq/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/worker.c -------------------------------------------------------------------------------- /src/modules/dmq/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dmq/worker.h -------------------------------------------------------------------------------- /src/modules/dnssec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/dnssec/README -------------------------------------------------------------------------------- /src/modules/domain/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/domain/README -------------------------------------------------------------------------------- /src/modules/domain/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/domain/api.c -------------------------------------------------------------------------------- /src/modules/domain/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/domain/api.h -------------------------------------------------------------------------------- /src/modules/domain/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/domain/hash.c -------------------------------------------------------------------------------- /src/modules/domain/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/domain/hash.h -------------------------------------------------------------------------------- /src/modules/enum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/enum/Makefile -------------------------------------------------------------------------------- /src/modules/enum/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/enum/README -------------------------------------------------------------------------------- /src/modules/enum/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/enum/enum.c -------------------------------------------------------------------------------- /src/modules/enum/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/enum/enum.h -------------------------------------------------------------------------------- /src/modules/erlang/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/erlang/README -------------------------------------------------------------------------------- /src/modules/erlang/epmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/erlang/epmd.c -------------------------------------------------------------------------------- /src/modules/erlang/epmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/erlang/epmd.h -------------------------------------------------------------------------------- /src/modules/evapi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/evapi/README -------------------------------------------------------------------------------- /src/modules/exec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/Makefile -------------------------------------------------------------------------------- /src/modules/exec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/README -------------------------------------------------------------------------------- /src/modules/exec/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/exec.c -------------------------------------------------------------------------------- /src/modules/exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/exec.h -------------------------------------------------------------------------------- /src/modules/exec/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/kill.c -------------------------------------------------------------------------------- /src/modules/exec/kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/exec/kill.h -------------------------------------------------------------------------------- /src/modules/geoip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/geoip/README -------------------------------------------------------------------------------- /src/modules/geoip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/geoip2/README -------------------------------------------------------------------------------- /src/modules/group/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/group/README -------------------------------------------------------------------------------- /src/modules/group/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/group/group.c -------------------------------------------------------------------------------- /src/modules/group/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/group/group.h -------------------------------------------------------------------------------- /src/modules/h350/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/h350/Makefile -------------------------------------------------------------------------------- /src/modules/h350/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/h350/README -------------------------------------------------------------------------------- /src/modules/htable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/htable/README -------------------------------------------------------------------------------- /src/modules/htable/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/htable/api.c -------------------------------------------------------------------------------- /src/modules/htable/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/htable/api.h -------------------------------------------------------------------------------- /src/modules/imc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/Makefile -------------------------------------------------------------------------------- /src/modules/imc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/README -------------------------------------------------------------------------------- /src/modules/imc/imc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc.c -------------------------------------------------------------------------------- /src/modules/imc/imc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc.h -------------------------------------------------------------------------------- /src/modules/imc/imc_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc_cmd.c -------------------------------------------------------------------------------- /src/modules/imc/imc_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc_cmd.h -------------------------------------------------------------------------------- /src/modules/imc/imc_mng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc_mng.c -------------------------------------------------------------------------------- /src/modules/imc/imc_mng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/imc/imc_mng.h -------------------------------------------------------------------------------- /src/modules/ims_isc/blurb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ims_isc/blurb -------------------------------------------------------------------------------- /src/modules/ims_isc/isc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ims_isc/isc.c -------------------------------------------------------------------------------- /src/modules/ims_isc/isc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ims_isc/isc.h -------------------------------------------------------------------------------- /src/modules/ims_ocs/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ims_ocs/sem.h -------------------------------------------------------------------------------- /src/modules/ims_qos/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ims_qos/sem.h -------------------------------------------------------------------------------- /src/modules/ipops/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ipops/README -------------------------------------------------------------------------------- /src/modules/ipops/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ipops/api.c -------------------------------------------------------------------------------- /src/modules/ipops/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ipops/api.h -------------------------------------------------------------------------------- /src/modules/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/json/Makefile -------------------------------------------------------------------------------- /src/modules/json/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/json/api.h -------------------------------------------------------------------------------- /src/modules/kex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/kex/README -------------------------------------------------------------------------------- /src/modules/lcr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/lcr/README -------------------------------------------------------------------------------- /src/modules/lcr/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/lcr/hash.c -------------------------------------------------------------------------------- /src/modules/lcr/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/lcr/hash.h -------------------------------------------------------------------------------- /src/modules/ldap/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/ldap/api.h -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/Cassandra.cpp: -------------------------------------------------------------------------------- 1 | ../Cassandra.cpp -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/Cassandra.h: -------------------------------------------------------------------------------- 1 | ../Cassandra.h -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/cassandra_constants.cpp: -------------------------------------------------------------------------------- 1 | ../cassandra_constants.cpp -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/cassandra_constants.h: -------------------------------------------------------------------------------- 1 | ../cassandra_constants.h -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/cassandra_types.cpp: -------------------------------------------------------------------------------- 1 | ../cassandra_types.cpp -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/cassandra_types.h: -------------------------------------------------------------------------------- 1 | ../cassandra_types.h -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/thrift_wrapper.cpp: -------------------------------------------------------------------------------- 1 | ../thrift_wrapper.cpp -------------------------------------------------------------------------------- /src/modules/ndb_cassandra/test-cpp/thrift_wrapper.h: -------------------------------------------------------------------------------- 1 | ../thrift_wrapper.h -------------------------------------------------------------------------------- /src/modules/nsq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/nsq/README -------------------------------------------------------------------------------- /src/modules/nsq/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/nsq/defs.h -------------------------------------------------------------------------------- /src/modules/osp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/osp/README -------------------------------------------------------------------------------- /src/modules/osp/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/osp/tm.c -------------------------------------------------------------------------------- /src/modules/osp/tm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/osp/tm.h -------------------------------------------------------------------------------- /src/modules/pdb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pdb/README -------------------------------------------------------------------------------- /src/modules/pdb/pdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pdb/pdb.c -------------------------------------------------------------------------------- /src/modules/pdt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pdt/README -------------------------------------------------------------------------------- /src/modules/pdt/pdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pdt/pdt.c -------------------------------------------------------------------------------- /src/modules/presence_conference/publish.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/presence_conference/test_framework/publish.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/pua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/README -------------------------------------------------------------------------------- /src/modules/pua/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/hash.c -------------------------------------------------------------------------------- /src/modules/pua/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/hash.h -------------------------------------------------------------------------------- /src/modules/pua/pidf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/pidf.c -------------------------------------------------------------------------------- /src/modules/pua/pidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/pidf.h -------------------------------------------------------------------------------- /src/modules/pua/pua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/pua.c -------------------------------------------------------------------------------- /src/modules/pua/pua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pua/pua.h -------------------------------------------------------------------------------- /src/modules/pv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pv/README -------------------------------------------------------------------------------- /src/modules/pv/pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/pv/pv.c -------------------------------------------------------------------------------- /src/modules/qos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/qos/README -------------------------------------------------------------------------------- /src/modules/qos/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/qos/qos.c -------------------------------------------------------------------------------- /src/modules/rls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rls/README -------------------------------------------------------------------------------- /src/modules/rls/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rls/api.h -------------------------------------------------------------------------------- /src/modules/rls/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rls/list.h -------------------------------------------------------------------------------- /src/modules/rls/rls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rls/rls.c -------------------------------------------------------------------------------- /src/modules/rls/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rls/rls.h -------------------------------------------------------------------------------- /src/modules/rr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/README -------------------------------------------------------------------------------- /src/modules/rr/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/api.c -------------------------------------------------------------------------------- /src/modules/rr/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/api.h -------------------------------------------------------------------------------- /src/modules/rr/loose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/loose.c -------------------------------------------------------------------------------- /src/modules/rr/loose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/loose.h -------------------------------------------------------------------------------- /src/modules/rr/rr_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/rr_cb.c -------------------------------------------------------------------------------- /src/modules/rr/rr_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/rr/rr_cb.h -------------------------------------------------------------------------------- /src/modules/rtp_media_server/docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build . -t rtp_media_server 2 | -------------------------------------------------------------------------------- /src/modules/sca/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sca/NOTES -------------------------------------------------------------------------------- /src/modules/sca/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sca/README -------------------------------------------------------------------------------- /src/modules/sca/sca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sca/sca.c -------------------------------------------------------------------------------- /src/modules/sca/sca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sca/sca.h -------------------------------------------------------------------------------- /src/modules/seas/ha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/seas/ha.c -------------------------------------------------------------------------------- /src/modules/seas/ha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/seas/ha.h -------------------------------------------------------------------------------- /src/modules/sipt/ss7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sipt/ss7.h -------------------------------------------------------------------------------- /src/modules/sl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sl/README -------------------------------------------------------------------------------- /src/modules/sl/sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sl/sl.c -------------------------------------------------------------------------------- /src/modules/sl/sl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sl/sl.h -------------------------------------------------------------------------------- /src/modules/sms/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sms/README -------------------------------------------------------------------------------- /src/modules/sms/sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sms/sms.c -------------------------------------------------------------------------------- /src/modules/sst/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sst/README -------------------------------------------------------------------------------- /src/modules/sst/sst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/sst/sst.c -------------------------------------------------------------------------------- /src/modules/tls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tls/README -------------------------------------------------------------------------------- /src/modules/tm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/README -------------------------------------------------------------------------------- /src/modules/tm/dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/dlg.c -------------------------------------------------------------------------------- /src/modules/tm/dlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/dlg.h -------------------------------------------------------------------------------- /src/modules/tm/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/lock.c -------------------------------------------------------------------------------- /src/modules/tm/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/lock.h -------------------------------------------------------------------------------- /src/modules/tm/t_fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/t_fwd.c -------------------------------------------------------------------------------- /src/modules/tm/t_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/t_fwd.h -------------------------------------------------------------------------------- /src/modules/tm/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/test.c -------------------------------------------------------------------------------- /src/modules/tm/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/timer.c -------------------------------------------------------------------------------- /src/modules/tm/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/timer.h -------------------------------------------------------------------------------- /src/modules/tm/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/tm.c -------------------------------------------------------------------------------- /src/modules/tm/uac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/uac.c -------------------------------------------------------------------------------- /src/modules/tm/uac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/uac.h -------------------------------------------------------------------------------- /src/modules/tm/ut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tm/ut.h -------------------------------------------------------------------------------- /src/modules/tmx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tmx/README -------------------------------------------------------------------------------- /src/modules/tmx/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/tmx/api.h -------------------------------------------------------------------------------- /src/modules/uac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/uac/README -------------------------------------------------------------------------------- /src/modules/uac/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/uac/api.h -------------------------------------------------------------------------------- /src/modules/uac/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/uac/auth.c -------------------------------------------------------------------------------- /src/modules/uac/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/uac/auth.h -------------------------------------------------------------------------------- /src/modules/uac/uac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/uac/uac.c -------------------------------------------------------------------------------- /src/modules/uid_auth_db/.cvsignore: -------------------------------------------------------------------------------- 1 | auth_db.7 2 | -------------------------------------------------------------------------------- /src/modules/xmpp/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/src/modules/xmpp/sha.c -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/README.md -------------------------------------------------------------------------------- /test/misc/cfg/bad_eof.cfg: -------------------------------------------------------------------------------- 1 | " unterminated string 2 | -------------------------------------------------------------------------------- /test/misc/cfg/echo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/echo.cfg -------------------------------------------------------------------------------- /test/misc/cfg/gen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/gen.cfg -------------------------------------------------------------------------------- /test/misc/cfg/nc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/nc.cfg -------------------------------------------------------------------------------- /test/misc/cfg/ser.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/ser.cfg -------------------------------------------------------------------------------- /test/misc/cfg/sf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/sf.cfg -------------------------------------------------------------------------------- /test/misc/cfg/tcp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/tcp.cfg -------------------------------------------------------------------------------- /test/misc/cfg/td.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/td.cfg -------------------------------------------------------------------------------- /test/misc/cfg/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/test.cfg -------------------------------------------------------------------------------- /test/misc/cfg/tp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/tp.cfg -------------------------------------------------------------------------------- /test/misc/cfg/tx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/tx.cfg -------------------------------------------------------------------------------- /test/misc/cfg/xx.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/xx.cfg -------------------------------------------------------------------------------- /test/misc/cfg/xy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/cfg/xy.cfg -------------------------------------------------------------------------------- /test/misc/code/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/auto.c -------------------------------------------------------------------------------- /test/misc/code/basex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/basex.c -------------------------------------------------------------------------------- /test/misc/code/ifls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/ifls.c -------------------------------------------------------------------------------- /test/misc/code/p_uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/p_uri.c -------------------------------------------------------------------------------- /test/misc/code/shoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/shoot.c -------------------------------------------------------------------------------- /test/misc/code/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/test.c -------------------------------------------------------------------------------- /test/misc/code/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/code/udp.c -------------------------------------------------------------------------------- /test/misc/extra/bt.gdb: -------------------------------------------------------------------------------- 1 | 2 | backtrace 3 | -------------------------------------------------------------------------------- /test/misc/sip/bad_via3.sip: -------------------------------------------------------------------------------- 1 | INVITE sip:x@y.z SIP/2.0/UDP 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/misc/sip/bc2.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/bc2.sip -------------------------------------------------------------------------------- /test/misc/sip/dns.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/dns.sip -------------------------------------------------------------------------------- /test/misc/sip/long.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/long.sip -------------------------------------------------------------------------------- /test/misc/sip/nmr.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/nmr.sip -------------------------------------------------------------------------------- /test/misc/sip/req1.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/req1.sip -------------------------------------------------------------------------------- /test/misc/sip/req2.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/req2.sip -------------------------------------------------------------------------------- /test/misc/sip/sg.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/misc/sip/sg.sip -------------------------------------------------------------------------------- /test/mkinclude/kambin.mak: -------------------------------------------------------------------------------- 1 | KAMBIN=$(shell ../include/findkampath.sh) 2 | -------------------------------------------------------------------------------- /test/mod_httpapitest/test/test.log: -------------------------------------------------------------------------------- 1 | version: kamailio 5.0.0-dev4 (x86_64/darwin) 6dd4b1-dirty 2 | -------------------------------------------------------------------------------- /test/travis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/travis/README.md -------------------------------------------------------------------------------- /test/unit/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/1.sh -------------------------------------------------------------------------------- /test/unit/10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/10.sh -------------------------------------------------------------------------------- /test/unit/11.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/11.cfg -------------------------------------------------------------------------------- /test/unit/11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/11.sh -------------------------------------------------------------------------------- /test/unit/12.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/12.cfg -------------------------------------------------------------------------------- /test/unit/12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/12.sh -------------------------------------------------------------------------------- /test/unit/13.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/13.cfg -------------------------------------------------------------------------------- /test/unit/13.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/13.sh -------------------------------------------------------------------------------- /test/unit/14.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/14.cfg -------------------------------------------------------------------------------- /test/unit/14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/14.sh -------------------------------------------------------------------------------- /test/unit/15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/15.sh -------------------------------------------------------------------------------- /test/unit/16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/16.sh -------------------------------------------------------------------------------- /test/unit/17.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/17.sh -------------------------------------------------------------------------------- /test/unit/18.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/18.sh -------------------------------------------------------------------------------- /test/unit/19.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/19.cfg -------------------------------------------------------------------------------- /test/unit/19.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/19.sh -------------------------------------------------------------------------------- /test/unit/2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/2.cfg -------------------------------------------------------------------------------- /test/unit/2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/2.sh -------------------------------------------------------------------------------- /test/unit/20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/20.cfg -------------------------------------------------------------------------------- /test/unit/20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/20.sh -------------------------------------------------------------------------------- /test/unit/21.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/21.cfg -------------------------------------------------------------------------------- /test/unit/21.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/21.sh -------------------------------------------------------------------------------- /test/unit/22.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/22.cfg -------------------------------------------------------------------------------- /test/unit/22.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/22.sh -------------------------------------------------------------------------------- /test/unit/23.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/23.sh -------------------------------------------------------------------------------- /test/unit/24.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/24.sh -------------------------------------------------------------------------------- /test/unit/25.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/25.cfg -------------------------------------------------------------------------------- /test/unit/25.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/25.sh -------------------------------------------------------------------------------- /test/unit/26.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/26.cfg -------------------------------------------------------------------------------- /test/unit/26.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/26.sh -------------------------------------------------------------------------------- /test/unit/27.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/27.sh -------------------------------------------------------------------------------- /test/unit/28.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/28.cfg -------------------------------------------------------------------------------- /test/unit/28.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/28.sh -------------------------------------------------------------------------------- /test/unit/29.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/29.sh -------------------------------------------------------------------------------- /test/unit/3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/3.sh -------------------------------------------------------------------------------- /test/unit/30.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/30.cfg -------------------------------------------------------------------------------- /test/unit/30.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/30.sh -------------------------------------------------------------------------------- /test/unit/31.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/31.sh -------------------------------------------------------------------------------- /test/unit/32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/32.sh -------------------------------------------------------------------------------- /test/unit/33.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/33.cfg -------------------------------------------------------------------------------- /test/unit/33.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/33.sh -------------------------------------------------------------------------------- /test/unit/34.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/34.cfg -------------------------------------------------------------------------------- /test/unit/34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/34.sh -------------------------------------------------------------------------------- /test/unit/35.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/35.cfg -------------------------------------------------------------------------------- /test/unit/35.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/35.sh -------------------------------------------------------------------------------- /test/unit/36.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/36.sh -------------------------------------------------------------------------------- /test/unit/37.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/37.sh -------------------------------------------------------------------------------- /test/unit/38.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/38.sh -------------------------------------------------------------------------------- /test/unit/39.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/39.sh -------------------------------------------------------------------------------- /test/unit/4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/4.sh -------------------------------------------------------------------------------- /test/unit/40.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/40.cfg -------------------------------------------------------------------------------- /test/unit/40.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/40.sh -------------------------------------------------------------------------------- /test/unit/41.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/41.cfg -------------------------------------------------------------------------------- /test/unit/41.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/41.sh -------------------------------------------------------------------------------- /test/unit/42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/42.sh -------------------------------------------------------------------------------- /test/unit/43.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/43.sh -------------------------------------------------------------------------------- /test/unit/44.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/44.sh -------------------------------------------------------------------------------- /test/unit/45.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/45.cfg -------------------------------------------------------------------------------- /test/unit/45.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/45.sh -------------------------------------------------------------------------------- /test/unit/46.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/46.sh -------------------------------------------------------------------------------- /test/unit/5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/5.cfg -------------------------------------------------------------------------------- /test/unit/5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/5.sh -------------------------------------------------------------------------------- /test/unit/50.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/50.cfg -------------------------------------------------------------------------------- /test/unit/50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/50.sh -------------------------------------------------------------------------------- /test/unit/6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/6.sh -------------------------------------------------------------------------------- /test/unit/60.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/60.cfg -------------------------------------------------------------------------------- /test/unit/60.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/60.sh -------------------------------------------------------------------------------- /test/unit/61.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/61.cfg -------------------------------------------------------------------------------- /test/unit/61.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/61.sh -------------------------------------------------------------------------------- /test/unit/7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/7.cfg -------------------------------------------------------------------------------- /test/unit/7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/7.sh -------------------------------------------------------------------------------- /test/unit/8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/8.sh -------------------------------------------------------------------------------- /test/unit/9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/9.sh -------------------------------------------------------------------------------- /test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/Makefile -------------------------------------------------------------------------------- /test/unit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/README -------------------------------------------------------------------------------- /test/unit/cpl_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/cpl_test.xml -------------------------------------------------------------------------------- /test/unit/inv_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/inv_auth.xml -------------------------------------------------------------------------------- /test/unit/invite.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/invite.sip -------------------------------------------------------------------------------- /test/unit/presence.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/presence.cfg -------------------------------------------------------------------------------- /test/unit/publish.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/publish.csv -------------------------------------------------------------------------------- /test/unit/reg_auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/reg_auth.xml -------------------------------------------------------------------------------- /test/unit/register.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/test/unit/register.sip -------------------------------------------------------------------------------- /test/unit/route-empty.cfg: -------------------------------------------------------------------------------- 1 | request_route { 2 | ; 3 | } 4 | -------------------------------------------------------------------------------- /utils/README-UTILS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/README-UTILS -------------------------------------------------------------------------------- /utils/db_oracle/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/db_oracle/util.c -------------------------------------------------------------------------------- /utils/kamcmd/EXAMPLES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/EXAMPLES -------------------------------------------------------------------------------- /utils/kamcmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/Makefile -------------------------------------------------------------------------------- /utils/kamcmd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/README -------------------------------------------------------------------------------- /utils/kamcmd/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/TODO -------------------------------------------------------------------------------- /utils/kamcmd/kamcmd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/kamcmd.8 -------------------------------------------------------------------------------- /utils/kamcmd/kamcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/kamcmd.c -------------------------------------------------------------------------------- /utils/kamcmd/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamcmd/license.h -------------------------------------------------------------------------------- /utils/kamctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/Makefile -------------------------------------------------------------------------------- /utils/kamctl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/README -------------------------------------------------------------------------------- /utils/kamctl/db_redis/kamailio/carrier_name: -------------------------------------------------------------------------------- 1 | id/int,carrier/string, 2 | 1 3 | -------------------------------------------------------------------------------- /utils/kamctl/db_redis/kamailio/domain_name: -------------------------------------------------------------------------------- 1 | id/int,domain/string, 2 | 1 3 | -------------------------------------------------------------------------------- /utils/kamctl/dbtext/kamailio/carrier_name: -------------------------------------------------------------------------------- 1 | id(int,auto) carrier(string,null) 2 | -------------------------------------------------------------------------------- /utils/kamctl/dbtext/kamailio/domain_name: -------------------------------------------------------------------------------- 1 | id(int,auto) domain(string,null) 2 | -------------------------------------------------------------------------------- /utils/kamctl/kamctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/kamctl -------------------------------------------------------------------------------- /utils/kamctl/kamctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/kamctl.8 -------------------------------------------------------------------------------- /utils/kamctl/kamctlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/kamctlrc -------------------------------------------------------------------------------- /utils/kamctl/kamdbctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamctl/kamdbctl -------------------------------------------------------------------------------- /utils/kamctl/xhttp_pi/pi_framework-02: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/kamunix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/kamunix/Makefile -------------------------------------------------------------------------------- /utils/pdbt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/.gitignore -------------------------------------------------------------------------------- /utils/pdbt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/Makefile -------------------------------------------------------------------------------- /utils/pdbt/carrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/carrier.c -------------------------------------------------------------------------------- /utils/pdbt/carrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/carrier.h -------------------------------------------------------------------------------- /utils/pdbt/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/common.c -------------------------------------------------------------------------------- /utils/pdbt/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/common.h -------------------------------------------------------------------------------- /utils/pdbt/debian/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/pdbt/debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /utils/pdbt/debian/pdb-server.dirs: -------------------------------------------------------------------------------- 1 | usr/share/pdb-server 2 | -------------------------------------------------------------------------------- /utils/pdbt/dt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/dt.c -------------------------------------------------------------------------------- /utils/pdbt/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/dt.h -------------------------------------------------------------------------------- /utils/pdbt/dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/dtm.c -------------------------------------------------------------------------------- /utils/pdbt/dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/dtm.h -------------------------------------------------------------------------------- /utils/pdbt/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/log.c -------------------------------------------------------------------------------- /utils/pdbt/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/log.h -------------------------------------------------------------------------------- /utils/pdbt/pdbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/herlesupreeth/kamailio/HEAD/utils/pdbt/pdbt.c --------------------------------------------------------------------------------