代码拉取完成,页面将自动刷新
#include<iostream>
#include"./RpcSrc/RpcClient.cpp"
#include<boost/format.hpp>
using namespace std;
int main(){
CppRpcClient client(
new TCP("127.0.0.1",40232)
);
string cmd;
while(1){
cin>>cmd;
if(cmd=="add" || cmd=="mul"){
struct param{
int a,b;
}t;
int result; //保存计算结果
cin>>t.a>>t.b;
if(client.Call(cmd, //远程调用函数
(char*)&t,sizeof(t),
(char*)&result,sizeof(result)
)==Success){
cout<<boost::format("%1% %2% %3%=%4%")
%t.a
%cmd
%t.b
%result<<endl;
}else{
cout<<"Error ocure in server"<<endl;
}
continue;
}
if(cmd=="login"){
struct loginStruct{
char usrname[10];
char pwd[10];
}usr;
cout<<"Username:";cin>>usr.usrname;
cout<<"Pwd:";cin>>usr.pwd;
char servMsg[50];
if(client.Call(cmd, //远程调用函数
(char*)&usr,sizeof(usr),
(char*)servMsg,sizeof(servMsg)
)==Success){
cout<<boost::format("登录消息:%1%")
%servMsg<<endl;
}else{
cout<<"Error ocure in server"<<endl;
}
continue;
}
if(cmd=="q"){
break;
}
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。