"http/README.md" did not exist on "e18af3e94e5375678de861d7396d5409b270b8f3"
README.md 569 Bytes
Newer Older
Ivaylo Ivanov's avatar
Ivaylo Ivanov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# http
The aim of these two modules is to implement a client and a server that partially implement HTTP 1.1

## client

The client takes a URL as input, connects to the corresponding server on the corresponding port(`80` by default) and requests the file specified in
the URL. The transmitted content of that file is written to `stdout`, to a file or to a directory.

    SYNOPSIS
    client [-p PORT] [ -o FILE | -d DIR ] URL

    EXAMPLE
    client http://ivayloivanov.eu/en/


## server

Not implemented yet

**Note: The description is from the task I got from TU.**