2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-10 11:42:28 +00:00

Changes in the connection class and the receiver.

This commit is contained in:
Marcelo Zimbres
2021-02-06 20:20:16 +01:00
parent 2aa3ef1be3
commit 63712da04a
15 changed files with 318 additions and 187 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (c) 2019 - 2020 Marcelo Zimbres Silva (mzimbres at gmail dot com)
/* Copyright (c) 2019 - 2021 Marcelo Zimbres Silva (mzimbres at gmail dot com)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -8,7 +8,6 @@
#include <aedis/aedis.hpp>
#include <aedis/utils.hpp>
namespace net = aedis::net;
using namespace aedis;
int main()
@@ -21,8 +20,8 @@ int main()
req.quit();
net::io_context ioc {1};
tcp::resolver resv(ioc);
tcp::socket socket {ioc};
net::ip::tcp::resolver resv(ioc);
net::ip::tcp::socket socket {ioc};
net::connect(socket, resv.resolve("127.0.0.1", "6379"));
resp::write(socket, req);