summaryrefslogtreecommitdiff
path: root/doc/rfc/rfc9293.txt
blob: 34594bd8341d9b47a0a30c32dde5673472d68d49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
Internet Engineering Task Force (IETF)                      W. Eddy, Ed.
STD: 7                                                       MTI Systems
Request for Comments: 9293                                   August 2022
Obsoletes: 793, 879, 2873, 6093, 6429, 6528,                            
           6691                                                         
Updates: 1011, 1122, 5961                                               
Category: Standards Track                                               
ISSN: 2070-1721


                  Transmission Control Protocol (TCP)

Abstract

   This document specifies the Transmission Control Protocol (TCP).  TCP
   is an important transport-layer protocol in the Internet protocol
   stack, and it has continuously evolved over decades of use and growth
   of the Internet.  Over this time, a number of changes have been made
   to TCP as it was specified in RFC 793, though these have only been
   documented in a piecemeal fashion.  This document collects and brings
   those changes together with the protocol specification from RFC 793.
   This document obsoletes RFC 793, as well as RFCs 879, 2873, 6093,
   6429, 6528, and 6691 that updated parts of RFC 793.  It updates RFCs
   1011 and 1122, and it should be considered as a replacement for the
   portions of those documents dealing with TCP requirements.  It also
   updates RFC 5961 by adding a small clarification in reset handling
   while in the SYN-RECEIVED state.  The TCP header control bits from
   RFC 793 have also been updated based on RFC 3168.

Status of This Memo

   This is an Internet Standards Track document.

   This document is a product of the Internet Engineering Task Force
   (IETF).  It represents the consensus of the IETF community.  It has
   received public review and has been approved for publication by the
   Internet Engineering Steering Group (IESG).  Further information on
   Internet Standards is available in Section 2 of RFC 7841.

   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   https://www.rfc-editor.org/info/rfc9293.

Copyright Notice

   Copyright (c) 2022 IETF Trust and the persons identified as the
   document authors.  All rights reserved.

   This document is subject to BCP 78 and the IETF Trust's Legal
   Provisions Relating to IETF Documents
   (https://trustee.ietf.org/license-info) in effect on the date of
   publication of this document.  Please review these documents
   carefully, as they describe your rights and restrictions with respect
   to this document.  Code Components extracted from this document must
   include Revised BSD License text as described in Section 4.e of the
   Trust Legal Provisions and are provided without warranty as described
   in the Revised BSD License.

   This document may contain material from IETF Documents or IETF
   Contributions published or made publicly available before November
   10, 2008.  The person(s) controlling the copyright in some of this
   material may not have granted the IETF Trust the right to allow
   modifications of such material outside the IETF Standards Process.
   Without obtaining an adequate license from the person(s) controlling
   the copyright in such materials, this document may not be modified
   outside the IETF Standards Process, and derivative works of it may
   not be created outside the IETF Standards Process, except to format
   it for publication as an RFC or to translate it into languages other
   than English.

Table of Contents

   1.  Purpose and Scope
   2.  Introduction
     2.1.  Requirements Language
     2.2.  Key TCP Concepts
   3.  Functional Specification
     3.1.  Header Format
     3.2.  Specific Option Definitions
       3.2.1.  Other Common Options
       3.2.2.  Experimental TCP Options
     3.3.  TCP Terminology Overview
       3.3.1.  Key Connection State Variables
       3.3.2.  State Machine Overview
     3.4.  Sequence Numbers
       3.4.1.  Initial Sequence Number Selection
       3.4.2.  Knowing When to Keep Quiet
       3.4.3.  The TCP Quiet Time Concept
     3.5.  Establishing a Connection
       3.5.1.  Half-Open Connections and Other Anomalies
       3.5.2.  Reset Generation
       3.5.3.  Reset Processing
     3.6.  Closing a Connection
       3.6.1.  Half-Closed Connections
     3.7.  Segmentation
       3.7.1.  Maximum Segment Size Option
       3.7.2.  Path MTU Discovery
       3.7.3.  Interfaces with Variable MTU Values
       3.7.4.  Nagle Algorithm
       3.7.5.  IPv6 Jumbograms
     3.8.  Data Communication
       3.8.1.  Retransmission Timeout
       3.8.2.  TCP Congestion Control
       3.8.3.  TCP Connection Failures
       3.8.4.  TCP Keep-Alives
       3.8.5.  The Communication of Urgent Information
       3.8.6.  Managing the Window
     3.9.  Interfaces
       3.9.1.  User/TCP Interface
       3.9.2.  TCP/Lower-Level Interface
     3.10. Event Processing
       3.10.1.  OPEN Call
       3.10.2.  SEND Call
       3.10.3.  RECEIVE Call
       3.10.4.  CLOSE Call
       3.10.5.  ABORT Call
       3.10.6.  STATUS Call
       3.10.7.  SEGMENT ARRIVES
       3.10.8.  Timeouts
   4.  Glossary
   5.  Changes from RFC 793
   6.  IANA Considerations
   7.  Security and Privacy Considerations
   8.  References
     8.1.  Normative References
     8.2.  Informative References
   Appendix A.  Other Implementation Notes
     A.1.  IP Security Compartment and Precedence
       A.1.1.  Precedence
       A.1.2.  MLS Systems
     A.2.  Sequence Number Validation
     A.3.  Nagle Modification
     A.4.  Low Watermark Settings
   Appendix B.  TCP Requirement Summary
   Acknowledgments
   Author's Address

1.  Purpose and Scope

   In 1981, RFC 793 [16] was released, documenting the Transmission
   Control Protocol (TCP) and replacing earlier published specifications
   for TCP.

   Since then, TCP has been widely implemented, and it has been used as
   a transport protocol for numerous applications on the Internet.

   For several decades, RFC 793 plus a number of other documents have
   combined to serve as the core specification for TCP [49].  Over time,
   a number of errata have been filed against RFC 793.  There have also
   been deficiencies found and resolved in security, performance, and
   many other aspects.  The number of enhancements has grown over time
   across many separate documents.  These were never accumulated
   together into a comprehensive update to the base specification.

   The purpose of this document is to bring together all of the IETF
   Standards Track changes and other clarifications that have been made
   to the base TCP functional specification (RFC 793) and to unify them
   into an updated version of the specification.

   Some companion documents are referenced for important algorithms that
   are used by TCP (e.g., for congestion control) but have not been
   completely included in this document.  This is a conscious choice, as
   this base specification can be used with multiple additional
   algorithms that are developed and incorporated separately.  This
   document focuses on the common basis that all TCP implementations
   must support in order to interoperate.  Since some additional TCP
   features have become quite complicated themselves (e.g., advanced
   loss recovery and congestion control), future companion documents may
   attempt to similarly bring these together.

   In addition to the protocol specification that describes the TCP
   segment format, generation, and processing rules that are to be
   implemented in code, RFC 793 and other updates also contain
   informative and descriptive text for readers to understand aspects of
   the protocol design and operation.  This document does not attempt to
   alter or update this informative text and is focused only on updating
   the normative protocol specification.  This document preserves
   references to the documentation containing the important explanations
   and rationale, where appropriate.

   This document is intended to be useful both in checking existing TCP
   implementations for conformance purposes, as well as in writing new
   implementations.

2.  Introduction

   RFC 793 contains a discussion of the TCP design goals and provides
   examples of its operation, including examples of connection
   establishment, connection termination, and packet retransmission to
   repair losses.

   This document describes the basic functionality expected in modern
   TCP implementations and replaces the protocol specification in RFC
   793.  It does not replicate or attempt to update the introduction and
   philosophy content in Sections 1 and 2 of RFC 793.  Other documents
   are referenced to provide explanations of the theory of operation,
   rationale, and detailed discussion of design decisions.  This
   document only focuses on the normative behavior of the protocol.

   The "TCP Roadmap" [49] provides a more extensive guide to the RFCs
   that define TCP and describe various important algorithms.  The TCP
   Roadmap contains sections on strongly encouraged enhancements that
   improve performance and other aspects of TCP beyond the basic
   operation specified in this document.  As one example, implementing
   congestion control (e.g., [8]) is a TCP requirement, but it is a
   complex topic on its own and not described in detail in this
   document, as there are many options and possibilities that do not
   impact basic interoperability.  Similarly, most TCP implementations
   today include the high-performance extensions in [47], but these are
   not strictly required or discussed in this document.  Multipath
   considerations for TCP are also specified separately in [59].

   A list of changes from RFC 793 is contained in Section 5.

2.1.  Requirements Language

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
   "OPTIONAL" in this document are to be interpreted as described in
   BCP 14 [3] [12] when, and only when, they appear in all capitals, as
   shown here.

   Each use of RFC 2119 keywords in the document is individually labeled
   and referenced in Appendix B, which summarizes implementation
   requirements.

   Sentences using "MUST" are labeled as "MUST-X" with X being a numeric
   identifier enabling the requirement to be located easily when
   referenced from Appendix B.

   Similarly, sentences using "SHOULD" are labeled with "SHLD-X", "MAY"
   with "MAY-X", and "RECOMMENDED" with "REC-X".

   For the purposes of this labeling, "SHOULD NOT" and "MUST NOT" are
   labeled the same as "SHOULD" and "MUST" instances.

2.2.  Key TCP Concepts

   TCP provides a reliable, in-order, byte-stream service to
   applications.

   The application byte-stream is conveyed over the network via TCP
   segments, with each TCP segment sent as an Internet Protocol (IP)
   datagram.

   TCP reliability consists of detecting packet losses (via sequence
   numbers) and errors (via per-segment checksums), as well as
   correction via retransmission.

   TCP supports unicast delivery of data.  There are anycast
   applications that can successfully use TCP without modifications,
   though there is some risk of instability due to changes of lower-
   layer forwarding behavior [46].

   TCP is connection oriented, though it does not inherently include a
   liveness detection capability.

   Data flow is supported bidirectionally over TCP connections, though
   applications are free to send data only unidirectionally, if they so
   choose.

   TCP uses port numbers to identify application services and to
   multiplex distinct flows between hosts.

   A more detailed description of TCP features compared to other
   transport protocols can be found in Section 3.1 of [52].  Further
   description of the motivations for developing TCP and its role in the
   Internet protocol stack can be found in Section 2 of [16] and earlier
   versions of the TCP specification.

3.  Functional Specification

3.1.  Header Format

   TCP segments are sent as internet datagrams.  The Internet Protocol
   (IP) header carries several information fields, including the source
   and destination host addresses [1] [13].  A TCP header follows the IP
   headers, supplying information specific to TCP.  This division allows
   for the existence of host-level protocols other than TCP.  In the
   early development of the Internet suite of protocols, the IP header
   fields had been a part of TCP.

   This document describes TCP, which uses TCP headers.

   A TCP header, followed by any user data in the segment, is formatted
   as follows, using the style from [66]:

       0                   1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |          Source Port          |       Destination Port        |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |                        Sequence Number                        |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |                    Acknowledgment Number                      |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |  Data |       |C|E|U|A|P|R|S|F|                               |
      | Offset| Rsrvd |W|C|R|C|S|S|Y|I|            Window             |
      |       |       |R|E|G|K|H|T|N|N|                               |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |           Checksum            |         Urgent Pointer        |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |                           [Options]                           |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |                                                               :
      :                             Data                              :
      :                                                               |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

             Note that one tick mark represents one bit position.

                        Figure 1: TCP Header Format

   where:

   Source Port:  16 bits

     The source port number.

   Destination Port:  16 bits

     The destination port number.

   Sequence Number:  32 bits

     The sequence number of the first data octet in this segment (except
     when the SYN flag is set).  If SYN is set, the sequence number is
     the initial sequence number (ISN) and the first data octet is
     ISN+1.

   Acknowledgment Number:  32 bits

     If the ACK control bit is set, this field contains the value of the
     next sequence number the sender of the segment is expecting to
     receive.  Once a connection is established, this is always sent.

   Data Offset (DOffset):  4 bits

     The number of 32-bit words in the TCP header.  This indicates where
     the data begins.  The TCP header (even one including options) is an
     integer multiple of 32 bits long.

   Reserved (Rsrvd):  4 bits

     A set of control bits reserved for future use.  Must be zero in
     generated segments and must be ignored in received segments if the
     corresponding future features are not implemented by the sending or
     receiving host.

   Control bits:  The control bits are also known as "flags".
     Assignment is managed by IANA from the "TCP Header Flags" registry
     [62].  The currently assigned control bits are CWR, ECE, URG, ACK,
     PSH, RST, SYN, and FIN.

     CWR:  1 bit

         Congestion Window Reduced (see [6]).

     ECE:  1 bit

         ECN-Echo (see [6]).

     URG:  1 bit

         Urgent pointer field is significant.

     ACK:  1 bit

         Acknowledgment field is significant.

     PSH:  1 bit

         Push function (see the Send Call description in Section 3.9.1).

     RST:  1 bit

         Reset the connection.

     SYN:  1 bit

         Synchronize sequence numbers.

     FIN:  1 bit

         No more data from sender.

   Window:  16 bits

     The number of data octets beginning with the one indicated in the
     acknowledgment field that the sender of this segment is willing to
     accept.  The value is shifted when the window scaling extension is
     used [47].

     The window size MUST be treated as an unsigned number, or else
     large window sizes will appear like negative windows and TCP will
     not work (MUST-1).  It is RECOMMENDED that implementations will
     reserve 32-bit fields for the send and receive window sizes in the
     connection record and do all window computations with 32 bits (REC-
     1).

   Checksum:  16 bits

     The checksum field is the 16-bit ones' complement of the ones'
     complement sum of all 16-bit words in the header and text.  The
     checksum computation needs to ensure the 16-bit alignment of the
     data being summed.  If a segment contains an odd number of header
     and text octets, alignment can be achieved by padding the last
     octet with zeros on its right to form a 16-bit word for checksum
     purposes.  The pad is not transmitted as part of the segment.
     While computing the checksum, the checksum field itself is replaced
     with zeros.

     The checksum also covers a pseudo-header (Figure 2) conceptually
     prefixed to the TCP header.  The pseudo-header is 96 bits for IPv4
     and 320 bits for IPv6.  Including the pseudo-header in the checksum
     gives the TCP connection protection against misrouted segments.
     This information is carried in IP headers and is transferred across
     the TCP/network interface in the arguments or results of calls by
     the TCP implementation on the IP layer.

                     +--------+--------+--------+--------+
                     |           Source Address          |
                     +--------+--------+--------+--------+
                     |         Destination Address       |
                     +--------+--------+--------+--------+
                     |  zero  |  PTCL  |    TCP Length   |
                     +--------+--------+--------+--------+

                         Figure 2: IPv4 Pseudo-header

     Pseudo-header components for IPv4:
       Source Address:  the IPv4 source address in network byte order

       Destination Address:  the IPv4 destination address in network
          byte order

       zero:  bits set to zero

       PTCL:  the protocol number from the IP header

       TCP Length:  the TCP header length plus the data length in octets
          (this is not an explicitly transmitted quantity but is
          computed), and it does not count the 12 octets of the pseudo-
          header.

     For IPv6, the pseudo-header is defined in Section 8.1 of RFC 8200
     [13] and contains the IPv6 Source Address and Destination Address,
     an Upper-Layer Packet Length (a 32-bit value otherwise equivalent
     to TCP Length in the IPv4 pseudo-header), three bytes of zero
     padding, and a Next Header value, which differs from the IPv6
     header value if there are extension headers present between IPv6
     and TCP.

     The TCP checksum is never optional.  The sender MUST generate it
     (MUST-2) and the receiver MUST check it (MUST-3).

   Urgent Pointer:  16 bits

     This field communicates the current value of the urgent pointer as
     a positive offset from the sequence number in this segment.  The
     urgent pointer points to the sequence number of the octet following
     the urgent data.  This field is only to be interpreted in segments
     with the URG control bit set.

   Options:  [TCP Option]; size(Options) == (DOffset-5)*32; present only
     when DOffset > 5.  Note that this size expression also includes any
     padding trailing the actual options present.

     Options may occupy space at the end of the TCP header and are a
     multiple of 8 bits in length.  All options are included in the
     checksum.  An option may begin on any octet boundary.  There are
     two cases for the format of an option:

     Case 1:  A single octet of option-kind.

     Case 2:  An octet of option-kind (Kind), an octet of option-length,
        and the actual option-data octets.

     The option-length counts the two octets of option-kind and option-
     length as well as the option-data octets.

     Note that the list of options may be shorter than the Data Offset
     field might imply.  The content of the header beyond the End of
     Option List Option MUST be header padding of zeros (MUST-69).

     The list of all currently defined options is managed by IANA [62],
     and each option is defined in other RFCs, as indicated there.  That
     set includes experimental options that can be extended to support
     multiple concurrent usages [45].

     A given TCP implementation can support any currently defined
     options, but the following options MUST be supported (MUST-4 --
     note Maximum Segment Size Option support is also part of MUST-14 in
     Section 3.7.1):

               +======+========+============================+
               | Kind | Length | Meaning                    |
               +======+========+============================+
               | 0    | -      | End of Option List Option. |
               +------+--------+----------------------------+
               | 1    | -      | No-Operation.              |
               +------+--------+----------------------------+
               | 2    | 4      | Maximum Segment Size.      |
               +------+--------+----------------------------+

                       Table 1: Mandatory Option Set

     These options are specified in detail in Section 3.2.

     A TCP implementation MUST be able to receive a TCP Option in any
     segment (MUST-5).

     A TCP implementation MUST (MUST-6) ignore without error any TCP
     Option it does not implement, assuming that the option has a length
     field.  All TCP Options except End of Option List Option (EOL) and
     No-Operation (NOP) MUST have length fields, including all future
     options (MUST-68).  TCP implementations MUST be prepared to handle
     an illegal option length (e.g., zero); a suggested procedure is to
     reset the connection and log the error cause (MUST-7).

     Note: There is ongoing work to extend the space available for TCP
     Options, such as [65].

   Data:  variable length

     User data carried by the TCP segment.

3.2.  Specific Option Definitions

   A TCP Option, in the mandatory option set, is one of an End of Option
   List Option, a No-Operation Option, or a Maximum Segment Size Option.

   An End of Option List Option is formatted as follows:

       0
       0 1 2 3 4 5 6 7
      +-+-+-+-+-+-+-+-+
      |       0       |
      +-+-+-+-+-+-+-+-+

   where:

   Kind:  1 byte; Kind == 0.

     This option code indicates the end of the option list.  This might
     not coincide with the end of the TCP header according to the Data
     Offset field.  This is used at the end of all options, not the end
     of each option, and need only be used if the end of the options
     would not otherwise coincide with the end of the TCP header.

   A No-Operation Option is formatted as follows:

       0
       0 1 2 3 4 5 6 7
      +-+-+-+-+-+-+-+-+
      |       1       |
      +-+-+-+-+-+-+-+-+

   where:

   Kind:  1 byte; Kind == 1.

     This option code can be used between options, for example, to align
     the beginning of a subsequent option on a word boundary.  There is
     no guarantee that senders will use this option, so receivers MUST
     be prepared to process options even if they do not begin on a word
     boundary (MUST-64).

   A Maximum Segment Size Option is formatted as follows:

       0                   1                   2                   3
       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
      |       2       |     Length    |   Maximum Segment Size (MSS)  |
      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

   where:

   Kind:  1 byte; Kind == 2.

     If this option is present, then it communicates the maximum receive
     segment size at the TCP endpoint that sends this segment.  This
     value is limited by the IP reassembly limit.  This field may be
     sent in the initial connection request (i.e., in segments with the
     SYN control bit set) and MUST NOT be sent in other segments (MUST-
     65).  If this option is not used, any segment size is allowed.  A
     more complete description of this option is provided in
     Section 3.7.1.

   Length:  1 byte; Length == 4.

     Length of the option in bytes.

   Maximum Segment Size (MSS):  2 bytes.

     The maximum receive segment size at the TCP endpoint that sends
     this segment.

3.2.1.  Other Common Options

   Additional RFCs define some other commonly used options that are
   recommended to implement for high performance but are not necessary
   for basic TCP interoperability.  These are the TCP Selective
   Acknowledgment (SACK) Option [22] [26], TCP Timestamp (TS) Option
   [47], and TCP Window Scale (WS) Option [47].

3.2.2.  Experimental TCP Options

   Experimental TCP Option values are defined in [30], and [45]
   describes the current recommended usage for these experimental
   values.

3.3.  TCP Terminology Overview

   This section includes an overview of key terms needed to understand
   the detailed protocol operation in the rest of the document.  There
   is a glossary of terms in Section 4.

3.3.1.  Key Connection State Variables

   Before we can discuss the operation of the TCP implementation in
   detail, we need to introduce some detailed terminology.  The
   maintenance of a TCP connection requires maintaining state for
   several variables.  We conceive of these variables being stored in a
   connection record called a Transmission Control Block or TCB.  Among
   the variables stored in the TCB are the local and remote IP addresses
   and port numbers, the IP security level, and compartment of the
   connection (see Appendix A.1), pointers to the user's send and
   receive buffers, pointers to the retransmit queue and to the current
   segment.  In addition, several variables relating to the send and
   receive sequence numbers are stored in the TCB.

    +==========+=====================================================+
    | Variable | Description                                         |
    +==========+=====================================================+
    | SND.UNA  | send unacknowledged                                 |
    +----------+-----------------------------------------------------+
    | SND.NXT  | send next                                           |
    +----------+-----------------------------------------------------+
    | SND.WND  | send window                                         |
    +----------+-----------------------------------------------------+
    | SND.UP   | send urgent pointer                                 |
    +----------+-----------------------------------------------------+
    | SND.WL1  | segment sequence number used for last window update |
    +----------+-----------------------------------------------------+
    | SND.WL2  | segment acknowledgment number used for last window  |
    |          | update                                              |
    +----------+-----------------------------------------------------+
    | ISS      | initial send sequence number                        |
    +----------+-----------------------------------------------------+

                     Table 2: Send Sequence Variables

              +==========+=================================+
              | Variable | Description                     |
              +==========+=================================+
              | RCV.NXT  | receive next                    |
              +----------+---------------------------------+
              | RCV.WND  | receive window                  |
              +----------+---------------------------------+
              | RCV.UP   | receive urgent pointer          |
              +----------+---------------------------------+
              | IRS      | initial receive sequence number |
              +----------+---------------------------------+

                   Table 3: Receive Sequence Variables

   The following diagrams may help to relate some of these variables to
   the sequence space.

                      1         2          3          4
                 ----------|----------|----------|----------
                        SND.UNA    SND.NXT    SND.UNA
                                             +SND.WND

           1 - old sequence numbers that have been acknowledged
           2 - sequence numbers of unacknowledged data
           3 - sequence numbers allowed for new data transmission
           4 - future sequence numbers that are not yet allowed

                       Figure 3: Send Sequence Space

   The send window is the portion of the sequence space labeled 3 in
   Figure 3.

                          1          2          3
                      ----------|----------|----------
                             RCV.NXT    RCV.NXT
                                       +RCV.WND

           1 - old sequence numbers that have been acknowledged
           2 - sequence numbers allowed for new reception
           3 - future sequence numbers that are not yet allowed

                      Figure 4: Receive Sequence Space

   The receive window is the portion of the sequence space labeled 2 in
   Figure 4.

   There are also some variables used frequently in the discussion that
   take their values from the fields of the current segment.

               +==========+===============================+
               | Variable | Description                   |
               +==========+===============================+
               | SEG.SEQ  | segment sequence number       |
               +----------+-------------------------------+
               | SEG.ACK  | segment acknowledgment number |
               +----------+-------------------------------+
               | SEG.LEN  | segment length                |
               +----------+-------------------------------+
               | SEG.WND  | segment window                |
               +----------+-------------------------------+
               | SEG.UP   | segment urgent pointer        |
               +----------+-------------------------------+

                    Table 4: Current Segment Variables

3.3.2.  State Machine Overview

   A connection progresses through a series of states during its
   lifetime.  The states are: LISTEN, SYN-SENT, SYN-RECEIVED,
   ESTABLISHED, FIN-WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, LAST-ACK,
   TIME-WAIT, and the fictional state CLOSED.  CLOSED is fictional
   because it represents the state when there is no TCB, and therefore,
   no connection.  Briefly the meanings of the states are:

   LISTEN -  represents waiting for a connection request from any remote
      TCP peer and port.

   SYN-SENT -  represents waiting for a matching connection request
      after having sent a connection request.

   SYN-RECEIVED -  represents waiting for a confirming connection
      request acknowledgment after having both received and sent a
      connection request.

   ESTABLISHED -  represents an open connection, data received can be
      delivered to the user.  The normal state for the data transfer
      phase of the connection.

   FIN-WAIT-1 -  represents waiting for a connection termination request
      from the remote TCP peer, or an acknowledgment of the connection
      termination request previously sent.

   FIN-WAIT-2 -  represents waiting for a connection termination request
      from the remote TCP peer.

   CLOSE-WAIT -  represents waiting for a connection termination request
      from the local user.

   CLOSING -  represents waiting for a connection termination request
      acknowledgment from the remote TCP peer.

   LAST-ACK -  represents waiting for an acknowledgment of the
      connection termination request previously sent to the remote TCP
      peer (this termination request sent to the remote TCP peer already
      included an acknowledgment of the termination request sent from
      the remote TCP peer).

   TIME-WAIT -  represents waiting for enough time to pass to be sure
      the remote TCP peer received the acknowledgment of its connection
      termination request and to avoid new connections being impacted by
      delayed segments from previous connections.

   CLOSED -  represents no connection state at all.

   A TCP connection progresses from one state to another in response to
   events.  The events are the user calls, OPEN, SEND, RECEIVE, CLOSE,
   ABORT, and STATUS; the incoming segments, particularly those
   containing the SYN, ACK, RST, and FIN flags; and timeouts.

   The OPEN call specifies whether connection establishment is to be
   actively pursued, or to be passively waited for.

   A passive OPEN request means that the process wants to accept
   incoming connection requests, in contrast to an active OPEN
   attempting to initiate a connection.

   The state diagram in Figure 5 illustrates only state changes,
   together with the causing events and resulting actions, but addresses
   neither error conditions nor actions that are not connected with
   state changes.  In a later section, more detail is offered with
   respect to the reaction of the TCP implementation to events.  Some
   state names are abbreviated or hyphenated differently in the diagram
   from how they appear elsewhere in the document.

   NOTA BENE:  This diagram is only a summary and must not be taken as
      the total specification.  Many details are not included.

                               +---------+ ---------\      active OPEN
                               |  CLOSED |            \    -----------
                               +---------+<---------\   \   create TCB
                                 |     ^              \   \  snd SYN
                    passive OPEN |     |   CLOSE        \   \
                    ------------ |     | ----------       \   \
                     create TCB  |     | delete TCB         \   \
                                 V     |                      \   \
             rcv RST (note 1)  +---------+            CLOSE    |    \
          -------------------->|  LISTEN |          ---------- |     |
         /                     +---------+          delete TCB |     |
        /           rcv SYN      |     |     SEND              |     |
       /           -----------   |     |    -------            |     V
   +--------+      snd SYN,ACK  /       \   snd SYN          +--------+
   |        |<-----------------           ------------------>|        |
   |  SYN   |                    rcv SYN                     |  SYN   |
   |  RCVD  |<-----------------------------------------------|  SENT  |
   |        |                  snd SYN,ACK                   |        |
   |        |------------------           -------------------|        |
   +--------+   rcv ACK of SYN  \       /  rcv SYN,ACK       +--------+
      |         --------------   |     |   -----------
      |                x         |     |     snd ACK
      |                          V     V
      |  CLOSE                 +---------+
      | -------                |  ESTAB  |
      | snd FIN                +---------+
      |                 CLOSE    |     |    rcv FIN
      V                -------   |     |    -------
   +---------+         snd FIN  /       \   snd ACK         +---------+
   |  FIN    |<----------------          ------------------>|  CLOSE  |
   | WAIT-1  |------------------                            |   WAIT  |
   +---------+          rcv FIN  \                          +---------+
     | rcv ACK of FIN   -------   |                          CLOSE  |
     | --------------   snd ACK   |                         ------- |
     V        x                   V                         snd FIN V
   +---------+               +---------+                    +---------+
   |FINWAIT-2|               | CLOSING |                    | LAST-ACK|
   +---------+               +---------+                    +---------+
     |              rcv ACK of FIN |                 rcv ACK of FIN |
     |  rcv FIN     -------------- |    Timeout=2MSL -------------- |
     |  -------            x       V    ------------        x       V
      \ snd ACK              +---------+delete TCB          +---------+
        -------------------->|TIME-WAIT|------------------->| CLOSED  |
                             +---------+                    +---------+

                   Figure 5: TCP Connection State Diagram

   The following notes apply to Figure 5:

   Note 1:  The transition from SYN-RECEIVED to LISTEN on receiving a
      RST is conditional on having reached SYN-RECEIVED after a passive
      OPEN.

   Note 2:  The figure omits a transition from FIN-WAIT-1 to TIME-WAIT
      if a FIN is received and the local FIN is also acknowledged.

   Note 3:  A RST can be sent from any state with a corresponding
      transition to TIME-WAIT (see [70] for rationale).  These
      transitions are not explicitly shown; otherwise, the diagram would
      become very difficult to read.  Similarly, receipt of a RST from
      any state results in a transition to LISTEN or CLOSED, though this
      is also omitted from the diagram for legibility.

3.4.  Sequence Numbers

   A fundamental notion in the design is that every octet of data sent
   over a TCP connection has a sequence number.  Since every octet is
   sequenced, each of them can be acknowledged.  The acknowledgment
   mechanism employed is cumulative so that an acknowledgment of
   sequence number X indicates that all octets up to but not including X
   have been received.  This mechanism allows for straightforward
   duplicate detection in the presence of retransmission.  The numbering
   scheme of octets within a segment is as follows: the first data octet
   immediately following the header is the lowest numbered, and the
   following octets are numbered consecutively.

   It is essential to remember that the actual sequence number space is
   finite, though large.  This space ranges from 0 to 2^32 - 1.  Since
   the space is finite, all arithmetic dealing with sequence numbers
   must be performed modulo 2^32.  This unsigned arithmetic preserves
   the relationship of sequence numbers as they cycle from 2^32 - 1 to 0
   again.  There are some subtleties to computer modulo arithmetic, so
   great care should be taken in programming the comparison of such
   values.  The symbol "=<" means "less than or equal" (modulo 2^32).

   The typical kinds of sequence number comparisons that the TCP
   implementation must perform include:

   (a)  Determining that an acknowledgment refers to some sequence
        number sent but not yet acknowledged.

   (b)  Determining that all sequence numbers occupied by a segment have
        been acknowledged (e.g., to remove the segment from a
        retransmission queue).

   (c)  Determining that an incoming segment contains sequence numbers
        that are expected (i.e., that the segment "overlaps" the receive
        window).

   In response to sending data, the TCP endpoint will receive
   acknowledgments.  The following comparisons are needed to process the
   acknowledgments:

      SND.UNA = oldest unacknowledged sequence number

      SND.NXT = next sequence number to be sent

      SEG.ACK = acknowledgment from the receiving TCP peer (next
      sequence number expected by the receiving TCP peer)

      SEG.SEQ = first sequence number of a segment

      SEG.LEN = the number of octets occupied by the data in the segment
      (counting SYN and FIN)

      SEG.SEQ+SEG.LEN-1 = last sequence number of a segment

   A new acknowledgment (called an "acceptable ack") is one for which
   the inequality below holds:

      SND.UNA < SEG.ACK =< SND.NXT

   A segment on the retransmission queue is fully acknowledged if the
   sum of its sequence number and length is less than or equal to the
   acknowledgment value in the incoming segment.

   When data is received, the following comparisons are needed:

      RCV.NXT = next sequence number expected on an incoming segment,
      and is the left or lower edge of the receive window

      RCV.NXT+RCV.WND-1 = last sequence number expected on an incoming
      segment, and is the right or upper edge of the receive window

      SEG.SEQ = first sequence number occupied by the incoming segment

      SEG.SEQ+SEG.LEN-1 = last sequence number occupied by the incoming
      segment

   A segment is judged to occupy a portion of valid receive sequence
   space if

      RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND

   or

      RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND

   The first part of this test checks to see if the beginning of the
   segment falls in the window, the second part of the test checks to
   see if the end of the segment falls in the window; if the segment
   passes either part of the test, it contains data in the window.

   Actually, it is a little more complicated than this.  Due to zero
   windows and zero-length segments, we have four cases for the
   acceptability of an incoming segment:

       +=========+=========+======================================+
       | Segment | Receive | Test                                 |
       | Length  | Window  |                                      |
       +=========+=========+======================================+
       | 0       | 0       | SEG.SEQ = RCV.NXT                    |
       +---------+---------+--------------------------------------+
       | 0       | >0      | RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
       +---------+---------+--------------------------------------+
       | >0      | 0       | not acceptable                       |
       +---------+---------+--------------------------------------+
       | >0      | >0      | RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
       |         |         |                                      |
       |         |         | or                                   |
       |         |         |                                      |
       |         |         | RCV.NXT =< SEG.SEQ+SEG.LEN-1 <       |
       |         |         | RCV.NXT+RCV.WND                      |
       +---------+---------+--------------------------------------+

                   Table 5: Segment Acceptability Tests

   Note that when the receive window is zero no segments should be
   acceptable except ACK segments.  Thus, it is possible for a TCP
   implementation to maintain a zero receive window while transmitting
   data and receiving ACKs.  A TCP receiver MUST process the RST and URG
   fields of all incoming segments, even when the receive window is zero
   (MUST-66).

   We have taken advantage of the numbering scheme to protect certain
   control information as well.  This is achieved by implicitly
   including some control flags in the sequence space so they can be
   retransmitted and acknowledged without confusion (i.e., one and only
   one copy of the control will be acted upon).  Control information is
   not physically carried in the segment data space.  Consequently, we
   must adopt rules for implicitly assigning sequence numbers to
   control.  The SYN and FIN are the only controls requiring this
   protection, and these controls are used only at connection opening
   and closing.  For sequence number purposes, the SYN is considered to
   occur before the first actual data octet of the segment in which it
   occurs, while the FIN is considered to occur after the last actual
   data octet in a segment in which it occurs.  The segment length
   (SEG.LEN) includes both data and sequence space-occupying controls.
   When a SYN is present, then SEG.SEQ is the sequence number of the
   SYN.

3.4.1.  Initial Sequence Number Selection

   A connection is defined by a pair of sockets.  Connections can be
   reused.  New instances of a connection will be referred to as
   incarnations of the connection.  The problem that arises from this is
   -- "how does the TCP implementation identify duplicate segments from
   previous incarnations of the connection?"  This problem becomes
   apparent if the connection is being opened and closed in quick
   succession, or if the connection breaks with loss of memory and is
   then reestablished.  To support this, the TIME-WAIT state limits the
   rate of connection reuse, while the initial sequence number selection
   described below further protects against ambiguity about which
   incarnation of a connection an incoming packet corresponds to.

   To avoid confusion, we must prevent segments from one incarnation of
   a connection from being used while the same sequence numbers may
   still be present in the network from an earlier incarnation.  We want
   to assure this even if a TCP endpoint loses all knowledge of the
   sequence numbers it has been using.  When new connections are
   created, an initial sequence number (ISN) generator is employed that
   selects a new 32-bit ISN.  There are security issues that result if
   an off-path attacker is able to predict or guess ISN values [42].

   TCP initial sequence numbers are generated from a number sequence
   that monotonically increases until it wraps, known loosely as a
   "clock".  This clock is a 32-bit counter that typically increments at
   least once every roughly 4 microseconds, although it is neither
   assumed to be realtime nor precise, and need not persist across
   reboots.  The clock component is intended to ensure that with a
   Maximum Segment Lifetime (MSL), generated ISNs will be unique since
   it cycles approximately every 4.55 hours, which is much longer than
   the MSL.  Please note that for modern networks that support high data
   rates where the connection might start and quickly advance sequence
   numbers to overlap within the MSL, it is recommended to implement the
   Timestamp Option as mentioned later in Section 3.4.3.

   A TCP implementation MUST use the above type of "clock" for clock-
   driven selection of initial sequence numbers (MUST-8), and SHOULD
   generate its initial sequence numbers with the expression:

   ISN = M + F(localip, localport, remoteip, remoteport, secretkey)

   where M is the 4 microsecond timer, and F() is a pseudorandom
   function (PRF) of the connection's identifying parameters ("localip,
   localport, remoteip, remoteport") and a secret key ("secretkey")
   (SHLD-1).  F() MUST NOT be computable from the outside (MUST-9), or
   an attacker could still guess at sequence numbers from the ISN used
   for some other connection.  The PRF could be implemented as a
   cryptographic hash of the concatenation of the TCP connection
   parameters and some secret data.  For discussion of the selection of
   a specific hash algorithm and management of the secret key data,
   please see Section 3 of [42].

   For each connection there is a send sequence number and a receive
   sequence number.  The initial send sequence number (ISS) is chosen by
   the data sending TCP peer, and the initial receive sequence number
   (IRS) is learned during the connection-establishing procedure.

   For a connection to be established or initialized, the two TCP peers
   must synchronize on each other's initial sequence numbers.  This is
   done in an exchange of connection-establishing segments carrying a
   control bit called "SYN" (for synchronize) and the initial sequence
   numbers.  As a shorthand, segments carrying the SYN bit are also
   called "SYNs".  Hence, the solution requires a suitable mechanism for
   picking an initial sequence number and a slightly involved handshake
   to exchange the ISNs.

   The synchronization requires each side to send its own initial
   sequence number and to receive a confirmation of it in acknowledgment
   from the remote TCP peer.  Each side must also receive the remote
   peer's initial sequence number and send a confirming acknowledgment.

       1) A --> B  SYN my sequence number is X
       2) A <-- B  ACK your sequence number is X
       3) A <-- B  SYN my sequence number is Y
       4) A --> B  ACK your sequence number is Y

   Because steps 2 and 3 can be combined in a single message this is
   called the three-way (or three message) handshake (3WHS).

   A 3WHS is necessary because sequence numbers are not tied to a global
   clock in the network, and TCP implementations may have different
   mechanisms for picking the ISNs.  The receiver of the first SYN has
   no way of knowing whether the segment was an old one or not, unless
   it remembers the last sequence number used on the connection (which
   is not always possible), and so it must ask the sender to verify this
   SYN.  The three-way handshake and the advantages of a clock-driven
   scheme for ISN selection are discussed in [69].

3.4.2.  Knowing When to Keep Quiet

   A theoretical problem exists where data could be corrupted due to
   confusion between old segments in the network and new ones after a
   host reboots if the same port numbers and sequence space are reused.
   The "quiet time" concept discussed below addresses this, and the
   discussion of it is included for situations where it might be
   relevant, although it is not felt to be necessary in most current
   implementations.  The problem was more relevant earlier in the
   history of TCP.  In practical use on the Internet today, the error-
   prone conditions are sufficiently unlikely that it is safe to ignore.
   Reasons why it is now negligible include: (a) ISS and ephemeral port
   randomization have reduced likelihood of reuse of port numbers and
   sequence numbers after reboots, (b) the effective MSL of the Internet
   has declined as links have become faster, and (c) reboots often
   taking longer than an MSL anyways.

   To be sure that a TCP implementation does not create a segment
   carrying a sequence number that may be duplicated by an old segment
   remaining in the network, the TCP endpoint must keep quiet for an MSL
   before assigning any sequence numbers upon starting up or recovering
   from a situation where memory of sequence numbers in use was lost.
   For this specification the MSL is taken to be 2 minutes.  This is an
   engineering choice, and may be changed if experience indicates it is
   desirable to do so.  Note that if a TCP endpoint is reinitialized in
   some sense, yet retains its memory of sequence numbers in use, then
   it need not wait at all; it must only be sure to use sequence numbers
   larger than those recently used.

3.4.3.  The TCP Quiet Time Concept

   Hosts that for any reason lose knowledge of the last sequence numbers
   transmitted on each active (i.e., not closed) connection shall delay
   emitting any TCP segments for at least the agreed MSL in the internet
   system that the host is a part of.  In the paragraphs below, an
   explanation for this specification is given.  TCP implementers may
   violate the "quiet time" restriction, but only at the risk of causing
   some old data to be accepted as new or new data rejected as old
   duplicated data by some receivers in the internet system.

   TCP endpoints consume sequence number space each time a segment is
   formed and entered into the network output queue at a source host.
   The duplicate detection and sequencing algorithm in TCP relies on the
   unique binding of segment data to sequence space to the extent that
   sequence numbers will not cycle through all 2^32 values before the
   segment data bound to those sequence numbers has been delivered and
   acknowledged by the receiver and all duplicate copies of the segments
   have "drained" from the internet.  Without such an assumption, two
   distinct TCP segments could conceivably be assigned the same or
   overlapping sequence numbers, causing confusion at the receiver as to
   which data is new and which is old.  Remember that each segment is
   bound to as many consecutive sequence numbers as there are octets of
   data and SYN or FIN flags in the segment.

   Under normal conditions, TCP implementations keep track of the next
   sequence number to emit and the oldest awaiting acknowledgment so as
   to avoid mistakenly reusing a sequence number before its first use
   has been acknowledged.  This alone does not guarantee that old
   duplicate data is drained from the net, so the sequence space has
   been made large to reduce the probability that a wandering duplicate
   will cause trouble upon arrival.  At 2 megabits/sec., it takes 4.5
   hours to use up 2^32 octets of sequence space.  Since the maximum
   segment lifetime in the net is not likely to exceed a few tens of
   seconds, this is deemed ample protection for foreseeable nets, even
   if data rates escalate to 10s of megabits/sec.  At 100 megabits/sec.,
   the cycle time is 5.4 minutes, which may be a little short but still
   within reason.  Much higher data rates are possible today, with
   implications described in the final paragraph of this subsection.

   The basic duplicate detection and sequencing algorithm in TCP can be
   defeated, however, if a source TCP endpoint does not have any memory
   of the sequence numbers it last used on a given connection.  For
   example, if the TCP implementation were to start all connections with
   sequence number 0, then upon the host rebooting, a TCP peer might re-
   form an earlier connection (possibly after half-open connection
   resolution) and emit packets with sequence numbers identical to or
   overlapping with packets still in the network, which were emitted on
   an earlier incarnation of the same connection.  In the absence of
   knowledge about the sequence numbers used on a particular connection,
   the TCP specification recommends that the source delay for MSL
   seconds before emitting segments on the connection, to allow time for
   segments from the earlier connection incarnation to drain from the
   system.

   Even hosts that can remember the time of day and use it to select
   initial sequence number values are not immune from this problem
   (i.e., even if time of day is used to select an initial sequence
   number for each new connection incarnation).

   Suppose, for example, that a connection is opened starting with
   sequence number S.  Suppose that this connection is not used much and
   that eventually the initial sequence number function (ISN(t)) takes
   on a value equal to the sequence number, say S1, of the last segment
   sent by this TCP endpoint on a particular connection.  Now suppose,
   at this instant, the host reboots and establishes a new incarnation
   of the connection.  The initial sequence number chosen is S1 = ISN(t)
   -- last used sequence number on old incarnation of connection!  If
   the recovery occurs quickly enough, any old duplicates in the net
   bearing sequence numbers in the neighborhood of S1 may arrive and be
   treated as new packets by the receiver of the new incarnation of the
   connection.

   The problem is that the recovering host may not know for how long it
   was down between rebooting nor does it know whether there are still
   old duplicates in the system from earlier connection incarnations.

   One way to deal with this problem is to deliberately delay emitting
   segments for one MSL after recovery from a reboot -- this is the
   "quiet time" specification.  Hosts that prefer to avoid waiting and
   are willing to risk possible confusion of old and new packets at a
   given destination may choose not to wait for the "quiet time".
   Implementers may provide TCP users with the ability to select on a
   connection-by-connection basis whether to wait after a reboot, or may
   informally implement the "quiet time" for all connections.
   Obviously, even where a user selects to "wait", this is not necessary
   after the host has been "up" for at least MSL seconds.

   To summarize: every segment emitted occupies one or more sequence
   numbers in the sequence space, and the numbers occupied by a segment
   are "busy" or "in use" until MSL seconds have passed.  Upon
   rebooting, a block of space-time is occupied by the octets and SYN or
   FIN flags of any potentially still in-flight segments.  If a new
   connection is started too soon and uses any of the sequence numbers
   in the space-time footprint of those potentially still in-flight
   segments of the previous connection incarnation, there is a potential
   sequence number overlap area that could cause confusion at the
   receiver.

   High-performance cases will have shorter cycle times than those in
   the megabits per second that the base TCP design described above
   considers.  At 1 Gbps, the cycle time is 34 seconds, only 3 seconds
   at 10 Gbps, and around a third of a second at 100 Gbps.  In these
   higher-performance cases, TCP Timestamp Options and Protection
   Against Wrapped Sequences (PAWS) [47] provide the needed capability
   to detect and discard old duplicates.

3.5.  Establishing a Connection

   The "three-way handshake" is the procedure used to establish a
   connection.  This procedure normally is initiated by one TCP peer and
   responded to by another TCP peer.  The procedure also works if two
   TCP peers simultaneously initiate the procedure.  When simultaneous
   open occurs, each TCP peer receives a SYN segment that carries no
   acknowledgment after it has sent a SYN.  Of course, the arrival of an
   old duplicate SYN segment can potentially make it appear, to the
   recipient, that a simultaneous connection initiation is in progress.
   Proper use of "reset" segments can disambiguate these cases.

   Several examples of connection initiation follow.  Although these
   examples do not show connection synchronization using data-carrying
   segments, this is perfectly legitimate, so long as the receiving TCP
   endpoint doesn't deliver the data to the user until it is clear the
   data is valid (e.g., the data is buffered at the receiver until the
   connection reaches the ESTABLISHED state, given that the three-way
   handshake reduces the possibility of false connections).  It is a
   trade-off between memory and messages to provide information for this
   checking.

   The simplest 3WHS is shown in Figure 6.  The figures should be
   interpreted in the following way.  Each line is numbered for
   reference purposes.  Right arrows (-->) indicate departure of a TCP
   segment from TCP Peer A to TCP Peer B or arrival of a segment at B
   from A.  Left arrows (<--) indicate the reverse.  Ellipses (...)
   indicate a segment that is still in the network (delayed).  Comments
   appear in parentheses.  TCP connection states represent the state
   AFTER the departure or arrival of the segment (whose contents are
   shown in the center of each line).  Segment contents are shown in
   abbreviated form, with sequence number, control flags, and ACK field.
   Other fields such as window, addresses, lengths, and text have been
   left out in the interest of clarity.

       TCP Peer A                                           TCP Peer B

   1.  CLOSED                                               LISTEN

   2.  SYN-SENT    --> <SEQ=100><CTL=SYN>               --> SYN-RECEIVED

   3.  ESTABLISHED <-- <SEQ=300><ACK=101><CTL=SYN,ACK>  <-- SYN-RECEIVED

   4.  ESTABLISHED --> <SEQ=101><ACK=301><CTL=ACK>       --> ESTABLISHED

   5.  ESTABLISHED --> <SEQ=101><ACK=301><CTL=ACK><DATA> --> ESTABLISHED

     Figure 6: Basic Three-Way Handshake for Connection Synchronization

   In line 2 of Figure 6, TCP Peer A begins by sending a SYN segment
   indicating that it will use sequence numbers starting with sequence
   number 100.  In line 3, TCP Peer B sends a SYN and acknowledges the
   SYN it received from TCP Peer A.  Note that the acknowledgment field
   indicates TCP Peer B is now expecting to hear sequence 101,
   acknowledging the SYN that occupied sequence 100.

   At line 4, TCP Peer A responds with an empty segment containing an
   ACK for TCP Peer B's SYN; and in line 5, TCP Peer A sends some data.
   Note that the sequence number of the segment in line 5 is the same as
   in line 4 because the ACK does not occupy sequence number space (if
   it did, we would wind up ACKing ACKs!).

   Simultaneous initiation is only slightly more complex, as is shown in
   Figure 7.  Each TCP peer's connection state cycles from CLOSED to
   SYN-SENT to SYN-RECEIVED to ESTABLISHED.

       TCP Peer A                                       TCP Peer B

   1.  CLOSED                                           CLOSED

   2.  SYN-SENT     --> <SEQ=100><CTL=SYN>              ...

   3.  SYN-RECEIVED <-- <SEQ=300><CTL=SYN>              <-- SYN-SENT

   4.               ... <SEQ=100><CTL=SYN>              --> SYN-RECEIVED

   5.  SYN-RECEIVED --> <SEQ=100><ACK=301><CTL=SYN,ACK> ...

   6.  ESTABLISHED  <-- <SEQ=300><ACK=101><CTL=SYN,ACK> <-- SYN-RECEIVED

   7.               ... <SEQ=100><ACK=301><CTL=SYN,ACK> --> ESTABLISHED

             Figure 7: Simultaneous Connection Synchronization

   A TCP implementation MUST support simultaneous open attempts (MUST-
   10).

   Note that a TCP implementation MUST keep track of whether a
   connection has reached SYN-RECEIVED state as the result of a passive
   OPEN or an active OPEN (MUST-11).

   The principal reason for the three-way handshake is to prevent old
   duplicate connection initiations from causing confusion.  To deal
   with this, a special control message, reset, is specified.  If the
   receiving TCP peer is in a non-synchronized state (i.e., SYN-SENT,
   SYN-RECEIVED), it returns to LISTEN on receiving an acceptable reset.
   If the TCP peer is in one of the synchronized states (ESTABLISHED,
   FIN-WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, LAST-ACK, TIME-WAIT), it
   aborts the connection and informs its user.  We discuss this latter
   case under "half-open" connections below.

       TCP Peer A                                           TCP Peer B

   1.  CLOSED                                               LISTEN

   2.  SYN-SENT    --> <SEQ=100><CTL=SYN>               ...

   3.  (duplicate) ... <SEQ=90><CTL=SYN>               --> SYN-RECEIVED

   4.  SYN-SENT    <-- <SEQ=300><ACK=91><CTL=SYN,ACK>  <-- SYN-RECEIVED

   5.  SYN-SENT    --> <SEQ=91><CTL=RST>               --> LISTEN

   6.              ... <SEQ=100><CTL=SYN>               --> SYN-RECEIVED

   7.  ESTABLISHED <-- <SEQ=400><ACK=101><CTL=SYN,ACK>  <-- SYN-RECEIVED

   8.  ESTABLISHED --> <SEQ=101><ACK=401><CTL=ACK>      --> ESTABLISHED

                 Figure 8: Recovery from Old Duplicate SYN

   As a simple example of recovery from old duplicates, consider
   Figure 8.  At line 3, an old duplicate SYN arrives at TCP Peer B.
   TCP Peer B cannot tell that this is an old duplicate, so it responds
   normally (line 4).  TCP Peer A detects that the ACK field is
   incorrect and returns a RST (reset) with its SEQ field selected to
   make the segment believable.  TCP Peer B, on receiving the RST,
   returns to the LISTEN state.  When the original SYN finally arrives
   at line 6, the synchronization proceeds normally.  If the SYN at line
   6 had arrived before the RST, a more complex exchange might have
   occurred with RSTs sent in both directions.

3.5.1.  Half-Open Connections and Other Anomalies

   An established connection is said to be "half-open" if one of the TCP
   peers has closed or aborted the connection at its end without the
   knowledge of the other, or if the two ends of the connection have
   become desynchronized owing to a failure or reboot that resulted in
   loss of memory.  Such connections will automatically become reset if
   an attempt is made to send data in either direction.  However, half-
   open connections are expected to be unusual.

   If at site A the connection no longer exists, then an attempt by the
   user at site B to send any data on it will result in the site B TCP
   endpoint receiving a reset control message.  Such a message indicates
   to the site B TCP endpoint that something is wrong, and it is
   expected to abort the connection.

   Assume that two user processes A and B are communicating with one
   another when a failure or reboot occurs causing loss of memory to A's
   TCP implementation.  Depending on the operating system supporting A's
   TCP implementation, it is likely that some error recovery mechanism
   exists.  When the TCP endpoint is up again, A is likely to start
   again from the beginning or from a recovery point.  As a result, A
   will probably try to OPEN the connection again or try to SEND on the
   connection it believes open.  In the latter case, it receives the
   error message "connection not open" from the local (A's) TCP
   implementation.  In an attempt to establish the connection, A's TCP
   implementation will send a segment containing SYN.  This scenario
   leads to the example shown in Figure 9.  After TCP Peer A reboots,
   the user attempts to reopen the connection.  TCP Peer B, in the
   meantime, thinks the connection is open.

         TCP Peer A                                      TCP Peer B

     1.  (REBOOT)                              (send 300,receive 100)

     2.  CLOSED                                           ESTABLISHED

     3.  SYN-SENT --> <SEQ=400><CTL=SYN>              --> (??)

     4.  (!!)     <-- <SEQ=300><ACK=100><CTL=ACK>     <-- ESTABLISHED

     5.  SYN-SENT --> <SEQ=100><CTL=RST>              --> (Abort!!)

     6.  SYN-SENT                                         CLOSED

     7.  SYN-SENT --> <SEQ=400><CTL=SYN>              -->

                  Figure 9: Half-Open Connection Discovery

   When the SYN arrives at line 3, TCP Peer B, being in a synchronized
   state, and the incoming segment outside the window, responds with an
   acknowledgment indicating what sequence it next expects to hear (ACK
   100).  TCP Peer A sees that this segment does not acknowledge
   anything it sent and, being unsynchronized, sends a reset (RST)
   because it has detected a half-open connection.  TCP Peer B aborts at
   line 5.  TCP Peer A will continue to try to establish the connection;
   the problem is now reduced to the basic three-way handshake of
   Figure 6.

   An interesting alternative case occurs when TCP Peer A reboots and
   TCP Peer B tries to send data on what it thinks is a synchronized
   connection.  This is illustrated in Figure 10.  In this case, the
   data arriving at TCP Peer A from TCP Peer B (line 2) is unacceptable
   because no such connection exists, so TCP Peer A sends a RST.  The
   RST is acceptable so TCP Peer B processes it and aborts the
   connection.

         TCP Peer A                                         TCP Peer B

   1.  (REBOOT)                                  (send 300,receive 100)

   2.  (??)    <-- <SEQ=300><ACK=100><DATA=10><CTL=ACK> <-- ESTABLISHED

   3.          --> <SEQ=100><CTL=RST>                   --> (ABORT!!)

        Figure 10: Active Side Causes Half-Open Connection Discovery

   In Figure 11, two TCP Peers A and B with passive connections waiting
   for SYN are depicted.  An old duplicate arriving at TCP Peer B (line
   2) stirs B into action.  A SYN-ACK is returned (line 3) and causes
   TCP A to generate a RST (the ACK in line 3 is not acceptable).  TCP
   Peer B accepts the reset and returns to its passive LISTEN state.

       TCP Peer A                                    TCP Peer B

   1.  LISTEN                                        LISTEN

   2.       ... <SEQ=Z><CTL=SYN>                -->  SYN-RECEIVED

   3.  (??) <-- <SEQ=X><ACK=Z+1><CTL=SYN,ACK>   <--  SYN-RECEIVED

   4.       --> <SEQ=Z+1><CTL=RST>              -->  (return to LISTEN!)

   5.  LISTEN                                        LISTEN

   Figure 11: Old Duplicate SYN Initiates a Reset on Two Passive Sockets

   A variety of other cases are possible, all of which are accounted for
   by the following rules for RST generation and processing.

3.5.2.  Reset Generation

   A TCP user or application can issue a reset on a connection at any
   time, though reset events are also generated by the protocol itself
   when various error conditions occur, as described below.  The side of
   a connection issuing a reset should enter the TIME-WAIT state, as
   this generally helps to reduce the load on busy servers for reasons
   described in [70].

   As a general rule, reset (RST) is sent whenever a segment arrives
   that apparently is not intended for the current connection.  A reset
   must not be sent if it is not clear that this is the case.

   There are three groups of states:

   1.  If the connection does not exist (CLOSED), then a reset is sent
       in response to any incoming segment except another reset.  A SYN
       segment that does not match an existing connection is rejected by
       this means.

       If the incoming segment has the ACK bit set, the reset takes its
       sequence number from the ACK field of the segment; otherwise, the
       reset has sequence number zero and the ACK field is set to the
       sum of the sequence number and segment length of the incoming
       segment.  The connection remains in the CLOSED state.

   2.  If the connection is in any non-synchronized state (LISTEN, SYN-
       SENT, SYN-RECEIVED), and the incoming segment acknowledges
       something not yet sent (the segment carries an unacceptable ACK),
       or if an incoming segment has a security level or compartment
       (Appendix A.1) that does not exactly match the level and
       compartment requested for the connection, a reset is sent.

       If the incoming segment has an ACK field, the reset takes its
       sequence number from the ACK field of the segment; otherwise, the
       reset has sequence number zero and the ACK field is set to the
       sum of the sequence number and segment length of the incoming
       segment.  The connection remains in the same state.

   3.  If the connection is in a synchronized state (ESTABLISHED, FIN-
       WAIT-1, FIN-WAIT-2, CLOSE-WAIT, CLOSING, LAST-ACK, TIME-WAIT),
       any unacceptable segment (out-of-window sequence number or
       unacceptable acknowledgment number) must be responded to with an
       empty acknowledgment segment (without any user data) containing
       the current send sequence number and an acknowledgment indicating
       the next sequence number expected to be received, and the
       connection remains in the same state.

       If an incoming segment has a security level or compartment that
       does not exactly match the level and compartment requested for
       the connection, a reset is sent and the connection goes to the
       CLOSED state.  The reset takes its sequence number from the ACK
       field of the incoming segment.

3.5.3.  Reset Processing

   In all states except SYN-SENT, all reset (RST) segments are validated
   by checking their SEQ fields.  A reset is valid if its sequence
   number is in the window.  In the SYN-SENT state (a RST received in
   response to an initial SYN), the RST is acceptable if the ACK field
   acknowledges the SYN.

   The receiver of a RST first validates it, then changes state.  If the
   receiver was in the LISTEN state, it ignores it.  If the receiver was
   in SYN-RECEIVED state and had previously been in the LISTEN state,
   then the receiver returns to the LISTEN state; otherwise, the
   receiver aborts the connection and goes to the CLOSED state.  If the
   receiver was in any other state, it aborts the connection and advises
   the user and goes to the CLOSED state.

   TCP implementations SHOULD allow a received RST segment to include
   data (SHLD-2).  It has been suggested that a RST segment could
   contain diagnostic data that explains the cause of the RST.  No
   standard has yet been established for such data.

3.6.  Closing a Connection

   CLOSE is an operation meaning "I have no more data to send."  The
   notion of closing a full-duplex connection is subject to ambiguous
   interpretation, of course, since it may not be obvious how to treat
   the receiving side of the connection.  We have chosen to treat CLOSE
   in a simplex fashion.  The user who CLOSEs may continue to RECEIVE
   until the TCP receiver is told that the remote peer has CLOSED also.
   Thus, a program could initiate several SENDs followed by a CLOSE, and
   then continue to RECEIVE until signaled that a RECEIVE failed because
   the remote peer has CLOSED.  The TCP implementation will signal a
   user, even if no RECEIVEs are outstanding, that the remote peer has
   closed, so the user can terminate their side gracefully.  A TCP
   implementation will reliably deliver all buffers SENT before the
   connection was CLOSED so a user who expects no data in return need
   only wait to hear the connection was CLOSED successfully to know that
   all their data was received at the destination TCP endpoint.  Users
   must keep reading connections they close for sending until the TCP
   implementation indicates there is no more data.

   There are essentially three cases:

   1)  The user initiates by telling the TCP implementation to CLOSE the
       connection (TCP Peer A in Figure 12).

   2)  The remote TCP endpoint initiates by sending a FIN control signal
       (TCP Peer B in Figure 12).

   3)  Both users CLOSE simultaneously (Figure 13).

   Case 1:  Local user initiates the close

      In this case, a FIN segment can be constructed and placed on the
      outgoing segment queue.  No further SENDs from the user will be
      accepted by the TCP implementation, and it enters the FIN-WAIT-1
      state.  RECEIVEs are allowed in this state.  All segments
      preceding and including FIN will be retransmitted until
      acknowledged.  When the other TCP peer has both acknowledged the
      FIN and sent a FIN of its own, the first TCP peer can ACK this
      FIN.  Note that a TCP endpoint receiving a FIN will ACK but not
      send its own FIN until its user has CLOSED the connection also.

   Case 2:  TCP endpoint receives a FIN from the network

      If an unsolicited FIN arrives from the network, the receiving TCP
      endpoint can ACK it and tell the user that the connection is
      closing.  The user will respond with a CLOSE, upon which the TCP
      endpoint can send a FIN to the other TCP peer after sending any
      remaining data.  The TCP endpoint then waits until its own FIN is
      acknowledged whereupon it deletes the connection.  If an ACK is
      not forthcoming, after the user timeout the connection is aborted
      and the user is told.

   Case 3:  Both users close simultaneously

      A simultaneous CLOSE by users at both ends of a connection causes
      FIN segments to be exchanged (Figure 13).  When all segments
      preceding the FINs have been processed and acknowledged, each TCP
      peer can ACK the FIN it has received.  Both will, upon receiving
      these ACKs, delete the connection.

       TCP Peer A                                           TCP Peer B

   1.  ESTABLISHED                                          ESTABLISHED

   2.  (Close)
       FIN-WAIT-1  --> <SEQ=100><ACK=300><CTL=FIN,ACK>  --> CLOSE-WAIT

   3.  FIN-WAIT-2  <-- <SEQ=300><ACK=101><CTL=ACK>      <-- CLOSE-WAIT

   4.                                                       (Close)
       TIME-WAIT   <-- <SEQ=300><ACK=101><CTL=FIN,ACK>  <-- LAST-ACK

   5.  TIME-WAIT   --> <SEQ=101><ACK=301><CTL=ACK>      --> CLOSED

   6.  (2 MSL)
       CLOSED

                      Figure 12: Normal Close Sequence

       TCP Peer A                                           TCP Peer B

   1.  ESTABLISHED                                          ESTABLISHED

   2.  (Close)                                              (Close)
       FIN-WAIT-1  --> <SEQ=100><ACK=300><CTL=FIN,ACK>  ... FIN-WAIT-1
                   <-- <SEQ=300><ACK=100><CTL=FIN,ACK>  <--
                   ... <SEQ=100><ACK=300><CTL=FIN,ACK>  -->

   3.  CLOSING     --> <SEQ=101><ACK=301><CTL=ACK>      ... CLOSING
                   <-- <SEQ=301><ACK=101><CTL=ACK>      <--
                   ... <SEQ=101><ACK=301><CTL=ACK>      -->

   4.  TIME-WAIT                                            TIME-WAIT
       (2 MSL)                                              (2 MSL)
       CLOSED                                               CLOSED

                   Figure 13: Simultaneous Close Sequence

   A TCP connection may terminate in two ways: (1) the normal TCP close
   sequence using a FIN handshake (Figure 12), and (2) an "abort" in
   which one or more RST segments are sent and the connection state is
   immediately discarded.  If the local TCP connection is closed by the
   remote side due to a FIN or RST received from the remote side, then
   the local application MUST be informed whether it closed normally or
   was aborted (MUST-12).


3.6.1.  Half-Closed Connections

   The normal TCP close sequence delivers buffered data reliably in both
   directions.  Since the two directions of a TCP connection are closed
   independently, it is possible for a connection to be "half closed",
   i.e., closed in only one direction, and a host is permitted to
   continue sending data in the open direction on a half-closed
   connection.

   A host MAY implement a "half-duplex" TCP close sequence, so that an
   application that has called CLOSE cannot continue to read data from
   the connection (MAY-1).  If such a host issues a CLOSE call while
   received data is still pending in the TCP connection, or if new data
   is received after CLOSE is called, its TCP implementation SHOULD send
   a RST to show that data was lost (SHLD-3).  See [23], Section 2.17
   for discussion.

   When a connection is closed actively, it MUST linger in the TIME-WAIT
   state for a time 2xMSL (Maximum Segment Lifetime) (MUST-13).
   However, it MAY accept a new SYN from the remote TCP endpoint to
   reopen the connection directly from TIME-WAIT state (MAY-2), if it:

   (1)  assigns its initial sequence number for the new connection to be
        larger than the largest sequence number it used on the previous
        connection incarnation, and

   (2)  returns to TIME-WAIT state if the SYN turns out to be an old
        duplicate.

   When the TCP Timestamp Options are available, an improved algorithm
   is described in [40] in order to support higher connection
   establishment rates.  This algorithm for reducing TIME-WAIT is a Best
   Current Practice that SHOULD be implemented since Timestamp Options
   are commonly used, and using them to reduce TIME-WAIT provides
   benefits for busy Internet servers (SHLD-4).

3.7.  Segmentation

   The term "segmentation" refers to the activity TCP performs when
   ingesting a stream of bytes from a sending application and
   packetizing that stream of bytes into TCP segments.  Individual TCP
   segments often do not correspond one-for-one to individual send (or
   socket write) calls from the application.  Applications may perform
   writes at the granularity of messages in the upper-layer protocol,
   but TCP guarantees no correlation between the boundaries of TCP
   segments sent and received and the boundaries of the read or write
   buffers of user application data.  In some specific protocols, such
   as Remote Direct Memory Access (RDMA) using Direct Data Placement
   (DDP) and Marker PDU Aligned Framing (MPA) [34], there are
   performance optimizations possible when the relation between TCP
   segments and application data units can be controlled, and MPA
   includes a specific mechanism for detecting and verifying this
   relationship between TCP segments and application message data
   structures, but this is specific to applications like RDMA.  In
   general, multiple goals influence the sizing of TCP segments created
   by a TCP implementation.

   Goals driving the sending of larger segments include:

   *  Reducing the number of packets in flight within the network.

   *  Increasing processing efficiency and potential performance by
      enabling a smaller number of interrupts and inter-layer
      interactions.

   *  Limiting the overhead of TCP headers.

   Note that the performance benefits of sending larger segments may
   decrease as the size increases, and there may be boundaries where
   advantages are reversed.  For instance, on some implementation
   architectures, 1025 bytes within a segment could lead to worse
   performance than 1024 bytes, due purely to data alignment on copy
   operations.

   Goals driving the sending of smaller segments include:

   *  Avoiding sending a TCP segment that would result in an IP datagram
      larger than the smallest MTU along an IP network path because this
      results in either packet loss or packet fragmentation.  Making
      matters worse, some firewalls or middleboxes may drop fragmented
      packets or ICMP messages related to fragmentation.

   *  Preventing delays to the application data stream, especially when
      TCP is waiting on the application to generate more data, or when
      the application is waiting on an event or input from its peer in
      order to generate more data.

   *  Enabling "fate sharing" between TCP segments and lower-layer data
      units (e.g., below IP, for links with cell or frame sizes smaller
      than the IP MTU).

   Towards meeting these competing sets of goals, TCP includes several
   mechanisms, including the Maximum Segment Size Option, Path MTU
   Discovery, the Nagle algorithm, and support for IPv6 Jumbograms, as
   discussed in the following subsections.

3.7.1.  Maximum Segment Size Option

   TCP endpoints MUST implement both sending and receiving the MSS
   Option (MUST-14).

   TCP implementations SHOULD send an MSS Option in every SYN segment
   when its receive MSS differs from the default 536 for IPv4 or 1220
   for IPv6 (SHLD-5), and MAY send it always (MAY-3).

   If an MSS Option is not received at connection setup, TCP
   implementations MUST assume a default send MSS of 536 (576 - 40) for
   IPv4 or 1220 (1280 - 60) for IPv6 (MUST-15).

   The maximum size of a segment that a TCP endpoint really sends, the
   "effective send MSS", MUST be the smaller (MUST-16) of the send MSS
   (that reflects the available reassembly buffer size at the remote
   host, the EMTU_R [19]) and the largest transmission size permitted by
   the IP layer (EMTU_S [19]):

   Eff.snd.MSS = min(SendMSS+20, MMS_S) - TCPhdrsize - IPoptionsize

   where:

   *  SendMSS is the MSS value received from the remote host, or the
      default 536 for IPv4 or 1220 for IPv6, if no MSS Option is
      received.

   *  MMS_S is the maximum size for a transport-layer message that TCP
      may send.

   *  TCPhdrsize is the size of the fixed TCP header and any options.
      This is 20 in the (rare) case that no options are present but may
      be larger if TCP Options are to be sent.  Note that some options
      might not be included on all segments, but that for each segment
      sent, the sender should adjust the data length accordingly, within
      the Eff.snd.MSS.

   *  IPoptionsize is the size of any IPv4 options or IPv6 extension
      headers associated with a TCP connection.  Note that some options
      or extension headers might not be included on all packets, but
      that for each segment sent, the sender should adjust the data
      length accordingly, within the Eff.snd.MSS.

   The MSS value to be sent in an MSS Option should be equal to the
   effective MTU minus the fixed IP and TCP headers.  By ignoring both
   IP and TCP Options when calculating the value for the MSS Option, if
   there are any IP or TCP Options to be sent in a packet, then the
   sender must decrease the size of the TCP data accordingly.  RFC 6691
   [43] discusses this in greater detail.

   The MSS value to be sent in an MSS Option must be less than or equal
   to:

      MMS_R - 20

   where MMS_R is the maximum size for a transport-layer message that
   can be received (and reassembled at the IP layer) (MUST-67).  TCP
   obtains MMS_R and MMS_S from the IP layer; see the generic call
   GET_MAXSIZES in Section 3.4 of RFC 1122.  These are defined in terms
   of their IP MTU equivalents, EMTU_R and EMTU_S [19].

   When TCP is used in a situation where either the IP or TCP headers
   are not fixed, the sender must reduce the amount of TCP data in any
   given packet by the number of octets used by the IP and TCP options.
   This has been a point of confusion historically, as explained in RFC
   6691, Section 3.1.

3.7.2.  Path MTU Discovery

   A TCP implementation may be aware of the MTU on directly connected
   links, but will rarely have insight about MTUs across an entire
   network path.  For IPv4, RFC 1122 recommends an IP-layer default
   effective MTU of less than or equal to 576 for destinations not
   directly connected, and for IPv6 this would be 1280.  Using these
   fixed values limits TCP connection performance and efficiency.
   Instead, implementation of Path MTU Discovery (PMTUD) and
   Packetization Layer Path MTU Discovery (PLPMTUD) is strongly
   recommended in order for TCP to improve segmentation decisions.  Both
   PMTUD and PLPMTUD help TCP choose segment sizes that avoid both on-
   path (for IPv4) and source fragmentation (IPv4 and IPv6).

   PMTUD for IPv4 [2] or IPv6 [14] is implemented in conjunction between
   TCP, IP, and ICMP.  It relies both on avoiding source fragmentation
   and setting the IPv4 DF (don't fragment) flag, the latter to inhibit
   on-path fragmentation.  It relies on ICMP errors from routers along
   the path whenever a segment is too large to traverse a link.  Several
   adjustments to a TCP implementation with PMTUD are described in RFC
   2923 in order to deal with problems experienced in practice [27].
   PLPMTUD [31] is a Standards Track improvement to PMTUD that relaxes
   the requirement for ICMP support across a path, and improves
   performance in cases where ICMP is not consistently conveyed, but
   still tries to avoid source fragmentation.  The mechanisms in all
   four of these RFCs are recommended to be included in TCP
   implementations.

   The TCP MSS Option specifies an upper bound for the size of packets
   that can be received (see [43]).  Hence, setting the value in the MSS
   Option too small can impact the ability for PMTUD or PLPMTUD to find
   a larger path MTU.  RFC 1191 discusses this implication of many older
   TCP implementations setting the TCP MSS to 536 (corresponding to the
   IPv4 576 byte default MTU) for non-local destinations, rather than
   deriving it from the MTUs of connected interfaces as recommended.

3.7.3.  Interfaces with Variable MTU Values

   The effective MTU can sometimes vary, as when used with variable
   compression, e.g., RObust Header Compression (ROHC) [37].  It is
   tempting for a TCP implementation to advertise the largest possible
   MSS, to support the most efficient use of compressed payloads.
   Unfortunately, some compression schemes occasionally need to transmit
   full headers (and thus smaller payloads) to resynchronize state at
   their endpoint compressors/decompressors.  If the largest MTU is used
   to calculate the value to advertise in the MSS Option, TCP
   retransmission may interfere with compressor resynchronization.

   As a result, when the effective MTU of an interface varies packet-to-
   packet, TCP implementations SHOULD use the smallest effective MTU of
   the interface to calculate the value to advertise in the MSS Option
   (SHLD-6).

3.7.4.  Nagle Algorithm

   The "Nagle algorithm" was described in RFC 896 [17] and was
   recommended in RFC 1122 [19] for mitigation of an early problem of
   too many small packets being generated.  It has been implemented in
   most current TCP code bases, sometimes with minor variations (see
   Appendix A.3).

   If there is unacknowledged data (i.e., SND.NXT > SND.UNA), then the
   sending TCP endpoint buffers all user data (regardless of the PSH
   bit) until the outstanding data has been acknowledged or until the
   TCP endpoint can send a full-sized segment (Eff.snd.MSS bytes).

   A TCP implementation SHOULD implement the Nagle algorithm to coalesce
   short segments (SHLD-7).  However, there MUST be a way for an
   application to disable the Nagle algorithm on an individual
   connection (MUST-17).  In all cases, sending data is also subject to
   the limitation imposed by the slow start algorithm [8].

   Since there can be problematic interactions between the Nagle
   algorithm and delayed acknowledgments, some implementations use minor
   variations of the Nagle algorithm, such as the one described in
   Appendix A.3.

3.7.5.  IPv6 Jumbograms

   In order to support TCP over IPv6 Jumbograms, implementations need to
   be able to send TCP segments larger than the 64-KB limit that the MSS
   Option can convey.  RFC 2675 [24] defines that an MSS value of 65,535
   bytes is to be treated as infinity, and Path MTU Discovery [14] is
   used to determine the actual MSS.

   The Jumbo Payload Option need not be implemented or understood by
   IPv6 nodes that do not support attachment to links with an MTU
   greater than 65,575 [24], and the present IPv6 Node Requirements does
   not include support for Jumbograms [55].

3.8.  Data Communication

   Once the connection is established, data is communicated by the
   exchange of segments.  Because segments may be lost due to errors
   (checksum test failure) or network congestion, TCP uses
   retransmission to ensure delivery of every segment.  Duplicate
   segments may arrive due to network or TCP retransmission.  As
   discussed in the section on sequence numbers (Section 3.4), the TCP
   implementation performs certain tests on the sequence and
   acknowledgment numbers in the segments to verify their acceptability.

   The sender of data keeps track of the next sequence number to use in
   the variable SND.NXT.  The receiver of data keeps track of the next
   sequence number to expect in the variable RCV.NXT.  The sender of
   data keeps track of the oldest unacknowledged sequence number in the
   variable SND.UNA.  If the data flow is momentarily idle and all data
   sent has been acknowledged, then the three variables will be equal.

   When the sender creates a segment and transmits it, the sender
   advances SND.NXT.  When the receiver accepts a segment, it advances
   RCV.NXT and sends an acknowledgment.  When the data sender receives
   an acknowledgment, it advances SND.UNA.  The extent to which the
   values of these variables differ is a measure of the delay in the
   communication.  The amount by which the variables are advanced is the
   length of the data and SYN or FIN flags in the segment.  Note that,
   once in the ESTABLISHED state, all segments must carry current
   acknowledgment information.

   The CLOSE user call implies a push function (see Section 3.9.1), as
   does the FIN control flag in an incoming segment.

3.8.1.  Retransmission Timeout

   Because of the variability of the networks that compose an
   internetwork system and the wide range of uses of TCP connections,
   the retransmission timeout (RTO) must be dynamically determined.

   The RTO MUST be computed according to the algorithm in [10],
   including Karn's algorithm for taking RTT samples (MUST-18).

   RFC 793 contains an early example procedure for computing the RTO,
   based on work mentioned in IEN 177 [71].  This was then replaced by
   the algorithm described in RFC 1122, which was subsequently updated
   in RFC 2988 and then again in RFC 6298.

   RFC 1122 allows that if a retransmitted packet is identical to the
   original packet (which implies not only that the data boundaries have
   not changed, but also that none of the headers have changed), then
   the same IPv4 Identification field MAY be used (see Section 3.2.1.5
   of RFC 1122) (MAY-4).  The same IP Identification field may be reused
   anyways since it is only meaningful when a datagram is fragmented
   [44].  TCP implementations should not rely on or typically interact
   with this IPv4 header field in any way.  It is not a reasonable way
   to indicate duplicate sent segments nor to identify duplicate
   received segments.

3.8.2.  TCP Congestion Control

   RFC 2914 [5] explains the importance of congestion control for the
   Internet.

   RFC 1122 required implementation of Van Jacobson's congestion control
   algorithms slow start and congestion avoidance together with
   exponential backoff for successive RTO values for the same segment.
   RFC 2581 provided IETF Standards Track description of slow start and
   congestion avoidance, along with fast retransmit and fast recovery.
   RFC 5681 is the current description of these algorithms and is the
   current Standards Track specification providing guidelines for TCP
   congestion control.  RFC 6298 describes exponential backoff of RTO
   values, including keeping the backed-off value until a subsequent
   segment with new data has been sent and acknowledged without
   retransmission.

   A TCP endpoint MUST implement the basic congestion control algorithms
   slow start, congestion avoidance, and exponential backoff of RTO to
   avoid creating congestion collapse conditions (MUST-19).  RFC 5681
   and RFC 6298 describe the basic algorithms on the IETF Standards
   Track that are broadly applicable.  Multiple other suitable
   algorithms exist and have been widely used.  Many TCP implementations
   support a set of alternative algorithms that can be configured for
   use on the endpoint.  An endpoint MAY implement such alternative
   algorithms provided that the algorithms are conformant with the TCP
   specifications from the IETF Standards Track as described in RFC
   2914, RFC 5033 [7], and RFC 8961 [15] (MAY-18).

   Explicit Congestion Notification (ECN) was defined in RFC 3168 and is
   an IETF Standards Track enhancement that has many benefits [51].

   A TCP endpoint SHOULD implement ECN as described in RFC 3168 (SHLD-
   8).

3.8.3.  TCP Connection Failures

   Excessive retransmission of the same segment by a TCP endpoint
   indicates some failure of the remote host or the internetwork path.
   This failure may be of short or long duration.  The following
   procedure MUST be used to handle excessive retransmissions of data
   segments (MUST-20):

   (a)  There are two thresholds R1 and R2 measuring the amount of
        retransmission that has occurred for the same segment.  R1 and
        R2 might be measured in time units or as a count of
        retransmissions (with the current RTO and corresponding backoffs
        as a conversion factor, if needed).

   (b)  When the number of transmissions of the same segment reaches or
        exceeds threshold R1, pass negative advice (see Section 3.3.1.4
        of [19]) to the IP layer, to trigger dead-gateway diagnosis.

   (c)  When the number of transmissions of the same segment reaches a
        threshold R2 greater than R1, close the connection.

   (d)  An application MUST (MUST-21) be able to set the value for R2
        for a particular connection.  For example, an interactive
        application might set R2 to "infinity", giving the user control
        over when to disconnect.

   (e)  TCP implementations SHOULD inform the application of the
        delivery problem (unless such information has been disabled by
        the application; see the "Asynchronous Reports" section
        (Section 3.9.1.8)), when R1 is reached and before R2 (SHLD-9).
        This will allow a remote login application program to inform the
        user, for example.

   The value of R1 SHOULD correspond to at least 3 retransmissions, at
   the current RTO (SHLD-10).  The value of R2 SHOULD correspond to at
   least 100 seconds (SHLD-11).

   An attempt to open a TCP connection could fail with excessive
   retransmissions of the SYN segment or by receipt of a RST segment or
   an ICMP Port Unreachable.  SYN retransmissions MUST be handled in the
   general way just described for data retransmissions, including
   notification of the application layer.

   However, the values of R1 and R2 may be different for SYN and data
   segments.  In particular, R2 for a SYN segment MUST be set large
   enough to provide retransmission of the segment for at least 3
   minutes (MUST-23).  The application can close the connection (i.e.,
   give up on the open attempt) sooner, of course.

3.8.4.  TCP Keep-Alives

   A TCP connection is said to be "idle" if for some long amount of time
   there have been no incoming segments received and there is no new or
   unacknowledged data to be sent.

   Implementers MAY include "keep-alives" in their TCP implementations
   (MAY-5), although this practice is not universally accepted.  Some
   TCP implementations, however, have included a keep-alive mechanism.
   To confirm that an idle connection is still active, these
   implementations send a probe segment designed to elicit a response
   from the TCP peer.  Such a segment generally contains SEG.SEQ =
   SND.NXT-1 and may or may not contain one garbage octet of data.  If
   keep-alives are included, the application MUST be able to turn them
   on or off for each TCP connection (MUST-24), and they MUST default to
   off (MUST-25).

   Keep-alive packets MUST only be sent when no sent data is
   outstanding, and no data or acknowledgment packets have been received
   for the connection within an interval (MUST-26).  This interval MUST
   be configurable (MUST-27) and MUST default to no less than two hours
   (MUST-28).

   It is extremely important to remember that ACK segments that contain
   no data are not reliably transmitted by TCP.  Consequently, if a
   keep-alive mechanism is implemented it MUST NOT interpret failure to
   respond to any specific probe as a dead connection (MUST-29).

   An implementation SHOULD send a keep-alive segment with no data
   (SHLD-12); however, it MAY be configurable to send a keep-alive
   segment containing one garbage octet (MAY-6), for compatibility with
   erroneous TCP implementations.

3.8.5.  The Communication of Urgent Information

   As a result of implementation differences and middlebox interactions,
   new applications SHOULD NOT employ the TCP urgent mechanism (SHLD-
   13).  However, TCP implementations MUST still include support for the
   urgent mechanism (MUST-30).  Information on how some TCP
   implementations interpret the urgent pointer can be found in RFC 6093
   [39].

   The objective of the TCP urgent mechanism is to allow the sending
   user to stimulate the receiving user to accept some urgent data and
   to permit the receiving TCP endpoint to indicate to the receiving
   user when all the currently known urgent data has been received by
   the user.

   This mechanism permits a point in the data stream to be designated as
   the end of urgent information.  Whenever this point is in advance of
   the receive sequence number (RCV.NXT) at the receiving TCP endpoint,
   then the TCP implementation must tell the user to go into "urgent
   mode"; when the receive sequence number catches up to the urgent
   pointer, the TCP implementation must tell user to go into "normal
   mode".  If the urgent pointer is updated while the user is in "urgent
   mode", the update will be invisible to the user.

   The method employs an urgent field that is carried in all segments
   transmitted.  The URG control flag indicates that the urgent field is
   meaningful and must be added to the segment sequence number to yield
   the urgent pointer.  The absence of this flag indicates that there is
   no urgent data outstanding.

   To send an urgent indication, the user must also send at least one
   data octet.  If the sending user also indicates a push, timely
   delivery of the urgent information to the destination process is
   enhanced.  Note that because changes in the urgent pointer correspond
   to data being written by a sending application, the urgent pointer
   cannot "recede" in the sequence space, but a TCP receiver should be
   robust to invalid urgent pointer values.

   A TCP implementation MUST support a sequence of urgent data of any
   length (MUST-31) [19].

   The urgent pointer MUST point to the sequence number of the octet
   following the urgent data (MUST-62).

   A TCP implementation MUST (MUST-32) inform the application layer
   asynchronously whenever it receives an urgent pointer and there was
   previously no pending urgent data, or whenever the urgent pointer
   advances in the data stream.  The TCP implementation MUST (MUST-33)
   provide a way for the application to learn how much urgent data
   remains to be read from the connection, or at least to determine
   whether more urgent data remains to be read [19].

3.8.6.  Managing the Window

   The window sent in each segment indicates the range of sequence
   numbers the sender of the window (the data receiver) is currently
   prepared to accept.  There is an assumption that this is related to
   the data buffer space currently available for this connection.

   The sending TCP endpoint packages the data to be transmitted into
   segments that fit the current window, and may repackage segments on
   the retransmission queue.  Such repackaging is not required but may
   be helpful.

   In a connection with a one-way data flow, the window information will
   be carried in acknowledgment segments that all have the same sequence
   number, so there will be no way to reorder them if they arrive out of
   order.  This is not a serious problem, but it will allow the window
   information to be on occasion temporarily based on old reports from
   the data receiver.  A refinement to avoid this problem is to act on
   the window information from segments that carry the highest
   acknowledgment number (that is, segments with an acknowledgment
   number equal to or greater than the highest previously received).

   Indicating a large window encourages transmissions.  If more data
   arrives than can be accepted, it will be discarded.  This will result
   in excessive retransmissions, adding unnecessarily to the load on the
   network and the TCP endpoints.  Indicating a small window may
   restrict the transmission of data to the point of introducing a
   round-trip delay between each new segment transmitted.

   The mechanisms provided allow a TCP endpoint to advertise a large
   window and to subsequently advertise a much smaller window without
   having accepted that much data.  This so-called "shrinking the
   window" is strongly discouraged.  The robustness principle [19]
   dictates that TCP peers will not shrink the window themselves, but
   will be prepared for such behavior on the part of other TCP peers.

   A TCP receiver SHOULD NOT shrink the window, i.e., move the right
   window edge to the left (SHLD-14).  However, a sending TCP peer MUST
   be robust against window shrinking, which may cause the "usable
   window" (see Section 3.8.6.2.1) to become negative (MUST-34).

   If this happens, the sender SHOULD NOT send new data (SHLD-15), but
   SHOULD retransmit normally the old unacknowledged data between
   SND.UNA and SND.UNA+SND.WND (SHLD-16).  The sender MAY also
   retransmit old data beyond SND.UNA+SND.WND (MAY-7), but SHOULD NOT
   time out the connection if data beyond the right window edge is not
   acknowledged (SHLD-17).  If the window shrinks to zero, the TCP
   implementation MUST probe it in the standard way (described below)
   (MUST-35).

3.8.6.1.  Zero-Window Probing

   The sending TCP peer must regularly transmit at least one octet of
   new data (if available), or retransmit to the receiving TCP peer even
   if the send window is zero, in order to "probe" the window.  This
   retransmission is essential to guarantee that when either TCP peer
   has a zero window the reopening of the window will be reliably
   reported to the other.  This is referred to as Zero-Window Probing
   (ZWP) in other documents.

   Probing of zero (offered) windows MUST be supported (MUST-36).

   A TCP implementation MAY keep its offered receive window closed
   indefinitely (MAY-8).  As long as the receiving TCP peer continues to
   send acknowledgments in response to the probe segments, the sending
   TCP peer MUST allow the connection to stay open (MUST-37).  This
   enables TCP to function in scenarios such as the "printer ran out of
   paper" situation described in Section 4.2.2.17 of [19].  The behavior
   is subject to the implementation's resource management concerns, as
   noted in [41].

   When the receiving TCP peer has a zero window and a segment arrives,
   it must still send an acknowledgment showing its next expected
   sequence number and current window (zero).

   The transmitting host SHOULD send the first zero-window probe when a
   zero window has existed for the retransmission timeout period (SHLD-
   29) (Section 3.8.1), and SHOULD increase exponentially the interval
   between successive probes (SHLD-30).

3.8.6.2.  Silly Window Syndrome Avoidance

   The "Silly Window Syndrome" (SWS) is a stable pattern of small
   incremental window movements resulting in extremely poor TCP
   performance.  Algorithms to avoid SWS are described below for both
   the sending side and the receiving side.  RFC 1122 contains more
   detailed discussion of the SWS problem.  Note that the Nagle
   algorithm and the sender SWS avoidance algorithm play complementary
   roles in improving performance.  The Nagle algorithm discourages
   sending tiny segments when the data to be sent increases in small
   increments, while the SWS avoidance algorithm discourages small
   segments resulting from the right window edge advancing in small
   increments.

3.8.6.2.1.  Sender's Algorithm -- When to Send Data

   A TCP implementation MUST include a SWS avoidance algorithm in the
   sender (MUST-38).

   The Nagle algorithm from Section 3.7.4 additionally describes how to
   coalesce short segments.

   The sender's SWS avoidance algorithm is more difficult than the
   receiver's because the sender does not know (directly) the receiver's
   total buffer space (RCV.BUFF).  An approach that has been found to
   work well is for the sender to calculate Max(SND.WND), which is the
   maximum send window it has seen so far on the connection, and to use
   this value as an estimate of RCV.BUFF.  Unfortunately, this can only
   be an estimate; the receiver may at any time reduce the size of
   RCV.BUFF.  To avoid a resulting deadlock, it is necessary to have a
   timeout to force transmission of data, overriding the SWS avoidance
   algorithm.  In practice, this timeout should seldom occur.

   The "usable window" is:

      U = SND.UNA + SND.WND - SND.NXT

   i.e., the offered window less the amount of data sent but not
   acknowledged.  If D is the amount of data queued in the sending TCP
   endpoint but not yet sent, then the following set of rules is
   recommended.

   Send data:

   (1)  if a maximum-sized segment can be sent, i.e., if:

           min(D,U) >= Eff.snd.MSS;

   (2)  or if the data is pushed and all queued data can be sent now,
        i.e., if:

           [SND.NXT = SND.UNA and] PUSHed and D <= U

        (the bracketed condition is imposed by the Nagle algorithm);

   (3)  or if at least a fraction Fs of the maximum window can be sent,
        i.e., if:

           [SND.NXT = SND.UNA and]

              min(D,U) >= Fs * Max(SND.WND);

   (4)  or if the override timeout occurs.

   Here Fs is a fraction whose recommended value is 1/2.  The override
   timeout should be in the range 0.1 - 1.0 seconds.  It may be
   convenient to combine this timer with the timer used to probe zero
   windows (Section 3.8.6.1).

3.8.6.2.2.  Receiver's Algorithm -- When to Send a Window Update

   A TCP implementation MUST include a SWS avoidance algorithm in the
   receiver (MUST-39).

   The receiver's SWS avoidance algorithm determines when the right
   window edge may be advanced; this is customarily known as "updating
   the window".  This algorithm combines with the delayed ACK algorithm
   (Section 3.8.6.3) to determine when an ACK segment containing the
   current window will really be sent to the receiver.

   The solution to receiver SWS is to avoid advancing the right window
   edge RCV.NXT+RCV.WND in small increments, even if data is received
   from the network in small segments.

   Suppose the total receive buffer space is RCV.BUFF.  At any given
   moment, RCV.USER octets of this total may be tied up with data that
   has been received and acknowledged but that the user process has not
   yet consumed.  When the connection is quiescent, RCV.WND = RCV.BUFF
   and RCV.USER = 0.

   Keeping the right window edge fixed as data arrives and is
   acknowledged requires that the receiver offer less than its full
   buffer space, i.e., the receiver must specify a RCV.WND that keeps
   RCV.NXT+RCV.WND constant as RCV.NXT increases.  Thus, the total
   buffer space RCV.BUFF is generally divided into three parts:

                  |<------- RCV.BUFF ---------------->|
                       1             2            3
              ----|---------|------------------|------|----
                         RCV.NXT               ^
                                            (Fixed)

              1 - RCV.USER =  data received but not yet consumed;
              2 - RCV.WND =   space advertised to sender;
              3 - Reduction = space available but not yet
                              advertised.

   The suggested SWS avoidance algorithm for the receiver is to keep
   RCV.NXT+RCV.WND fixed until the reduction satisfies:

                RCV.BUFF - RCV.USER - RCV.WND  >=

                       min( Fr * RCV.BUFF, Eff.snd.MSS )

   where Fr is a fraction whose recommended value is 1/2, and
   Eff.snd.MSS is the effective send MSS for the connection (see
   Section 3.7.1).  When the inequality is satisfied, RCV.WND is set to
   RCV.BUFF-RCV.USER.

   Note that the general effect of this algorithm is to advance RCV.WND
   in increments of Eff.snd.MSS (for realistic receive buffers:
   Eff.snd.MSS < RCV.BUFF/2).  Note also that the receiver must use its
   own Eff.snd.MSS, making the assumption that it is the same as the
   sender's.

3.8.6.3.  Delayed Acknowledgments -- When to Send an ACK Segment

   A host that is receiving a stream of TCP data segments can increase
   efficiency in both the network and the hosts by sending fewer than
   one ACK (acknowledgment) segment per data segment received; this is
   known as a "delayed ACK".

   A TCP endpoint SHOULD implement a delayed ACK (SHLD-18), but an ACK
   should not be excessively delayed; in particular, the delay MUST be
   less than 0.5 seconds (MUST-40).  An ACK SHOULD be generated for at
   least every second full-sized segment or 2*RMSS bytes of new data
   (where RMSS is the MSS specified by the TCP endpoint receiving the
   segments to be acknowledged, or the default value if not specified)
   (SHLD-19).  Excessive delays on ACKs can disturb the round-trip
   timing and packet "clocking" algorithms.  More complete discussion of
   delayed ACK behavior is in Section 4.2 of RFC 5681 [8], including
   recommendations to immediately acknowledge out-of-order segments,
   segments above a gap in sequence space, or segments that fill all or
   part of a gap, in order to accelerate loss recovery.

   Note that there are several current practices that further lead to a
   reduced number of ACKs, including generic receive offload (GRO) [72],
   ACK compression, and ACK decimation [28].

3.9.  Interfaces

   There are of course two interfaces of concern: the user/TCP interface
   and the TCP/lower-level interface.  We have a fairly elaborate model
   of the user/TCP interface, but the interface to the lower-level
   protocol module is left unspecified here since it will be specified
   in detail by the specification of the lower-level protocol.  For the
   case that the lower level is IP, we note some of the parameter values
   that TCP implementations might use.

3.9.1.  User/TCP Interface

   The following functional description of user commands to the TCP
   implementation is, at best, fictional, since every operating system
   will have different facilities.  Consequently, we must warn readers
   that different TCP implementations may have different user
   interfaces.  However, all TCP implementations must provide a certain
   minimum set of services to guarantee that all TCP implementations can
   support the same protocol hierarchy.  This section specifies the
   functional interfaces required of all TCP implementations.

   Section 3.1 of [53] also identifies primitives provided by TCP and
   could be used as an additional reference for implementers.

   The following sections functionally characterize a user/TCP
   interface.  The notation used is similar to most procedure or
   function calls in high-level languages, but this usage is not meant
   to rule out trap-type service calls.

   The user commands described below specify the basic functions the TCP
   implementation must perform to support interprocess communication.
   Individual implementations must define their own exact format and may
   provide combinations or subsets of the basic functions in single
   calls.  In particular, some implementations may wish to automatically
   OPEN a connection on the first SEND or RECEIVE issued by the user for
   a given connection.

   In providing interprocess communication facilities, the TCP
   implementation must not only accept commands, but must also return
   information to the processes it serves.  The latter consists of:

   (a)  general information about a connection (e.g., interrupts, remote
        close, binding of unspecified remote socket).

   (b)  replies to specific user commands indicating success or various
        types of failure.

3.9.1.1.  Open

   Format: OPEN (local port, remote socket, active/passive [, timeout]
   [, Diffserv field] [, security/compartment] [, local IP address] [,
   options]) -> local connection name

   If the active/passive flag is set to passive, then this is a call to
   LISTEN for an incoming connection.  A passive OPEN may have either a
   fully specified remote socket to wait for a particular connection or
   an unspecified remote socket to wait for any call.  A fully specified
   passive call can be made active by the subsequent execution of a
   SEND.

   A transmission control block (TCB) is created and partially filled in
   with data from the OPEN command parameters.

   Every passive OPEN call either creates a new connection record in
   LISTEN state, or it returns an error; it MUST NOT affect any
   previously created connection record (MUST-41).

   A TCP implementation that supports multiple concurrent connections
   MUST provide an OPEN call that will functionally allow an application
   to LISTEN on a port while a connection block with the same local port
   is in SYN-SENT or SYN-RECEIVED state (MUST-42).

   On an active OPEN command, the TCP endpoint will begin the procedure
   to synchronize (i.e., establish) the connection at once.

   The timeout, if present, permits the caller to set up a timeout for
   all data submitted to TCP.  If data is not successfully delivered to
   the destination within the timeout period, the TCP endpoint will
   abort the connection.  The present global default is five minutes.

   The TCP implementation or some component of the operating system will
   verify the user's authority to open a connection with the specified
   Diffserv field value or security/compartment.  The absence of a
   Diffserv field value or security/compartment specification in the
   OPEN call indicates the default values must be used.

   TCP will accept incoming requests as matching only if the security/
   compartment information is exactly the same as that requested in the
   OPEN call.

   The Diffserv field value indicated by the user only impacts outgoing
   packets, may be altered en route through the network, and has no
   direct bearing or relation to received packets.

   A local connection name will be returned to the user by the TCP
   implementation.  The local connection name can then be used as a
   shorthand term for the connection defined by the <local socket,
   remote socket> pair.

   The optional "local IP address" parameter MUST be supported to allow
   the specification of the local IP address (MUST-43).  This enables
   applications that need to select the local IP address used when
   multihoming is present.

   A passive OPEN call with a specified "local IP address" parameter
   will await an incoming connection request to that address.  If the
   parameter is unspecified, a passive OPEN will await an incoming
   connection request to any local IP address and then bind the local IP
   address of the connection to the particular address that is used.

   For an active OPEN call, a specified "local IP address" parameter
   will be used for opening the connection.  If the parameter is
   unspecified, the host will choose an appropriate local IP address
   (see RFC 1122, Section 3.3.4.2).

   If an application on a multihomed host does not specify the local IP
   address when actively opening a TCP connection, then the TCP
   implementation MUST ask the IP layer to select a local IP address
   before sending the (first) SYN (MUST-44).  See the function
   GET_SRCADDR() in Section 3.4 of RFC 1122.

   At all other times, a previous segment has either been sent or
   received on this connection, and TCP implementations MUST use the
   same local address that was used in those previous segments (MUST-
   45).

   A TCP implementation MUST reject as an error a local OPEN call for an
   invalid remote IP address (e.g., a broadcast or multicast address)
   (MUST-46).

3.9.1.2.  Send

   Format: SEND (local connection name, buffer address, byte count,
   URGENT flag [, PUSH flag] [, timeout])

   This call causes the data contained in the indicated user buffer to
   be sent on the indicated connection.  If the connection has not been
   opened, the SEND is considered an error.  Some implementations may
   allow users to SEND first; in which case, an automatic OPEN would be
   done.  For example, this might be one way for application data to be
   included in SYN segments.  If the calling process is not authorized
   to use this connection, an error is returned.

   A TCP endpoint MAY implement PUSH flags on SEND calls (MAY-15).  If
   PUSH flags are not implemented, then the sending TCP peer: (1) MUST
   NOT buffer data indefinitely (MUST-60), and (2) MUST set the PSH bit
   in the last buffered segment (i.e., when there is no more queued data
   to be sent) (MUST-61).  The remaining description below assumes the
   PUSH flag is supported on SEND calls.

   If the PUSH flag is set, the application intends the data to be
   transmitted promptly to the receiver, and the PSH bit will be set in
   the last TCP segment created from the buffer.

   The PSH bit is not a record marker and is independent of segment
   boundaries.  The transmitter SHOULD collapse successive bits when it
   packetizes data, to send the largest possible segment (SHLD-27).

   If the PUSH flag is not set, the data may be combined with data from
   subsequent SENDs for transmission efficiency.  When an application
   issues a series of SEND calls without setting the PUSH flag, the TCP
   implementation MAY aggregate the data internally without sending it
   (MAY-16).  Note that when the Nagle algorithm is in use, TCP
   implementations may buffer the data before sending, without regard to
   the PUSH flag (see Section 3.7.4).

   An application program is logically required to set the PUSH flag in
   a SEND call whenever it needs to force delivery of the data to avoid
   a communication deadlock.  However, a TCP implementation SHOULD send
   a maximum-sized segment whenever possible (SHLD-28) to improve
   performance (see Section 3.8.6.2.1).

   New applications SHOULD NOT set the URGENT flag [39] due to
   implementation differences and middlebox issues (SHLD-13).

   If the URGENT flag is set, segments sent to the destination TCP peer
   will have the urgent pointer set.  The receiving TCP peer will signal
   the urgent condition to the receiving process if the urgent pointer
   indicates that data preceding the urgent pointer has not been
   consumed by the receiving process.  The purpose of the URGENT flag is
   to stimulate the receiver to process the urgent data and to indicate
   to the receiver when all the currently known urgent data has been
   received.  The number of times the sending user's TCP implementation
   signals urgent will not necessarily be equal to the number of times
   the receiving user will be notified of the presence of urgent data.

   If no remote socket was specified in the OPEN, but the connection is
   established (e.g., because a LISTENing connection has become specific
   due to a remote segment arriving for the local socket), then the
   designated buffer is sent to the implied remote socket.  Users who
   make use of OPEN with an unspecified remote socket can make use of
   SEND without ever explicitly knowing the remote socket address.

   However, if a SEND is attempted before the remote socket becomes
   specified, an error will be returned.  Users can use the STATUS call
   to determine the status of the connection.  Some TCP implementations
   may notify the user when an unspecified socket is bound.

   If a timeout is specified, the current user timeout for this
   connection is changed to the new one.

   In the simplest implementation, SEND would not return control to the
   sending process until either the transmission was complete or the
   timeout had been exceeded.  However, this simple method is both
   subject to deadlocks (for example, both sides of the connection might
   try to do SENDs before doing any RECEIVEs) and offers poor
   performance, so it is not recommended.  A more sophisticated
   implementation would return immediately to allow the process to run
   concurrently with network I/O, and, furthermore, to allow multiple
   SENDs to be in progress.  Multiple SENDs are served in first come,
   first served order, so the TCP endpoint will queue those it cannot
   service immediately.

   We have implicitly assumed an asynchronous user interface in which a
   SEND later elicits some kind of SIGNAL or pseudo-interrupt from the
   serving TCP endpoint.  An alternative is to return a response
   immediately.  For instance, SENDs might return immediate local
   acknowledgment, even if the segment sent had not been acknowledged by
   the distant TCP endpoint.  We could optimistically assume eventual
   success.  If we are wrong, the connection will close anyway due to
   the timeout.  In implementations of this kind (synchronous), there
   will still be some asynchronous signals, but these will deal with the
   connection itself, and not with specific segments or buffers.

   In order for the process to distinguish among error or success
   indications for different SENDs, it might be appropriate for the
   buffer address to be returned along with the coded response to the
   SEND request.  TCP-to-user signals are discussed below, indicating
   the information that should be returned to the calling process.

3.9.1.3.  Receive

   Format: RECEIVE (local connection name, buffer address, byte count)
   -> byte count, URGENT flag [, PUSH flag]

   This command allocates a receiving buffer associated with the
   specified connection.  If no OPEN precedes this command or the
   calling process is not authorized to use this connection, an error is
   returned.

   In the simplest implementation, control would not return to the
   calling program until either the buffer was filled or some error
   occurred, but this scheme is highly subject to deadlocks.  A more
   sophisticated implementation would permit several RECEIVEs to be
   outstanding at once.  These would be filled as segments arrive.  This
   strategy permits increased throughput at the cost of a more elaborate
   scheme (possibly asynchronous) to notify the calling program that a
   PUSH has been seen or a buffer filled.

   A TCP receiver MAY pass a received PSH bit to the application layer
   via the PUSH flag in the interface (MAY-17), but it is not required
   (this was clarified in RFC 1122, Section 4.2.2.2).  The remainder of
   text describing the RECEIVE call below assumes that passing the PUSH
   indication is supported.

   If enough data arrive to fill the buffer before a PUSH is seen, the
   PUSH flag will not be set in the response to the RECEIVE.  The buffer
   will be filled with as much data as it can hold.  If a PUSH is seen
   before the buffer is filled, the buffer will be returned partially
   filled and PUSH indicated.

   If there is urgent data, the user will have been informed as soon as
   it arrived via a TCP-to-user signal.  The receiving user should thus
   be in "urgent mode".  If the URGENT flag is on, additional urgent
   data remains.  If the URGENT flag is off, this call to RECEIVE has
   returned all the urgent data, and the user may now leave "urgent
   mode".  Note that data following the urgent pointer (non-urgent data)
   cannot be delivered to the user in the same buffer with preceding
   urgent data unless the boundary is clearly marked for the user.

   To distinguish among several outstanding RECEIVEs and to take care of
   the case that a buffer is not completely filled, the return code is
   accompanied by both a buffer pointer and a byte count indicating the
   actual length of the data received.

   Alternative implementations of RECEIVE might have the TCP endpoint
   allocate buffer storage, or the TCP endpoint might share a ring
   buffer with the user.

3.9.1.4.  Close

   Format: CLOSE (local connection name)

   This command causes the connection specified to be closed.  If the
   connection is not open or the calling process is not authorized to
   use this connection, an error is returned.  Closing connections is
   intended to be a graceful operation in the sense that outstanding
   SENDs will be transmitted (and retransmitted), as flow control
   permits, until all have been serviced.  Thus, it should be acceptable
   to make several SEND calls, followed by a CLOSE, and expect all the
   data to be sent to the destination.  It should also be clear that
   users should continue to RECEIVE on CLOSING connections since the
   remote peer may be trying to transmit the last of its data.  Thus,
   CLOSE means "I have no more to send" but does not mean "I will not
   receive any more."  It may happen (if the user-level protocol is not
   well thought out) that the closing side is unable to get rid of all
   its data before timing out.  In this event, CLOSE turns into ABORT,
   and the closing TCP peer gives up.

   The user may CLOSE the connection at any time on their own
   initiative, or in response to various prompts from the TCP
   implementation (e.g., remote close executed, transmission timeout
   exceeded, destination inaccessible).

   Because closing a connection requires communication with the remote
   TCP peer, connections may remain in the closing state for a short
   time.  Attempts to reopen the connection before the TCP peer replies
   to the CLOSE command will result in error responses.

   Close also implies push function.

3.9.1.5.  Status

   Format: STATUS (local connection name) -> status data

   This is an implementation-dependent user command and could be
   excluded without adverse effect.  Information returned would
   typically come from the TCB associated with the connection.

   This command returns a data block containing the following
   information:

      local socket,

      remote socket,

      local connection name,

      receive window,

      send window,

      connection state,

      number of buffers awaiting acknowledgment,

      number of buffers pending receipt,

      urgent state,

      Diffserv field value,

      security/compartment, and

      transmission timeout.

   Depending on the state of the connection, or on the implementation
   itself, some of this information may not be available or meaningful.
   If the calling process is not authorized to use this connection, an
   error is returned.  This prevents unauthorized processes from gaining
   information about a connection.

3.9.1.6.  Abort

   Format: ABORT (local connection name)

   This command causes all pending SENDs and RECEIVES to be aborted, the
   TCB to be removed, and a special RST message to be sent to the remote
   TCP peer of the connection.  Depending on the implementation, users
   may receive abort indications for each outstanding SEND or RECEIVE,
   or may simply receive an ABORT-acknowledgment.

3.9.1.7.  Flush

   Some TCP implementations have included a FLUSH call, which will empty
   the TCP send queue of any data that the user has issued SEND calls
   for but is still to the right of the current send window.  That is,
   it flushes as much queued send data as possible without losing
   sequence number synchronization.  The FLUSH call MAY be implemented
   (MAY-14).

3.9.1.8.  Asynchronous Reports

   There MUST be a mechanism for reporting soft TCP error conditions to
   the application (MUST-47).  Generically, we assume this takes the
   form of an application-supplied ERROR_REPORT routine that may be
   upcalled asynchronously from the transport layer:

      ERROR_REPORT(local connection name, reason, subreason)

   The precise encoding of the reason and subreason parameters is not
   specified here.  However, the conditions that are reported
   asynchronously to the application MUST include:

   *  ICMP error message arrived (see Section 3.9.2.2 for description of
      handling each ICMP message type since some message types need to
      be suppressed from generating reports to the application)

   *  Excessive retransmissions (see Section 3.8.3)

   *  Urgent pointer advance (see Section 3.8.5)

   However, an application program that does not want to receive such
   ERROR_REPORT calls SHOULD be able to effectively disable these calls
   (SHLD-20).

3.9.1.9.  Set Differentiated Services Field (IPv4 TOS or IPv6 Traffic
          Class)

   The application layer MUST be able to specify the Differentiated
   Services field for segments that are sent on a connection (MUST-48).
   The Differentiated Services field includes the 6-bit Differentiated
   Services Codepoint (DSCP) value.  It is not required, but the
   application SHOULD be able to change the Differentiated Services
   field during the connection lifetime (SHLD-21).  TCP implementations
   SHOULD pass the current Differentiated Services field value without
   change to the IP layer, when it sends segments on the connection
   (SHLD-22).

   The Differentiated Services field will be specified independently in
   each direction on the connection, so that the receiver application
   will specify the Differentiated Services field used for ACK segments.

   TCP implementations MAY pass the most recently received
   Differentiated Services field up to the application (MAY-9).

3.9.2.  TCP/Lower-Level Interface

   The TCP endpoint calls on a lower-level protocol module to actually
   send and receive information over a network.  The two current
   standard Internet Protocol (IP) versions layered below TCP are IPv4
   [1] and IPv6 [13].

   If the lower-level protocol is IPv4, it provides arguments for a type
   of service (used within the Differentiated Services field) and for a
   time to live.  TCP uses the following settings for these parameters:

   Diffserv field:  The IP header value for the Diffserv field is given
      by the user.  This includes the bits of the Diffserv Codepoint
      (DSCP).

   Time to Live (TTL):  The TTL value used to send TCP segments MUST be
      configurable (MUST-49).

      *  Note that RFC 793 specified one minute (60 seconds) as a
         constant for the TTL because the assumed maximum segment
         lifetime was two minutes.  This was intended to explicitly ask
         that a segment be destroyed if it could not be delivered by the
         internet system within one minute.  RFC 1122 updated RFC 793 to
         require that the TTL be configurable.

      *  Note that the Diffserv field is permitted to change during a
         connection (Section 4.2.4.2 of RFC 1122).  However, the
         application interface might not support this ability, and the
         application does not have knowledge about individual TCP
         segments, so this can only be done on a coarse granularity, at
         best.  This limitation is further discussed in RFC 7657
         (Sections 5.1, 5.3, and 6) [50].  Generally, an application
         SHOULD NOT change the Diffserv field value during the course of
         a connection (SHLD-23).

   Any lower-level protocol will have to provide the source address,
   destination address, and protocol fields, and some way to determine
   the "TCP length", both to provide the functional equivalent service
   of IP and to be used in the TCP checksum.

   When received options are passed up to TCP from the IP layer, a TCP
   implementation MUST ignore options that it does not understand (MUST-
   50).

   A TCP implementation MAY support the Timestamp (MAY-10) and Record
   Route (MAY-11) Options.

3.9.2.1.  Source Routing

   If the lower level is IP (or other protocol that provides this
   feature) and source routing is used, the interface must allow the
   route information to be communicated.  This is especially important
   so that the source and destination addresses used in the TCP checksum
   be the originating source and ultimate destination.  It is also
   important to preserve the return route to answer connection requests.

   An application MUST be able to specify a source route when it
   actively opens a TCP connection (MUST-51), and this MUST take
   precedence over a source route received in a datagram (MUST-52).

   When a TCP connection is OPENed passively and a packet arrives with a
   completed IP Source Route Option (containing a return route), TCP
   implementations MUST save the return route and use it for all
   segments sent on this connection (MUST-53).  If a different source
   route arrives in a later segment, the later definition SHOULD
   override the earlier one (SHLD-24).

3.9.2.2.  ICMP Messages

   TCP implementations MUST act on an ICMP error message passed up from
   the IP layer, directing it to the connection that created the error
   (MUST-54).  The necessary demultiplexing information can be found in
   the IP header contained within the ICMP message.

   This applies to ICMPv6 in addition to IPv4 ICMP.

   [35] contains discussion of specific ICMP and ICMPv6 messages
   classified as either "soft" or "hard" errors that may bear different
   responses.  Treatment for classes of ICMP messages is described
   below:

   Source Quench
     TCP implementations MUST silently discard any received ICMP Source
     Quench messages (MUST-55).  See [11] for discussion.

   Soft Errors
     For IPv4 ICMP, these include: Destination Unreachable -- codes 0,
     1, 5; Time Exceeded -- codes 0, 1; and Parameter Problem.

     For ICMPv6, these include: Destination Unreachable -- codes 0, 3;
     Time Exceeded -- codes 0, 1; and Parameter Problem -- codes 0, 1,
     2.

     Since these Unreachable messages indicate soft error conditions, a
     TCP implementation MUST NOT abort the connection (MUST-56), and it
     SHOULD make the information available to the application (SHLD-25).

   Hard Errors
     For ICMP these include Destination Unreachable -- codes 2-4.

     These are hard error conditions, so TCP implementations SHOULD
     abort the connection (SHLD-26).  [35] notes that some
     implementations do not abort connections when an ICMP hard error is
     received for a connection that is in any of the synchronized
     states.

   Note that [35], Section 4 describes widespread implementation
   behavior that treats soft errors as hard errors during connection
   establishment.

3.9.2.3.  Source Address Validation

   RFC 1122 requires addresses to be validated in incoming SYN packets:

   |  An incoming SYN with an invalid source address MUST be ignored
   |  either by TCP or by the IP layer [(MUST-63)] (see
   |  Section 3.2.1.3).
   |  
   |  A TCP implementation MUST silently discard an incoming SYN segment
   |  that is addressed to a broadcast or multicast address [(MUST-57)].

   This prevents connection state and replies from being erroneously
   generated, and implementers should note that this guidance is
   applicable to all incoming segments, not just SYNs, as specifically
   indicated in RFC 1122.

3.10.  Event Processing

   The processing depicted in this section is an example of one possible
   implementation.  Other implementations may have slightly different
   processing sequences, but they should differ from those in this
   section only in detail, not in substance.

   The activity of the TCP endpoint can be characterized as responding
   to events.  The events that occur can be cast into three categories:
   user calls, arriving segments, and timeouts.  This section describes
   the processing the TCP endpoint does in response to each of the
   events.  In many cases, the processing required depends on the state
   of the connection.

   Events that occur:

      User Calls

         OPEN

         SEND

         RECEIVE

         CLOSE

         ABORT

         STATUS

      Arriving Segments

         SEGMENT ARRIVES

      Timeouts

         USER TIMEOUT

         RETRANSMISSION TIMEOUT

         TIME-WAIT TIMEOUT

   The model of the TCP/user interface is that user commands receive an
   immediate return and possibly a delayed response via an event or
   pseudo-interrupt.  In the following descriptions, the term "signal"
   means cause a delayed response.

   Error responses in this document are identified by character strings.
   For example, user commands referencing connections that do not exist
   receive "error: connection not open".

   Please note in the following that all arithmetic on sequence numbers,
   acknowledgment numbers, windows, et cetera, is modulo 2^32 (the size
   of the sequence number space).  Also note that "=<" means less than
   or equal to (modulo 2^32).

   A natural way to think about processing incoming segments is to
   imagine that they are first tested for proper sequence number (i.e.,
   that their contents lie in the range of the expected "receive window"
   in the sequence number space) and then that they are generally queued
   and processed in sequence number order.

   When a segment overlaps other already received segments, we
   reconstruct the segment to contain just the new data and adjust the
   header fields to be consistent.

   Note that if no state change is mentioned, the TCP connection stays
   in the same state.

3.10.1.  OPEN Call

   CLOSED STATE (i.e., TCB does not exist)

   *  Create a new transmission control block (TCB) to hold connection
      state information.  Fill in local socket identifier, remote
      socket, Diffserv field, security/compartment, and user timeout
      information.  Note that some parts of the remote socket may be
      unspecified in a passive OPEN and are to be filled in by the
      parameters of the incoming SYN segment.  Verify the security and
      Diffserv value requested are allowed for this user, if not, return
      "error: Diffserv value not allowed" or "error: security/
      compartment not allowed".  If passive, enter the LISTEN state and
      return.  If active and the remote socket is unspecified, return
      "error: remote socket unspecified"; if active and the remote
      socket is specified, issue a SYN segment.  An initial send
      sequence number (ISS) is selected.  A SYN segment of the form
      <SEQ=ISS><CTL=SYN> is sent.  Set SND.UNA to ISS, SND.NXT to ISS+1,
      enter SYN-SENT state, and return.

   *  If the caller does not have access to the local socket specified,
      return "error: connection illegal for this process".  If there is
      no room to create a new connection, return "error: insufficient
      resources".

   LISTEN STATE

   *  If the OPEN call is active and the remote socket is specified,
      then change the connection from passive to active, select an ISS.
      Send a SYN segment, set SND.UNA to ISS, SND.NXT to ISS+1.  Enter
      SYN-SENT state.  Data associated with SEND may be sent with SYN
      segment or queued for transmission after entering ESTABLISHED
      state.  The urgent bit if requested in the command must be sent
      with the data segments sent as a result of this command.  If there
      is no room to queue the request, respond with "error: insufficient
      resources".  If the remote socket was not specified, then return
      "error: remote socket unspecified".

   SYN-SENT STATE

   SYN-RECEIVED STATE

   ESTABLISHED STATE

   FIN-WAIT-1 STATE

   FIN-WAIT-2 STATE

   CLOSE-WAIT STATE

   CLOSING STATE

   LAST-ACK STATE

   TIME-WAIT STATE

   *  Return "error: connection already exists".

3.10.2.  SEND Call

   CLOSED STATE (i.e., TCB does not exist)

   *  If the user does not have access to such a connection, then return
      "error: connection illegal for this process".

   *  Otherwise, return "error: connection does not exist".

   LISTEN STATE

   *  If the remote socket is specified, then change the connection from
      passive to active, select an ISS.  Send a SYN segment, set SND.UNA
      to ISS, SND.NXT to ISS+1.  Enter SYN-SENT state.  Data associated
      with SEND may be sent with SYN segment or queued for transmission
      after entering ESTABLISHED state.  The urgent bit if requested in
      the command must be sent with the data segments sent as a result
      of this command.  If there is no room to queue the request,
      respond with "error: insufficient resources".  If the remote
      socket was not specified, then return "error: remote socket
      unspecified".

   SYN-SENT STATE

   SYN-RECEIVED STATE

   *  Queue the data for transmission after entering ESTABLISHED state.
      If no space to queue, respond with "error: insufficient
      resources".

   ESTABLISHED STATE

   CLOSE-WAIT STATE

   *  Segmentize the buffer and send it with a piggybacked
      acknowledgment (acknowledgment value = RCV.NXT).  If there is
      insufficient space to remember this buffer, simply return "error:
      insufficient resources".

   *  If the URGENT flag is set, then SND.UP <- SND.NXT and set the
      urgent pointer in the outgoing segments.

   FIN-WAIT-1 STATE

   FIN-WAIT-2 STATE

   CLOSING STATE

   LAST-ACK STATE

   TIME-WAIT STATE

   *  Return "error: connection closing" and do not service request.

3.10.3.  RECEIVE Call

   CLOSED STATE (i.e., TCB does not exist)

   *  If the user does not have access to such a connection, return
      "error: connection illegal for this process".

   *  Otherwise, return "error: connection does not exist".

   LISTEN STATE

   SYN-SENT STATE

   SYN-RECEIVED STATE

   *  Queue for processing after entering ESTABLISHED state.  If there
      is no room to queue this request, respond with "error:
      insufficient resources".

   ESTABLISHED STATE

   FIN-WAIT-1 STATE

   FIN-WAIT-2 STATE

   *  If insufficient incoming segments are queued to satisfy the
      request, queue the request.  If there is no queue space to
      remember the RECEIVE, respond with "error: insufficient
      resources".

   *  Reassemble queued incoming segments into receive buffer and return
      to user.  Mark "push seen" (PUSH) if this is the case.

   *  If RCV.UP is in advance of the data currently being passed to the
      user, notify the user of the presence of urgent data.

   *  When the TCP endpoint takes responsibility for delivering data to
      the user, that fact must be communicated to the sender via an
      acknowledgment.  The formation of such an acknowledgment is
      described below in the discussion of processing an incoming
      segment.

   CLOSE-WAIT STATE

   *  Since the remote side has already sent FIN, RECEIVEs must be
      satisfied by data already on hand, but not yet delivered to the
      user.  If no text is awaiting delivery, the RECEIVE will get an
      "error: connection closing" response.  Otherwise, any remaining
      data can be used to satisfy the RECEIVE.

   CLOSING STATE

   LAST-ACK STATE

   TIME-WAIT STATE

   *  Return "error: connection closing".

3.10.4.  CLOSE Call

   CLOSED STATE (i.e., TCB does not exist)

   *  If the user does not have access to such a connection, return
      "error: connection illegal for this process".

   *  Otherwise, return "error: connection does not exist".

   LISTEN STATE

   *  Any outstanding RECEIVEs are returned with "error: closing"
      responses.  Delete TCB, enter CLOSED state, and return.

   SYN-SENT STATE

   *  Delete the TCB and return "error: closing" responses to any queued
      SENDs, or RECEIVEs.

   SYN-RECEIVED STATE

   *  If no SENDs have been issued and there is no pending data to send,
      then form a FIN segment and send it, and enter FIN-WAIT-1 state;
      otherwise, queue for processing after entering ESTABLISHED state.

   ESTABLISHED STATE

   *  Queue this until all preceding SENDs have been segmentized, then
      form a FIN segment and send it.  In any case, enter FIN-WAIT-1
      state.

   FIN-WAIT-1 STATE

   FIN-WAIT-2 STATE

   *  Strictly speaking, this is an error and should receive an "error:
      connection closing" response.  An "ok" response would be
      acceptable, too, as long as a second FIN is not emitted (the first
      FIN may be retransmitted, though).

   CLOSE-WAIT STATE

   *  Queue this request until all preceding SENDs have been
      segmentized; then send a FIN segment, enter LAST-ACK state.

   CLOSING STATE

   LAST-ACK STATE

   TIME-WAIT STATE

   *  Respond with "error: connection closing".

3.10.5.  ABORT Call

   CLOSED STATE (i.e., TCB does not exist)

   *  If the user should not have access to such a connection, return
      "error: connection illegal for this process".

   *  Otherwise, return "error: connection does not exist".

   LISTEN STATE

   *  Any outstanding RECEIVEs should be returned with "error:
      connection reset" responses.  Delete TCB, enter CLOSED state, and
      return.

   SYN-SENT STATE

   *  All queued SENDs and RECEIVEs should be given "connection reset"
      notification.  Delete the TCB, enter CLOSED state, and return.

   SYN-RECEIVED STATE

   ESTABLISHED STATE

   FIN-WAIT-1 STATE

   FIN-WAIT-2 STATE

   CLOSE-WAIT STATE

   *  Send a reset segment:

      <SEQ=SND.NXT><CTL=RST>

   *  All queued SENDs and RECEIVEs should be given "connection reset"
      notification; all segments queued for transmission (except for the
      RST formed above) or retransmission should be flushed.  Delete the
      TCB, enter CLOSED state, and return.

   CLOSING STATE

   LAST-ACK STATE

   TIME-WAIT STATE

   *  Respond with "ok" and delete the TCB, enter CLOSED state, and
      return.

3.10.6.  STATUS Call

   CLOSED STATE (i.e., TCB does not exist)

   *  If the user should not have access to such a connection, return
      "error: connection illegal for this process".

   *  Otherwise, return "error: connection does not exist".

   LISTEN STATE

   *  Return "state = LISTEN" and the TCB pointer.

   SYN-SENT STATE

   *  Return "state = SYN-SENT" and the TCB pointer.

   SYN-RECEIVED STATE

   *  Return "state = SYN-RECEIVED" and the TCB pointer.

   ESTABLISHED STATE

   *  Return "state = ESTABLISHED" and the TCB pointer.

   FIN-WAIT-1 STATE

   *  Return "state = FIN-WAIT-1" and the TCB pointer.

   FIN-WAIT-2 STATE

   *  Return "state = FIN-WAIT-2" and the TCB pointer.

   CLOSE-WAIT STATE

   *  Return "state = CLOSE-WAIT" and the TCB pointer.

   CLOSING STATE

   *  Return "state = CLOSING" and the TCB pointer.

   LAST-ACK STATE

   *  Return "state = LAST-ACK" and the TCB pointer.

   TIME-WAIT STATE

   *  Return "state = TIME-WAIT" and the TCB pointer.

3.10.7.  SEGMENT ARRIVES

3.10.7.1.  CLOSED STATE

   If the state is CLOSED (i.e., TCB does not exist), then

      all data in the incoming segment is discarded.  An incoming
      segment containing a RST is discarded.  An incoming segment not
      containing a RST causes a RST to be sent in response.  The
      acknowledgment and sequence field values are selected to make the
      reset sequence acceptable to the TCP endpoint that sent the
      offending segment.

      If the ACK bit is off, sequence number zero is used,

         <SEQ=0><ACK=SEG.SEQ+SEG.LEN><CTL=RST,ACK>

      If the ACK bit is on,

         <SEQ=SEG.ACK><CTL=RST>

      Return.

3.10.7.2.  LISTEN STATE

   If the state is LISTEN, then

      First, check for a RST:

      -  An incoming RST segment could not be valid since it could not
         have been sent in response to anything sent by this incarnation
         of the connection.  An incoming RST should be ignored.  Return.

      Second, check for an ACK:

      -  Any acknowledgment is bad if it arrives on a connection still
         in the LISTEN state.  An acceptable reset segment should be
         formed for any arriving ACK-bearing segment.  The RST should be
         formatted as follows:

            <SEQ=SEG.ACK><CTL=RST>

      -  Return.

      Third, check for a SYN:

      -  If the SYN bit is set, check the security.  If the security/
         compartment on the incoming segment does not exactly match the
         security/compartment in the TCB, then send a reset and return.

            <SEQ=0><ACK=SEG.SEQ+SEG.LEN><CTL=RST,ACK>

      -  Set RCV.NXT to SEG.SEQ+1, IRS is set to SEG.SEQ, and any other
         control or text should be queued for processing later.  ISS
         should be selected and a SYN segment sent of the form:

            <SEQ=ISS><ACK=RCV.NXT><CTL=SYN,ACK>

      -  SND.NXT is set to ISS+1 and SND.UNA to ISS.  The connection
         state should be changed to SYN-RECEIVED.  Note that any other
         incoming control or data (combined with SYN) will be processed
         in the SYN-RECEIVED state, but processing of SYN and ACK should
         not be repeated.  If the listen was not fully specified (i.e.,
         the remote socket was not fully specified), then the
         unspecified fields should be filled in now.

      Fourth, other data or control:

      -  This should not be reached.  Drop the segment and return.  Any
         other control or data-bearing segment (not containing SYN) must
         have an ACK and thus would have been discarded by the ACK
         processing in the second step, unless it was first discarded by
         RST checking in the first step.

3.10.7.3.  SYN-SENT STATE

   If the state is SYN-SENT, then

      First, check the ACK bit:

      -  If the ACK bit is set,

         o  If SEG.ACK =< ISS or SEG.ACK > SND.NXT, send a reset (unless
            the RST bit is set, if so drop the segment and return)

               <SEQ=SEG.ACK><CTL=RST>

         o  and discard the segment.  Return.

         o  If SND.UNA < SEG.ACK =< SND.NXT, then the ACK is acceptable.
            Some deployed TCP code has used the check SEG.ACK == SND.NXT
            (using "==" rather than "=<"), but this is not appropriate
            when the stack is capable of sending data on the SYN because
            the TCP peer may not accept and acknowledge all of the data
            on the SYN.

      Second, check the RST bit:

      -  If the RST bit is set,

         o  A potential blind reset attack is described in RFC 5961 [9].
            The mitigation described in that document has specific
            applicability explained therein, and is not a substitute for
            cryptographic protection (e.g., IPsec or TCP-AO).  A TCP
            implementation that supports the mitigation described in RFC
            5961 SHOULD first check that the sequence number exactly
            matches RCV.NXT prior to executing the action in the next
            paragraph.

         o  If the ACK was acceptable, then signal to the user "error:
            connection reset", drop the segment, enter CLOSED state,
            delete TCB, and return.  Otherwise (no ACK), drop the
            segment and return.

      Third, check the security:

      -  If the security/compartment in the segment does not exactly
         match the security/compartment in the TCB, send a reset:

         o  If there is an ACK,

               <SEQ=SEG.ACK><CTL=RST>

         o  Otherwise,

               <SEQ=0><ACK=SEG.SEQ+SEG.LEN><CTL=RST,ACK>

      -  If a reset was sent, discard the segment and return.

      Fourth, check the SYN bit:

      -  This step should be reached only if the ACK is ok, or there is
         no ACK, and the segment did not contain a RST.

      -  If the SYN bit is on and the security/compartment is
         acceptable, then RCV.NXT is set to SEG.SEQ+1, IRS is set to
         SEG.SEQ.  SND.UNA should be advanced to equal SEG.ACK (if there
         is an ACK), and any segments on the retransmission queue that
         are thereby acknowledged should be removed.

      -  If SND.UNA > ISS (our SYN has been ACKed), change the
         connection state to ESTABLISHED, form an ACK segment

            <SEQ=SND.NXT><ACK=RCV.NXT><CTL=ACK>

      -  and send it.  Data or controls that were queued for
         transmission MAY be included.  Some TCP implementations
         suppress sending this segment when the received segment
         contains data that will anyways generate an acknowledgment in
         the later processing steps, saving this extra acknowledgment of
         the SYN from being sent.  If there are other controls or text
         in the segment, then continue processing at the sixth step
         under Section 3.10.7.4 where the URG bit is checked; otherwise,
         return.

      -  Otherwise, enter SYN-RECEIVED, form a SYN,ACK segment

            <SEQ=ISS><ACK=RCV.NXT><CTL=SYN,ACK>

      -  and send it.  Set the variables:

            SND.WND <- SEG.WND

            SND.WL1 <- SEG.SEQ

            SND.WL2 <- SEG.ACK

         If there are other controls or text in the segment, queue them
         for processing after the ESTABLISHED state has been reached,
         return.

      -  Note that it is legal to send and receive application data on
         SYN segments (this is the "text in the segment" mentioned
         above).  There has been significant misinformation and
         misunderstanding of this topic historically.  Some firewalls
         and security devices consider this suspicious.  However, the
         capability was used in T/TCP [21] and is used in TCP Fast Open
         (TFO) [48], so is important for implementations and network
         devices to permit.

      Fifth, if neither of the SYN or RST bits is set, then drop the
      segment and return.

3.10.7.4.  Other States

   Otherwise,

      First, check sequence number:

      -  SYN-RECEIVED STATE

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

      -  CLOSE-WAIT STATE

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  Segments are processed in sequence.  Initial tests on
            arrival are used to discard old duplicates, but further
            processing is done in SEG.SEQ order.  If a segment's
            contents straddle the boundary between old and new, only the
            new parts are processed.

         o  In general, the processing of received segments MUST be
            implemented to aggregate ACK segments whenever possible
            (MUST-58).  For example, if the TCP endpoint is processing a
            series of queued segments, it MUST process them all before
            sending any ACK segments (MUST-59).

         o  There are four cases for the acceptability test for an
            incoming segment:

            +=========+=========+======================================+
            | Segment | Receive | Test                                 |
            | Length  | Window  |                                      |
            +=========+=========+======================================+
            | 0       | 0       | SEG.SEQ = RCV.NXT                    |
            +---------+---------+--------------------------------------+
            | 0       | >0      | RCV.NXT =< SEG.SEQ <                 |
            |         |         | RCV.NXT+RCV.WND                      |
            +---------+---------+--------------------------------------+
            | >0      | 0       | not acceptable                       |
            +---------+---------+--------------------------------------+
            | >0      | >0      | RCV.NXT =< SEG.SEQ <                 |
            |         |         | RCV.NXT+RCV.WND                      |
            |         |         |                                      |
            |         |         | or                                   |
            |         |         |                                      |
            |         |         | RCV.NXT =< SEG.SEQ+SEG.LEN-1         |
            |         |         | < RCV.NXT+RCV.WND                    |
            +---------+---------+--------------------------------------+

                        Table 6: Segment Acceptability Tests

         o  In implementing sequence number validation as described
            here, please note Appendix A.2.

         o  If the RCV.WND is zero, no segments will be acceptable, but
            special allowance should be made to accept valid ACKs, URGs,
            and RSTs.

         o  If an incoming segment is not acceptable, an acknowledgment
            should be sent in reply (unless the RST bit is set, if so
            drop the segment and return):

            <SEQ=SND.NXT><ACK=RCV.NXT><CTL=ACK>

         o  After sending the acknowledgment, drop the unacceptable
            segment and return.

         o  Note that for the TIME-WAIT state, there is an improved
            algorithm described in [40] for handling incoming SYN
            segments that utilizes timestamps rather than relying on the
            sequence number check described here.  When the improved
            algorithm is implemented, the logic above is not applicable
            for incoming SYN segments with Timestamp Options, received
            on a connection in the TIME-WAIT state.

         o  In the following it is assumed that the segment is the
            idealized segment that begins at RCV.NXT and does not exceed
            the window.  One could tailor actual segments to fit this
            assumption by trimming off any portions that lie outside the
            window (including SYN and FIN) and only processing further
            if the segment then begins at RCV.NXT.  Segments with higher
            beginning sequence numbers SHOULD be held for later
            processing (SHLD-31).

      Second, check the RST bit:

      -  RFC 5961 [9], Section 3 describes a potential blind reset
         attack and optional mitigation approach.  This does not provide
         a cryptographic protection (e.g., as in IPsec or TCP-AO) but
         can be applicable in situations described in RFC 5961.  For
         stacks implementing the protection described in RFC 5961, the
         three checks below apply; otherwise, processing for these
         states is indicated further below.

         1)  If the RST bit is set and the sequence number is outside
             the current receive window, silently drop the segment.

         2)  If the RST bit is set and the sequence number exactly
             matches the next expected sequence number (RCV.NXT), then
             TCP endpoints MUST reset the connection in the manner
             prescribed below according to the connection state.

         3)  If the RST bit is set and the sequence number does not
             exactly match the next expected sequence value, yet is
             within the current receive window, TCP endpoints MUST send
             an acknowledgment (challenge ACK):

             <SEQ=SND.NXT><ACK=RCV.NXT><CTL=ACK>

             After sending the challenge ACK, TCP endpoints MUST drop
             the unacceptable segment and stop processing the incoming
             packet further.  Note that RFC 5961 and Errata ID 4772 [99]
             contain additional considerations for ACK throttling in an
             implementation.

      -  SYN-RECEIVED STATE

         o  If the RST bit is set,

            +  If this connection was initiated with a passive OPEN
               (i.e., came from the LISTEN state), then return this
               connection to LISTEN state and return.  The user need not
               be informed.  If this connection was initiated with an
               active OPEN (i.e., came from SYN-SENT state), then the
               connection was refused; signal the user "connection
               refused".  In either case, the retransmission queue
               should be flushed.  And in the active OPEN case, enter
               the CLOSED state and delete the TCB, and return.

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

      -  CLOSE-WAIT STATE

         o  If the RST bit is set, then any outstanding RECEIVEs and
            SEND should receive "reset" responses.  All segment queues
            should be flushed.  Users should also receive an unsolicited
            general "connection reset" signal.  Enter the CLOSED state,
            delete the TCB, and return.

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  If the RST bit is set, then enter the CLOSED state, delete
            the TCB, and return.

      Third, check security:

      -  SYN-RECEIVED STATE

         o  If the security/compartment in the segment does not exactly
            match the security/compartment in the TCB, then send a reset
            and return.

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

      -  CLOSE-WAIT STATE

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  If the security/compartment in the segment does not exactly
            match the security/compartment in the TCB, then send a
            reset; any outstanding RECEIVEs and SEND should receive
            "reset" responses.  All segment queues should be flushed.
            Users should also receive an unsolicited general "connection
            reset" signal.  Enter the CLOSED state, delete the TCB, and
            return.

      -  Note this check is placed following the sequence check to
         prevent a segment from an old connection between these port
         numbers with a different security from causing an abort of the
         current connection.

      Fourth, check the SYN bit:

      -  SYN-RECEIVED STATE

         o  If the connection was initiated with a passive OPEN, then
            return this connection to the LISTEN state and return.
            Otherwise, handle per the directions for synchronized states
            below.

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

      -  CLOSE-WAIT STATE

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  If the SYN bit is set in these synchronized states, it may
            be either a legitimate new connection attempt (e.g., in the
            case of TIME-WAIT), an error where the connection should be
            reset, or the result of an attack attempt, as described in
            RFC 5961 [9].  For the TIME-WAIT state, new connections can
            be accepted if the Timestamp Option is used and meets
            expectations (per [40]).  For all other cases, RFC 5961
            provides a mitigation with applicability to some situations,
            though there are also alternatives that offer cryptographic
            protection (see Section 7).  RFC 5961 recommends that in
            these synchronized states, if the SYN bit is set,
            irrespective of the sequence number, TCP endpoints MUST send
            a "challenge ACK" to the remote peer:

            <SEQ=SND.NXT><ACK=RCV.NXT><CTL=ACK>

         o  After sending the acknowledgment, TCP implementations MUST
            drop the unacceptable segment and stop processing further.
            Note that RFC 5961 and Errata ID 4772 [99] contain
            additional ACK throttling notes for an implementation.

         o  For implementations that do not follow RFC 5961, the
            original behavior described in RFC 793 follows in this
            paragraph.  If the SYN is in the window it is an error: send
            a reset, any outstanding RECEIVEs and SEND should receive
            "reset" responses, all segment queues should be flushed, the
            user should also receive an unsolicited general "connection
            reset" signal, enter the CLOSED state, delete the TCB, and
            return.

         o  If the SYN is not in the window, this step would not be
            reached and an ACK would have been sent in the first step
            (sequence number check).

      Fifth, check the ACK field:

      -  if the ACK bit is off, drop the segment and return

      -  if the ACK bit is on,

         o  RFC 5961 [9], Section 5 describes a potential blind data
            injection attack, and mitigation that implementations MAY
            choose to include (MAY-12).  TCP stacks that implement RFC
            5961 MUST add an input check that the ACK value is
            acceptable only if it is in the range of ((SND.UNA -
            MAX.SND.WND) =< SEG.ACK =< SND.NXT).  All incoming segments
            whose ACK value doesn't satisfy the above condition MUST be
            discarded and an ACK sent back.  The new state variable
            MAX.SND.WND is defined as the largest window that the local
            sender has ever received from its peer (subject to window
            scaling) or may be hard-coded to a maximum permissible
            window value.  When the ACK value is acceptable, the per-
            state processing below applies:

         o  SYN-RECEIVED STATE

            +  If SND.UNA < SEG.ACK =< SND.NXT, then enter ESTABLISHED
               state and continue processing with the variables below
               set to:

                  SND.WND <- SEG.WND

                  SND.WL1 <- SEG.SEQ

                  SND.WL2 <- SEG.ACK

            +  If the segment acknowledgment is not acceptable, form a
               reset segment

                  <SEQ=SEG.ACK><CTL=RST>

            +  and send it.

         o  ESTABLISHED STATE

            +  If SND.UNA < SEG.ACK =< SND.NXT, then set SND.UNA <-
               SEG.ACK.  Any segments on the retransmission queue that
               are thereby entirely acknowledged are removed.  Users
               should receive positive acknowledgments for buffers that
               have been SENT and fully acknowledged (i.e., SEND buffer
               should be returned with "ok" response).  If the ACK is a
               duplicate (SEG.ACK =< SND.UNA), it can be ignored.  If
               the ACK acks something not yet sent (SEG.ACK > SND.NXT),
               then send an ACK, drop the segment, and return.

            +  If SND.UNA =< SEG.ACK =< SND.NXT, the send window should
               be updated.  If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ
               and SND.WL2 =< SEG.ACK)), set SND.WND <- SEG.WND, set
               SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK.

            +  Note that SND.WND is an offset from SND.UNA, that SND.WL1
               records the sequence number of the last segment used to
               update SND.WND, and that SND.WL2 records the
               acknowledgment number of the last segment used to update
               SND.WND.  The check here prevents using old segments to
               update the window.

         o  FIN-WAIT-1 STATE

            +  In addition to the processing for the ESTABLISHED state,
               if the FIN segment is now acknowledged, then enter FIN-
               WAIT-2 and continue processing in that state.

         o  FIN-WAIT-2 STATE

            +  In addition to the processing for the ESTABLISHED state,
               if the retransmission queue is empty, the user's CLOSE
               can be acknowledged ("ok") but do not delete the TCB.

         o  CLOSE-WAIT STATE

            +  Do the same processing as for the ESTABLISHED state.

         o  CLOSING STATE

            +  In addition to the processing for the ESTABLISHED state,
               if the ACK acknowledges our FIN, then enter the TIME-WAIT
               state; otherwise, ignore the segment.

         o  LAST-ACK STATE

            +  The only thing that can arrive in this state is an
               acknowledgment of our FIN.  If our FIN is now
               acknowledged, delete the TCB, enter the CLOSED state, and
               return.

         o  TIME-WAIT STATE

            +  The only thing that can arrive in this state is a
               retransmission of the remote FIN.  Acknowledge it, and
               restart the 2 MSL timeout.

      Sixth, check the URG bit:

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

         o  If the URG bit is set, RCV.UP <- max(RCV.UP,SEG.UP), and
            signal the user that the remote side has urgent data if the
            urgent pointer (RCV.UP) is in advance of the data consumed.
            If the user has already been signaled (or is still in the
            "urgent mode") for this continuous sequence of urgent data,
            do not signal the user again.

      -  CLOSE-WAIT STATE

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  This should not occur since a FIN has been received from the
            remote side.  Ignore the URG.

      Seventh, process the segment text:

      -  ESTABLISHED STATE

      -  FIN-WAIT-1 STATE

      -  FIN-WAIT-2 STATE

         o  Once in the ESTABLISHED state, it is possible to deliver
            segment data to user RECEIVE buffers.  Data from segments
            can be moved into buffers until either the buffer is full or
            the segment is empty.  If the segment empties and carries a
            PUSH flag, then the user is informed, when the buffer is
            returned, that a PUSH has been received.

         o  When the TCP endpoint takes responsibility for delivering
            the data to the user, it must also acknowledge the receipt
            of the data.

         o  Once the TCP endpoint takes responsibility for the data, it
            advances RCV.NXT over the data accepted, and adjusts RCV.WND
            as appropriate to the current buffer availability.  The
            total of RCV.NXT and RCV.WND should not be reduced.

         o  A TCP implementation MAY send an ACK segment acknowledging
            RCV.NXT when a valid segment arrives that is in the window
            but not at the left window edge (MAY-13).

         o  Please note the window management suggestions in
            Section 3.8.

         o  Send an acknowledgment of the form:

            <SEQ=SND.NXT><ACK=RCV.NXT><CTL=ACK>

         o  This acknowledgment should be piggybacked on a segment being
            transmitted if possible without incurring undue delay.

      -  CLOSE-WAIT STATE

      -  CLOSING STATE

      -  LAST-ACK STATE

      -  TIME-WAIT STATE

         o  This should not occur since a FIN has been received from the
            remote side.  Ignore the segment text.

      Eighth, check the FIN bit:

      -  Do not process the FIN if the state is CLOSED, LISTEN, or SYN-
         SENT since the SEG.SEQ cannot be validated; drop the segment
         and return.

      -  If the FIN bit is set, signal the user "connection closing" and
         return any pending RECEIVEs with same message, advance RCV.NXT
         over the FIN, and send an acknowledgment for the FIN.  Note
         that FIN implies PUSH for any segment text not yet delivered to
         the user.

         o  SYN-RECEIVED STATE

         o  ESTABLISHED STATE

            +  Enter the CLOSE-WAIT state.

         o  FIN-WAIT-1 STATE

            +  If our FIN has been ACKed (perhaps in this segment), then
               enter TIME-WAIT, start the time-wait timer, turn off the
               other timers; otherwise, enter the CLOSING state.

         o  FIN-WAIT-2 STATE

            +  Enter the TIME-WAIT state.  Start the time-wait timer,
               turn off the other timers.

         o  CLOSE-WAIT STATE

            +  Remain in the CLOSE-WAIT state.

         o  CLOSING STATE

            +  Remain in the CLOSING state.

         o  LAST-ACK STATE

            +  Remain in the LAST-ACK state.

         o  TIME-WAIT STATE

            +  Remain in the TIME-WAIT state.  Restart the 2 MSL time-
               wait timeout.

      and return.

3.10.8.  Timeouts

   USER TIMEOUT

   *  For any state if the user timeout expires, flush all queues,
      signal the user "error: connection aborted due to user timeout" in
      general and for any outstanding calls, delete the TCB, enter the
      CLOSED state, and return.

   RETRANSMISSION TIMEOUT

   *  For any state if the retransmission timeout expires on a segment
      in the retransmission queue, send the segment at the front of the
      retransmission queue again, reinitialize the retransmission timer,
      and return.

   TIME-WAIT TIMEOUT

   *  If the time-wait timeout expires on a connection, delete the TCB,
      enter the CLOSED state, and return.

4.  Glossary

   ACK    
           A control bit (acknowledge) occupying no sequence space,
           which indicates that the acknowledgment field of this segment
           specifies the next sequence number the sender of this segment
           is expecting to receive, hence acknowledging receipt of all
           previous sequence numbers.

   connection
           A logical communication path identified by a pair of sockets.

   datagram
           A message sent in a packet-switched computer communications
           network.

   Destination Address
           The network-layer address of the endpoint intended to receive
           a segment.

   FIN    
           A control bit (finis) occupying one sequence number, which
           indicates that the sender will send no more data or control
           occupying sequence space.

   flush  
           To remove all of the contents (data or segments) from a store
           (buffer or queue).

   fragment
           A portion of a logical unit of data.  In particular, an
           internet fragment is a portion of an internet datagram.

   header 
           Control information at the beginning of a message, segment,
           fragment, packet, or block of data.

   host   
           A computer.  In particular, a source or destination of
           messages from the point of view of the communication network.

   Identification
           An Internet Protocol field.  This identifying value assigned
           by the sender aids in assembling the fragments of a datagram.

   internet address
           A network-layer address.

   internet datagram
           A unit of data exchanged between internet hosts, together
           with the internet header that allows the datagram to be
           routed from source to destination.

   internet fragment
           A portion of the data of an internet datagram with an
           internet header.

   IP     
           Internet Protocol.  See [1] and [13].

   IRS    
           The Initial Receive Sequence number.  The first sequence
           number used by the sender on a connection.

   ISN    
           The Initial Sequence Number.  The first sequence number used
           on a connection (either ISS or IRS).  Selected in a way that
           is unique within a given period of time and is unpredictable
           to attackers.

   ISS    
           The Initial Send Sequence number.  The first sequence number
           used by the sender on a connection.

   left sequence
           This is the next sequence number to be acknowledged by the
           data-receiving TCP endpoint (or the lowest currently
           unacknowledged sequence number) and is sometimes referred to
           as the left edge of the send window.

   module 
           An implementation, usually in software, of a protocol or
           other procedure.

   MSL    
           Maximum Segment Lifetime, the time a TCP segment can exist in
           the internetwork system.  Arbitrarily defined to be 2
           minutes.

   octet  
           An eight-bit byte.

   Options
           An Option field may contain several options, and each option
           may be several octets in length.

   packet 
           A package of data with a header that may or may not be
           logically complete.  More often a physical packaging than a
           logical packaging of data.

   port   
           The portion of a connection identifier used for
           demultiplexing connections at an endpoint.

   process
           A program in execution.  A source or destination of data from
           the point of view of the TCP endpoint or other host-to-host
           protocol.

   PUSH   
           A control bit occupying no sequence space, indicating that
           this segment contains data that must be pushed through to the
           receiving user.

   RCV.NXT
           receive next sequence number

   RCV.UP 
           receive urgent pointer

   RCV.WND
           receive window

   receive next sequence number
           This is the next sequence number the local TCP endpoint is
           expecting to receive.

   receive window
           This represents the sequence numbers the local (receiving)
           TCP endpoint is willing to receive.  Thus, the local TCP
           endpoint considers that segments overlapping the range
           RCV.NXT to RCV.NXT + RCV.WND - 1 carry acceptable data or
           control.  Segments containing sequence numbers entirely
           outside this range are considered duplicates or injection
           attacks and discarded.

   RST    
           A control bit (reset), occupying no sequence space,
           indicating that the receiver should delete the connection
           without further interaction.  The receiver can determine,
           based on the sequence number and acknowledgment fields of the
           incoming segment, whether it should honor the reset command
           or ignore it.  In no case does receipt of a segment
           containing RST give rise to a RST in response.

   SEG.ACK
           segment acknowledgment

   SEG.LEN
           segment length

   SEG.SEQ
           segment sequence

   SEG.UP 
           segment urgent pointer field

   SEG.WND
           segment window field

   segment
           A logical unit of data.  In particular, a TCP segment is the
           unit of data transferred between a pair of TCP modules.

   segment acknowledgment
           The sequence number in the acknowledgment field of the
           arriving segment.

   segment length
           The amount of sequence number space occupied by a segment,
           including any controls that occupy sequence space.

   segment sequence
           The number in the sequence field of the arriving segment.

   send sequence
           This is the next sequence number the local (sending) TCP
           endpoint will use on the connection.  It is initially
           selected from an initial sequence number curve (ISN) and is
           incremented for each octet of data or sequenced control
           transmitted.

   send window
           This represents the sequence numbers that the remote
           (receiving) TCP endpoint is willing to receive.  It is the
           value of the window field specified in segments from the
           remote (data-receiving) TCP endpoint.  The range of new
           sequence numbers that may be emitted by a TCP implementation
           lies between SND.NXT and SND.UNA + SND.WND - 1.
           (Retransmissions of sequence numbers between SND.UNA and
           SND.NXT are expected, of course.)

   SND.NXT
           send sequence

   SND.UNA
           left sequence

   SND.UP 
           send urgent pointer

   SND.WL1
           segment sequence number at last window update

   SND.WL2
           segment acknowledgment number at last window update

   SND.WND
           send window

   socket (or socket number, or socket address, or socket identifier)
           An address that specifically includes a port identifier, that
           is, the concatenation of an Internet Address with a TCP port.

   Source Address
           The network-layer address of the sending endpoint.

   SYN    
           A control bit in the incoming segment, occupying one sequence
           number, used at the initiation of a connection to indicate
           where the sequence numbering will start.

   TCB    
           Transmission control block, the data structure that records
           the state of a connection.

   TCP    
           Transmission Control Protocol: a host-to-host protocol for
           reliable communication in internetwork environments.

   TOS    
           Type of Service, an obsoleted IPv4 field.  The same header
           bits currently are used for the Differentiated Services field
           [4] containing the Differentiated Services Codepoint (DSCP)
           value and the 2-bit ECN codepoint [6].

   Type of Service
           See "TOS".

   URG    
           A control bit (urgent), occupying no sequence space, used to
           indicate that the receiving user should be notified to do
           urgent processing as long as there is data to be consumed
           with sequence numbers less than the value indicated by the
           urgent pointer.

   urgent pointer
           A control field meaningful only when the URG bit is on.  This
           field communicates the value of the urgent pointer that
           indicates the data octet associated with the sending user's
           urgent call.

5.  Changes from RFC 793

   This document obsoletes RFC 793 as well as RFCs 6093 and 6528, which
   updated 793.  In all cases, only the normative protocol specification
   and requirements have been incorporated into this document, and some
   informational text with background and rationale may not have been
   carried in.  The informational content of those documents is still
   valuable in learning about and understanding TCP, and they are valid
   Informational references, even though their normative content has
   been incorporated into this document.

   The main body of this document was adapted from RFC 793's Section 3,
   titled "FUNCTIONAL SPECIFICATION", with an attempt to keep formatting
   and layout as close as possible.

   The collection of applicable RFC errata that have been reported and
   either accepted or held for an update to RFC 793 were incorporated
   (Errata IDs: 573 [73], 574 [74], 700 [75], 701 [76], 1283 [77], 1561
   [78], 1562 [79], 1564 [80], 1571 [81], 1572 [82], 2297 [83], 2298
   [84], 2748 [85], 2749 [86], 2934 [87], 3213 [88], 3300 [89], 3301
   [90], 6222 [91]).  Some errata were not applicable due to other
   changes (Errata IDs: 572 [92], 575 [93], 1565 [94], 1569 [95], 2296
   [96], 3305 [97], 3602 [98]).

   Changes to the specification of the urgent pointer described in RFCs
   1011, 1122, and 6093 were incorporated.  See RFC 6093 for detailed
   discussion of why these changes were necessary.

   The discussion of the RTO from RFC 793 was updated to refer to RFC
   6298.  The text on the RTO in RFC 1122 originally replaced the text
   in RFC 793; however, RFC 2988 should have updated RFC 1122 and has
   subsequently been obsoleted by RFC 6298.

   RFC 1011 [18] contains a number of comments about RFC 793, including
   some needed changes to the TCP specification.  These are expanded in
   RFC 1122, which contains a collection of other changes and
   clarifications to RFC 793.  The normative items impacting the
   protocol have been incorporated here, though some historically useful
   implementation advice and informative discussion from RFC 1122 is not
   included here.  The present document, which is now the TCP
   specification rather than RFC 793, updates RFC 1011, and the comments
   noted in RFC 1011 have been incorporated.

   RFC 1122 contains more than just TCP requirements, so this document
   can't obsolete RFC 1122 entirely.  It is only marked as "updating"
   RFC 1122; however, it should be understood to effectively obsolete
   all of the material on TCP found in RFC 1122.

   The more secure initial sequence number generation algorithm from RFC
   6528 was incorporated.  See RFC 6528 for discussion of the attacks
   that this mitigates, as well as advice on selecting PRF algorithms
   and managing secret key data.

   A note based on RFC 6429 was added to explicitly clarify that system
   resource management concerns allow connection resources to be
   reclaimed.  RFC 6429 is obsoleted in the sense that the clarification
   it describes has been reflected within this base TCP specification.

   The description of congestion control implementation was added based
   on the set of documents that are IETF BCP or Standards Track on the
   topic and the current state of common implementations.

6.  IANA Considerations

   In the "Transmission Control Protocol (TCP) Header Flags" registry,
   IANA has made several changes as described in this section.

   RFC 3168 originally created this registry but only populated it with
   the new bits defined in RFC 3168, neglecting the other bits that had
   previously been described in RFC 793 and other documents.  Bit 7 has
   since also been updated by RFC 8311 [54].

   The "Bit" column has been renamed below as the "Bit Offset" column
   because it references each header flag's offset within the 16-bit
   aligned view of the TCP header in Figure 1.  The bits in offsets 0
   through 3 are the TCP segment Data Offset field, and not header
   flags.

   IANA has added a column for "Assignment Notes".

   IANA has assigned values as indicated below.

      +========+===================+===========+====================+
      | Bit    | Name              | Reference | Assignment Notes   |
      | Offset |                   |           |                    |
      +========+===================+===========+====================+
      | 4      | Reserved for      | RFC 9293  |                    |
      |        | future use        |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 5      | Reserved for      | RFC 9293  |                    |
      |        | future use        |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 6      | Reserved for      | RFC 9293  |                    |
      |        | future use        |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 7      | Reserved for      | RFC 8311  | Previously used by |
      |        | future use        |           | Historic RFC 3540  |
      |        |                   |           | as NS (Nonce Sum). |
      +--------+-------------------+-----------+--------------------+
      | 8      | CWR (Congestion   | RFC 3168  |                    |
      |        | Window Reduced)   |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 9      | ECE (ECN-Echo)    | RFC 3168  |                    |
      +--------+-------------------+-----------+--------------------+
      | 10     | Urgent pointer    | RFC 9293  |                    |
      |        | field is          |           |                    |
      |        | significant (URG) |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 11     | Acknowledgment    | RFC 9293  |                    |
      |        | field is          |           |                    |
      |        | significant (ACK) |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 12     | Push function     | RFC 9293  |                    |
      |        | (PSH)             |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 13     | Reset the         | RFC 9293  |                    |
      |        | connection (RST)  |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 14     | Synchronize       | RFC 9293  |                    |
      |        | sequence numbers  |           |                    |
      |        | (SYN)             |           |                    |
      +--------+-------------------+-----------+--------------------+
      | 15     | No more data from | RFC 9293  |                    |
      |        | sender (FIN)      |           |                    |
      +--------+-------------------+-----------+--------------------+

                         Table 7: TCP Header Flags

   The "TCP Header Flags" registry has also been moved to a subregistry
   under the global "Transmission Control Protocol (TCP) Parameters"
   registry <https://www.iana.org/assignments/tcp-parameters/>.

   The registry's Registration Procedure remains Standards Action, but
   the Reference has been updated to this document, and the Note has
   been removed.

7.  Security and Privacy Considerations

   The TCP design includes only rudimentary security features that
   improve the robustness and reliability of connections and application
   data transfer, but there are no built-in cryptographic capabilities
   to support any form of confidentiality, authentication, or other
   typical security functions.  Non-cryptographic enhancements (e.g.,
   [9]) have been developed to improve robustness of TCP connections to
   particular types of attacks, but the applicability and protections of
   non-cryptographic enhancements are limited (e.g., see Section 1.1 of
   [9]).  Applications typically utilize lower-layer (e.g., IPsec) and
   upper-layer (e.g., TLS) protocols to provide security and privacy for
   TCP connections and application data carried in TCP.  Methods based
   on TCP Options have been developed as well, to support some security
   capabilities.

   In order to fully provide confidentiality, integrity protection, and
   authentication for TCP connections (including their control flags),
   IPsec is the only current effective method.  For integrity protection
   and authentication, the TCP Authentication Option (TCP-AO) [38] is
   available, with a proposed extension to also provide confidentiality
   for the segment payload.  Other methods discussed in this section may
   provide confidentiality or integrity protection for the payload, but
   for the TCP header only cover either a subset of the fields (e.g.,
   tcpcrypt [57]) or none at all (e.g., TLS).  Other security features
   that have been added to TCP (e.g., ISN generation, sequence number
   checks, and others) are only capable of partially hindering attacks.

   Applications using long-lived TCP flows have been vulnerable to
   attacks that exploit the processing of control flags described in
   earlier TCP specifications [33].  TCP-MD5 was a commonly implemented
   TCP Option to support authentication for some of these connections,
   but had flaws and is now deprecated.  TCP-AO provides a capability to
   protect long-lived TCP connections from attacks and has superior
   properties to TCP-MD5.  It does not provide any privacy for
   application data or for the TCP headers.

   The "tcpcrypt" [57] experimental extension to TCP provides the
   ability to cryptographically protect connection data.  Metadata
   aspects of the TCP flow are still visible, but the application stream
   is well protected.  Within the TCP header, only the urgent pointer
   and FIN flag are protected through tcpcrypt.

   The TCP Roadmap [49] includes notes about several RFCs related to TCP
   security.  Many of the enhancements provided by these RFCs have been
   integrated into the present document, including ISN generation,
   mitigating blind in-window attacks, and improving handling of soft
   errors and ICMP packets.  These are all discussed in greater detail
   in the referenced RFCs that originally described the changes needed
   to earlier TCP specifications.  Additionally, see RFC 6093 [39] for
   discussion of security considerations related to the urgent pointer
   field, which also discourages new applications from using the urgent
   pointer.

   Since TCP is often used for bulk transfer flows, some attacks are
   possible that abuse the TCP congestion control logic.  An example is
   "ACK-division" attacks.  Updates that have been made to the TCP
   congestion control specifications include mechanisms like Appropriate
   Byte Counting (ABC) [29] that act as mitigations to these attacks.

   Other attacks are focused on exhausting the resources of a TCP
   server.  Examples include SYN flooding [32] or wasting resources on
   non-progressing connections [41].  Operating systems commonly
   implement mitigations for these attacks.  Some common defenses also
   utilize proxies, stateful firewalls, and other technologies outside
   the end-host TCP implementation.

   The concept of a protocol's "wire image" is described in RFC 8546
   [56], which describes how TCP's cleartext headers expose more
   metadata to nodes on the path than is strictly required to route the
   packets to their destination.  On-path adversaries may be able to
   leverage this metadata.  Lessons learned in this respect from TCP
   have been applied in the design of newer transports like QUIC [60].
   Additionally, based partly on experiences with TCP and its
   extensions, there are considerations that might be applicable for
   future TCP extensions and other transports that the IETF has
   documented in RFC 9065 [61], along with IAB recommendations in RFC
   8558 [58] and [67].

   There are also methods of "fingerprinting" that can be used to infer
   the host TCP implementation (operating system) version or platform
   information.  These collect observations of several aspects, such as
   the options present in segments, the ordering of options, the
   specific behaviors in the case of various conditions, packet timing,
   packet sizing, and other aspects of the protocol that are left to be
   determined by an implementer, and can use those observations to
   identify information about the host and implementation.

   Since ICMP message processing also can interact with TCP connections,
   there is potential for ICMP-based attacks against TCP connections.
   These are discussed in RFC 5927 [100], along with mitigations that
   have been implemented.

8.  References

8.1.  Normative References

   [1]        Postel, J., "Internet Protocol", STD 5, RFC 791,
              DOI 10.17487/RFC0791, September 1981,
              <https://www.rfc-editor.org/info/rfc791>.

   [2]        Mogul, J. and S. Deering, "Path MTU discovery", RFC 1191,
              DOI 10.17487/RFC1191, November 1990,
              <https://www.rfc-editor.org/info/rfc1191>.

   [3]        Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119,
              DOI 10.17487/RFC2119, March 1997,
              <https://www.rfc-editor.org/info/rfc2119>.

   [4]        Nichols, K., Blake, S., Baker, F., and D. Black,
              "Definition of the Differentiated Services Field (DS
              Field) in the IPv4 and IPv6 Headers", RFC 2474,
              DOI 10.17487/RFC2474, December 1998,
              <https://www.rfc-editor.org/info/rfc2474>.

   [5]        Floyd, S., "Congestion Control Principles", BCP 41,
              RFC 2914, DOI 10.17487/RFC2914, September 2000,
              <https://www.rfc-editor.org/info/rfc2914>.

   [6]        Ramakrishnan, K., Floyd, S., and D. Black, "The Addition
              of Explicit Congestion Notification (ECN) to IP",
              RFC 3168, DOI 10.17487/RFC3168, September 2001,
              <https://www.rfc-editor.org/info/rfc3168>.

   [7]        Floyd, S. and M. Allman, "Specifying New Congestion
              Control Algorithms", BCP 133, RFC 5033,
              DOI 10.17487/RFC5033, August 2007,
              <https://www.rfc-editor.org/info/rfc5033>.

   [8]        Allman, M., Paxson, V., and E. Blanton, "TCP Congestion
              Control", RFC 5681, DOI 10.17487/RFC5681, September 2009,
              <https://www.rfc-editor.org/info/rfc5681>.

   [9]        Ramaiah, A., Stewart, R., and M. Dalal, "Improving TCP's
              Robustness to Blind In-Window Attacks", RFC 5961,
              DOI 10.17487/RFC5961, August 2010,
              <https://www.rfc-editor.org/info/rfc5961>.

   [10]       Paxson, V., Allman, M., Chu, J., and M. Sargent,
              "Computing TCP's Retransmission Timer", RFC 6298,
              DOI 10.17487/RFC6298, June 2011,
              <https://www.rfc-editor.org/info/rfc6298>.

   [11]       Gont, F., "Deprecation of ICMP Source Quench Messages",
              RFC 6633, DOI 10.17487/RFC6633, May 2012,
              <https://www.rfc-editor.org/info/rfc6633>.

   [12]       Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC
              2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174,
              May 2017, <https://www.rfc-editor.org/info/rfc8174>.

   [13]       Deering, S. and R. Hinden, "Internet Protocol, Version 6
              (IPv6) Specification", STD 86, RFC 8200,
              DOI 10.17487/RFC8200, July 2017,
              <https://www.rfc-editor.org/info/rfc8200>.

   [14]       McCann, J., Deering, S., Mogul, J., and R. Hinden, Ed.,
              "Path MTU Discovery for IP version 6", STD 87, RFC 8201,
              DOI 10.17487/RFC8201, July 2017,
              <https://www.rfc-editor.org/info/rfc8201>.

   [15]       Allman, M., "Requirements for Time-Based Loss Detection",
              BCP 233, RFC 8961, DOI 10.17487/RFC8961, November 2020,
              <https://www.rfc-editor.org/info/rfc8961>.

8.2.  Informative References

   [16]       Postel, J., "Transmission Control Protocol", STD 7,
              RFC 793, DOI 10.17487/RFC0793, September 1981,
              <https://www.rfc-editor.org/info/rfc793>.

   [17]       Nagle, J., "Congestion Control in IP/TCP Internetworks",
              RFC 896, DOI 10.17487/RFC0896, January 1984,
              <https://www.rfc-editor.org/info/rfc896>.

   [18]       Reynolds, J. and J. Postel, "Official Internet protocols",
              RFC 1011, DOI 10.17487/RFC1011, May 1987,
              <https://www.rfc-editor.org/info/rfc1011>.

   [19]       Braden, R., Ed., "Requirements for Internet Hosts -
              Communication Layers", STD 3, RFC 1122,
              DOI 10.17487/RFC1122, October 1989,
              <https://www.rfc-editor.org/info/rfc1122>.

   [20]       Almquist, P., "Type of Service in the Internet Protocol
              Suite", RFC 1349, DOI 10.17487/RFC1349, July 1992,
              <https://www.rfc-editor.org/info/rfc1349>.

   [21]       Braden, R., "T/TCP -- TCP Extensions for Transactions
              Functional Specification", RFC 1644, DOI 10.17487/RFC1644,
              July 1994, <https://www.rfc-editor.org/info/rfc1644>.

   [22]       Mathis, M., Mahdavi, J., Floyd, S., and A. Romanow, "TCP
              Selective Acknowledgment Options", RFC 2018,
              DOI 10.17487/RFC2018, October 1996,
              <https://www.rfc-editor.org/info/rfc2018>.

   [23]       Paxson, V., Allman, M., Dawson, S., Fenner, W., Griner,
              J., Heavens, I., Lahey, K., Semke, J., and B. Volz, "Known
              TCP Implementation Problems", RFC 2525,
              DOI 10.17487/RFC2525, March 1999,
              <https://www.rfc-editor.org/info/rfc2525>.

   [24]       Borman, D., Deering, S., and R. Hinden, "IPv6 Jumbograms",
              RFC 2675, DOI 10.17487/RFC2675, August 1999,
              <https://www.rfc-editor.org/info/rfc2675>.

   [25]       Xiao, X., Hannan, A., Paxson, V., and E. Crabbe, "TCP
              Processing of the IPv4 Precedence Field", RFC 2873,
              DOI 10.17487/RFC2873, June 2000,
              <https://www.rfc-editor.org/info/rfc2873>.

   [26]       Floyd, S., Mahdavi, J., Mathis, M., and M. Podolsky, "An
              Extension to the Selective Acknowledgement (SACK) Option
              for TCP", RFC 2883, DOI 10.17487/RFC2883, July 2000,
              <https://www.rfc-editor.org/info/rfc2883>.

   [27]       Lahey, K., "TCP Problems with Path MTU Discovery",
              RFC 2923, DOI 10.17487/RFC2923, September 2000,
              <https://www.rfc-editor.org/info/rfc2923>.

   [28]       Balakrishnan, H., Padmanabhan, V., Fairhurst, G., and M.
              Sooriyabandara, "TCP Performance Implications of Network
              Path Asymmetry", BCP 69, RFC 3449, DOI 10.17487/RFC3449,
              December 2002, <https://www.rfc-editor.org/info/rfc3449>.

   [29]       Allman, M., "TCP Congestion Control with Appropriate Byte
              Counting (ABC)", RFC 3465, DOI 10.17487/RFC3465, February
              2003, <https://www.rfc-editor.org/info/rfc3465>.

   [30]       Fenner, B., "Experimental Values In IPv4, IPv6, ICMPv4,
              ICMPv6, UDP, and TCP Headers", RFC 4727,
              DOI 10.17487/RFC4727, November 2006,
              <https://www.rfc-editor.org/info/rfc4727>.

   [31]       Mathis, M. and J. Heffner, "Packetization Layer Path MTU
              Discovery", RFC 4821, DOI 10.17487/RFC4821, March 2007,
              <https://www.rfc-editor.org/info/rfc4821>.

   [32]       Eddy, W., "TCP SYN Flooding Attacks and Common
              Mitigations", RFC 4987, DOI 10.17487/RFC4987, August 2007,
              <https://www.rfc-editor.org/info/rfc4987>.

   [33]       Touch, J., "Defending TCP Against Spoofing Attacks",
              RFC 4953, DOI 10.17487/RFC4953, July 2007,
              <https://www.rfc-editor.org/info/rfc4953>.

   [34]       Culley, P., Elzur, U., Recio, R., Bailey, S., and J.
              Carrier, "Marker PDU Aligned Framing for TCP
              Specification", RFC 5044, DOI 10.17487/RFC5044, October
              2007, <https://www.rfc-editor.org/info/rfc5044>.

   [35]       Gont, F., "TCP's Reaction to Soft Errors", RFC 5461,
              DOI 10.17487/RFC5461, February 2009,
              <https://www.rfc-editor.org/info/rfc5461>.

   [36]       StJohns, M., Atkinson, R., and G. Thomas, "Common
              Architecture Label IPv6 Security Option (CALIPSO)",
              RFC 5570, DOI 10.17487/RFC5570, July 2009,
              <https://www.rfc-editor.org/info/rfc5570>.

   [37]       Sandlund, K., Pelletier, G., and L-E. Jonsson, "The RObust
              Header Compression (ROHC) Framework", RFC 5795,
              DOI 10.17487/RFC5795, March 2010,
              <https://www.rfc-editor.org/info/rfc5795>.

   [38]       Touch, J., Mankin, A., and R. Bonica, "The TCP
              Authentication Option", RFC 5925, DOI 10.17487/RFC5925,
              June 2010, <https://www.rfc-editor.org/info/rfc5925>.

   [39]       Gont, F. and A. Yourtchenko, "On the Implementation of the
              TCP Urgent Mechanism", RFC 6093, DOI 10.17487/RFC6093,
              January 2011, <https://www.rfc-editor.org/info/rfc6093>.

   [40]       Gont, F., "Reducing the TIME-WAIT State Using TCP
              Timestamps", BCP 159, RFC 6191, DOI 10.17487/RFC6191,
              April 2011, <https://www.rfc-editor.org/info/rfc6191>.

   [41]       Bashyam, M., Jethanandani, M., and A. Ramaiah, "TCP Sender
              Clarification for Persist Condition", RFC 6429,
              DOI 10.17487/RFC6429, December 2011,
              <https://www.rfc-editor.org/info/rfc6429>.

   [42]       Gont, F. and S. Bellovin, "Defending against Sequence
              Number Attacks", RFC 6528, DOI 10.17487/RFC6528, February
              2012, <https://www.rfc-editor.org/info/rfc6528>.

   [43]       Borman, D., "TCP Options and Maximum Segment Size (MSS)",
              RFC 6691, DOI 10.17487/RFC6691, July 2012,
              <https://www.rfc-editor.org/info/rfc6691>.

   [44]       Touch, J., "Updated Specification of the IPv4 ID Field",
              RFC 6864, DOI 10.17487/RFC6864, February 2013,
              <https://www.rfc-editor.org/info/rfc6864>.

   [45]       Touch, J., "Shared Use of Experimental TCP Options",
              RFC 6994, DOI 10.17487/RFC6994, August 2013,
              <https://www.rfc-editor.org/info/rfc6994>.

   [46]       McPherson, D., Oran, D., Thaler, D., and E. Osterweil,
              "Architectural Considerations of IP Anycast", RFC 7094,
              DOI 10.17487/RFC7094, January 2014,
              <https://www.rfc-editor.org/info/rfc7094>.

   [47]       Borman, D., Braden, B., Jacobson, V., and R.
              Scheffenegger, Ed., "TCP Extensions for High Performance",
              RFC 7323, DOI 10.17487/RFC7323, September 2014,
              <https://www.rfc-editor.org/info/rfc7323>.

   [48]       Cheng, Y., Chu, J., Radhakrishnan, S., and A. Jain, "TCP
              Fast Open", RFC 7413, DOI 10.17487/RFC7413, December 2014,
              <https://www.rfc-editor.org/info/rfc7413>.

   [49]       Duke, M., Braden, R., Eddy, W., Blanton, E., and A.
              Zimmermann, "A Roadmap for Transmission Control Protocol
              (TCP) Specification Documents", RFC 7414,
              DOI 10.17487/RFC7414, February 2015,
              <https://www.rfc-editor.org/info/rfc7414>.

   [50]       Black, D., Ed. and P. Jones, "Differentiated Services
              (Diffserv) and Real-Time Communication", RFC 7657,
              DOI 10.17487/RFC7657, November 2015,
              <https://www.rfc-editor.org/info/rfc7657>.

   [51]       Fairhurst, G. and M. Welzl, "The Benefits of Using
              Explicit Congestion Notification (ECN)", RFC 8087,
              DOI 10.17487/RFC8087, March 2017,
              <https://www.rfc-editor.org/info/rfc8087>.

   [52]       Fairhurst, G., Ed., Trammell, B., Ed., and M. Kuehlewind,
              Ed., "Services Provided by IETF Transport Protocols and
              Congestion Control Mechanisms", RFC 8095,
              DOI 10.17487/RFC8095, March 2017,
              <https://www.rfc-editor.org/info/rfc8095>.

   [53]       Welzl, M., Tuexen, M., and N. Khademi, "On the Usage of
              Transport Features Provided by IETF Transport Protocols",
              RFC 8303, DOI 10.17487/RFC8303, February 2018,
              <https://www.rfc-editor.org/info/rfc8303>.

   [54]       Black, D., "Relaxing Restrictions on Explicit Congestion
              Notification (ECN) Experimentation", RFC 8311,
              DOI 10.17487/RFC8311, January 2018,
              <https://www.rfc-editor.org/info/rfc8311>.

   [55]       Chown, T., Loughney, J., and T. Winters, "IPv6 Node
              Requirements", BCP 220, RFC 8504, DOI 10.17487/RFC8504,
              January 2019, <https://www.rfc-editor.org/info/rfc8504>.

   [56]       Trammell, B. and M. Kuehlewind, "The Wire Image of a
              Network Protocol", RFC 8546, DOI 10.17487/RFC8546, April
              2019, <https://www.rfc-editor.org/info/rfc8546>.

   [57]       Bittau, A., Giffin, D., Handley, M., Mazieres, D., Slack,
              Q., and E. Smith, "Cryptographic Protection of TCP Streams
              (tcpcrypt)", RFC 8548, DOI 10.17487/RFC8548, May 2019,
              <https://www.rfc-editor.org/info/rfc8548>.

   [58]       Hardie, T., Ed., "Transport Protocol Path Signals",
              RFC 8558, DOI 10.17487/RFC8558, April 2019,
              <https://www.rfc-editor.org/info/rfc8558>.

   [59]       Ford, A., Raiciu, C., Handley, M., Bonaventure, O., and C.
              Paasch, "TCP Extensions for Multipath Operation with
              Multiple Addresses", RFC 8684, DOI 10.17487/RFC8684, March
              2020, <https://www.rfc-editor.org/info/rfc8684>.

   [60]       Iyengar, J., Ed. and M. Thomson, Ed., "QUIC: A UDP-Based
              Multiplexed and Secure Transport", RFC 9000,
              DOI 10.17487/RFC9000, May 2021,
              <https://www.rfc-editor.org/info/rfc9000>.

   [61]       Fairhurst, G. and C. Perkins, "Considerations around
              Transport Header Confidentiality, Network Operations, and
              the Evolution of Internet Transport Protocols", RFC 9065,
              DOI 10.17487/RFC9065, July 2021,
              <https://www.rfc-editor.org/info/rfc9065>.

   [62]       IANA, "Transmission Control Protocol (TCP) Parameters",
              <https://www.iana.org/assignments/tcp-parameters/>.

   [63]       Gont, F., "Processing of IP Security/Compartment and
              Precedence Information by TCP", Work in Progress,
              Internet-Draft, draft-gont-tcpm-tcp-seccomp-prec-00, 29
              March 2012, <https://datatracker.ietf.org/doc/html/draft-
              gont-tcpm-tcp-seccomp-prec-00>.

   [64]       Gont, F. and D. Borman, "On the Validation of TCP Sequence
              Numbers", Work in Progress, Internet-Draft, draft-gont-
              tcpm-tcp-seq-validation-04, 11 March 2019,
              <https://datatracker.ietf.org/doc/html/draft-gont-tcpm-
              tcp-seq-validation-04>.

   [65]       Touch, J. and W. M. Eddy, "TCP Extended Data Offset
              Option", Work in Progress, Internet-Draft, draft-ietf-
              tcpm-tcp-edo-12, 15 April 2022,
              <https://datatracker.ietf.org/doc/html/draft-ietf-tcpm-
              tcp-edo-12>.

   [66]       McQuistin, S., Band, V., Jacob, D., and C. Perkins,
              "Describing Protocol Data Units with Augmented Packet
              Header Diagrams", Work in Progress, Internet-Draft, draft-
              mcquistin-augmented-ascii-diagrams-10, 7 March 2022,
              <https://datatracker.ietf.org/doc/html/draft-mcquistin-
              augmented-ascii-diagrams-10>.

   [67]       Thomson, M. and T. Pauly, "Long-Term Viability of Protocol
              Extension Mechanisms", RFC 9170, DOI 10.17487/RFC9170,
              December 2021, <https://www.rfc-editor.org/info/rfc9170>.

   [68]       Minshall, G., "A Suggested Modification to Nagle's
              Algorithm", Work in Progress, Internet-Draft, draft-
              minshall-nagle-01, 18 June 1999,
              <https://datatracker.ietf.org/doc/html/draft-minshall-
              nagle-01>.

   [69]       Dalal, Y. and C. Sunshine, "Connection Management in
              Transport Protocols", Computer Networks, Vol. 2, No. 6,
              pp. 454-473, DOI 10.1016/0376-5075(78)90053-3, December
              1978, <https://doi.org/10.1016/0376-5075(78)90053-3>.

   [70]       Faber, T., Touch, J., and W. Yui, "The TIME-WAIT state in
              TCP and Its Effect on Busy Servers", Proceedings of IEEE
              INFOCOM, pp. 1573-1583, DOI 10.1109/INFCOM.1999.752180,
              March 1999, <https://doi.org/10.1109/INFCOM.1999.752180>.

   [71]       Postel, J., "Comments on Action Items from the January
              Meeting", IEN 177, March 1981,
              <https://www.rfc-editor.org/ien/ien177.txt>.

   [72]       "Segmentation Offloads", The Linux Kernel Documentation,
              <https://www.kernel.org/doc/html/latest/networking/
              segmentation-offloads.html>.

   [73]       RFC Errata, Erratum ID 573, RFC 793,
              <https://www.rfc-editor.org/errata/eid573>.

   [74]       RFC Errata, Erratum ID 574, RFC 793,
              <https://www.rfc-editor.org/errata/eid574>.

   [75]       RFC Errata, Erratum ID 700, RFC 793,
              <https://www.rfc-editor.org/errata/eid700>.

   [76]       RFC Errata, Erratum ID 701, RFC 793,
              <https://www.rfc-editor.org/errata/eid701>.

   [77]       RFC Errata, Erratum ID 1283, RFC 793,
              <https://www.rfc-editor.org/errata/eid1283>.

   [78]       RFC Errata, Erratum ID 1561, RFC 793,
              <https://www.rfc-editor.org/errata/eid1561>.

   [79]       RFC Errata, Erratum ID 1562, RFC 793,
              <https://www.rfc-editor.org/errata/eid1562>.

   [80]       RFC Errata, Erratum ID 1564, RFC 793,
              <https://www.rfc-editor.org/errata/eid1564>.

   [81]       RFC Errata, Erratum ID 1571, RFC 793,
              <https://www.rfc-editor.org/errata/eid1571>.

   [82]       RFC Errata, Erratum ID 1572, RFC 793,
              <https://www.rfc-editor.org/errata/eid1572>.

   [83]       RFC Errata, Erratum ID 2297, RFC 793,
              <https://www.rfc-editor.org/errata/eid2297>.

   [84]       RFC Errata, Erratum ID 2298, RFC 793,
              <https://www.rfc-editor.org/errata/eid2298>.

   [85]       RFC Errata, Erratum ID 2748, RFC 793,
              <https://www.rfc-editor.org/errata/eid2748>.

   [86]       RFC Errata, Erratum ID 2749, RFC 793,
              <https://www.rfc-editor.org/errata/eid2749>.

   [87]       RFC Errata, Erratum ID 2934, RFC 793,
              <https://www.rfc-editor.org/errata/eid2934>.

   [88]       RFC Errata, Erratum ID 3213, RFC 793,
              <https://www.rfc-editor.org/errata/eid3213>.

   [89]       RFC Errata, Erratum ID 3300, RFC 793,
              <https://www.rfc-editor.org/errata/eid3300>.

   [90]       RFC Errata, Erratum ID 3301, RFC 793,
              <https://www.rfc-editor.org/errata/eid3301>.

   [91]       RFC Errata, Erratum ID 6222, RFC 793,
              <https://www.rfc-editor.org/errata/eid6222>.

   [92]       RFC Errata, Erratum ID 572, RFC 793,
              <https://www.rfc-editor.org/errata/eid572>.

   [93]       RFC Errata, Erratum ID 575, RFC 793,
              <https://www.rfc-editor.org/errata/eid575>.

   [94]       RFC Errata, Erratum ID 1565, RFC 793,
              <https://www.rfc-editor.org/errata/eid1565>.

   [95]       RFC Errata, Erratum ID 1569, RFC 793,
              <https://www.rfc-editor.org/errata/eid1569>.

   [96]       RFC Errata, Erratum ID 2296, RFC 793,
              <https://www.rfc-editor.org/errata/eid2296>.

   [97]       RFC Errata, Erratum ID 3305, RFC 793,
              <https://www.rfc-editor.org/errata/eid3305>.

   [98]       RFC Errata, Erratum ID 3602, RFC 793,
              <https://www.rfc-editor.org/errata/eid3602>.

   [99]       RFC Errata, Erratum ID 4772, RFC 5961,
              <https://www.rfc-editor.org/errata/eid4772>.

   [100]      Gont, F., "ICMP Attacks against TCP", RFC 5927,
              DOI 10.17487/RFC5927, July 2010,
              <https://www.rfc-editor.org/info/rfc5927>.

Appendix A.  Other Implementation Notes

   This section includes additional notes and references on TCP
   implementation decisions that are currently not a part of the RFC
   series or included within the TCP standard.  These items can be
   considered by implementers, but there was not yet a consensus to
   include them in the standard.

A.1.  IP Security Compartment and Precedence

   The IPv4 specification [1] includes a precedence value in the (now
   obsoleted) Type of Service (TOS) field.  It was modified in [20] and
   then obsoleted by the definition of Differentiated Services
   (Diffserv) [4].  Setting and conveying TOS between the network layer,
   TCP implementation, and applications is obsolete and is replaced by
   Diffserv in the current TCP specification.

   RFC 793 required checking the IP security compartment and precedence
   on incoming TCP segments for consistency within a connection and with
   application requests.  Each of these aspects of IP have become
   outdated, without specific updates to RFC 793.  The issues with
   precedence were fixed by [25], which is Standards Track, and so this
   present TCP specification includes those changes.  However, the state
   of IP security options that may be used by Multi-Level Secure (MLS)
   systems is not as apparent in the IETF currently.

   Resetting connections when incoming packets do not meet expected
   security compartment or precedence expectations has been recognized
   as a possible attack vector [63], and there has been discussion about
   amending the TCP specification to prevent connections from being
   aborted due to nonmatching IP security compartment and Diffserv
   codepoint values.

A.1.1.  Precedence

   In Diffserv, the former precedence values are treated as Class
   Selector codepoints, and methods for compatible treatment are
   described in the Diffserv architecture.  The RFC TCP specification
   defined by RFCs 793 and 1122 included logic intending to have
   connections use the highest precedence requested by either endpoint
   application, and to keep the precedence consistent throughout a
   connection.  This logic from the obsolete TOS is not applicable to
   Diffserv and should not be included in TCP implementations, though
   changes to Diffserv values within a connection are discouraged.  For
   discussion of this, see RFC 7657 (Sections 5.1, 5.3, and 6) [50].

   The obsoleted TOS processing rules in TCP assumed bidirectional (or
   symmetric) precedence values used on a connection, but the Diffserv
   architecture is asymmetric.  Problems with the old TCP logic in this
   regard were described in [25], and the solution described is to
   ignore IP precedence in TCP.  Since RFC 2873 is a Standards Track
   document (although not marked as updating RFC 793), current
   implementations are expected to be robust in these conditions.  Note
   that the Diffserv field value used in each direction is a part of the
   interface between TCP and the network layer, and values in use can be
   indicated both ways between TCP and the application.

A.1.2.  MLS Systems

   The IP Security Option (IPSO) and compartment defined in [1] was
   refined in RFC 1038, which was later obsoleted by RFC 1108.  The
   Commercial IP Security Option (CIPSO) is defined in FIPS-188
   (withdrawn by NIST in 2015) and is supported by some vendors and
   operating systems.  RFC 1108 is now Historic, though RFC 791 itself
   has not been updated to remove the IP Security Option.  For IPv6, a
   similar option (Common Architecture Label IPv6 Security Option
   (CALIPSO)) has been defined [36].  RFC 793 includes logic that
   includes the IP security/compartment information in treatment of TCP
   segments.  References to the IP "security/compartment" in this
   document may be relevant for Multi-Level Secure (MLS) system
   implementers but can be ignored for non-MLS implementations,
   consistent with running code on the Internet.  See Appendix A.1 for
   further discussion.  Note that RFC 5570 describes some MLS networking
   scenarios where IPSO, CIPSO, or CALIPSO may be used.  In these
   special cases, TCP implementers should see Section 7.3.1 of RFC 5570
   and follow the guidance in that document.

A.2.  Sequence Number Validation

   There are cases where the TCP sequence number validation rules can
   prevent ACK fields from being processed.  This can result in
   connection issues, as described in [64], which includes descriptions
   of potential problems in conditions of simultaneous open, self-
   connects, simultaneous close, and simultaneous window probes.  The
   document also describes potential changes to the TCP specification to
   mitigate the issue by expanding the acceptable sequence numbers.

   In Internet usage of TCP, these conditions rarely occur.  Common
   operating systems include different alternative mitigations, and the
   standard has not been updated yet to codify one of them, but
   implementers should consider the problems described in [64].

A.3.  Nagle Modification

   In common operating systems, both the Nagle algorithm and delayed
   acknowledgments are implemented and enabled by default.  TCP is used
   by many applications that have a request-response style of
   communication, where the combination of the Nagle algorithm and
   delayed acknowledgments can result in poor application performance.
   A modification to the Nagle algorithm is described in [68] that
   improves the situation for these applications.

   This modification is implemented in some common operating systems and
   does not impact TCP interoperability.  Additionally, many
   applications simply disable Nagle since this is generally supported
   by a socket option.  The TCP standard has not been updated to include
   this Nagle modification, but implementers may find it beneficial to
   consider.

A.4.  Low Watermark Settings

   Some operating system kernel TCP implementations include socket
   options that allow specifying the number of bytes in the buffer until
   the socket layer will pass sent data to TCP (SO_SNDLOWAT) or to the
   application on receiving (SO_RCVLOWAT).

   In addition, another socket option (TCP_NOTSENT_LOWAT) can be used to
   control the amount of unsent bytes in the write queue.  This can help
   a sending TCP application to avoid creating large amounts of buffered
   data (and corresponding latency).  As an example, this may be useful
   for applications that are multiplexing data from multiple upper-level
   streams onto a connection, especially when streams may be a mix of
   interactive/real-time and bulk data transfer.

Appendix B.  TCP Requirement Summary

   This section is adapted from RFC 1122.

   Note that there is no requirement related to PLPMTUD in this list,
   but that PLPMTUD is recommended.

    +=================+=========+======+========+=====+========+======+
    |     Feature     |  ReqID  | MUST | SHOULD | MAY | SHOULD | MUST |
    |                 |         |      |        |     |  NOT   | NOT  |
    +=================+=========+======+========+=====+========+======+
    | PUSH flag                                                       |
    +=================+=========+======+========+=====+========+======+
    | Aggregate or    | MAY-16  |      |        |  X  |        |      |
    | queue un-pushed |         |      |        |     |        |      |
    | data            |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Sender collapse | SHLD-27 |      |   X    |     |        |      |
    | successive PSH  |         |      |        |     |        |      |
    | bits            |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | SEND call can   | MAY-15  |      |        |  X  |        |      |
    | specify PUSH    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  If cannot:   | MUST-60 |      |        |     |        |  X   |
    |    sender       |         |      |        |     |        |      |
    |    buffer       |         |      |        |     |        |      |
    |    indefinitely |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  If cannot:   | MUST-61 |  X   |        |     |        |      |
    |    PSH last     |         |      |        |     |        |      |
    |    segment      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Notify          | MAY-17  |      |        |  X  |        |      |
    | receiving ALP^1 |         |      |        |     |        |      |
    | of PSH          |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Send max size   | SHLD-28 |      |   X    |     |        |      |
    | segment when    |         |      |        |     |        |      |
    | possible        |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Window                                                          |
    +=================+=========+======+========+=====+========+======+
    | Treat as        | MUST-1  |  X   |        |     |        |      |
    | unsigned number |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Handle as       | REC-1   |      |   X    |     |        |      |
    | 32-bit number   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Shrink window   | SHLD-14 |      |        |     |   X    |      |
    | from right      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Send new     | SHLD-15 |      |        |     |   X    |      |
    |    data when    |         |      |        |     |        |      |
    |    window       |         |      |        |     |        |      |
    |    shrinks      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Retransmit   | SHLD-16 |      |   X    |     |        |      |
    |    old unacked  |         |      |        |     |        |      |
    |    data within  |         |      |        |     |        |      |
    |    window       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Time out     | SHLD-17 |      |        |     |   X    |      |
    |    conn for     |         |      |        |     |        |      |
    |    data past    |         |      |        |     |        |      |
    |    right edge   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Robust against  | MUST-34 |  X   |        |     |        |      |
    | shrinking       |         |      |        |     |        |      |
    | window          |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Receiver's      | MAY-8   |      |        |  X  |        |      |
    | window closed   |         |      |        |     |        |      |
    | indefinitely    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Use standard    | MUST-35 |  X   |        |     |        |      |
    | probing logic   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Sender probe    | MUST-36 |  X   |        |     |        |      |
    | zero window     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  First probe  | SHLD-29 |      |   X    |     |        |      |
    |    after RTO    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Exponential  | SHLD-30 |      |   X    |     |        |      |
    |    backoff      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Allow window    | MUST-37 |  X   |        |     |        |      |
    | stay zero       |         |      |        |     |        |      |
    | indefinitely    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Retransmit old  | MAY-7   |      |        |  X  |        |      |
    | data beyond     |         |      |        |     |        |      |
    | SND.UNA+SND.WND |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Process RST and | MUST-66 |  X   |        |     |        |      |
    | URG even with   |         |      |        |     |        |      |
    | zero window     |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Urgent Data                                                     |
    +=================+=========+======+========+=====+========+======+
    | Include support | MUST-30 |  X   |        |     |        |      |
    | for urgent      |         |      |        |     |        |      |
    | pointer         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Pointer         | MUST-62 |  X   |        |     |        |      |
    | indicates first |         |      |        |     |        |      |
    | non-urgent      |         |      |        |     |        |      |
    | octet           |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Arbitrary       | MUST-31 |  X   |        |     |        |      |
    | length urgent   |         |      |        |     |        |      |
    | data sequence   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Inform ALP^1    | MUST-32 |  X   |        |     |        |      |
    | asynchronously  |         |      |        |     |        |      |
    | of urgent data  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP^1 can learn | MUST-33 |  X   |        |     |        |      |
    | if/how much     |         |      |        |     |        |      |
    | urgent data Q'd |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP employ the  | SHLD-13 |      |        |     |   X    |      |
    | urgent          |         |      |        |     |        |      |
    | mechanism       |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | TCP Options                                                     |
    +=================+=========+======+========+=====+========+======+
    | Support the     | MUST-4  |  X   |        |     |        |      |
    | mandatory       |         |      |        |     |        |      |
    | option set      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Receive TCP     | MUST-5  |  X   |        |     |        |      |
    | Option in any   |         |      |        |     |        |      |
    | segment         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Ignore          | MUST-6  |  X   |        |     |        |      |
    | unsupported     |         |      |        |     |        |      |
    | options         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Include length  | MUST-68 |  X   |        |     |        |      |
    | for all options |         |      |        |     |        |      |
    | except EOL+NOP  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Cope with       | MUST-7  |  X   |        |     |        |      |
    | illegal option  |         |      |        |     |        |      |
    | length          |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Process options | MUST-64 |  X   |        |     |        |      |
    | regardless of   |         |      |        |     |        |      |
    | word alignment  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Implement       | MUST-14 |  X   |        |     |        |      |
    | sending &       |         |      |        |     |        |      |
    | receiving MSS   |         |      |        |     |        |      |
    | Option          |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | IPv4 Send MSS   | SHLD-5  |      |   X    |     |        |      |
    | Option unless   |         |      |        |     |        |      |
    | 536             |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | IPv6 Send MSS   | SHLD-5  |      |   X    |     |        |      |
    | Option unless   |         |      |        |     |        |      |
    | 1220            |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Send MSS Option | MAY-3   |      |        |  X  |        |      |
    | always          |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | IPv4 Send-MSS   | MUST-15 |  X   |        |     |        |      |
    | default is 536  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | IPv6 Send-MSS   | MUST-15 |  X   |        |     |        |      |
    | default is 1220 |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Calculate       | MUST-16 |  X   |        |     |        |      |
    | effective send  |         |      |        |     |        |      |
    | seg size        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | MSS accounts    | SHLD-6  |      |   X    |     |        |      |
    | for varying MTU |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | MSS not sent on | MUST-65 |      |        |     |        |  X   |
    | non-SYN         |         |      |        |     |        |      |
    | segments        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | MSS value based | MUST-67 |  X   |        |     |        |      |
    | on MMS_R        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Pad with zero   | MUST-69 |  X   |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | TCP Checksums                                                   |
    +=================+=========+======+========+=====+========+======+
    | Sender compute  | MUST-2  |  X   |        |     |        |      |
    | checksum        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Receiver check  | MUST-3  |  X   |        |     |        |      |
    | checksum        |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | ISN Selection                                                   |
    +=================+=========+======+========+=====+========+======+
    | Include a       | MUST-8  |  X   |        |     |        |      |
    | clock-driven    |         |      |        |     |        |      |
    | ISN generator   |         |      |        |     |        |      |
    | component       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Secure ISN      | SHLD-1  |      |   X    |     |        |      |
    | generator with  |         |      |        |     |        |      |
    | a PRF component |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | PRF computable  | MUST-9  |      |        |     |        |  X   |
    | from outside    |         |      |        |     |        |      |
    | the host        |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Opening Connections                                             |
    +=================+=========+======+========+=====+========+======+
    | Support         | MUST-10 |  X   |        |     |        |      |
    | simultaneous    |         |      |        |     |        |      |
    | open attempts   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | SYN-RECEIVED    | MUST-11 |  X   |        |     |        |      |
    | remembers last  |         |      |        |     |        |      |
    | state           |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Passive OPEN    | MUST-41 |      |        |     |        |  X   |
    | call interfere  |         |      |        |     |        |      |
    | with others     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Function:       | MUST-42 |  X   |        |     |        |      |
    | simultaneously  |         |      |        |     |        |      |
    | LISTENs for     |         |      |        |     |        |      |
    | same port       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Ask IP for src  | MUST-44 |  X   |        |     |        |      |
    | address for SYN |         |      |        |     |        |      |
    | if necessary    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Otherwise,   | MUST-45 |  X   |        |     |        |      |
    |    use local    |         |      |        |     |        |      |
    |    addr of      |         |      |        |     |        |      |
    |    connection   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | OPEN to         | MUST-46 |      |        |     |        |  X   |
    | broadcast/      |         |      |        |     |        |      |
    | multicast IP    |         |      |        |     |        |      |
    | address         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Silently        | MUST-57 |  X   |        |     |        |      |
    | discard seg to  |         |      |        |     |        |      |
    | bcast/mcast     |         |      |        |     |        |      |
    | addr            |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Closing Connections                                             |
    +=================+=========+======+========+=====+========+======+
    | RST can contain | SHLD-2  |      |   X    |     |        |      |
    | data            |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Inform          | MUST-12 |  X   |        |     |        |      |
    | application of  |         |      |        |     |        |      |
    | aborted conn    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Half-duplex     | MAY-1   |      |        |  X  |        |      |
    | close           |         |      |        |     |        |      |
    | connections     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Send RST to  | SHLD-3  |      |   X    |     |        |      |
    |    indicate     |         |      |        |     |        |      |
    |    data lost    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | In TIME-WAIT    | MUST-13 |  X   |        |     |        |      |
    | state for 2MSL  |         |      |        |     |        |      |
    | seconds         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Accept SYN   | MAY-2   |      |        |  X  |        |      |
    |    from TIME-   |         |      |        |     |        |      |
    |    WAIT state   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Use          | SHLD-4  |      |   X    |     |        |      |
    |    Timestamps   |         |      |        |     |        |      |
    |    to reduce    |         |      |        |     |        |      |
    |    TIME-WAIT    |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Retransmissions                                                 |
    +=================+=========+======+========+=====+========+======+
    | Implement       | MUST-19 |  X   |        |     |        |      |
    | exponential     |         |      |        |     |        |      |
    | backoff, slow   |         |      |        |     |        |      |
    | start, and      |         |      |        |     |        |      |
    | congestion      |         |      |        |     |        |      |
    | avoidance       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Retransmit with | MAY-4   |      |        |  X  |        |      |
    | same IP         |         |      |        |     |        |      |
    | identity        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Karn's          | MUST-18 |  X   |        |     |        |      |
    | algorithm       |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Generating ACKs                                                 |
    +=================+=========+======+========+=====+========+======+
    | Aggregate       | MUST-58 |  X   |        |     |        |      |
    | whenever        |         |      |        |     |        |      |
    | possible        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Queue out-of-   | SHLD-31 |      |   X    |     |        |      |
    | order segments  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Process all Q'd | MUST-59 |  X   |        |     |        |      |
    | before send ACK |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Send ACK for    | MAY-13  |      |        |  X  |        |      |
    | out-of-order    |         |      |        |     |        |      |
    | segment         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Delayed ACKs    | SHLD-18 |      |   X    |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Delay < 0.5  | MUST-40 |  X   |        |     |        |      |
    |    seconds      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Every 2nd    | SHLD-19 |      |   X    |     |        |      |
    |    full-sized   |         |      |        |     |        |      |
    |    segment or   |         |      |        |     |        |      |
    |    2*RMSS ACK'd |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Receiver SWS-   | MUST-39 |  X   |        |     |        |      |
    | Avoidance       |         |      |        |     |        |      |
    | Algorithm       |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Sending Data                                                    |
    +=================+=========+======+========+=====+========+======+
    | Configurable    | MUST-49 |  X   |        |     |        |      |
    | TTL             |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Sender SWS-     | MUST-38 |  X   |        |     |        |      |
    | Avoidance       |         |      |        |     |        |      |
    | Algorithm       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Nagle algorithm | SHLD-7  |      |   X    |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Application  | MUST-17 |  X   |        |     |        |      |
    |    can disable  |         |      |        |     |        |      |
    |    Nagle        |         |      |        |     |        |      |
    |    algorithm    |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Connection Failures                                             |
    +=================+=========+======+========+=====+========+======+
    | Negative advice | MUST-20 |  X   |        |     |        |      |
    | to IP on R1     |         |      |        |     |        |      |
    | retransmissions |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Close           | MUST-20 |  X   |        |     |        |      |
    | connection on   |         |      |        |     |        |      |
    | R2              |         |      |        |     |        |      |
    | retransmissions |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP^1 can set   | MUST-21 |  X   |        |     |        |      |
    | R2              |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Inform ALP of   | SHLD-9  |      |   X    |     |        |      |
    | R1<=retxs<R2    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Recommended     | SHLD-10 |      |   X    |     |        |      |
    | value for R1    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Recommended     | SHLD-11 |      |   X    |     |        |      |
    | value for R2    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Same mechanism  | MUST-22 |  X   |        |     |        |      |
    | for SYNs        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  R2 at least  | MUST-23 |  X   |        |     |        |      |
    |    3 minutes    |         |      |        |     |        |      |
    |    for SYN      |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Send Keep-alive Packets                                         |
    +=================+=========+======+========+=====+========+======+
    | Send Keep-alive | MAY-5   |      |   X    |     |        |      |
    | Packets:        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Application  | MUST-24 |  X   |        |     |        |      |
    |    can request  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Default is   | MUST-25 |  X   |        |     |        |      |
    |    "off"        |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Only send if | MUST-26 |  X   |        |     |        |      |
    |    idle for     |         |      |        |     |        |      |
    |    interval     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Interval     | MUST-27 |  X   |        |     |        |      |
    |    configurable |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Default at   | MUST-28 |  X   |        |     |        |      |
    |    least 2 hrs. |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Tolerant of  | MUST-29 |  X   |        |     |        |      |
    |    lost ACKs    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Send with no | SHLD-12 |      |   X    |     |        |      |
    |    data         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Configurable | MAY-6   |      |        |  X  |        |      |
    |    to send      |         |      |        |     |        |      |
    |    garbage      |         |      |        |     |        |      |
    |    octet        |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | IP Options                                                      |
    +=================+=========+======+========+=====+========+======+
    | Ignore options  | MUST-50 |  X   |        |     |        |      |
    | TCP doesn't     |         |      |        |     |        |      |
    | understand      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Timestamp       | MAY-10  |      |   X    |     |        |      |
    | support         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Record Route    | MAY-11  |      |   X    |     |        |      |
    | support         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Source Route:   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  ALP^1 can    | MUST-51 |  X   |        |     |        |      |
    |    specify      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *     Overrides | MUST-52 |  X   |        |     |        |      |
    |       src route |         |      |        |     |        |      |
    |       in        |         |      |        |     |        |      |
    |       datagram  |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Build return | MUST-53 |  X   |        |     |        |      |
    |    route from   |         |      |        |     |        |      |
    |    src route    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Later src    | SHLD-24 |      |   X    |     |        |      |
    |    route        |         |      |        |     |        |      |
    |    overrides    |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Receiving ICMP Messages from IP                                 |
    +=================+=========+======+========+=====+========+======+
    | Receiving ICMP  | MUST-54 |  X   |        |     |        |      |
    | messages from   |         |      |        |     |        |      |
    | IP              |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Dest Unreach | SHLD-25 |  X   |        |     |        |      |
    |    (0,1,5) =>   |         |      |        |     |        |      |
    |    inform ALP   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Abort on     | MUST-56 |      |        |     |        |  X   |
    |    Dest Unreach |         |      |        |     |        |      |
    |    (0,1,5)      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Dest Unreach | SHLD-26 |      |   X    |     |        |      |
    |    (2-4) =>     |         |      |        |     |        |      |
    |    abort conn   |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Source       | MUST-55 |  X   |        |     |        |      |
    |    Quench =>    |         |      |        |     |        |      |
    |    silent       |         |      |        |     |        |      |
    |    discard      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Abort on     | MUST-56 |      |        |     |        |  X   |
    |    Time         |         |      |        |     |        |      |
    |    Exceeded     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Abort on     | MUST-56 |      |        |     |        |  X   |
    |    Param        |         |      |        |     |        |      |
    |    Problem      |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Address Validation                                              |
    +=================+=========+======+========+=====+========+======+
    | Reject OPEN     | MUST-46 |  X   |        |     |        |      |
    | call to invalid |         |      |        |     |        |      |
    | IP address      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Reject SYN from | MUST-63 |  X   |        |     |        |      |
    | invalid IP      |         |      |        |     |        |      |
    | address         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Silently        | MUST-57 |  X   |        |     |        |      |
    | discard SYN to  |         |      |        |     |        |      |
    | bcast/mcast     |         |      |        |     |        |      |
    | addr            |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | TCP/ALP Interface Services                                      |
    +=================+=========+======+========+=====+========+======+
    | Error Report    | MUST-47 |  X   |        |     |        |      |
    | mechanism       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP can disable | SHLD-20 |      |   X    |     |        |      |
    | Error Report    |         |      |        |     |        |      |
    | Routine         |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP can specify | MUST-48 |  X   |        |     |        |      |
    | Diffserv field  |         |      |        |     |        |      |
    | for sending     |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | *  Passed       | SHLD-22 |      |   X    |     |        |      |
    |    unchanged to |         |      |        |     |        |      |
    |    IP           |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP can change  | SHLD-21 |      |   X    |     |        |      |
    | Diffserv field  |         |      |        |     |        |      |
    | during          |         |      |        |     |        |      |
    | connection      |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | ALP generally   | SHLD-23 |      |        |     |   X    |      |
    | changing        |         |      |        |     |        |      |
    | Diffserv during |         |      |        |     |        |      |
    | conn.           |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Pass received   | MAY-9   |      |        |  X  |        |      |
    | Diffserv field  |         |      |        |     |        |      |
    | up to ALP       |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | FLUSH call      | MAY-14  |      |        |  X  |        |      |
    +-----------------+---------+------+--------+-----+--------+------+
    | Optional local  | MUST-43 |  X   |        |     |        |      |
    | IP addr param   |         |      |        |     |        |      |
    | in OPEN         |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | RFC 5961 Support                                                |
    +=================+=========+======+========+=====+========+======+
    | Implement data  | MAY-12  |      |        |  X  |        |      |
    | injection       |         |      |        |     |        |      |
    | protection      |         |      |        |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Explicit Congestion Notification                                |
    +=================+=========+======+========+=====+========+======+
    | Support ECN     | SHLD-8  |      |   X    |     |        |      |
    +=================+=========+======+========+=====+========+======+
    | Alternative Congestion Control                                  |
    +=================+=========+======+========+=====+========+======+
    | Implement       | MAY-18  |      |        |  X  |        |      |
    | alternative     |         |      |        |     |        |      |
    | conformant      |         |      |        |     |        |      |
    | algorithm(s)    |         |      |        |     |        |      |
    +-----------------+---------+------+--------+-----+--------+------+

                     Table 8: TCP Requirements Summary

   FOOTNOTES: (1) "ALP" means Application-Layer Program.

Acknowledgments

   This document is largely a revision of RFC 793, of which Jon Postel
   was the editor.  Due to his excellent work, it was able to last for
   three decades before we felt the need to revise it.

   Andre Oppermann was a contributor and helped to edit the first
   revision of this document.

   We are thankful for the assistance of the IETF TCPM working group
   chairs over the course of work on this document:

   Michael Scharf


   Yoshifumi Nishida


   Pasi Sarolahti


   Michael Tüxen


   During the discussions of this work on the TCPM mailing list, in
   working group meetings, and via area reviews, helpful comments,
   critiques, and reviews were received from (listed alphabetically by
   last name): Praveen Balasubramanian, David Borman, Mohamed Boucadair,
   Bob Briscoe, Neal Cardwell, Yuchung Cheng, Martin Duke, Francis
   Dupont, Ted Faber, Gorry Fairhurst, Fernando Gont, Rodney Grimes, Yi
   Huang, Rahul Jadhav, Markku Kojo, Mike Kosek, Juhamatti Kuusisaari,
   Kevin Lahey, Kevin Mason, Matt Mathis, Stephen McQuistin, Jonathan
   Morton, Matt Olson, Tommy Pauly, Tom Petch, Hagen Paul Pfeifer, Kyle
   Rose, Anthony Sabatini, Michael Scharf, Greg Skinner, Joe Touch,
   Michael Tüxen, Reji Varghese, Bernie Volz, Tim Wicinski, Lloyd Wood,
   and Alex Zimmermann.

   Joe Touch provided additional help in clarifying the description of
   segment size parameters and PMTUD/PLPMTUD recommendations.  Markku
   Kojo helped put together the text in the section on TCP Congestion
   Control.

   This document includes content from errata that were reported by
   (listed chronologically): Yin Shuming, Bob Braden, Morris M. Keesan,
   Pei-chun Cheng, Constantin Hagemeier, Vishwas Manral, Mykyta
   Yevstifeyev, EungJun Yi, Botong Huang, Charles Deng, Merlin Buge.

Author's Address

   Wesley M. Eddy (editor)
   MTI Systems
   United States of America
   Email: wes@mti-systems.com