Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruk33/http_request
https://github.com/ruk33/http_request
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruk33/http_request
- Owner: Ruk33
- License: mit
- Created: 2022-07-20T17:42:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-21T23:28:48.000Z (over 2 years ago)
- Last Synced: 2023-05-05T16:20:07.570Z (over 1 year ago)
- Language: C
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- 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.