[merc] Add merc extraction (#1356)

* docs for ee merc code

* wip

* more extraction stuff

* partial mat1 working

* mat1

* cleanup

* partial mat2 and mat3 support

* merc extraction seems to work
This commit is contained in:
water111
2022-05-11 22:53:53 -04:00
committed by GitHub
parent 84b2ba43be
commit be976d2e69
23 changed files with 4539 additions and 235 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ void Deci2Server::read_data() {
int got = 0;
while (got < desired_size) {
ASSERT(got + desired_size < buffer.size());
ASSERT(got + desired_size < (int)buffer.size());
auto x = read_from_socket(accepted_socket, buffer.data() + got, desired_size - got);
if (want_exit_callback()) {
return;