1 Star 2 Fork 1

dyexlzc/CppRpc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RpcClient.cpp 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
dyexlzc 提交于 2019-12-15 08:35 . 修复若干bug,优化代码结构
#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;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/dyexlzc/CppRpc.git
[email protected]:dyexlzc/CppRpc.git
dyexlzc
CppRpc
CppRpc
master

搜索帮助