long blogs

进一步有进一步惊喜


  • Home
  • Archive
  • Tags
  •  

© 2025 long

Theme Typography by Makito

Proudly published with Hexo

C-Protoc

Posted at 2021-01-11 c 

protoc简介

github地址
windows平台下载win32的压缩包,然后将可执行文件的目录设置进path就可以使用了。

protoc支持向下兼容

TestProtocV1

1
2
3
message TestProtocV1{
required uint32 a;
}

TestProtocV2

1
2
3
4
message TestProtocV2_Request{
required uint32 a;
repeated uint32 arr;
}

V1编码–>V2可以解码:arr没有值
V2编码–>V1可以解码:a值正确

使用protocal进行通讯

app端

语言:java
编码和解码

服务端

语言:golang
编码和解码

Share 

 Previous post: KCP网络 Next post: Linux高性能服务器编程-读书笔记 

© 2025 long

Theme Typography by Makito

Proudly published with Hexo