// RPC stubs for clients to talk to rsmtest_server
#include "rsmtest_client.h"
-#include "rpc/rpc.h"
#include <arpa/inet.h>
-#include <sstream>
-#include <iostream>
-#include <stdio.h>
-
-rsmtest_client::rsmtest_client(std::string dst) : cl(dst) {
+rsmtest_client::rsmtest_client(string dst) : cl(dst) {
if (cl.bind() < 0)
- printf("rsmtest_client: call bind\n");
+ cout << "rsmtest_client: call bind" << endl;
}
rsm_test_protocol::status rsmtest_client::net_repair(int heal) {
VERIFY (ret == rsm_test_protocol::OK);
return r;
}
-
-