1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-30 00:00:16 +01:00
libwebsockets/lib
Andy Green ae4b511d9a trie: fix up gcc 8.2.1 armv7 off_t vs jg2_file_offset
We really don't want to use off_t in the trie struct if we can avoid it since with
alignment it adds 16 bytes per trie-entry.  Cast around warnings.
2018-11-03 09:24:20 +08:00
..
core lws_hdr_copy: ensure enough extra space 2018-10-26 16:14:30 +08:00
event-libs uv: allocate watcher 2018-10-13 12:43:13 +08:00
misc trie: fix up gcc 8.2.1 armv7 off_t vs jg2_file_offset 2018-11-03 09:24:20 +08:00
plat fulltext search 2018-10-26 13:53:28 +08:00
roles http: add callback to allow upgrade reject 2018-10-31 13:45:00 +08:00
tls openssl tls1.3: allow setting ciphersuites at context creation time 2018-10-27 08:05:21 +08:00
README.md refactor: core code in lib/core and private-libwebsockets.h to core/private.h 2018-05-03 10:49:36 +08:00

Library sources layout

Code that goes in the libwebsockets library itself lives down ./lib

Path Sources
lib/core Core lws code related to generic fd and wsi servicing and management
lib/event-libs Code containing optional event-lib specific adaptations
lib/misc Code for various mostly optional miscellaneous features
lib/plat Platform-specific adaptation code
lib/roles Code for specific optional wsi roles, eg, http/1, h2, ws, raw, etc
lib/tls Code supporting the various TLS libraries
libwebsockets.h Public API header for the whole of lws