diff --git a/test_client/main.cpp b/test_client/main.cpp index 092974a..70c25e3 100644 --- a/test_client/main.cpp +++ b/test_client/main.cpp @@ -88,6 +88,8 @@ void test_async_client() { async_client client("127.0.0.1", 9000); client.connect(); + client.call("hello", "world"); + std::string str; std::cin >> str; }