LeaYeh / webserver

MIT License
3 stars 0 forks source link

[DISCUSSION] Bullet points of request line examples #36

Open yenthing opened 3 weeks ago

yenthing commented 3 weeks ago
  1. http://google.com/maps/

    • schema: http
    • host: google.com
    • port: NULL
    • directory: /maps
  2. http://google.com/

    • schema: http
    • port: NULL
    • host: google.com
    • directory: /
  3. http://google.com

    • schema: http
    • port: NULL
    • host: google.com
    • directory: NULL
  4. http://google.com:8080/maps/

    • schema: http
    • host: google.com
    • port: 8080
    • directory: /maps
  5. http://profile.intra.42.fr/users/vharkush

    • schema: http
    • host: profile.intra.42.fr
    • port: NULL
    • directory: /users/vharkush
yenthing commented 3 weeks ago

This bullet points are the variables kernel needs from the URI!

yenthing commented 3 weeks ago

https://miro.com/app/board/uXjVKoJjbAE=/

Flowchart - Frame 1