2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-09 23:32:35 +00:00
- Fixes a bug in the parser.
- Fixes bug on parsing of zero sized blob strings.
This commit is contained in:
Marcelo Zimbres
2020-12-24 17:37:44 +01:00
parent 254215f7d4
commit f614c23fd2
9 changed files with 298 additions and 157 deletions

View File

@@ -27,7 +27,7 @@ int main()
std::string buffer;
for (;;) {
resp::response_string res;
resp::response_simple_string res;
resp::read(socket, buffer, res);
std::cout << res.result << std::endl;
}