mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
.. | ||
include | ||
.gitignore | ||
base64enc.c | ||
cacerts.c | ||
COPYING | ||
internal.c | ||
internal.h | ||
libhttp.c | ||
libhttp.h | ||
Makefile | ||
miniz.c | ||
README.md | ||
uri.c | ||
zpipe.c |
liblokiweb (libhttp)
Building
requirements
- mbedtls 2.13.0 or later, for both host and target (if cross-compiling)
- wget for host (to download Netscape root certificate store from cURL website)
- Also included is a patch that can be applied to the mbedtls source to enable features like AES-NI in protected mode, plus some networking fixes for win32, see
../contrib/lokinet-bootstrap-winnt/mbedtls-win32.patch
build:
$ make prepare; make libhttp.[so|dll]
Useful build-time variables
- INCLUDE: path to mbedtls headers
- LIBS: path to mbedtls libraries
- SYS_LIBS: system-specific link libraries (
-lsocket -lnsl
on Sun systems,-lws2_32
[or-lwsock32
if IPv6 is disabled] on Windows)
Usage
- include libhttp.h in your source
- link against libhttp.[so|dll]
-rick