https://github.com/sunpodder/http.asm
https://github.com/sunpodder/http.asm
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sunpodder/http.asm
- Owner: SunPodder
- Created: 2023-10-16T12:14:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-21T15:48:11.000Z (over 2 years ago)
- Last Synced: 2023-10-21T16:34:47.521Z (over 2 years ago)
- Language: Assembly
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HTTP Client in Assembly x86_64 GNU/Linux
It uses linux system calls so you will need a linux machine to compile and run this.
Install nasm with your system's package manager
```bash
# debian and derivatives
sudo apt install nasm
make run
```
references:
- https://filippo.io/linux-syscall-table/
- https://stackoverflow.com/q/74887725
- Linux Man Pages
- System Header files for the values of various constants
- See RFC and MDN docs for HTTP request and response formats
See also:
- https://asmtutor.com/