I am porting a streaming TCP app from Linux to Windows.
The app streams real-time audio data using a preexisting TCP protocol (so switching to UDP isn t an option). Further, I wish to avoid being "part of the problem" and requiring Administrator rights.
短链氯化石蜡代码使用getsockopt(......,SOL_TCP, TCP_INFO, .
从TCP链接中获取RTT(环程时间)信息。 申请水平利用这一标准来减少发送的有关数据数量(显然是为了平衡质量与相对值)。
Is there an equivalent to TCP_INFO on WIndows?
(google tells me that Win2K and later supports "TCP Timestamps" which would provide this information, but I ve yet to find a way to get at it.
提前感谢。