├── .gitignore ├── LICENSE ├── README.md ├── browser-answer.html ├── browser-offer.html ├── browser.js ├── cli_offer.go └── local_web_server.go /.gitignore: -------------------------------------------------------------------------------- 1 | /*.exe 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/README.md -------------------------------------------------------------------------------- /browser-answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/browser-answer.html -------------------------------------------------------------------------------- /browser-offer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/browser-offer.html -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/browser.js -------------------------------------------------------------------------------- /cli_offer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/cli_offer.go -------------------------------------------------------------------------------- /local_web_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cretz/webrtc-ipfs-signaling/HEAD/local_web_server.go --------------------------------------------------------------------------------