大约有 800 项符合查询结果(耗时:0.0085秒) [XML]
When is it appropriate to use UDP instead of TCP? [closed]
Since TCP guarantees packet delivery and thus can be considered "reliable", whereas UDP doesn't guarantee anything and packets can be lost. What would be the advantage of transmitting data using UDP in an application rather than over a TCP stream? In what kind of situations would UDP be the better c...
为什么你得学些 TCP 的知识? - 环境配置 - 清泛IT社区,为创新赋能!
这不是指要明白 TCP 的所有东西,也不是说要通读 《TCP/IP 详解》。不过懂一点 TCP 知识是很有必要的。理由如下:
当我还在 Recurse Center 的时候,我用 Python 写过 TCP 协议栈(还写过一篇文章:如果你用 Python 写 TCP 协议栈会遇到...
tcp端口状态ESTABLISHED、TIME_WAIT、CLOSE_WAIT 、SYN_RECV等详解 - C/C++...
tcp端口状态ESTABLISHED、TIME_WAIT、CLOSE_WAIT 、SYN_RECV等详解TCP状态转移要点TCP协议规定,对于已经建立的连接,网络双方要进行四次握手才能成功断开连接,如果缺少了其中某个步骤,将会使连接处于假死 TCP状态转移要点
TCP协议...
Difference between TCP and UDP?
What is the difference between TCP and UDP?
12 Answers
12
...
Maximum packet size for a TCP connection
What is the maximum packet size for a TCP connection or how can I get the maximum packet size?
10 Answers
...
服务器保持大量TIME_WAIT和CLOSE_WAIT的解决方法 - C/C++ - 清泛网 - 专注C/C++及内核技术
...维护过程中,会经常用到下面的命令:
netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
它会显示例如下面的信息:
TIME_WAIT 814
CLOSE_WAIT 1
FIN_WAIT1 1
ESTABLISHED 634
SYN_RECV 2
LAST_ACK 1
常用的三个状态是:ESTABLISHED 表示正...
Test if remote TCP port is open from a shell script
I'm looking for a quick and simple method for properly testing if a given TCP port is open on a remote server, from inside a Shell script.
...
Connecting to TCP Socket from browser using javascript
...w.w3.org/TR/raw-sockets/
https://developer.mozilla.org/en-US/docs/Web/API/TCPSocket
Chrome now has support for raw TCP and UDP sockets in its ‘experimental’ APIs. These features are only available for extensions and, although documented, are hidden for the moment. Having said that, some develo...
浅谈TCP优化 - 更多技术 - 清泛网 - 专注C/C++及内核技术
浅谈TCP优化很多人常常对TCP优化有一种雾里看花的感觉,实际上只要理解了TCP的运行方式就能掀开它的神秘面纱。Ilya Grigorik在「High Performance B...很多人常常对TCP优化有一种雾里看花的感觉,实际上只要理解了TCP的运行方式就能...
Differences between TCP sockets and web sockets, one more time [duplicate]
Trying to understand as best as I can the differences between TCP socket and websocket, I've already found a lot of useful information within these questions:
...