aboutsummaryrefslogtreecommitdiffstats
path: root/src/websock.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-10-23 14:11:04 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-10-23 14:14:39 +0200
commit6af240ddd3350874aa918591948dc1902169d7f7 (patch)
tree21fafa6342ad67f17d36ebf561645dc282b616ed /src/websock.h
parentc4c474c056cd070706d5a3b0af7845c9493bfdaf (diff)
websocket: Tune maximum received lengthdab_4.0.3dab/4.0.34.0.3dab
This commit increase the count of data that is accepted by default from 65,000 to 1,048,500. It also offers new functions to tune that value. Change-Id: Iecf0b8c308e8287582819a8769859c39e46919c2 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/websock.h')
-rw-r--r--src/websock.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/websock.h b/src/websock.h
index da44a88b..3be89dfe 100644
--- a/src/websock.h
+++ b/src/websock.h
@@ -75,3 +75,5 @@ extern int websock_dispatch(struct websock *ws, int loop);
extern struct websock *websock_create_v13(const struct websock_itf *itf, void *closure);
extern void websock_destroy(struct websock *ws);
+extern void websock_set_default_max_length(size_t maxlen);
+extern void websock_set_max_length(struct websock *ws, size_t maxlen);