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 0995c27f50 coverity: fixes plugin error path leak and logging method sign check
Broadened the checking config to

cmake .. -DCMAKE_BUILD_TYPE=DEBUG \
         -DLWS_WITH_SYS_ASYNC_DNS=1 \
         -DLWS_WITH_SYS_NTPCLIENT=1 \
         -DLWS_WITH_SYS_DHCP_CLIENT=1 \
         -DLWS_WITH_GENCRYPTO=1 \
         -DLWS_WITH_DETAILED_LATENCY=1 \
         -DLWS_IPV6=1 \
         -DLWS_WITH_FTS=1 \
         -DLWS_WITH_LWSWS=1 \
         -DLWS_UNIX_SOCK=1 \
         -DLWS_WITH_HTTP_PROXY=1 \
         -DLWS_WITH_MINIMAL_EXAMPLES=1
2020-01-14 08:23:25 +00:00
..
abstract cleaning 2020-01-05 22:17:58 +00:00
core windows: clean type warnings 2020-01-11 14:04:50 +00:00
core-net windows: clean type warnings 2020-01-11 14:04:50 +00:00
event-libs cleaning 2020-01-05 22:17:58 +00:00
jose lws_get_random: change length to size_t for coverity 2020-01-11 07:58:37 +00:00
misc windows: clean type warnings 2020-01-11 14:04:50 +00:00
plat coverity: fixes plugin error path leak and logging method sign check 2020-01-14 08:23:25 +00:00
roles coverity: fixes plugin error path leak and logging method sign check 2020-01-14 08:23:25 +00:00
system coverity: fixes plugin error path leak and logging method sign check 2020-01-14 08:23:25 +00:00
tls windows: clean type warnings 2020-01-11 14:04:50 +00:00
README.md cleaning 2020-01-05 22:17:58 +00: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/core-net Core lws code that applies only if networking enabled
lib/event-libs Code containing optional event-lib specific adaptations
lib/jose JOSE / JWS / JWK / JWE implementations
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/system Code for system-level features, eg, dhcpclient
lib/tls Code supporting the various TLS libraries