Remove permessage deflate from the build
New versions of beast allow completely removing the per-message deflate
functionality from the binary, thus saving space. Considering we never
used it, it seems worthwhile to remove from the build entirely.
This should have no impact on any external interface.
https://www.boost.org/doc/libs/1_75_0/libs/beast/doc/html/beast/using_websocket.html
Tested:
Build before and after, ~31k of pre-compression binary space saved when
this patchset is included.
Also ran scripts/websocket_test.py
python3 websocket_test.py --host 192.168.7.2
CPU 67.56
Memory 5.95
and saw sensor values stream correctly.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I3d8e5febea2446eb4894a840f7fe7ef9cdf6995b
diff --git a/http/websocket.hpp b/http/websocket.hpp
index 446db1b..40fbcc0 100644
--- a/http/websocket.hpp
+++ b/http/websocket.hpp
@@ -267,7 +267,7 @@
}
private:
- boost::beast::websocket::stream<Adaptor> ws;
+ boost::beast::websocket::stream<Adaptor, false> ws;
std::string inString;
boost::asio::dynamic_string_buffer<std::string::value_type,