More work on client and server

This commit is contained in:
2021-11-11 16:23:11 -05:00
parent caa5bab9d3
commit c1c0b02926
9 changed files with 103 additions and 21 deletions

View File

@@ -103,7 +103,7 @@ bool PrintChanneler::channel(const PrintBuffer *printbuffer, std::ostream &ostre
line_ = printbuffer->first_line();
}
while (line_ < printbuffer->first_unchecked()) {
ostream << printbuffer->nth(line_) << std::endl;
ostream << "[" << printbuffer->nth(line_) << "]" << std::endl;
line_ += 1;
}
return line_ > printbuffer->first_line();