├── SignalingServer ├── SignalingServer │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Home │ │ │ └── About.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ └── Web.config │ ├── Global.asax │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── App_Start │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── BundleConfig.cs │ ├── Models │ │ └── MyHub1.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap-theme.css │ ├── Global.asax.cs │ ├── Startup.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SignalingServer.csproj.user │ ├── packages.config │ ├── Web.config │ ├── Scripts │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.min.js │ └── SignalingServer.csproj └── SignalingServer.sln ├── .gitignore ├── .vscode └── settings.json ├── index.html ├── audio ├── demo.html └── demo.js ├── video ├── demo.html └── demo.js ├── screenshare1 ├── demo.html └── demo.js ├── README.md ├── screenshare2 ├── demo.html ├── video-stream-merger.js └── demo.js ├── https ├── localhost.pem └── localhost.key └── rtcdemo ├── demo.html ├── video-stream-merger.js └── demo.js /SignalingServer/SignalingServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /SignalingServer/.vs 2 | /SignalingServer/packages 3 | /SignalingServer/SignalingServer/bin 4 | /SignalingServer/SignalingServer/obj 5 | -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WebApplication5.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalshahzad139/intro-to-webrtc-learn-in-urdu/HEAD/SignalingServer/SignalingServer/favicon.ico -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalshahzad139/intro-to-webrtc-learn-in-urdu/HEAD/SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalshahzad139/intro-to-webrtc-learn-in-urdu/HEAD/SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalshahzad139/intro-to-webrtc-learn-in-urdu/HEAD/SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "About"; 3 | } 4 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilalshahzad139/intro-to-webrtc-learn-in-urdu/HEAD/SignalingServer/SignalingServer/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /SignalingServer/SignalingServer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |