Objective C,实现聊天应用程序的最佳方式(套接字)
我正在尝试开发一个聊天应用程序。我使用 AsyncSocket 并遵循教程。现在我可以使用 localhost 从 telnet 接收文本消息。
但我不知道如何处理多个聊天。假设三个不同的朋友知道我的 IP 地址和端口号。他们通过套接字向我发送消息。那么我该如何找出哪条消息属于哪位朋友呢?
提前致谢。
I am trying to develop a chat application. I used AsyncSocket and followed tutorial. So now I can receive a text msg from telnet using localhost.
But I don't know how to handle multiple chats. Lets say three different friends know my IP address and port number. They send a message to me over the socket. Then how am I going to figure out which message belongs to which friends?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要么为每个朋友使用不同的连接/套接字,要么创建一个用于在聊天中发送/接收数据的协议,该协议不仅封装实际的消息正文,还封装发送者的姓名、时间戳等。
Either use a different connection/socket for each friend, or create a protocol for sending/receiving data in your chat that encapsulates not only the actual message body, but the sender's name, timestamp, etc.