This commit is contained in:
Craig Everett 2025-03-27 20:06:34 +09:00
commit fc2128f969
6 changed files with 1154 additions and 0 deletions

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
.eunit
deps
cancer
*.o
*.beam
*.plt
*.swp
erl_crash.dump
ebin/*.beam
doc/*.html
doc/*.css
doc/edoc-info
doc/erlang.png
rel/example_project
.concrete/DEV_MODE
.rebar

1
Emakefile Normal file
View File

@ -0,0 +1 @@
{"src/*", [debug_info, {i, "include/"}, {outdir, "ebin/"}]}.

19
LICENSE Normal file
View File

@ -0,0 +1,19 @@
Copyright 2025 Craig Everett <zxq9@zxq9.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

7
ebin/qhl.app Normal file
View File

@ -0,0 +1,7 @@
{application,qhl,
[{description,"The Quick HTTP Library"},
{registered,[]},
{included_applications,[]},
{applications,[stdlib,kernel]},
{vsn,"0.1.0"},
{modules,[qhl]}]}.

1094
src/qhl.erl Normal file

File diff suppressed because it is too large Load Diff

17
zomp.meta Normal file
View File

@ -0,0 +1,17 @@
{name,"QHL"}.
{type,lib}.
{modules,[]}.
{prefix,none}.
{author,"Craig Everett"}.
{desc,"The Quick HTTP Library"}.
{package_id,{"otpr","qhl",{0,1,0}}}.
{deps,[]}.
{key_name,none}.
{a_email,"zxq9@zxq9.com"}.
{c_email,"zxq9@zxq9.com"}.
{copyright,"Craig Everett"}.
{file_exts,[]}.
{license,"MIT"}.
{repo_url,"https://git.qpq.swiss/QPQ-AG/QHL"}.
{tags,[]}.
{ws_url,"https://git.qpq.swiss/QPQ-AG/QHL"}.