对于 p2p 应用程序来说,TCP 打孔的流程是否正确:
- 使用 stun 我将获取我的外部 IP/端口和 NAT 类型。
- 在我的中间服务器(公共 IP)上,我将注册对等点外部 IP/端口(现在服务器知道对等点 1 和 2 的外部 IP/端口)。
- 交换 IP/端口(对等点 1 将了解对等点 2 的 IP/端口)。
- 同时从两个对等方进行
connect()
调用。
这是正确的流程吗?
- Using stun I will get my external ip/port and NAT type.
- On my middle server (public ip), I will register peers external ip/ports (Now server knows peer 1's and 2's external ip/port).
- Exchange the ip/port (peer 1 will get to know the peer 2's ip/port).
- Simultaneously make
connect()
call from both the peers.
Is it the right flow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的算法对于 UDP 是正确的。查看这些帖子以获取更多信息:
Your algorithm is correct for UDP. Take a look at these posts for more information: