Università di Padova, A.A. 2021/2022, Prof. Zingirian N. - 🔗 Link didattica
Se trovate alcun problema nel codice, aprite una Issue o PR.
If you find any problem with the code, please file an Issue o PR.
In questa repo sono contenuti i programmi sviluppati dal professore durante il corso tenuto nell'A.A. 21/22 e riscritti per essere più chiaramente comprensibili e più estensivamente commentati.
- Client web HTTP/1.1
- Risoluzione degli hostname in IP
- Parsing degli header
- Supporta il
Transfer-Encoding: chunked
- Server web
- Invio di file statici nella cartella del server
Autorization
richiesta nella cartellasecure
tramite basic HTTP auth 🔗 RFC2617- Invio tramite
Transfer-Encoding: chunked
- Proxy web
- Modalità
GET
in chiaro - Modalità
CONNECT
tramite TLS tunnelling
- Modalità
- Socket web server
Compilare con:
gcc wsock.c -o wsock -lcrypto
- Handshake socket
- Comunicazione bidirezionale tra server e client
- RFC1945 HTTP 1.0 🔗 rfc-editor.org
- RFC2616 HTTP 1.1 🔗 rfc-editor.org
- RFC3875 Common Gateway Interface (CGI) 🔗 rfc-editor.org
- RFC6265 Cookies 🔗 rfc-editor.org
- RFC6455 WebSocket 🔗 rfc-editor.org
This repo contains codes developed during the Computer Networks 1 course at the University of Padua during the 2021/2022 academic year.
You can find scripts related to the HTTP standard as listed in the Standards section.
Base scripts are written in english and commented, exam solutions may be commented in italian.