Andy Green
5260a49e3b
libwebsockets.h: clean out some boilerplate better put in core/private.h
...
https://github.com/warmcat/libwebsockets/issues/1370
2018-08-16 19:11:54 +08:00
Andy Green
aa03468740
lejp: improve bogus JSON underrun detection
...
https://github.com/warmcat/libwebsockets/issues/1357
2018-08-01 07:04:18 +08:00
Andy Green
d9e6263323
client: use effective wsi for some callbacks
2018-07-21 09:07:58 +08:00
Andy Green
9a1462d221
client: use lws_strdup for client_hostname_copy
...
https://github.com/warmcat/libwebsockets/issues/1343
2018-07-19 06:16:15 +08:00
Andy Green
264583fe7d
lws_get_peer_write_allowance: cope with no role callback for it
...
https://github.com/warmcat/libwebsockets/issues/1339
2018-07-17 18:29:25 +08:00
Dmytro Ivanov
b3cf069733
Android: Fixing missing sockaddr_in definition.
2018-07-16 09:39:04 +08:00
shinny-chengzhi
888b030bae
windows: fix io hang after large deflate frame
...
Fix I/O hang after received a large deflate frame
2018-07-11 15:29:09 +08:00
張俊芝
8f5738299a
Fixes the binding error when SMP in tandem with a Unix domain socket
2018-07-08 20:51:25 +08:00
Andy Green
6517e01258
pmd: fix stray client-only
...
Fix wrong loglevels on some pmd debug stuff
Small cosmetic cleaning
2018-06-30 09:55:07 +08:00
Andy Green
f85b2e978b
logging: stderr: reduce brightness of some ANSI loglevels
2018-06-30 09:55:07 +08:00
Rosen Penev
578ac00a3a
openssl: Fix compile with 1.1.0 - deprecated APIs
...
These function have been deprecated. Keep compatibility with OpenSSL 1.0.2 as it is still supported.
2018-06-30 09:43:27 +08:00
Dominyk Tiller
c708bda0f4
libwebsockets.h: include new libuv header
2018-06-24 10:57:51 +08:00
Andy Green
aea3ef2a5a
fd_cloexec: add and use lws_open wrapper and lws_plat_apply_FD_CLOEXEC() on cgi
...
This adds lws_open() like master, but unlike master, it can't add it as a
public api. Instead it's used internally only.
2018-06-23 13:02:12 +08:00
Per Bothner
dfb4dde763
sockets: FD_CLOEXEC
...
If the user code forks, it inherits open copies of all
lws sockets, which conflict if lws later decides to
close them.
2018-06-23 05:47:01 +08:00
Andy Green
b49ef8b6d1
http: urlarg capture fixes
2018-06-19 13:32:27 +08:00
Andy Green
635ecb450c
http: skip NULs between fragments
2018-06-19 13:32:15 +08:00
Andy Green
bdedd1a910
max_http_header_pool2: migrate context ah pool limit and count to unsigned int
2018-06-19 13:30:50 +08:00
Silas Parker
f42c1064ce
client: off-by-one in redirect max length calc
...
https://libwebsockets.org/pipermail/libwebsockets/2018-June/003729.html
2018-06-18 18:41:46 +08:00
Andy Green
f256fdea05
LWS_ILLEGAL_HTTP_CONTENT_LEN implies connection:close
...
If no content-length is coming, we just can't do
http/1.1 keep-alive.
2018-06-16 13:49:39 +08:00
Andy Green
d1ca974b9f
http: defer transaction completed if partial pending
...
This is only helpful for http/1... the real solution is cut up
sending large things.
2018-06-16 13:24:26 +08:00
Fabio Alessandrelli
80e1c85258
Add fix for forward declaration in BSD
2018-06-08 05:48:35 +08:00
Andy Green
3a499dd53d
client: pipelining needs ah reset at client transaction completed
2018-06-04 07:15:39 +08:00
Ecionis
6b9306d165
windows: fix microseconds time calculation
...
https://github.com/warmcat/libwebsockets/issues/1297
2018-06-02 05:59:30 +08:00
Alfred Sawaya
3f7ffeddac
fix memleak when role h1 failed to upgrade to websocket
2018-06-02 05:57:40 +08:00
qmatt
0425d962e5
lwsl_debug: NOP if no _DEBUG
2018-05-26 09:07:08 +08:00
Andy Green
49c7e8238b
cancel pipes: treat nonzero return code from platform only as indication not to use dummy_pipe_fds
...
https://github.com/warmcat/libwebsockets/issues/1291
2018-05-25 21:45:36 +08:00
Andy Green
ad078faaaf
client: fix SOCKS5 compilation
...
https://github.com/warmcat/libwebsockets/issues/1292
2018-05-25 21:44:59 +08:00
Andy Green
227c1a0df2
h2 client: no close callback for network stream
2018-05-24 11:27:56 +08:00
Andy Green
34d07125e7
ws: pingpong: server wants to send pings too
...
During the role refactoring pingpong accidentally
became something only a client wsi could initiate.
https://github.com/warmcat/libwebsockets/issues/1283
2018-05-22 16:31:18 +08:00
Andy Green
82fc4756be
cgi: fix QUERY_STRING
2018-05-18 14:45:43 +08:00
Andy Green
56eef571a0
mbedtls: allow build with LWS_ROLE_WS=0
2018-05-11 16:43:10 +08:00
Andy Green
bc409bbc2e
lws_read_h1: handle LRS_RETURNED_CLOSE
2018-05-11 10:26:52 +08:00
Andy Green
a77e2a7fbf
role ws: allow zero length PONG
2018-05-09 18:55:26 +08:00
Andy Green
24c216fac5
minimal-ws-client-ping
2018-05-09 17:02:03 +08:00
Andy Green
d6e3346763
LWS_INLINE: replace all inline
2018-05-09 09:24:17 +08:00
Andy Green
2f5f1125f7
esp32: align hrtimer and avoid compiler warning
2018-05-07 13:34:14 +08:00
Andy Green
412ff64be9
lws_ring: implement lagging client culling
2018-05-06 07:36:31 +08:00
Andy Green
c4dc102a0b
windows: cleanup wrong and duplicated socket validity helpers
...
https://github.com/warmcat/libwebsockets/issues/1259
2018-05-06 07:22:25 +08:00
Andy Green
e77dafba6f
win32: align hrtimer support with unix plat
...
Workaround last build warnings on win32.
2018-05-05 07:18:00 +08:00
Andy Green
e7673b4c1d
coverity: check argv
2018-05-05 06:58:52 +08:00
Andy Green
c99a99e9b4
LRS_DOING_TRANSACTION
2018-05-04 12:05:56 +08:00
Andy Green
de064fd65a
refactor: core code in lib/core and private-libwebsockets.h to core/private.h
...
This commit is coverity-clean as tested
cmake .. -DLWS_WITH_MINIMAL_EXAMPLES=1 -DLWS_WITHOUT_EXTENSIONS=1 -DLWS_WITH_ACME=1 -DLWS_WITH_LWSWS=1 -DLWS_WITH_LIBUV=1 -DLWS_WITH_HTTP2=1 -DLWS_WITHOUT_CLIENT=0 -DLWS_WITHOUT_SERVER=0 -DLWS_UNIX_SOCK=1 -DLWS_WITH_TLS=0 -DLWS_WITH_MBEDTLS=0 -DLWS_WITH_CGI=1 -DCMAKE_BUILD_TYPE=DEBUG -DLWS_WITH_GENERIC_SESSIONS=1 -DLWS_WITH_RANGES=1 -DLWS_ROLE_WS=1 -DLWS_MAX_SMP=16 -DLWS_ROLE_H1=1 -DLWS_WITH_WOLFSSL=0 -DLWS_WITH_LIBEV=0 -DLWS_WITH_LIBEVENT=1
2018-05-03 10:49:36 +08:00
Andy Green
a01ad0dd20
hrtimer: add support for libevent and libev
2018-05-02 19:27:33 +08:00
Andy Green
9cce1874b0
context_destroy: figure out if anything still in event loop
2018-05-02 19:27:29 +08:00
Andy Green
bce8cca042
refactor: also migrate tls to the ops struct and private.h pattern
...
Several new ops are planned for tls... so better to bite the bullet and
clean it out to the same level as roles + event-libs first.
Also adds a new travis target "mbedtls" and all the tests except
autobahn against mbedtls build.
2018-05-02 12:10:36 +08:00
Andy Green
da0be64f68
minimal-raw-netcat
...
Adapt attack.sh to use it instead of OS netcat and fox various bugs that
exposed.
2018-05-02 08:46:16 +08:00
Andy Green
f1c56bc233
alpn: allow NULL alpn in role struct when scanning for match
...
https://github.com/warmcat/libwebsockets/issues/1262
2018-05-01 18:15:52 +08:00
Andy Green
f497562a62
refactor: change event lib minimal examples to serve as the test apps
2018-04-30 19:17:32 +08:00
Andy Green
0b52d92d12
refactor: remove more test apps and replace with minimal-examples
2018-04-30 09:16:04 +08:00
Andy Green
d37b383edc
refactor: apply ops structs to event loop handlers
2018-04-29 10:44:36 +08:00