├── .gitignore ├── LICENSE ├── README.md ├── c_src ├── Makefile └── gnutls_nif.c ├── priv ├── cert.pem ├── key.pem └── webrtc.so ├── rebar.config ├── rebar.lock └── src ├── gen_gnutls.erl ├── webrtc.app.src └── webrtc.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/README.md -------------------------------------------------------------------------------- /c_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/c_src/Makefile -------------------------------------------------------------------------------- /c_src/gnutls_nif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/c_src/gnutls_nif.c -------------------------------------------------------------------------------- /priv/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/priv/cert.pem -------------------------------------------------------------------------------- /priv/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/priv/key.pem -------------------------------------------------------------------------------- /priv/webrtc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/priv/webrtc.so -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/gen_gnutls.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/src/gen_gnutls.erl -------------------------------------------------------------------------------- /src/webrtc.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/src/webrtc.app.src -------------------------------------------------------------------------------- /src/webrtc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ast/webrtc/HEAD/src/webrtc.erl --------------------------------------------------------------------------------