Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须使用 Sun RPC 实现聊天(首先编写 XDR 文件,然后通过 rpcgen 生成 .c 代码)。我想知道我应该如何为注册的用户实现消息的存储,但是当其他用户正在写作时,他们处于离线状态。这样用户,当他在线时,能够阅读在没有他的情况下在聊天中编写的所有内容。我在 Ubuntu 中编写。谢谢。对不起我的英语不好。
顾名思义,Xdr 用于外部数据表示。
您可以轻松地将消息作为字符串存储在数据库中,当用户登录时,您可以创建 xdr 流并将所有消息发送给他。