1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-16 00:00:07 +01:00
libwebsockets/lib
Andy Green 5b7312213e disable fstack usage
It's only workable on gcc 4.6+... and in fact it's only
going to be interesting typically to the maintainer, so it's
commented out in Makefile.am.

Currently the worst remaining ones for x86_64 are

libwebsockets.c:2250:6:_lws_log	496	static
libwebsockets.c:2203:13:lwsl_emit_stderr	352	static
client.c:700:1:libwebsockets_generate_client_handshake	320	static
server.c:42:1:libwebsockets_decode_ssl_error	288	static
server-handshake.c:31:1:handshake_0405	272	static
client.c:368:1:lws_client_interpret_server_handshake	272	static
libwebsockets.c:447:1:libwebsockets_get_peer_addresses	256	static
daemonize.c:93:1:lws_daemonize	240	static
output.c:536:5:libwebsockets_serve_http_file	224	static
sha-1.c:131:1:sha1_step	192	static
sha-1.c:316:1:SHA1	160	static
libwebsockets.c:1604:1:libwebsocket_create_context	160	static

The top two there are error assembly buffers, they could be made
static but then they won't be usable from threaded user code.

Reported-by: Anders Brander <anders@brander.dk>
Signed-off-by: Andy Green <andy.green@linaro.org>
2013-02-13 09:08:43 +08:00
..
.gitignore Ignoring linux build files 2013-01-09 15:46:11 +08:00
base64-decode.c CMake support + fixed windows build. 2013-02-06 15:49:12 +09:00
client-handshake.c fix ssl reject path for freeing header allocation 2013-02-11 21:43:41 +08:00
client-parser.c style cleanup 2013-02-11 17:13:32 +08:00
client.c eliminate snprintf 2013-02-12 10:13:12 +08:00
daemonize.c style cleanup 2013-02-11 17:13:32 +08:00
extension-deflate-frame.c style cleanup 2013-02-11 17:13:32 +08:00
extension-deflate-frame.h Separate compression levels for server and client, 2013-01-10 12:45:54 +08:00
extension-deflate-stream.c style cleanup 2013-02-11 17:13:32 +08:00
extension-deflate-stream.h remove fixed rx buffer allow definition per protocol 2013-02-08 13:16:07 +08:00
extension.c style cleanup 2013-02-11 17:13:32 +08:00
getifaddrs.c style cleanup 2013-02-11 17:13:32 +08:00
getifaddrs.h style cleanup 2013-02-11 17:13:32 +08:00
handshake.c security harden http parser a bit 2013-02-12 12:55:40 +08:00
libwebsockets.c security harden http parser a bit 2013-02-12 12:55:40 +08:00
libwebsockets.h api make close api private only 2013-02-12 10:19:08 +08:00
Makefile.am disable fstack usage 2013-02-13 09:08:43 +08:00
minilex.c add lexical parser for headers 2013-01-18 01:55:48 +08:00
output.c fix another escaape runon 2013-02-12 12:53:36 +08:00
parsers.c security disallow repeated GET 2013-02-12 14:16:06 +08:00
private-libwebsockets.h api make close api private only 2013-02-12 10:19:08 +08:00
server-handshake.c eliminate snprintf 2013-02-12 10:13:12 +08:00
server.c Fixed compilation on Windows. 2013-02-12 09:58:12 +08:00
sha-1.c Static variable is now const. 2013-01-09 15:14:31 +08:00