Error no 11, error string Resource temporarily unavailableGreeter received: Hello world
GreeterClient greeter(grpc::CreateChannel(
"localhost:50051", grpc::InsecureChannelCredentials()));
std::string user("world");
std::string reply = greeter.SayHello(user);
printf("Error no %d, error string %s", errno, strerror(errno));
std::cout << "Greeter received: " << reply << std::endl;