关于使用套接字时函数调用约定的建议

发布于 2024-11-15 15:47:49 字数 281 浏览 3 评论 0原文

我计划使用套接字在客户端 32 位应用程序和 64 位应用程序之间进行函数调用。

通过套接字接口调用函数、传递变量和返回参数的最佳方案是什么?我可以控制客户端和服务器代码,因此我可以实现任何内容。

我在想,让套接字数据包由以下部分组成: - 1 个字:函数名称的长度(字符数) - string:实际的函数名称 - 1 个字:函数参数的长度(以字节为单位) - 函数参数

请让我知道什么是最强大和可扩展的方法。也许我可以重用编译器、Web 服务或虚拟机调用约定所使用的原则。

提前致谢

I plan to use sockets to make function calls between a client 32 bit application and a 64 bit application.

What would be the best scheme to call functions, pass variables and return parameters via the socket interface. I have control over both the client and the server code so I can implement anything.

I was thinking, to have the socket packet being made up of:
- 1 word: length (# of characters) of the function name
- string: the actual function name
- 1 word: length (in bytes) of the function parameters
- function parameters

Please let me know, what would be the most robust and extensible approaches. Maybe I can reuse principles used by calling conventions by compilers, web services or virtual machines.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜警司 2024-11-22 15:47:49

我建议您使用 Protocol Buffers 进行序列化:

http:// code.google.com/apis/protocolbuffers/docs/reference/cpp/index.html

教程:

http://code.google.com/apis/protocolbuffers/docs/cpptutorial.html

当您将对象发送到另一端时,以长度前缀(32位int)开头,它定义您应该读取多少字节才能获得完整的 protobuf 消息。

I suggest that you use Protocol Buffers for the serialization:

http://code.google.com/apis/protocolbuffers/docs/reference/cpp/index.html

Tutorial:

http://code.google.com/apis/protocolbuffers/docs/cpptutorial.html

When you send the object to the other side, start with a length prefix (32bit int) which defines how many bytes you should read to get a complete protobuf message.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文