Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-gg/http
C implementation of RFC-7230 compliant HTTP client and server supporting multiple plaintext formats, binary data and file compression.
https://github.com/r-gg/http
client-server http-protocol operating-systems tcp-ip-sockets
Last synced: about 2 months ago
JSON representation
C implementation of RFC-7230 compliant HTTP client and server supporting multiple plaintext formats, binary data and file compression.
- Host: GitHub
- URL: https://github.com/r-gg/http
- Owner: r-gg
- Created: 2024-04-27T19:32:23.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-03T12:18:35.000Z (8 months ago)
- Last Synced: 2024-05-04T13:18:00.754Z (8 months ago)
- Topics: client-server, http-protocol, operating-systems, tcp-ip-sockets
- Language: C
- Homepage:
- Size: 405 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HTTP client and server
- Implementation Language : **C**
- Supported filetypes:
- Plaintext
- Binary
- Compression of the transferred content possible
- Tool used:
- TCP/IP Sockets
## ClientThe client takes an URL as input, connects to the corresponding server and requests the file specified in the URL. The transmitted content of that file is written to stdout or to a file.
Usage:
![image](https://github.com/r-gg/http/assets/90387385/c432e200-1934-49f0-954c-a6f30bb118ec)
## Server
The server waits for connections from clients and transmits the requested files.
Usage:
![image](https://github.com/r-gg/http/assets/90387385/a6d5fb89-1646-4aa9-840c-c16e2a714a00)