https://github.com/ruk33/http_request
https://github.com/ruk33/http_request
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruk33/http_request
- Owner: Ruk33
- License: mit
- Created: 2022-07-20T17:42:17.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T23:28:48.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T19:12:11.051Z (6 months ago)
- Language: C
- Size: 78.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.txt
- License: LICENSE
Awesome Lists containing this project
README
HTTP REQUEST
simple lib to know:
- the method of a request (GET, POST, etc.)
- if a path matches (ie, is uri /my/path.html?)
- if the request is complete or partial.
- start of the body.NOTES
- no memory is allocated.
- NULL can be safely used for all parameters.
- strings MUST be NULL terminated.INSTALLATION
copy http_request.h/c in your project.HOW TO USE IT
check main.c for code usage examples.