├── src ├── main.c ├── http_accesslog.c ├── Makefile.in ├── syscall.c ├── mime.c ├── version.c ├── http_auth.c ├── http_header.c ├── stream.c ├── util.c ├── hook.c ├── config.c ├── http_main.c ├── http_status.c └── child.c ├── lib ├── qlibc │ ├── examples │ │ ├── config.def │ │ ├── config.conf │ │ ├── config.c │ │ ├── vector.c │ │ ├── vector_obj.c │ │ ├── Makefile.in │ │ ├── queue.c │ │ ├── stack.c │ │ ├── hasharr.c │ │ ├── hashtbl.c │ │ ├── list.c │ │ └── listtbl.c │ ├── src │ │ ├── internal │ │ │ ├── doxygen_tailer.html │ │ │ ├── doxygen_header.html │ │ │ ├── md5 │ │ │ │ └── md5.h │ │ │ ├── qinternal.c │ │ │ └── doxygen_layout.xml │ │ ├── astyle.conf │ │ ├── utilities │ │ │ ├── qlibc.c │ │ │ ├── qsystem.c │ │ │ ├── qcount.c │ │ │ ├── qsocket.c │ │ │ └── qtime.c │ │ ├── Makefile.in │ │ └── ipc │ │ │ ├── qshm.c │ │ │ └── qsem.c │ ├── README │ ├── COPYING │ ├── config.h.in │ ├── Makefile.in │ └── configure.ac ├── update_qlibc.sh └── Makefile.in ├── htdocs └── index.html ├── conf ├── mimetypes.conf ├── qhttpd.conf.dist └── qhttpd.lua.dist ├── COPYING ├── config.h.in ├── README.md ├── Makefile.in └── configure.ac /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolkykim/qhttpd/HEAD/src/main.c -------------------------------------------------------------------------------- /lib/qlibc/examples/config.def: -------------------------------------------------------------------------------- 1 | # This is "config.def" file. 2 | prefix = /usr/local 3 | bin = ${prefix}/bin 4 | log = ${prefix}/log 5 | user = unknown 6 | host = unknown 7 | -------------------------------------------------------------------------------- /lib/qlibc/src/internal/doxygen_tailer.html: -------------------------------------------------------------------------------- 1 |