Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/atiq-cs/qos

CSE570 - Wireless and Mobile Networks Project
https://github.com/atiq-cs/qos

javascript wireless-network

Last synced: 8 days ago
JSON representation

CSE570 - Wireless and Mobile Networks Project

Awesome Lists containing this project

README

        

# Quality of Service
CSE570 - Wireless and Mobile Networks Project

Two components are currently in repository
1. Linux Hotspot Configuration and netem settings
2. js code using Youtube API

Changes in ASP.Net MVC Project
[Instructions for Fedora](http://tech.saoslab.com/post/2015/11/20/fedora-22-setting-up-hostapd-to-create-hotspot)

**2015-11 snapshot**
On navbar we linked it like below,

  • @Html.ActionLink("QoS Project", "Index", "WLService")
  • And, content of the controller: `Controllers\WLServiceController.cs`,

    ```csharp
    public class WLServiceController : Controller
    {
    // GET: WLService
    /*public ActionResult Index()
    {
    return View();
    }*/
    public ActionResult Index(string video_id)
    {
    if (String.IsNullOrEmpty(video_id))
    video_id = "M7lc1UVf-VE";
    ViewBag.vid = video_id;
    return View();
    }
    }
    ```

    Our Viewsh html file `Views\WLService\Index.cshtml` content,

    ```js
    @{
    // Some remarks about this file
    // This is the index file for load testing
    // Get difference time between loading the video and playing the video
    // Set when it is buffering and or doing other activity
    //
    ViewBag.Title = "Index";
    }

    @section scripts {


    }

    Youtube LoadTest

    This is the embedded youtube video for the experiment

    Streaming Info


    Frozen Info

    @ViewBag.vid

    Listening to API events

    ```