http://www.serverframework.com/asynchronousevents/2011/01/time-wait-and-its-design-implications-for-protocols-and-scalable-servers.html

https://tools.ietf.org/html/draft-penno-behave-rfc4787-5382-5508-bis-04#section-3.1.2

http://www.isi.edu/touch/pubs/infocomm99/infocomm99-web/

为什么需要三次握手四次shuishouhuishoucihuis

http://m.blog.csdn.net/article/details?id=44068801

http://perthcharles.github.io/2015/08/27/timestamp-intro/

https://tools.ietf.org/html/rfc1323#section-4

http://www.tcpipguide.com/free/t_TCPConnectionTermination-2.htm

TCP Extensions for High Performance

https://tools.ietf.org/html/rfc7323

https://github.com/torvalds/linux/commit/a26552afe89438eefbe097512b3187f2c7e929fd

https://networkengineering.stackexchange.com/questions/19581/what-is-the-purpose-of-time-wait-in-tcp-connection-tear-down

https://books.google.com.hk/books?id=sKoo-cFNPYsC&pg=PA362&lpg=PA362&dq=why+we+need+the+TIME-WAIT&source=bl&ots=WfbshJhn0f&sig=3c40pacRlU8ZkcV81hxHrsam944&hl=en&sa=X&ved=0ahUKEwjymuCnnqPTAhXSQpQKHY2nAUIQ6AEIQzAF#v=onepage&q&f=false

http://www.tcpipguide.com/free/t_TCPConnectionTermination-3.htm

http://troy.yort.com/improve-linux-tcp-tw-recycle-man-page-entry/

https://serverfault.com/questions/212093/how-to-reduce-number-of-sockets-in-time-wait

https://github.com/torvalds/linux/commit/a26552afe89438eefbe097512b3187f2c7e929fd

https://tools.ietf.org/html/rfc6191

https://tools.ietf.org/html/rfc1323

http://troy.yort.com/improve-linux-tcp-tw-recycle-man-page-entry/

TCPConnectionTermination的更多相关文章

随机推荐

  1. loadrunner error 27796 Failed to connect to server

    (2012-10-23 01:23:17) 转载▼   Action.c(58): Error -27796: Failed to connect to server "www.baidu. ...

  2. Linux下grub.cnf详解

    grub.conf跟系统启动项有关,对于重置密码.来说小case... 1.介绍    在Red Hat Linux7.2之后,默认的引导加载程序从LTLO变为GRUB.这个引导加载程序使用户能够选择 ...

  3. win32下编译glog

    既然编译第三方库了,google提供的VSproject是老版本的,构建不好升级.所以还是用cmake是王道. 采用out of source 编译,  以下是编译脚本bat: mkdir build ...

  4. 安装 directx sdk 出现 S1023 解决

    造成原因: directx sdk 在安装10.0.30319 of the Visual C++ Redistributable的时候发现有一个新版本的 Microsoft Visual C++ 2 ...

  5. <转>SQL 左外连接,右外连接,全连接,内连接

    本文节选自:https://www.cnblogs.com/youzhangjin/archive/2009/05/22/1486982.html       连接条件可在FROM或WHERE子句中指 ...

  6. hihocoder第218周:AC自动机

    题目链接 问题描述 给定n个单词,给定一个长字符串s,单词总长度和字符串s的长度都不超过1e5.要求把s中所有的出现单词的位置用*替代. 例如: 样例输入 2 abc cd abcxyzabcd 样例 ...

  7. Python函数的静态变量

    C语言中,在函数内部可以定义static类型的变量,这个变量是属于这个函数的全局对象.在Python中也可以实现这样的机制. def f(): if not hasattr(f, 'x'): f.x ...

  8. Hyperscan 介绍与安装【转】

    来源:http://blog.sina.com.cn/s/blog_913a533b0102wc38.html Hyperscan 介绍与安装 (2016-01-27 16:22:32) 转载▼   ...

  9. Java多线程编程:Callable、Future和FutureTask浅析

    通过前面几篇的学习,我们知道创建线程的方式有两种,一种是实现Runnable接口,另一种是继承Thread,但是这两种方式都有个缺点,那就是在任务执行完成之后无法获取返回结果,那如果我们想要获取返回结 ...

  10. C语言学习笔记 (005) - 二维数组作为函数参数传递剖析

    前言 很多文章不外乎告诉你下面这几种标准的形式,你如果按照它们来用,准没错: //对于一个2行13列int元素的二维数组 //函数f的形参形式 f(int daytab[2][13]) {...} / ...