seasocks
seasocks copied to clipboard
Simple, small, C++ embeddable webserver with WebSockets support
``` /Users/dendisuhubdy/dev/seasocks/src/main/c/./seasocks/Server.h:120:12: error: 'clientBufferSize' overrides a member function but is not marked 'override' [-Werror,-Winconsistent-missing-override] size_t clientBufferSize() const { return _clientBufferSize; } ^ /Users/dendisuhubdy/dev/seasocks/src/main/c/./seasocks/ServerImpl.h:54:20: note: overridden virtual function is here virtual...
Some pretty comprehensive tests there.
Wouldn't be better and cleaner solution to move statistis to separate Handler? Than it would be more secure to use server without possibility of leaking info out.
see https://github.com/mattgodbolt/seasocks/issues/162
A simple upgrade failed: https://github.com/conan-io/conan-center-index/pull/12667 See more info at: https://c3i.jfrog.io/c3i/misc/summary.html?json=https://c3i.jfrog.io/c3i/misc/logs/pr/12667/3-linux-gcc/seasocks/1.4.5//summary.json
Hello, dear seasocks developers, I have some questions regarding the variables `_bytesSent` and `_bytesReceived` (https://github.com/mattgodbolt/seasocks/blob/master/src/main/c/seasocks/Connection.h#L205). As they are defined as size_t, these numbers are expected to increase during the program's...
Minified javascript files love to use UTF8 in the source, e.g. a minified version of: ```js const latin_convert = { 'æ': 'ae', 'â±¥': 'a', 'ø': 'o', 'â„': '/', '∕': '/'...
Sending any HTTP response larger than 16MB leads to warning: 172.31.37.161:50082 : Closing connection: buffer size too large (16777370 >= 16777216) Only way to fix it appears to set a...
How about migrating tests to Catch 3.x, the latest version? > v3 is the next major version of Catch2 and brings three significant changes: > > - Catch2 is now...
Hi, how can I **static** link seasocks? I did not found anything on the documentation.. I have tried this: `LIBRARIES = -lm /home/user/seasocks/build/src/main/c/libseasocks.a` but getting these errors: ``` /usr/bin/ld: /home/user/seasocks/build/src/main/c/libseasocks.a(Server.cpp.o):...