This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns hello-react-blessed.core | |
| (:require | |
| [cljs.nodejs :as nodejs] | |
| [reagent.core :as reagent] | |
| [re-frame.core :as rf] | |
| [blessed :as blessed] ; or use neo-blessed | |
| ["react-blessed" :as rb] | |
| [ws])) | |
| (defonce logger (reagent/atom [])) |
How does traffic flow through the Internet? What happens in the network layers in a HTTP transaction?
HTTP = application layer protocol (OSI 7) - allows applications to communicate over the network. E.g. Web browser to web server (Apache)
HTTP specifications does not mention how messages move across the network and reach the server. That's where lower layer protocols come to play.