2.1 - Application Layer | FHU - Computer Networks

An intro to the application layer and principles of network apps.
The slides are adapted from Kurose and Ross, Computer Networks 5th edition and are copyright 2009, Kurose and Ross.

Пікірлер: 10

  • @srsqtee
    @srsqtee6 жыл бұрын

    Much appreciated. We're using the same textbook and this is very helpful.

  • @toddstechtips7942
    @toddstechtips7942 Жыл бұрын

    The visuals are extremely helpful in these lectures, thank you, this material is a perfect appendage to the book.

  • @stepanberan4641
    @stepanberan46413 жыл бұрын

    Thank you for uploading your lectures to youtube! helped me with my high school final exam:)

  • @SnobbyLion
    @SnobbyLion3 жыл бұрын

    Definitely a better explanation than my teacher's

  • @pouyajamali6779
    @pouyajamali67794 жыл бұрын

    Thanks a lot!

  • @Lola-st9fw
    @Lola-st9fw4 жыл бұрын

    Wuao¡¡ What a classroom many thanks

  • @pranavkasar829
    @pranavkasar8293 жыл бұрын

    Thanks a lot.

  • @husseingamal2283
    @husseingamal22833 жыл бұрын

    thx a lot : )

  • @abdulwahabmangat2651
    @abdulwahabmangat26513 жыл бұрын

    why some webpages are still half loaded even we are using TCP as an underlying protocol?

  • 3 жыл бұрын

    Websites are basically HTML files. Let say, someone wants to display an image, she will have to specify the link to the image inside the HTML file. When you go to her website, you request the HTML file of the site. So the browser will firstly get the HTML file and read it. The browser notices the HTML file contains an image, so it starts downloading the image (by the link given in the HTML file), while doing that, it also renders the page at the same time. Because in most cases, the image file is much larger than the HTML file, so the browser will display the website without the image first, this is when you call it "half loaded". Then when the browser has finished downloading the image, it'll display the image where the HTML file tells it to. The TCP is used separately for the HTML file and the image file. This means it only makes sure that you receive the whole HTML file intact, OR the whole image file intact. It cannot make sure you receive both the HTML and the image.