├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── config.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS ├── COPYING ├── Dockerfile ├── LICENSE-AGPL-V3.md ├── README.md ├── doc └── architecture │ └── decisions │ ├── 0001-choose-config-storage.md │ └── template.md ├── docs ├── __README.md ├── api.md ├── assets │ ├── images │ │ └── pistachios.jpg │ └── stylesheets │ │ └── extra.css ├── bestpractices.en.md ├── bestpractices.fr.md ├── changelog │ └── index.md ├── contributing │ ├── index.md │ ├── reporting-a-bug.md │ ├── reporting-a-docs-issue.md │ └── requesting-a-change.md ├── faq │ ├── do-I-need-a-sbc-voip.en.md │ ├── do-I-need-a-sbc-voip.fr.md │ ├── index.en.md │ ├── index.fr.md │ ├── is-anyone-is-running-pyfreebilling-in-production.en.md │ ├── is-anyone-is-running-pyfreebilling-in-production.fr.md │ ├── is-pks-softswitch.en.md │ ├── is-pks-softswitch.fr.md │ ├── lcr-routing.en.md │ ├── lcr-routing.fr.md │ ├── pyfreebilling-pks-differences.en.md │ ├── pyfreebilling-pks-differences.fr.md │ ├── voip-softswitch-caracteristics.en.md │ └── voip-softswitch-caracteristics.fr.md ├── getting-started.en.md ├── getting-started.fr.md ├── how-to │ ├── apiban.md │ ├── backup-recovery.en.md │ ├── backup-recovery.fr.md │ ├── failover.en.md │ ├── failover.fr.md │ ├── loadbalancing.en.md │ ├── loadbalancing.fr.md │ ├── multi-tenant-ipbx.en.md │ ├── multi-tenant-ipbx.fr.md │ ├── pks-standby-failover.en.md │ ├── pks-standby-failover.fr.md │ ├── troubleshooting.en.md │ ├── troubleshooting.fr.md │ ├── upgrade.en.md │ └── upgrade.fr.md ├── index.en.md ├── index.fr.md ├── license.md ├── philosophy.en.md ├── philosophy.fr.md ├── swagger.json ├── theme_overrides │ ├── 404.html │ └── main.html ├── use-cases │ ├── connecting-ipbx-to-multiple-carriers.en.md │ ├── connecting-mutitenant-ipbx-to-carrier.en.md │ ├── failover.en.md │ ├── geographical-distribution-ipbx.en.md │ ├── ipbx-high-availability.en.md │ ├── securing-telephony-system.en.md │ ├── usecases.en.md │ └── usecases.fr.md └── user-guide │ ├── advanced-configuration.en.md │ ├── advanced-configuration.fr.md │ ├── cli.md │ ├── configuration.en.md │ ├── configuration.fr.md │ ├── installation.en.md │ ├── installation.fr.md │ ├── manage-fr.md │ ├── manage.en.md │ ├── requirements.en.md │ └── requirements.fr.md ├── jampack.config.mjs ├── mkdocs.yml ├── netlify.toml ├── package.json ├── pyfb.code-workspace ├── requirements.txt ├── runtime.txt ├── site ├── 404.html ├── __README │ └── index.html ├── api │ └── index.html ├── assets │ ├── images │ │ ├── favicon.png │ │ ├── pistachios.jpg │ │ └── social │ │ │ ├── __README.png │ │ │ ├── api.png │ │ │ ├── bestpractices.en.png │ │ │ ├── bestpractices.fr.png │ │ │ ├── changelog │ │ │ └── index.png │ │ │ ├── contributing │ │ │ ├── index.png │ │ │ ├── reporting-a-bug.png │ │ │ ├── reporting-a-docs-issue.png │ │ │ └── requesting-a-change.png │ │ │ ├── faq │ │ │ ├── do-I-need-a-sbc-voip.en.png │ │ │ ├── do-I-need-a-sbc-voip.fr.png │ │ │ ├── index.en.png │ │ │ ├── index.fr.png │ │ │ ├── is-anyone-is-running-pyfreebilling-in-production.en.png │ │ │ ├── is-anyone-is-running-pyfreebilling-in-production.fr.png │ │ │ ├── is-pks-softswitch.en.png │ │ │ ├── is-pks-softswitch.fr.png │ │ │ ├── lcr-routing.en.png │ │ │ ├── lcr-routing.fr.png │ │ │ ├── pyfreebilling-pks-differences.en.png │ │ │ ├── pyfreebilling-pks-differences.fr.png │ │ │ ├── voip-softswitch-caracteristics.en.png │ │ │ └── voip-softswitch-caracteristics.fr.png │ │ │ ├── getting-started.en.png │ │ │ ├── getting-started.fr.png │ │ │ ├── how-to │ │ │ ├── apiban.png │ │ │ ├── backup-recovery.en.png │ │ │ ├── backup-recovery.fr.png │ │ │ ├── failover.en.png │ │ │ ├── failover.fr.png │ │ │ ├── loadbalancing.en.png │ │ │ ├── loadbalancing.fr.png │ │ │ ├── multi-tenant-ipbx.en.png │ │ │ ├── multi-tenant-ipbx.fr.png │ │ │ ├── pks-standby-failover.en.png │ │ │ ├── pks-standby-failover.fr.png │ │ │ ├── troubleshooting.en.png │ │ │ ├── troubleshooting.fr.png │ │ │ ├── upgrade.en.png │ │ │ └── upgrade.fr.png │ │ │ ├── index.en.png │ │ │ ├── index.fr.png │ │ │ ├── license.png │ │ │ ├── philosophy.en.png │ │ │ ├── philosophy.fr.png │ │ │ ├── use-cases │ │ │ ├── connecting-ipbx-to-multiple-carriers.en.png │ │ │ ├── connecting-mutitenant-ipbx-to-carrier.en.png │ │ │ ├── failover.en.png │ │ │ ├── geographical-distribution-ipbx.en.png │ │ │ ├── ipbx-high-availability.en.png │ │ │ ├── securing-telephony-system.en.png │ │ │ ├── usecases.en.png │ │ │ └── usecases.fr.png │ │ │ └── user-guide │ │ │ ├── advanced-configuration.en.png │ │ │ ├── advanced-configuration.fr.png │ │ │ ├── cli.png │ │ │ ├── configuration.en.png │ │ │ ├── configuration.fr.png │ │ │ ├── installation.en.png │ │ │ ├── installation.fr.png │ │ │ ├── manage-fr.png │ │ │ ├── manage.en.png │ │ │ ├── requirements.en.png │ │ │ └── requirements.fr.png │ ├── javascripts │ │ ├── bundle.fe8b6f2b.min.js │ │ ├── bundle.fe8b6f2b.min.js.map │ │ ├── lunr │ │ │ ├── min │ │ │ │ ├── lunr.ar.min.js │ │ │ │ ├── lunr.da.min.js │ │ │ │ ├── lunr.de.min.js │ │ │ │ ├── lunr.du.min.js │ │ │ │ ├── lunr.el.min.js │ │ │ │ ├── lunr.es.min.js │ │ │ │ ├── lunr.fi.min.js │ │ │ │ ├── lunr.fr.min.js │ │ │ │ ├── lunr.he.min.js │ │ │ │ ├── lunr.hi.min.js │ │ │ │ ├── lunr.hu.min.js │ │ │ │ ├── lunr.hy.min.js │ │ │ │ ├── lunr.it.min.js │ │ │ │ ├── lunr.ja.min.js │ │ │ │ ├── lunr.jp.min.js │ │ │ │ ├── lunr.kn.min.js │ │ │ │ ├── lunr.ko.min.js │ │ │ │ ├── lunr.multi.min.js │ │ │ │ ├── lunr.nl.min.js │ │ │ │ ├── lunr.no.min.js │ │ │ │ ├── lunr.pt.min.js │ │ │ │ ├── lunr.ro.min.js │ │ │ │ ├── lunr.ru.min.js │ │ │ │ ├── lunr.sa.min.js │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ ├── lunr.sv.min.js │ │ │ │ ├── lunr.ta.min.js │ │ │ │ ├── lunr.te.min.js │ │ │ │ ├── lunr.th.min.js │ │ │ │ ├── lunr.tr.min.js │ │ │ │ ├── lunr.vi.min.js │ │ │ │ └── lunr.zh.min.js │ │ │ ├── tinyseg.js │ │ │ └── wordcut.js │ │ └── workers │ │ │ ├── search.b8dbb3d2.min.js │ │ │ └── search.b8dbb3d2.min.js.map │ └── stylesheets │ │ ├── extra.css │ │ ├── main.6543a935.min.css │ │ ├── main.6543a935.min.css.map │ │ ├── palette.06af60db.min.css │ │ └── palette.06af60db.min.css.map ├── bestpractices │ └── index.html ├── changelog │ └── index.html ├── contributing │ ├── index.html │ ├── reporting-a-bug │ │ └── index.html │ ├── reporting-a-docs-issue │ │ └── index.html │ └── requesting-a-change │ │ └── index.html ├── faq │ ├── do-I-need-a-sbc-voip │ │ └── index.html │ ├── index.html │ ├── is-anyone-is-running-pyfreebilling-in-production │ │ └── index.html │ ├── is-pks-softswitch │ │ └── index.html │ ├── lcr-routing │ │ └── index.html │ ├── pyfreebilling-pks-differences │ │ └── index.html │ └── voip-softswitch-caracteristics │ │ └── index.html ├── feed_json_created.json ├── feed_json_updated.json ├── feed_rss_created.xml ├── feed_rss_updated.xml ├── fr │ ├── __README │ │ └── index.html │ ├── api │ │ └── index.html │ ├── bestpractices │ │ └── index.html │ ├── changelog │ │ └── index.html │ ├── contributing │ │ ├── index.html │ │ ├── reporting-a-bug │ │ │ └── index.html │ │ ├── reporting-a-docs-issue │ │ │ └── index.html │ │ └── requesting-a-change │ │ │ └── index.html │ ├── faq │ │ ├── do-I-need-a-sbc-voip │ │ │ └── index.html │ │ ├── index.html │ │ ├── is-anyone-is-running-pyfreebilling-in-production │ │ │ └── index.html │ │ ├── is-pks-softswitch │ │ │ └── index.html │ │ ├── lcr-routing │ │ │ └── index.html │ │ ├── pyfreebilling-pks-differences │ │ │ └── index.html │ │ └── voip-softswitch-caracteristics │ │ │ └── index.html │ ├── getting-started │ │ └── index.html │ ├── how-to │ │ ├── apiban │ │ │ └── index.html │ │ ├── backup-recovery │ │ │ └── index.html │ │ ├── failover │ │ │ └── index.html │ │ ├── loadbalancing │ │ │ └── index.html │ │ ├── multi-tenant-ipbx │ │ │ └── index.html │ │ ├── pks-standby-failover │ │ │ └── index.html │ │ ├── troubleshooting │ │ │ └── index.html │ │ └── upgrade │ │ │ └── index.html │ ├── index.html │ ├── license │ │ └── index.html │ ├── philosophy │ │ └── index.html │ ├── use-cases │ │ ├── connecting-ipbx-to-multiple-carriers │ │ │ └── index.html │ │ ├── connecting-mutitenant-ipbx-to-carrier │ │ │ └── index.html │ │ ├── failover │ │ │ └── index.html │ │ ├── geographical-distribution-ipbx │ │ │ └── index.html │ │ ├── ipbx-high-availability │ │ │ └── index.html │ │ ├── securing-telephony-system │ │ │ └── index.html │ │ └── usecases │ │ │ └── index.html │ └── user-guide │ │ ├── advanced-configuration │ │ └── index.html │ │ ├── cli │ │ └── index.html │ │ ├── configuration │ │ └── index.html │ │ ├── installation │ │ └── index.html │ │ ├── manage-fr │ │ └── index.html │ │ ├── manage │ │ └── index.html │ │ └── requirements │ │ └── index.html ├── getting-started │ └── index.html ├── how-to │ ├── apiban │ │ └── index.html │ ├── backup-recovery │ │ └── index.html │ ├── failover │ │ └── index.html │ ├── loadbalancing │ │ └── index.html │ ├── multi-tenant-ipbx │ │ └── index.html │ ├── pks-standby-failover │ │ └── index.html │ ├── troubleshooting │ │ └── index.html │ └── upgrade │ │ └── index.html ├── index.html ├── license │ └── index.html ├── philosophy │ └── index.html ├── search │ └── search_index.json ├── sitemap.xml ├── sitemap.xml.gz ├── swagger.json ├── theme_overrides │ ├── 404.html │ └── main.html ├── use-cases │ ├── connecting-ipbx-to-multiple-carriers │ │ └── index.html │ ├── connecting-mutitenant-ipbx-to-carrier │ │ └── index.html │ ├── failover │ │ └── index.html │ ├── geographical-distribution-ipbx │ │ └── index.html │ ├── ipbx-high-availability │ │ └── index.html │ ├── securing-telephony-system │ │ └── index.html │ └── usecases │ │ └── index.html └── user-guide │ ├── advanced-configuration │ └── index.html │ ├── cli │ └── index.html │ ├── configuration │ └── index.html │ ├── installation │ └── index.html │ ├── manage-fr │ └── index.html │ ├── manage │ └── index.html │ └── requirements │ └── index.html └── src ├── basic-install.sh ├── pks └── sip ├── .envrc ├── Dockerfile.dbtext ├── Dockerfile.mysql ├── Dockerfile.sqlite3 ├── Dockerfile.test ├── Makefile ├── README.md ├── api_tests.md ├── bootstrap.sh ├── cron └── pks ├── db ├── acc ├── acc_cdrs ├── address ├── dialog ├── dialog_vars ├── dialplan ├── dispatcher ├── domain ├── domain_attrs ├── htable ├── mysql │ └── init.sql ├── postgresql │ └── init.sql ├── rtpengine ├── sqlite │ └── init.sql ├── tenant └── version ├── docker-compose.fs.yml ├── docker-compose.mysql.yml ├── docker-compose.postgres.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── kamailio.cfg ├── template.kamailio-local.cfg └── tests ├── db-test ├── acc ├── acc_cdrs ├── address ├── dialog ├── dialog_vars ├── dialplan ├── dispatcher ├── domain ├── domain_attrs ├── htable ├── rtpengine ├── tenant └── version ├── freeswitch ├── Dockerfile ├── conf │ ├── README.md │ ├── autoload_configs │ │ ├── acl.conf.xml │ │ ├── cdr_csv.conf.xml │ │ ├── conference.conf.xml │ │ ├── console.conf.xml │ │ ├── db.conf.xml │ │ ├── event_socket.conf.xml │ │ ├── logfile.conf.xml │ │ ├── modules.conf.xml │ │ ├── sofia.conf.xml │ │ ├── switch.conf.xml │ │ ├── timezones.conf.xml │ │ └── xml_rpc.conf.xml │ ├── dialplan │ │ ├── default.xml │ │ ├── public.xml │ │ └── public │ │ │ └── 00_stub.xml │ ├── freeswitch.xml │ ├── modules.conf │ ├── sip_profiles │ │ ├── external.xml │ │ ├── external │ │ │ └── stub.xml │ │ └── internal.xml │ └── vars.xml └── modules.conf ├── inbound_calls.feature ├── outbound_calls.feature ├── security_checks.feature └── test.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorTheme": "Better Solarized Light" 3 | } -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-AGPL-V3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/LICENSE-AGPL-V3.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/README.md -------------------------------------------------------------------------------- /doc/architecture/decisions/0001-choose-config-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/doc/architecture/decisions/0001-choose-config-storage.md -------------------------------------------------------------------------------- /doc/architecture/decisions/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/doc/architecture/decisions/template.md -------------------------------------------------------------------------------- /docs/__README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/__README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/assets/images/pistachios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/assets/images/pistachios.jpg -------------------------------------------------------------------------------- /docs/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/bestpractices.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/bestpractices.en.md -------------------------------------------------------------------------------- /docs/bestpractices.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/bestpractices.fr.md -------------------------------------------------------------------------------- /docs/changelog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/changelog/index.md -------------------------------------------------------------------------------- /docs/contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/contributing/index.md -------------------------------------------------------------------------------- /docs/contributing/reporting-a-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/contributing/reporting-a-bug.md -------------------------------------------------------------------------------- /docs/contributing/reporting-a-docs-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/contributing/reporting-a-docs-issue.md -------------------------------------------------------------------------------- /docs/contributing/requesting-a-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/contributing/requesting-a-change.md -------------------------------------------------------------------------------- /docs/faq/do-I-need-a-sbc-voip.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/do-I-need-a-sbc-voip.en.md -------------------------------------------------------------------------------- /docs/faq/do-I-need-a-sbc-voip.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/do-I-need-a-sbc-voip.fr.md -------------------------------------------------------------------------------- /docs/faq/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/index.en.md -------------------------------------------------------------------------------- /docs/faq/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/index.fr.md -------------------------------------------------------------------------------- /docs/faq/is-anyone-is-running-pyfreebilling-in-production.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/is-anyone-is-running-pyfreebilling-in-production.en.md -------------------------------------------------------------------------------- /docs/faq/is-anyone-is-running-pyfreebilling-in-production.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/is-anyone-is-running-pyfreebilling-in-production.fr.md -------------------------------------------------------------------------------- /docs/faq/is-pks-softswitch.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/is-pks-softswitch.en.md -------------------------------------------------------------------------------- /docs/faq/is-pks-softswitch.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/is-pks-softswitch.fr.md -------------------------------------------------------------------------------- /docs/faq/lcr-routing.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/lcr-routing.en.md -------------------------------------------------------------------------------- /docs/faq/lcr-routing.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/lcr-routing.fr.md -------------------------------------------------------------------------------- /docs/faq/pyfreebilling-pks-differences.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/pyfreebilling-pks-differences.en.md -------------------------------------------------------------------------------- /docs/faq/pyfreebilling-pks-differences.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/pyfreebilling-pks-differences.fr.md -------------------------------------------------------------------------------- /docs/faq/voip-softswitch-caracteristics.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/voip-softswitch-caracteristics.en.md -------------------------------------------------------------------------------- /docs/faq/voip-softswitch-caracteristics.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/faq/voip-softswitch-caracteristics.fr.md -------------------------------------------------------------------------------- /docs/getting-started.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/getting-started.en.md -------------------------------------------------------------------------------- /docs/getting-started.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/getting-started.fr.md -------------------------------------------------------------------------------- /docs/how-to/apiban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/apiban.md -------------------------------------------------------------------------------- /docs/how-to/backup-recovery.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/backup-recovery.en.md -------------------------------------------------------------------------------- /docs/how-to/backup-recovery.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/backup-recovery.fr.md -------------------------------------------------------------------------------- /docs/how-to/failover.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/failover.en.md -------------------------------------------------------------------------------- /docs/how-to/failover.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/failover.fr.md -------------------------------------------------------------------------------- /docs/how-to/loadbalancing.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/loadbalancing.en.md -------------------------------------------------------------------------------- /docs/how-to/loadbalancing.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/loadbalancing.fr.md -------------------------------------------------------------------------------- /docs/how-to/multi-tenant-ipbx.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/multi-tenant-ipbx.en.md -------------------------------------------------------------------------------- /docs/how-to/multi-tenant-ipbx.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/multi-tenant-ipbx.fr.md -------------------------------------------------------------------------------- /docs/how-to/pks-standby-failover.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/pks-standby-failover.en.md -------------------------------------------------------------------------------- /docs/how-to/pks-standby-failover.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/pks-standby-failover.fr.md -------------------------------------------------------------------------------- /docs/how-to/troubleshooting.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/troubleshooting.en.md -------------------------------------------------------------------------------- /docs/how-to/troubleshooting.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/troubleshooting.fr.md -------------------------------------------------------------------------------- /docs/how-to/upgrade.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/upgrade.en.md -------------------------------------------------------------------------------- /docs/how-to/upgrade.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/how-to/upgrade.fr.md -------------------------------------------------------------------------------- /docs/index.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/index.en.md -------------------------------------------------------------------------------- /docs/index.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/index.fr.md -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/philosophy.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/philosophy.en.md -------------------------------------------------------------------------------- /docs/philosophy.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/philosophy.fr.md -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/theme_overrides/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/theme_overrides/404.html -------------------------------------------------------------------------------- /docs/theme_overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/theme_overrides/main.html -------------------------------------------------------------------------------- /docs/use-cases/connecting-ipbx-to-multiple-carriers.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/connecting-ipbx-to-multiple-carriers.en.md -------------------------------------------------------------------------------- /docs/use-cases/connecting-mutitenant-ipbx-to-carrier.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/connecting-mutitenant-ipbx-to-carrier.en.md -------------------------------------------------------------------------------- /docs/use-cases/failover.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/failover.en.md -------------------------------------------------------------------------------- /docs/use-cases/geographical-distribution-ipbx.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/geographical-distribution-ipbx.en.md -------------------------------------------------------------------------------- /docs/use-cases/ipbx-high-availability.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/ipbx-high-availability.en.md -------------------------------------------------------------------------------- /docs/use-cases/securing-telephony-system.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/securing-telephony-system.en.md -------------------------------------------------------------------------------- /docs/use-cases/usecases.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/usecases.en.md -------------------------------------------------------------------------------- /docs/use-cases/usecases.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/use-cases/usecases.fr.md -------------------------------------------------------------------------------- /docs/user-guide/advanced-configuration.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/advanced-configuration.en.md -------------------------------------------------------------------------------- /docs/user-guide/advanced-configuration.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/advanced-configuration.fr.md -------------------------------------------------------------------------------- /docs/user-guide/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/cli.md -------------------------------------------------------------------------------- /docs/user-guide/configuration.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/configuration.en.md -------------------------------------------------------------------------------- /docs/user-guide/configuration.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/configuration.fr.md -------------------------------------------------------------------------------- /docs/user-guide/installation.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/installation.en.md -------------------------------------------------------------------------------- /docs/user-guide/installation.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/installation.fr.md -------------------------------------------------------------------------------- /docs/user-guide/manage-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/manage-fr.md -------------------------------------------------------------------------------- /docs/user-guide/manage.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/manage.en.md -------------------------------------------------------------------------------- /docs/user-guide/requirements.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/requirements.en.md -------------------------------------------------------------------------------- /docs/user-guide/requirements.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/docs/user-guide/requirements.fr.md -------------------------------------------------------------------------------- /jampack.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/jampack.config.mjs -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/package.json -------------------------------------------------------------------------------- /pyfb.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/pyfb.code-workspace -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | 3.8 -------------------------------------------------------------------------------- /site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/404.html -------------------------------------------------------------------------------- /site/__README/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/__README/index.html -------------------------------------------------------------------------------- /site/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/api/index.html -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/favicon.png -------------------------------------------------------------------------------- /site/assets/images/pistachios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/pistachios.jpg -------------------------------------------------------------------------------- /site/assets/images/social/__README.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/__README.png -------------------------------------------------------------------------------- /site/assets/images/social/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/api.png -------------------------------------------------------------------------------- /site/assets/images/social/bestpractices.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/bestpractices.en.png -------------------------------------------------------------------------------- /site/assets/images/social/bestpractices.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/bestpractices.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/changelog/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/changelog/index.png -------------------------------------------------------------------------------- /site/assets/images/social/contributing/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/contributing/index.png -------------------------------------------------------------------------------- /site/assets/images/social/contributing/reporting-a-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/contributing/reporting-a-bug.png -------------------------------------------------------------------------------- /site/assets/images/social/contributing/reporting-a-docs-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/contributing/reporting-a-docs-issue.png -------------------------------------------------------------------------------- /site/assets/images/social/contributing/requesting-a-change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/contributing/requesting-a-change.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/do-I-need-a-sbc-voip.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/do-I-need-a-sbc-voip.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/do-I-need-a-sbc-voip.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/do-I-need-a-sbc-voip.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/index.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/index.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/index.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/index.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/is-anyone-is-running-pyfreebilling-in-production.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/is-anyone-is-running-pyfreebilling-in-production.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/is-anyone-is-running-pyfreebilling-in-production.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/is-anyone-is-running-pyfreebilling-in-production.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/is-pks-softswitch.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/is-pks-softswitch.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/is-pks-softswitch.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/is-pks-softswitch.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/lcr-routing.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/lcr-routing.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/lcr-routing.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/lcr-routing.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/pyfreebilling-pks-differences.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/pyfreebilling-pks-differences.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/pyfreebilling-pks-differences.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/pyfreebilling-pks-differences.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/voip-softswitch-caracteristics.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/voip-softswitch-caracteristics.en.png -------------------------------------------------------------------------------- /site/assets/images/social/faq/voip-softswitch-caracteristics.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/faq/voip-softswitch-caracteristics.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/getting-started.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/getting-started.en.png -------------------------------------------------------------------------------- /site/assets/images/social/getting-started.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/getting-started.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/apiban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/apiban.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/backup-recovery.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/backup-recovery.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/backup-recovery.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/backup-recovery.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/failover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/failover.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/failover.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/failover.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/loadbalancing.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/loadbalancing.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/loadbalancing.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/loadbalancing.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/multi-tenant-ipbx.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/multi-tenant-ipbx.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/multi-tenant-ipbx.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/multi-tenant-ipbx.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/pks-standby-failover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/pks-standby-failover.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/pks-standby-failover.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/pks-standby-failover.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/troubleshooting.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/troubleshooting.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/troubleshooting.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/troubleshooting.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/upgrade.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/upgrade.en.png -------------------------------------------------------------------------------- /site/assets/images/social/how-to/upgrade.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/how-to/upgrade.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/index.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/index.en.png -------------------------------------------------------------------------------- /site/assets/images/social/index.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/index.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/license.png -------------------------------------------------------------------------------- /site/assets/images/social/philosophy.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/philosophy.en.png -------------------------------------------------------------------------------- /site/assets/images/social/philosophy.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/philosophy.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/connecting-ipbx-to-multiple-carriers.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/connecting-ipbx-to-multiple-carriers.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/connecting-mutitenant-ipbx-to-carrier.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/connecting-mutitenant-ipbx-to-carrier.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/failover.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/failover.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/geographical-distribution-ipbx.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/geographical-distribution-ipbx.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/ipbx-high-availability.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/ipbx-high-availability.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/securing-telephony-system.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/securing-telephony-system.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/usecases.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/usecases.en.png -------------------------------------------------------------------------------- /site/assets/images/social/use-cases/usecases.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/use-cases/usecases.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/advanced-configuration.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/advanced-configuration.en.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/advanced-configuration.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/advanced-configuration.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/cli.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/configuration.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/configuration.en.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/configuration.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/configuration.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/installation.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/installation.en.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/installation.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/installation.fr.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/manage-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/manage-fr.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/manage.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/manage.en.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/requirements.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/requirements.en.png -------------------------------------------------------------------------------- /site/assets/images/social/user-guide/requirements.fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/images/social/user-guide/requirements.fr.png -------------------------------------------------------------------------------- /site/assets/javascripts/bundle.fe8b6f2b.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/bundle.fe8b6f2b.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/bundle.fe8b6f2b.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/bundle.fe8b6f2b.min.js.map -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ar.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.da.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.de.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.du.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.du.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.el.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.es.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.fi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.fr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.he.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.hi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.hu.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.hy.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.it.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ja.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.kn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.kn.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ko.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.multi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.multi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.nl.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.no.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.pt.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ro.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ru.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.sa.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.sv.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.ta.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.te.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.te.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.th.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.tr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.vi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/min/lunr.zh.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/wordcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/lunr/wordcut.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js.map -------------------------------------------------------------------------------- /site/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/assets/stylesheets/main.6543a935.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/stylesheets/main.6543a935.min.css -------------------------------------------------------------------------------- /site/assets/stylesheets/main.6543a935.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/stylesheets/main.6543a935.min.css.map -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/stylesheets/palette.06af60db.min.css -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/assets/stylesheets/palette.06af60db.min.css.map -------------------------------------------------------------------------------- /site/bestpractices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/bestpractices/index.html -------------------------------------------------------------------------------- /site/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/changelog/index.html -------------------------------------------------------------------------------- /site/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/contributing/index.html -------------------------------------------------------------------------------- /site/contributing/reporting-a-bug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/contributing/reporting-a-bug/index.html -------------------------------------------------------------------------------- /site/contributing/reporting-a-docs-issue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/contributing/reporting-a-docs-issue/index.html -------------------------------------------------------------------------------- /site/contributing/requesting-a-change/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/contributing/requesting-a-change/index.html -------------------------------------------------------------------------------- /site/faq/do-I-need-a-sbc-voip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/do-I-need-a-sbc-voip/index.html -------------------------------------------------------------------------------- /site/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/index.html -------------------------------------------------------------------------------- /site/faq/is-anyone-is-running-pyfreebilling-in-production/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/is-anyone-is-running-pyfreebilling-in-production/index.html -------------------------------------------------------------------------------- /site/faq/is-pks-softswitch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/is-pks-softswitch/index.html -------------------------------------------------------------------------------- /site/faq/lcr-routing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/lcr-routing/index.html -------------------------------------------------------------------------------- /site/faq/pyfreebilling-pks-differences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/pyfreebilling-pks-differences/index.html -------------------------------------------------------------------------------- /site/faq/voip-softswitch-caracteristics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/faq/voip-softswitch-caracteristics/index.html -------------------------------------------------------------------------------- /site/feed_json_created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/feed_json_created.json -------------------------------------------------------------------------------- /site/feed_json_updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/feed_json_updated.json -------------------------------------------------------------------------------- /site/feed_rss_created.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/feed_rss_created.xml -------------------------------------------------------------------------------- /site/feed_rss_updated.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/feed_rss_updated.xml -------------------------------------------------------------------------------- /site/fr/__README/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/__README/index.html -------------------------------------------------------------------------------- /site/fr/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/api/index.html -------------------------------------------------------------------------------- /site/fr/bestpractices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/bestpractices/index.html -------------------------------------------------------------------------------- /site/fr/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/changelog/index.html -------------------------------------------------------------------------------- /site/fr/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/contributing/index.html -------------------------------------------------------------------------------- /site/fr/contributing/reporting-a-bug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/contributing/reporting-a-bug/index.html -------------------------------------------------------------------------------- /site/fr/contributing/reporting-a-docs-issue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/contributing/reporting-a-docs-issue/index.html -------------------------------------------------------------------------------- /site/fr/contributing/requesting-a-change/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/contributing/requesting-a-change/index.html -------------------------------------------------------------------------------- /site/fr/faq/do-I-need-a-sbc-voip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/do-I-need-a-sbc-voip/index.html -------------------------------------------------------------------------------- /site/fr/faq/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/index.html -------------------------------------------------------------------------------- /site/fr/faq/is-anyone-is-running-pyfreebilling-in-production/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/is-anyone-is-running-pyfreebilling-in-production/index.html -------------------------------------------------------------------------------- /site/fr/faq/is-pks-softswitch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/is-pks-softswitch/index.html -------------------------------------------------------------------------------- /site/fr/faq/lcr-routing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/lcr-routing/index.html -------------------------------------------------------------------------------- /site/fr/faq/pyfreebilling-pks-differences/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/pyfreebilling-pks-differences/index.html -------------------------------------------------------------------------------- /site/fr/faq/voip-softswitch-caracteristics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/faq/voip-softswitch-caracteristics/index.html -------------------------------------------------------------------------------- /site/fr/getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/getting-started/index.html -------------------------------------------------------------------------------- /site/fr/how-to/apiban/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/apiban/index.html -------------------------------------------------------------------------------- /site/fr/how-to/backup-recovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/backup-recovery/index.html -------------------------------------------------------------------------------- /site/fr/how-to/failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/failover/index.html -------------------------------------------------------------------------------- /site/fr/how-to/loadbalancing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/loadbalancing/index.html -------------------------------------------------------------------------------- /site/fr/how-to/multi-tenant-ipbx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/multi-tenant-ipbx/index.html -------------------------------------------------------------------------------- /site/fr/how-to/pks-standby-failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/pks-standby-failover/index.html -------------------------------------------------------------------------------- /site/fr/how-to/troubleshooting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/troubleshooting/index.html -------------------------------------------------------------------------------- /site/fr/how-to/upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/how-to/upgrade/index.html -------------------------------------------------------------------------------- /site/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/index.html -------------------------------------------------------------------------------- /site/fr/license/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/license/index.html -------------------------------------------------------------------------------- /site/fr/philosophy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/philosophy/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/connecting-ipbx-to-multiple-carriers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/connecting-ipbx-to-multiple-carriers/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/connecting-mutitenant-ipbx-to-carrier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/connecting-mutitenant-ipbx-to-carrier/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/failover/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/geographical-distribution-ipbx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/geographical-distribution-ipbx/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/ipbx-high-availability/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/ipbx-high-availability/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/securing-telephony-system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/securing-telephony-system/index.html -------------------------------------------------------------------------------- /site/fr/use-cases/usecases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/use-cases/usecases/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/advanced-configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/advanced-configuration/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/cli/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/configuration/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/installation/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/manage-fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/manage-fr/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/manage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/manage/index.html -------------------------------------------------------------------------------- /site/fr/user-guide/requirements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/fr/user-guide/requirements/index.html -------------------------------------------------------------------------------- /site/getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/getting-started/index.html -------------------------------------------------------------------------------- /site/how-to/apiban/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/apiban/index.html -------------------------------------------------------------------------------- /site/how-to/backup-recovery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/backup-recovery/index.html -------------------------------------------------------------------------------- /site/how-to/failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/failover/index.html -------------------------------------------------------------------------------- /site/how-to/loadbalancing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/loadbalancing/index.html -------------------------------------------------------------------------------- /site/how-to/multi-tenant-ipbx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/multi-tenant-ipbx/index.html -------------------------------------------------------------------------------- /site/how-to/pks-standby-failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/pks-standby-failover/index.html -------------------------------------------------------------------------------- /site/how-to/troubleshooting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/troubleshooting/index.html -------------------------------------------------------------------------------- /site/how-to/upgrade/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/how-to/upgrade/index.html -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/index.html -------------------------------------------------------------------------------- /site/license/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/license/index.html -------------------------------------------------------------------------------- /site/philosophy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/philosophy/index.html -------------------------------------------------------------------------------- /site/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/search/search_index.json -------------------------------------------------------------------------------- /site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/sitemap.xml -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /site/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/swagger.json -------------------------------------------------------------------------------- /site/theme_overrides/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/theme_overrides/404.html -------------------------------------------------------------------------------- /site/theme_overrides/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/theme_overrides/main.html -------------------------------------------------------------------------------- /site/use-cases/connecting-ipbx-to-multiple-carriers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/connecting-ipbx-to-multiple-carriers/index.html -------------------------------------------------------------------------------- /site/use-cases/connecting-mutitenant-ipbx-to-carrier/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/connecting-mutitenant-ipbx-to-carrier/index.html -------------------------------------------------------------------------------- /site/use-cases/failover/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/failover/index.html -------------------------------------------------------------------------------- /site/use-cases/geographical-distribution-ipbx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/geographical-distribution-ipbx/index.html -------------------------------------------------------------------------------- /site/use-cases/ipbx-high-availability/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/ipbx-high-availability/index.html -------------------------------------------------------------------------------- /site/use-cases/securing-telephony-system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/securing-telephony-system/index.html -------------------------------------------------------------------------------- /site/use-cases/usecases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/use-cases/usecases/index.html -------------------------------------------------------------------------------- /site/user-guide/advanced-configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/advanced-configuration/index.html -------------------------------------------------------------------------------- /site/user-guide/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/cli/index.html -------------------------------------------------------------------------------- /site/user-guide/configuration/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/configuration/index.html -------------------------------------------------------------------------------- /site/user-guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/installation/index.html -------------------------------------------------------------------------------- /site/user-guide/manage-fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/manage-fr/index.html -------------------------------------------------------------------------------- /site/user-guide/manage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/manage/index.html -------------------------------------------------------------------------------- /site/user-guide/requirements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/site/user-guide/requirements/index.html -------------------------------------------------------------------------------- /src/basic-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/basic-install.sh -------------------------------------------------------------------------------- /src/pks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/pks -------------------------------------------------------------------------------- /src/sip/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/.envrc -------------------------------------------------------------------------------- /src/sip/Dockerfile.dbtext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/Dockerfile.dbtext -------------------------------------------------------------------------------- /src/sip/Dockerfile.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/Dockerfile.mysql -------------------------------------------------------------------------------- /src/sip/Dockerfile.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/Dockerfile.sqlite3 -------------------------------------------------------------------------------- /src/sip/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/Dockerfile.test -------------------------------------------------------------------------------- /src/sip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/Makefile -------------------------------------------------------------------------------- /src/sip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/README.md -------------------------------------------------------------------------------- /src/sip/api_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/api_tests.md -------------------------------------------------------------------------------- /src/sip/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/bootstrap.sh -------------------------------------------------------------------------------- /src/sip/cron/pks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/cron/pks -------------------------------------------------------------------------------- /src/sip/db/acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/acc -------------------------------------------------------------------------------- /src/sip/db/acc_cdrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/acc_cdrs -------------------------------------------------------------------------------- /src/sip/db/address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/address -------------------------------------------------------------------------------- /src/sip/db/dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/dialog -------------------------------------------------------------------------------- /src/sip/db/dialog_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/dialog_vars -------------------------------------------------------------------------------- /src/sip/db/dialplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/dialplan -------------------------------------------------------------------------------- /src/sip/db/dispatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/dispatcher -------------------------------------------------------------------------------- /src/sip/db/domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/domain -------------------------------------------------------------------------------- /src/sip/db/domain_attrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/domain_attrs -------------------------------------------------------------------------------- /src/sip/db/htable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/htable -------------------------------------------------------------------------------- /src/sip/db/mysql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/mysql/init.sql -------------------------------------------------------------------------------- /src/sip/db/postgresql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/postgresql/init.sql -------------------------------------------------------------------------------- /src/sip/db/rtpengine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/rtpengine -------------------------------------------------------------------------------- /src/sip/db/sqlite/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/sqlite/init.sql -------------------------------------------------------------------------------- /src/sip/db/tenant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/tenant -------------------------------------------------------------------------------- /src/sip/db/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/db/version -------------------------------------------------------------------------------- /src/sip/docker-compose.fs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/docker-compose.fs.yml -------------------------------------------------------------------------------- /src/sip/docker-compose.mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/docker-compose.mysql.yml -------------------------------------------------------------------------------- /src/sip/docker-compose.postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/docker-compose.postgres.yml -------------------------------------------------------------------------------- /src/sip/docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/docker-compose.test.yml -------------------------------------------------------------------------------- /src/sip/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/docker-compose.yml -------------------------------------------------------------------------------- /src/sip/kamailio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/kamailio.cfg -------------------------------------------------------------------------------- /src/sip/template.kamailio-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/template.kamailio-local.cfg -------------------------------------------------------------------------------- /src/sip/tests/db-test/acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/acc -------------------------------------------------------------------------------- /src/sip/tests/db-test/acc_cdrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/acc_cdrs -------------------------------------------------------------------------------- /src/sip/tests/db-test/address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/address -------------------------------------------------------------------------------- /src/sip/tests/db-test/dialog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/dialog -------------------------------------------------------------------------------- /src/sip/tests/db-test/dialog_vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/dialog_vars -------------------------------------------------------------------------------- /src/sip/tests/db-test/dialplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/dialplan -------------------------------------------------------------------------------- /src/sip/tests/db-test/dispatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/dispatcher -------------------------------------------------------------------------------- /src/sip/tests/db-test/domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/domain -------------------------------------------------------------------------------- /src/sip/tests/db-test/domain_attrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/domain_attrs -------------------------------------------------------------------------------- /src/sip/tests/db-test/htable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/htable -------------------------------------------------------------------------------- /src/sip/tests/db-test/rtpengine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/rtpengine -------------------------------------------------------------------------------- /src/sip/tests/db-test/tenant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/tenant -------------------------------------------------------------------------------- /src/sip/tests/db-test/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/db-test/version -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/Dockerfile -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/README.md -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/acl.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/acl.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/cdr_csv.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/cdr_csv.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/conference.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/conference.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/console.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/console.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/db.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/db.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/event_socket.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/event_socket.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/logfile.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/logfile.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/modules.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/modules.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/sofia.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/sofia.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/switch.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/switch.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/timezones.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/timezones.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/autoload_configs/xml_rpc.conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/autoload_configs/xml_rpc.conf.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/dialplan/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/dialplan/default.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/dialplan/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/dialplan/public.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/dialplan/public/00_stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/dialplan/public/00_stub.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/freeswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/freeswitch.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/modules.conf -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/sip_profiles/external.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/sip_profiles/external.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/sip_profiles/external/stub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/sip_profiles/external/stub.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/sip_profiles/internal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/sip_profiles/internal.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/conf/vars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/conf/vars.xml -------------------------------------------------------------------------------- /src/sip/tests/freeswitch/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/freeswitch/modules.conf -------------------------------------------------------------------------------- /src/sip/tests/inbound_calls.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/inbound_calls.feature -------------------------------------------------------------------------------- /src/sip/tests/outbound_calls.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/outbound_calls.feature -------------------------------------------------------------------------------- /src/sip/tests/security_checks.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/security_checks.feature -------------------------------------------------------------------------------- /src/sip/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwolff44/pk-sbc/HEAD/src/sip/tests/test.sh --------------------------------------------------------------------------------