├── .gitignore ├── README.md ├── composer.json ├── config.php ├── start.php ├── start_for_win.bat ├── start_signaling.php ├── start_web.php └── web ├── assets ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── adapter.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.min.js │ ├── npm.js │ └── woker.min.js ├── index.html └── room.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/composer.json -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/config.php -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/start.php -------------------------------------------------------------------------------- /start_for_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/start_for_win.bat -------------------------------------------------------------------------------- /start_signaling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/start_signaling.php -------------------------------------------------------------------------------- /start_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/start_web.php -------------------------------------------------------------------------------- /web/assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /web/assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /web/assets/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /web/assets/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /web/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap.css -------------------------------------------------------------------------------- /web/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /web/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /web/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /web/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /web/assets/js/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/adapter.js -------------------------------------------------------------------------------- /web/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/bootstrap.js -------------------------------------------------------------------------------- /web/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/assets/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /web/assets/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/npm.js -------------------------------------------------------------------------------- /web/assets/js/woker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/assets/js/woker.min.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/index.html -------------------------------------------------------------------------------- /web/room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-webrtc/HEAD/web/room.php --------------------------------------------------------------------------------