├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── FindBARESIP.cmake └── FindRE.cmake ├── src ├── demo.c ├── demo.h ├── main.c └── sess.c └── www ├── index.html └── js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindBARESIP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/cmake/FindBARESIP.cmake -------------------------------------------------------------------------------- /cmake/FindRE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/cmake/FindRE.cmake -------------------------------------------------------------------------------- /src/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/src/demo.c -------------------------------------------------------------------------------- /src/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/src/demo.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/src/main.c -------------------------------------------------------------------------------- /src/sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/src/sess.c -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baresip/baresip-webrtc/HEAD/www/js/main.js --------------------------------------------------------------------------------