TTL 和 Keep Alive 的区别
任何人都可以告诉我 TTL 和在套接字中保持活动状态(C# 网络)以及 Linger 之间的区别吗?提前致谢。
Can any one tell me the difference between TTL and Keep alive in sockets (C# Networking) and also Linger.. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TTL 告诉数据包在放弃之前可以通过多少个路由器,而保持活动则告诉连接必须在没有活动的情况下保持打开状态多长时间。
从我读到的关于 Linger 的内容来看,我没有看到 keep-alive 的区别,我可能在这里遗漏了一些东西。
编辑: linger 选项允许您关闭套接字,同时告诉它等待一段时间以查看数据是否仍在网络上;来自此页面,我们读到
TTL tells the packet how many routers he can go through before giving up, while Keep Alive tells the connexion how long it must be kept open without activity.
From what i read about Linger, i don't see the difference with keep-alive, i may be missing something here.
EDIT: The linger option allows you to close the socket while telling it to wait some time to see if data is still on the wire; from this page, we read that
生存时间是指网络数据包可能穿过的设备(跳数)数量(例如路由器、交换机等) 保持活动时间是指没有发送或接收数据时套接字保持打开状态的时间
Time to live is the number of devices (hops) a network packet may cross (like routers, switches etc) Keep alive time is the time the socket stays open when no data is being send or received