├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── app.js ├── config └── default.json.example ├── data ├── rtp-transcoding.json └── srtp-transcoding.json ├── docs └── BUILD.md ├── lib ├── call-session.js ├── middleware.js ├── register.js ├── registrar.js ├── subscriber.js └── utils.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/app.js -------------------------------------------------------------------------------- /config/default.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/config/default.json.example -------------------------------------------------------------------------------- /data/rtp-transcoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/data/rtp-transcoding.json -------------------------------------------------------------------------------- /data/srtp-transcoding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/data/srtp-transcoding.json -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /lib/call-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/call-session.js -------------------------------------------------------------------------------- /lib/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/middleware.js -------------------------------------------------------------------------------- /lib/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/register.js -------------------------------------------------------------------------------- /lib/registrar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/registrar.js -------------------------------------------------------------------------------- /lib/subscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/subscriber.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drachtio/drachtio-rtpengine-webrtcproxy/HEAD/package.json --------------------------------------------------------------------------------