File: rfc8867.html

package info (click to toggle)
doc-rfc 20230121-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, forky, sid, trixie
  • size: 1,609,944 kB
file content (4034 lines) | stat: -rw-r--r-- 203,298 bytes parent folder | download
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
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8867: Test Cases for Evaluating Congestion Control for Interactive Real-Time Media</title>
<meta content="Zaheduzzaman Sarker" name="author">
<meta content="Varun Singh" name="author">
<meta content="Xiaoqing Zhu" name="author">
<meta content="Michael A. Ramalho" name="author">
<meta content="
       The Real-time Transport Protocol (RTP) is used to transmit media in
      multimedia telephony applications. These applications are typically
      required to implement congestion control. This document describes the
      test cases to be used in the performance evaluation of such congestion
      control algorithms in a controlled environment. 
    " name="description">
<meta content="xml2rfc 3.5.0" name="generator">
<meta content="Multimedia" name="keyword">
<meta content="Test cases" name="keyword">
<meta content="Congestion Control" name="keyword">
<meta content="8867" name="rfc.number">
<!-- Generator version information:
  xml2rfc 3.5.0
    Python 3.6.10
    appdirs 1.4.4
    ConfigArgParse 1.2.3
    google-i18n-address 2.3.5
    html5lib 1.0.1
    intervaltree 3.0.2
    Jinja2 2.11.2
    kitchen 1.2.6
    lxml 4.4.2
    pycairo 1.19.0
    pycountry 19.8.18
    pyflakes 2.1.1
    PyYAML 5.3.1
    requests 2.22.0
    setuptools 40.6.2
    six 1.14.0
    WeasyPrint 51
-->
<link href="rfc8867.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*

  NOTE: Changes at the bottom of this file overrides some earlier settings.

  Once the style has stabilized and has been adopted as an official RFC style,
  this can be consolidated so that style settings occur only in one place, but
  for now the contents of this file consists first of the initial CSS work as
  provided to the RFC Formatter (xml2rfc) work, followed by itemized and
  commented changes found necssary during the development of the v3
  formatters.

*/

/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */

@viewport {
  zoom: 1.0;
  width: extend-to-zoom;
}
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
  max-width: 90%;
  margin: 1.5em auto;
  color: #222;
  background-color: #fff;
  font-size: 14px;
  font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}
.ears {
  display: none;
}

/* headings */
#title, h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.5em;
  font-weight: bold;
  line-height: 1.3;
}
#title {
  clear: both;
  border-bottom: 1px solid #ddd;
  margin: 0 0 0.5em 0;
  padding: 1em 0 0.5em;
}
.author {
  padding-bottom: 4px;
}
h1 {
  font-size: 26px;
  margin: 1em 0;
}
h2 {
  font-size: 22px;
  margin-top: -20px;  /* provide offset for in-page anchors */
  padding-top: 33px;
}
h3 {
  font-size: 18px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h4 {
  font-size: 16px;
  margin-top: -36px;  /* provide offset for in-page anchors */
  padding-top: 42px;
}
h5, h6 {
  font-size: 14px;
}
#n-copyright-notice {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
/* general structure */
p {
  padding: 0;
  margin: 0 0 1em 0;
  text-align: left;
}
div, span {
  position: relative;
}
div {
  margin: 0;
}
.alignRight.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignRight.art-text pre {
  padding: 0;
}
.alignRight {
  margin: 1em 0;
}
.alignRight > *:first-child {
  border: none;
  margin: 0;
  float: right;
  clear: both;
}
.alignRight > *:nth-child(2) {
  clear: both;
  display: block;
  border: none;
}
svg {
  display: block;
}
.alignCenter.art-text {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
  padding: 0;
}
.alignCenter {
  margin: 1em 0;
}
.alignCenter > *:first-child {
  border: none;
  /* this isn't optimal, but it's an existence proof.  PrinceXML doesn't
     support flexbox yet.
  */
  display: table;
  margin: 0 auto;
}

/* lists */
ol, ul {
  padding: 0;
  margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
  margin-left: 1em;
}
li {
  margin: 0 0 0.25em 0;
}
.ulCompact li {
  margin: 0;
}
ul.empty, .ulEmpty {
  list-style-type: none;
}
ul.empty li, .ulEmpty li {
  margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
  line-height: 100%;
  margin: 0 0 0 2em;
}

/* definition lists */
dl {
}
dl > dt {
  float: left;
  margin-right: 1em;
}
/* 
dl.nohang > dt {
  float: none;
}
*/
dl > dd {
  margin-bottom: .8em;
  min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
  margin-bottom: 0em;
}
dl > dd > dl {
  margin-top: 0.5em;
  margin-bottom: 0em;
}

/* links */
a {
  text-decoration: none;
}
a[href] {
  color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
  background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
  color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
  background-color: transparent;
  cursor: default;
} */

/* Figures */
tt, code, pre, code {
  background-color: #f9f9f9;
  font-family: 'Roboto Mono', monospace;
}
pre {
  border: 1px solid #eee;
  margin: 0;
  padding: 1em;
}
img {
  max-width: 100%;
}
figure {
  margin: 0;
}
figure blockquote {
  margin: 0.8em 0.4em 0.4em;
}
figcaption {
  font-style: italic;
  margin: 0 0 1em 0;
}
@media screen {
  pre {
    overflow-x: auto;
    max-width: 100%;
    max-width: calc(100% - 22px);
  }
}

/* aside, blockquote */
aside, blockquote {
  margin-left: 0;
  padding: 1.2em 2em;
}
blockquote {
  background-color: #f9f9f9;
  color: #111; /* Arlen: WCAG 2019 */
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 1em 0;
}
cite {
  display: block;
  text-align: right;
  font-style: italic;
}

/* tables */
table {
  width: 100%;
  margin: 0 0 1em;
  border-collapse: collapse;
  border: 1px solid #eee;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 0.5em 0.75em;
}
th {
  text-align: left;
  background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
  background-color: #f5f5f5;
}
table caption {
  font-style: italic;
  margin: 0;
  padding: 0;
  text-align: left;
}
table p {
  /* XXX to avoid bottom margin on table row signifiers. If paragraphs should
     be allowed within tables more generally, it would be far better to select on a class. */
  margin: 0;
}

/* pilcrow */
a.pilcrow {
  color: #666; /* Arlen: AHDJ 2019 */
  text-decoration: none;
  visibility: hidden;
  user-select: none;
  -ms-user-select: none;
  -o-user-select:none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
@media screen {
  aside:hover > a.pilcrow,
  p:hover > a.pilcrow,
  blockquote:hover > a.pilcrow,
  div:hover > a.pilcrow,
  li:hover > a.pilcrow,
  pre:hover > a.pilcrow {
    visibility: visible;
  }
  a.pilcrow:hover {
    background-color: transparent;
  }
}

/* misc */
hr {
  border: 0;
  border-top: 1px solid #eee;
}
.bcp14 {
  font-variant: small-caps;
}

.role {
  font-variant: all-small-caps;
}

/* info block */
#identifiers {
  margin: 0;
  font-size: 0.9em;
}
#identifiers dt {
  width: 3em;
  clear: left;
}
#identifiers dd {
  float: left;
  margin-bottom: 0;
}
#identifiers .authors .author {
  display: inline-block;
  margin-right: 1.5em;
}
#identifiers .authors .org {
  font-style: italic;
}

/* The prepared/rendered info at the very bottom of the page */
.docInfo {
  color: #666; /* Arlen: WCAG 2019 */
  font-size: 0.9em;
  font-style: italic;
  margin-top: 2em;
}
.docInfo .prepared {
  float: left;
}
.docInfo .prepared {
  float: right;
}

/* table of contents */
#toc  {
  padding: 0.75em 0 2em 0;
  margin-bottom: 1em;
}
nav.toc ul {
  margin: 0 0.5em 0 0;
  padding: 0;
  list-style: none;
}
nav.toc li {
  line-height: 1.3em;
  margin: 0.75em 0;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
/* references */
.references dt {
  text-align: right;
  font-weight: bold;
  min-width: 7em;
}
.references dd {
  margin-left: 8em;
  overflow: auto;
}

.refInstance {
  margin-bottom: 1.25em;
}

.references .ascii {
  margin-bottom: 0.25em;
}

/* index */
.index ul {
  margin: 0 0 0 1em;
  padding: 0;
  list-style: none;
}
.index ul ul {
  margin: 0;
}
.index li {
  margin: 0;
  text-indent: -2em;
  padding-left: 2em;
  padding-bottom: 5px;
}
.indexIndex {
  margin: 0.5em 0 1em;
}
.index a {
  font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
  .index ul {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
  }
  .index ul ul {
    -moz-column-count: 1;
    -moz-column-gap: 0;
  }
}

/* authors */
address.vcard {
  font-style: normal;
  margin: 1em 0;
}

address.vcard .nameRole {
  font-weight: 700;
  margin-left: 0;
}
address.vcard .label {
  font-family: "Noto Sans",Arial,Helvetica,sans-serif;
  margin: 0.5em 0;
}
address.vcard .type {
  display: none;
}
.alternative-contact {
  margin: 1.5em 0 1em;
}
hr.addr {
  border-top: 1px dashed;
  margin: 0;
  color: #ddd;
  max-width: calc(100% - 16px);
}

/* temporary notes */
.rfcEditorRemove::before {
  position: absolute;
  top: 0.2em;
  right: 0.2em;
  padding: 0.2em;
  content: "The RFC Editor will remove this note";
  color: #9e2a00; /* Arlen: WCAG 2019 */
  background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
  position: relative;
  padding-top: 1.8em;
  background-color: #ffd; /* Arlen: WCAG 2019 */
  border-radius: 3px;
}
.cref {
  background-color: #ffd; /* Arlen: WCAG 2019 */
  padding: 2px 4px;
}
.crefSource {
  font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
  body {
    padding-top: 2em;
  }
  #title {
    padding: 1em 0;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
    margin-top: -18px;  /* provide offset for in-page anchors */
    padding-top: 38px;
  }
  #identifiers dd {
    max-width: 60%;
  }
  #toc {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
    background-color: inherit;
    border-bottom: 1px solid #ccc;
  }
  #toc h2 {
    margin: -1px 0 0 0;
    padding: 4px 0 4px 6px;
    padding-right: 1em;
    min-width: 190px;
    font-size: 1.1em;
    text-align: right;
    background-color: #444;
    color: white;
    cursor: pointer;
  }
  #toc h2::before { /* css hamburger */
    float: right;
    position: relative;
    width: 1em;
    height: 1px;
    left: -164px;
    margin: 6px 0 0 0;
    background: white none repeat scroll 0 0;
    box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
    content: "";
  }
  #toc nav {
    display: none;
    padding: 0.5em 1em 1em;
    overflow: auto;
    height: calc(100vh - 48px);
    border-left: 1px solid #ddd;
  }
}

/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
  body {
    max-width: 724px;
    margin: 42px auto;
    padding-left: 1.5em;
    padding-right: 29em;
  }
  #toc {
    position: fixed;
    top: 42px;
    right: 42px;
    width: 25%;
    margin: 0;
    padding: 0 1em;
    z-index: 1;
  }
  #toc h2 {
    border-top: none;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
    font-weight: normal;
    margin: 0;
    padding: 0.25em 1em 1em 0;
  }
  #toc nav {
    display: block;
    height: calc(90vh - 84px);
    bottom: 0;
    padding: 0.5em 0 0;
    overflow: auto;
  }
  img { /* future proofing */
    max-width: 100%;
    height: auto;
  }
}

/* pagination */
@media print {
  body {

    width: 100%;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  #n-copyright-notice {
    border-bottom: none;
  }
  #toc, #n-introduction {
    page-break-before: always;
  }
  #toc {
    border-top: none;
    padding-top: 0;
  }
  figure, pre {
    page-break-inside: avoid;
  }
  figure {
    overflow: scroll;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  h2+*, h3+*, h4+*, h5+*, h6+* {
    page-break-before: avoid;
  }
  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 10pt;
  }
  table {
    border: 1px solid #ddd;
  }
  td {
    border-top: 1px solid #ddd;
  }
}

/* This is commented out here, as the string-set: doesn't
   pass W3C validation currently */
/*
.ears thead .left {
  string-set: ears-top-left content();
}

.ears thead .center {
  string-set: ears-top-center content();
}

.ears thead .right {
  string-set: ears-top-right content();
}

.ears tfoot .left {
  string-set: ears-bottom-left content();
}

.ears tfoot .center {
  string-set: ears-bottom-center content();
}

.ears tfoot .right {
  string-set: ears-bottom-right content();
}
*/

@page :first {
  padding-top: 0;
  @top-left {
    content: normal;
    border: none;
  }
  @top-center {
    content: normal;
    border: none;
  }
  @top-right {
    content: normal;
    border: none;
  }
}

@page {
  size: A4;
  margin-bottom: 45mm;
  padding-top: 20px;
  /* The follwing is commented out here, but set appropriately by in code, as
     the content depends on the document */
  /*
  @top-left {
    content: 'Internet-Draft';
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-left {
    content: string(ears-top-left);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-center {
    content: string(ears-top-center);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @top-right {
    content: string(ears-top-right);
    vertical-align: bottom;
    border-bottom: solid 1px #ccc;
  }
  @bottom-left {
    content: string(ears-bottom-left);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-center {
    content: string(ears-bottom-center);
    vertical-align: top;
    border-top: solid 1px #ccc;
  }
  @bottom-right {
      content: '[Page ' counter(page) ']';
      vertical-align: top;
      border-top: solid 1px #ccc;
  }
  */

}

/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
  z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
  clear: both;
}


/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
  vertical-align: top;
}

/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
  width: 8em;
}

/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
  margin-left: 1em;
}

/* Give floating toc a background color (needed when it's a div inside section */
#toc {
  background-color: white;
}

/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
  #toc h2 a,
  #toc h2 a:link,
  #toc h2 a:focus,
  #toc h2 a:hover,
  #toc a.toplink,
  #toc a.toplink:hover {
    color: white;
    background-color: #444;
    text-decoration: none;
  }
}

/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
  #toc {
    padding: 0 0 1em 1em;
  }
}

/* Style section numbers with more space between number and title */
.section-number {
  padding-right: 0.5em;
}

/* prevent monospace from becoming overly large */
tt, code, pre, code {
  font-size: 95%;
}

/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
  line-height: 1.12;
}


/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
  float: right;
  margin-right: 0.5em;
}

/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
  float: left;
  margin-right: 1em;
}
dl.dlNewline > dt {
  float: none;
}

/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
  text-align: left;
}
table td.text-center,
table th.text-center {
  text-align: center;
}
table td.text-right,
table th.text-right {
  text-align: right;
}

/* Make the alternative author contact informatio look less like just another
   author, and group it closer with the primary author contact information */
.alternative-contact {
  margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
  margin: 0 0 0 2em;
}

/* With it being possible to set tables with alignment
  left, center, and right, { width: 100%; } does not make sense */
table {
  width: auto;
}

/* Avoid reference text that sits in a block with very wide left margin,
   because of a long floating dt label.*/
.references dd {
  overflow: visible;
}

/* Control caption placement */
caption {
  caption-side: bottom;
}

/* Limit the width of the author address vcard, so names in right-to-left
   script don't end up on the other side of the page. */

address.vcard {
  max-width: 30em;
  margin-right: auto;
}

/* For address alignment dependent on LTR or RTL scripts */
address div.left {
  text-align: left;
}
address div.right {
  text-align: right;
}

/* Provide table alignment support.  We can't use the alignX classes above
   since they do unwanted things with caption and other styling. */
table.right {
 margin-left: auto;
 margin-right: 0;
}
table.center {
 margin-left: auto;
 margin-right: auto;
}
table.left {
 margin-left: 0;
 margin-right: auto;
}

/* Give the table caption label the same styling as the figcaption */
caption a[href] {
  color: #222;
}

@media print {
  .toplink {
    display: none;
  }

  /* avoid overwriting the top border line with the ToC header */
  #toc {
    padding-top: 1px;
  }

  /* Avoid page breaks inside dl and author address entries */
  .vcard {
    page-break-inside: avoid;
  }

}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
  font-variant: small-caps;
  font-weight: bold;
  font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
 h2 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 31px;
 }
 h3 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
 h4 {
  margin-top: -18px;  /* provide offset for in-page anchors */
  padding-top: 24px;
 }
/* Float artwork pilcrow to the right */
@media screen {
  .artwork a.pilcrow {
    display: block;
    line-height: 0.7;
    margin-top: 0.15em;
  }
}
/* Make pilcrows on dd visible */
@media screen {
  dd:hover > a.pilcrow {
    visibility: visible;
  }
}
/* Make the placement of figcaption match that of a table's caption
   by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
   margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
  margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
   possibly even requiring a new line */
@media print {
  a.pilcrow {
    display: none;
  }
}
/* Styling for the external metadata */
div#external-metadata {
  background-color: #eee;
  padding: 0.5em;
  margin-bottom: 0.5em;
  display: none;
}
div#internal-metadata {
  padding: 0.5em;                       /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
  clear: both;
  margin: 0 0 -1em;
  padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
  margin-bottom: 0.25em;
  min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
  border-left: 1px solid #ddd;
  margin: 1em 0 1em 2em;
  padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
  margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
  figcaption, table caption {
    page-break-before: avoid;
  }
}
/* Font size adjustments for print */
@media print {
  body  { font-size: 10pt;      line-height: normal; max-width: 96%; }
  h1    { font-size: 1.72em;    padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
  h2    { font-size: 1.44em;    padding-top: 1.5em; } /* 1*1.2*1.2 */
  h3    { font-size: 1.2em;     padding-top: 1.5em; } /* 1*1.2 */
  h4    { font-size: 1em;       padding-top: 1.5em; }
  h5, h6 { font-size: 1em;      margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
  .artwork,
  .sourcecode {
    margin-bottom: 1em;
  }
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
  min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
  border: 1px solid #ddd;
}
td {
  border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
  background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
  #toc nav { display: none; }
  #toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
  break-after: avoid-page;
  break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
  break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode  {
  break-before: avoid-page;
  break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
  break-before: auto;
  break-inside: auto;
}
dt {
  break-before: auto;
  break-after: avoid-page;
}
dd {
  break-before: avoid-page;
  break-after: auto;
  orphans: 3;
  widows: 3
}
span.break, dd.break {
  margin-bottom: 0;
  min-height: 0;
  break-before: auto;
  break-inside: auto;
  break-after: auto;
}
/* Undo break-before ToC */
@media print {
  #toc {
    break-before: auto;
  }
}
/* Text in compact lists should not get extra bottim margin space,
   since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
 margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
  margin-bottom: 1em;                    /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
   backgrounds.  Changed to something a bit more selective. */
tt, code {
  background-color: transparent;
}
p tt, p code, li tt, li code {
  background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
   margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
  line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
  margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
  clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
  content: "\00a0";
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc8867" rel="alternate">
  <link href="urn:issn:2070-1721" rel="alternate">
  <link href="https://datatracker.ietf.org/doc/draft-ietf-rmcat-eval-test-10" rel="prev">
  </head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8867</td>
<td class="center">Test Scenarios for RMCAT</td>
<td class="right">January 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Sarker, et al.</td>
<td class="center">Informational</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8867" class="eref">8867</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Informational</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2021-01" class="published">January 2021</time>
    </dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
      <div class="author-name">Z. Sarker</div>
<div class="org">Ericsson AB</div>
</div>
<div class="author">
      <div class="author-name">V. Singh</div>
<div class="org">callstats.io</div>
</div>
<div class="author">
      <div class="author-name">X. Zhu</div>
<div class="org">Cisco Systems</div>
</div>
<div class="author">
      <div class="author-name">M. Ramalho</div>
<div class="org">AcousticComms</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8867</h1>
<h1 id="title">Test Cases for Evaluating Congestion Control for Interactive Real-Time Media</h1>
<section id="section-abstract">
      <h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">The Real-time Transport Protocol (RTP) is used to transmit media in
      multimedia telephony applications. These applications are typically
      required to implement congestion control. This document describes the
      test cases to be used in the performance evaluation of such congestion
      control algorithms in a controlled environment.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
        <h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
        </h2>
<p id="section-boilerplate.1-1">
            This document is not an Internet Standards Track specification; it is
            published for informational purposes.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
            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).  Not all documents
            approved by the IESG are candidates for any level of Internet
            Standard; see Section 2 of RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
            Information about the current status of this document, any
            errata, and how to provide feedback on it may be obtained at
            <span><a href="https://www.rfc-editor.org/info/rfc8867">https://www.rfc-editor.org/info/rfc8867</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
        <h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
        </h2>
<p id="section-boilerplate.2-1">
            Copyright (c) 2021 IETF Trust and the persons identified as the
            document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
            This document is subject to BCP 78 and the IETF Trust's Legal
            Provisions Relating to IETF Documents
            (<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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 Simplified BSD License text as described in
            Section 4.e of the Trust Legal Provisions and are provided without
            warranty as described in the Simplified BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
        <a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
        </h2>
<nav class="toc"><ul class="compact toc ulEmpty">
<li class="compact toc ulEmpty" id="section-toc.1-1.1">
            <p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>.  <a href="#name-introduction" class="xref">Introduction</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.2">
            <p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="xref">2</a>.  <a href="#name-terminology" class="xref">Terminology</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.3">
            <p id="section-toc.1-1.3.1" class="keepWithNext"><a href="#section-3" class="xref">3</a>.  <a href="#name-structure-of-test-cases" class="xref">Structure of Test Cases</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.4">
            <p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>.  <a href="#name-recommended-evaluation-sett" class="xref">Recommended Evaluation Settings</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.4.2.1">
                <p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>.  <a href="#name-evaluation-metrics" class="xref">Evaluation Metrics</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.4.2.2">
                <p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>.  <a href="#name-path-characteristics" class="xref">Path Characteristics</a><a href="#section-toc.1-1.4.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.4.2.3">
                <p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>.  <a href="#name-media-source" class="xref">Media Source</a><a href="#section-toc.1-1.4.2.3.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.5">
            <p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>.  <a href="#name-basic-test-cases" class="xref">Basic Test Cases</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.5.2.1">
                <p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>.  <a href="#name-variable-available-capacity" class="xref">Variable Available Capacity with a Single Flow</a><a href="#section-toc.1-1.5.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.2">
                <p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>.  <a href="#name-variable-available-capacity-" class="xref">Variable Available Capacity with Multiple Flows</a><a href="#section-toc.1-1.5.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.3">
                <p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>.  <a href="#name-congested-feedback-link-wit" class="xref">Congested Feedback Link with Bi-directional Media Flows</a><a href="#section-toc.1-1.5.2.3.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.4">
                <p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="xref">5.4</a>.  <a href="#name-competing-media-flows-with-" class="xref">Competing Media Flows with the Same Congestion Control Algorithm</a><a href="#section-toc.1-1.5.2.4.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.5">
                <p id="section-toc.1-1.5.2.5.1"><a href="#section-5.5" class="xref">5.5</a>.  <a href="#name-round-trip-time-fairness" class="xref">Round Trip Time Fairness</a><a href="#section-toc.1-1.5.2.5.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.6">
                <p id="section-toc.1-1.5.2.6.1"><a href="#section-5.6" class="xref">5.6</a>.  <a href="#name-media-flow-competing-with-a" class="xref">Media Flow Competing with a Long TCP Flow</a><a href="#section-toc.1-1.5.2.6.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.7">
                <p id="section-toc.1-1.5.2.7.1"><a href="#section-5.7" class="xref">5.7</a>.  <a href="#name-media-flow-competing-with-s" class="xref">Media Flow Competing with Short TCP Flows</a><a href="#section-toc.1-1.5.2.7.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.5.2.8">
                <p id="section-toc.1-1.5.2.8.1"><a href="#section-5.8" class="xref">5.8</a>.  <a href="#name-media-pause-and-resume" class="xref">Media Pause and Resume</a><a href="#section-toc.1-1.5.2.8.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.6">
            <p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>.  <a href="#name-other-potential-test-cases" class="xref">Other Potential Test Cases</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.6.2.1">
                <p id="section-toc.1-1.6.2.1.1"><a href="#section-6.1" class="xref">6.1</a>.  <a href="#name-media-flows-with-priority" class="xref">Media Flows with Priority</a><a href="#section-toc.1-1.6.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.6.2.2">
                <p id="section-toc.1-1.6.2.2.1"><a href="#section-6.2" class="xref">6.2</a>.  <a href="#name-explicit-congestion-notific" class="xref">Explicit Congestion Notification Usage</a><a href="#section-toc.1-1.6.2.2.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.6.2.3">
                <p id="section-toc.1-1.6.2.3.1"><a href="#section-6.3" class="xref">6.3</a>.  <a href="#name-multiple-bottlenecks" class="xref">Multiple Bottlenecks</a><a href="#section-toc.1-1.6.2.3.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.7">
            <p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>.  <a href="#name-wireless-access-links" class="xref">Wireless Access Links</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.8">
            <p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>.  <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.9">
            <p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>.  <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.10">
            <p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
<ul class="toc compact ulEmpty">
<li class="toc compact ulEmpty" id="section-toc.1-1.10.2.1">
                <p id="section-toc.1-1.10.2.1.1"><a href="#section-10.1" class="xref">10.1</a>.  <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.10.2.1.1" class="pilcrow">¶</a></p>
</li>
              <li class="toc compact ulEmpty" id="section-toc.1-1.10.2.2">
                <p id="section-toc.1-1.10.2.2.1"><a href="#section-10.2" class="xref">10.2</a>.  <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.10.2.2.1" class="pilcrow">¶</a></p>
</li>
            </ul>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.11">
            <p id="section-toc.1-1.11.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-acknowledgments" class="xref">Acknowledgments</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
</li>
          <li class="compact toc ulEmpty" id="section-toc.1-1.12">
            <p id="section-toc.1-1.12.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.12.1" class="pilcrow">¶</a></p>
</li>
        </ul>
</nav>
</section>
</div>
<section id="section-1">
      <h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
      </h2>
<p id="section-1-1">This memo describes a set of test cases for evaluating congestion
      control algorithm proposals in controlled environments for real-time
      interactive media. It is based on the guidelines enumerated in <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span> and the requirements discussed
      in <span>[<a href="#RFC8836" class="xref">RFC8836</a>]</span>. The test cases cover
      basic usage scenarios and are described using a common structure, which
      allows for additional test cases to be added to those described herein
      to accommodate other topologies and/or the  modeling of different path
      characteristics. The described test cases in this memo should be used to
      evaluate any proposed congestion control algorithm for real-time
      interactive media.<a href="#section-1-1" class="pilcrow">¶</a></p>
</section>
<div id="sec-terminology">
<section id="section-2">
      <h2 id="name-terminology">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
      </h2>
<p id="section-2-1">The terminology defined in <span><a href="#RFC3550" class="xref">RTP</a> [<a href="#RFC3550" class="xref">RFC3550</a>]</span>, 
      <span><a href="#RFC3551" class="xref">RTP Profile for Audio and Video Conferences with
      Minimal Control</a> [<a href="#RFC3551" class="xref">RFC3551</a>]</span>, <span><a href="#RFC3611" class="xref">RTCP Extended Report
      (XR)</a> [<a href="#RFC3611" class="xref">RFC3611</a>]</span>, <span><a href="#RFC4585" class="xref">Extended RTP Profile for RTCP-based
      Feedback (RTP/AVPF)</a> [<a href="#RFC4585" class="xref">RFC4585</a>]</span>, and <span><a href="#RFC5506" class="xref">Support for
      Reduced-Size RTCP</a> [<a href="#RFC5506" class="xref">RFC5506</a>]</span> applies.<a href="#section-2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="TS">
<section id="section-3">
      <h2 id="name-structure-of-test-cases">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-structure-of-test-cases" class="section-name selfRef">Structure of Test Cases</a>
      </h2>
<p id="section-3-1">All the test cases in this document follow a basic structure allowing
      implementers to describe a new test scenario without repeatedly
      explaining common attributes. The structure includes a general
      description section that describes the test case and its motivation.
      Additionally the test case defines a set of attributes that characterize
      the testbed, for example, the network path between communicating peers
      and the diverse traffic sources.<a href="#section-3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2">
        <dt id="section-3-2.1">Define the test case:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.2">
          <p id="section-3-2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.2.2">
            <dt id="section-3-2.2.2.1">General description:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.2.2.2">describes the motivation and the goals
              of the test case.<a href="#section-3-2.2.2.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-3-2.2.2.3">Expected behavior:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.2.2.4">describes the desired rate adaptation
              behavior.<a href="#section-3-2.2.2.4" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-3-2.2.2.5">List of metrics to evaluate the desired behavior:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.2.2.6">
              this indicates the minimum set of metrics (e.g., link
              utilization, media sending rate) that a proposed algorithm needs
              to measure to validate the expected rate adaptation behavior. It
              should also indicate the time granularity (e.g., averaged over
              10 ms, 100 ms, or 1 s) for measuring certain metrics. Typical
              measurement interval is 200 ms.<a href="#section-3-2.2.2.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
</dl>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.3">Define testbed topology:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.4">
          <p id="section-3-2.4.1"><br></p>
<p id="section-3-2.4.2">Every test case needs to define an
          evaluation testbed topology. <a href="#fig-eval-topo" class="xref">Figure 1</a> shows
          such an evaluation topology. In this evaluation topology, S1..Sn are
          traffic sources. These sources generate media traffic and use the
          congestion control algorithm(s) under investigation. R1..Rn are the
          corresponding receivers. A test case can have one or more such
          traffic sources (S) and their corresponding receivers (R). The path
          from the source to destination is denoted as "forward", and the path
          from a destination to a source is denoted as "backward". The
          following basic structure of the test case has been described from
          the perspective of media-generating endpoints attached on the
          left-hand side of <a href="#fig-eval-topo" class="xref">Figure 1</a>. In this setup, the
          media flows are transported in the forward direction, and the corresponding
          feedback/control messages are transported in the backward direction.
          However, it is also possible to set up the test with media in both
          forward and backward directions. In that case, unless otherwise
          specified by the test case, it is expected that the backward path
          does not introduce any congestion-related impairments and has enough
          capacity to accommodate both media and feedback/control messages. It
          should be noted that, depending on the test cases, it is possible to
          have different path characteristics in either of the
          directions.<a href="#section-3-2.4.2" class="pilcrow">¶</a></p>
<span id="name-example-of-a-testbed-topolo"></span><div id="fig-eval-topo">
<figure id="figure-1">
            <div class="artwork art-text alignLeft" id="section-3-2.4.3.1">
<pre>
+---+                                                        +---+
|S1 |====== \               Forward --&gt;             / =======|R1 |
+---+       \\                                     //        +---+
             \\                                   //
+---+       +-----+                            +-----+       +---+
|S2 |=======|  A  |---------------------------&gt;|  B  |=======|R2 |
+---+       |     |&lt;---------------------------|     |       +---+
            +-----+                            +-----+
(...)         //                                  \\         (...)
             //          &lt;-- Backward              \\
+---+       //                                      \\       +---+
|Sn |====== /                                        \ ======|Rn |
+---+                                                        +---+
</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-example-of-a-testbed-topolo" class="selfRef">Example of a Testbed Topology</a>
            </figcaption></figure>
</div>
<p id="section-3-2.4.4">In a testbed environment with real equipment, there may
          exist a significant amount of unwanted traffic on the portions of
          the network path between the endpoints. Some of this traffic may be
          generated by other processes on the endpoints themselves (e.g.,
          discovery protocols) or by other endpoints not presently under test.
          Such unwanted traffic should be removed or avoided to the greatest
          extent possible.<a href="#section-3-2.4.4" class="pilcrow">¶</a></p>
</dd>
        <dd class="break"></dd>
<dt id="section-3-2.5">Define testbed attributes:</dt>
        <dd style="margin-left: 1.5em" id="section-3-2.6">
          <p id="section-3-2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2">
            <dt id="section-3-2.6.2.1">Duration:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.6.2.2">defines the duration of the test in seconds.<a href="#section-3-2.6.2.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
<dt id="section-3-2.6.2.3">Path characteristics:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.6.2.4">
              <p id="section-3-2.6.2.4.1">defines the end-to-end transport level
              path characteristics of the testbed for a particular test case.
              Two sets of attributes describe the path characteristics, one
              for the forward path and the other for the backward path. The
              path characteristics for a particular path direction are
              applicable to all the sources "S" sending traffic on that path.
              If only one attribute is specified, it is used for both path
              directions; however, unless specified the reverse path has no
              capacity restrictions and no path loss.<a href="#section-3-2.6.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2.4.2">
                <dt id="section-3-2.6.2.4.2.1">Path direction:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.2">forward or backward.<a href="#section-3-2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.3">Minimum bottleneck-link capacity:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.4">defines the minimum capacity of the
                  end-to-end path.<a href="#section-3-2.6.2.4.2.4" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.5">Reference bottleneck capacity:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.6">defines a reference value
                  for the bottleneck capacity for test cases with time-varying
                  bottleneck capacities. All bottleneck capacities will be
                  specified as a ratio with respect to the reference capacity
                  value.<a href="#section-3-2.6.2.4.2.6" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.7">One-way propagation delay:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.8">describes the end-to-end
                  latency along the path when network queues are empty, i.e.,
                  the time it takes for a packet to go from the sender to the
                  receiver without encountering any queuing delay.<a href="#section-3-2.6.2.4.2.8" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.9">Maximum end-to-end jitter:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.10">defines the maximum jitter
                  that can be observed along the path.<a href="#section-3-2.6.2.4.2.10" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.11">Bottleneck queue type:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.12">for example, "tail drop" <span>[<a href="#RFC7567" class="xref">RFC7567</a>]</span>, 
                  Flow Queue Controlled Delay (FQ-CoDel) <span>[<a href="#RFC8290" class="xref">RFC8290</a>]</span>, 
                  or Proportional Integral controller Enhanced (PIE) 
                  <span>[<a href="#RFC8033" class="xref">RFC8033</a>]</span>.<a href="#section-3-2.6.2.4.2.12" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.13">Bottleneck queue size:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.14">defines the size of queue in terms
                  of queuing time when the queue is full (in
                  milliseconds).<a href="#section-3-2.6.2.4.2.14" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.4.2.15">Path loss ratio:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.4.2.16">characterizes the non-congested,
                  additive losses to be generated on the end-to-end path.
                  This must describe the loss pattern or loss model used to
                  generate the losses.<a href="#section-3-2.6.2.4.2.16" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
<dt id="section-3-2.6.2.5">Application-related:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.6.2.6">
              <p id="section-3-2.6.2.6.1">defines the traffic source behavior for
              implementing the test case:<a href="#section-3-2.6.2.6.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2.6.2">
                <dt id="section-3-2.6.2.6.2.1">Media traffic source:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2">
                  <p id="section-3-2.6.2.6.2.2.1">defines the characteristics of the
                  media sources. When using more than one media source, the
                  different attributes are enumerated separately for each
                  different media source.<a href="#section-3-2.6.2.6.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2.6.2.2.2">
                    <dt id="section-3-2.6.2.6.2.2.2.1">Media type:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.2">Video/Voice.<a href="#section-3-2.6.2.6.2.2.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.3">Media flow direction:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.4">forward, backward, or both.<a href="#section-3-2.6.2.6.2.2.2.4" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.5">Number of media sources:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.6">defines the total number of
                      media sources.<a href="#section-3-2.6.2.6.2.2.2.6" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.7">Media codec:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.8">Constant Bit Rate (CBR) or Variable Bit
                      Rate (VBR).<a href="#section-3-2.6.2.6.2.2.2.8" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.9">Media source behavior:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.10">
                      <p id="section-3-2.6.2.6.2.2.2.10.1">describes the media encoder
                      behavior. It defines the main parameters that affect the
                      adaptation behavior. This may include but is not limited
                      to the following:<a href="#section-3-2.6.2.6.2.2.2.10.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2.6.2.2.2.10.2">
                        <dt id="section-3-2.6.2.6.2.2.2.10.2.1">Adaptability:</dt>
                        <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.10.2.2">describes the adaptation options.
                          For example, in the case of video, it defines the
                          following ranges of adaptation: bit rate, frame
                          rate, and video resolution. Similarly, in the case of
                          voice, it defines the range of bit rate adaptation,
                          the sampling rate variation, and the variation in
                          packetization interval.<a href="#section-3-2.6.2.6.2.2.2.10.2.2" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.10.2.3">Output variation:</dt>
                        <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.10.2.4">for a VBR encoder, it defines
                          the encoder output variation from the average target
                          rate over a particular measurement interval. For
                          example, on average the encoder output may vary
                          between 5% to 15% above or below the average target
                          bit rate when measured over a 100 ms time window.
                          The time interval over which the variation is
                          specified must be provided.<a href="#section-3-2.6.2.6.2.2.2.10.2.4" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.10.2.5">Responsiveness to a new bit rate request:</dt>
                        <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.10.2.6">the lag
                          in time between a new bit rate request from the
                          congestion control algorithm and actual rate changes
                          in encoder output. Depending on the encoder, this
                          value may be specified in absolute time (e.g., 10 ms
                          to 1000 ms) or other appropriate metric (e.g., next
                          frame interval time).<a href="#section-3-2.6.2.6.2.2.2.10.2.6" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
</dl>
<p id="section-3-2.6.2.6.2.2.2.10.3"> More detailed discussions on expected media
                      source behavior, including those from synthetic video
                      traffic sources, can be found in <span>[<a href="#RFC8593" class="xref">RFC8593</a>]</span>.<a href="#section-3-2.6.2.6.2.2.2.10.3" class="pilcrow">¶</a></p>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.11">Media content:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.12">describes the chosen video scenario.
                      For example, video test sequences are available at
                      <span>[<a href="#xiph-seq" class="xref">xiph-seq</a>]</span> and <span>[<a href="#HEVC-seq" class="xref">HEVC-seq</a>]</span>.
                      Different video scenarios give different distributions of
                      video frames produced by the video encoder. Hence, it is
                      important to specify the media content used in a
                      particular test. If a synthetic video traffic source
                      <span>[<a href="#RFC8593" class="xref">RFC8593</a>]</span> is
                      used, then the synthetic video traffic source needs to
                      be configured according to the characteristics of the media
                      content specified.<a href="#section-3-2.6.2.6.2.2.2.12" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.13">Media timeline:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.14">describes the point when the media
                      source is introduced and removed from the testbed. For
                      example, the media source may start transmitting
                      immediately when the test case begins, or after a few
                      seconds.<a href="#section-3-2.6.2.6.2.2.2.14" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.2.2.15">Startup behavior:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.2.2.16">the media starts at a defined bit
                      rate, which may be the minimum, maximum bit rate, or a
                      value in between (in Kbps).<a href="#section-3-2.6.2.6.2.2.2.16" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.3">Competing traffic source:</dt>
                <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4">
                  <p id="section-3-2.6.2.6.2.4.1">describes the characteristics
                  of the competing traffic source, the different types of
                  competing flows are enumerated in <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.<a href="#section-3-2.6.2.6.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-3-2.6.2.6.2.4.2">
                    <dt id="section-3-2.6.2.6.2.4.2.1">Traffic direction:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4.2.2">forward, backward, or both.<a href="#section-3-2.6.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.4.2.3">Type of sources:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4.2.4">defines the types of competing
                      traffic sources. Types of competing traffic flows are
                      listed in <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.
                      For example, the number of TCP flows connected to a web
                      browser, the mean size and distribution of the content
                      downloaded.<a href="#section-3-2.6.2.6.2.4.2.4" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.4.2.5">Number of sources:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4.2.6">defines the total number of
                      competing sources of each media type per traffic
                      direction.<a href="#section-3-2.6.2.6.2.4.2.6" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.4.2.7">Congestion control:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4.2.8">enumerates the congestion control
                      used by each type of competing traffic.<a href="#section-3-2.6.2.6.2.4.2.8" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
<dt id="section-3-2.6.2.6.2.4.2.9">Traffic timeline:</dt>
                    <dd style="margin-left: 1.5em" id="section-3-2.6.2.6.2.4.2.10">describes when the competing
                      traffic starts and ends in the test case.<a href="#section-3-2.6.2.6.2.4.2.10" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
<dt id="section-3-2.6.2.7">Additional attributes:</dt>
            <dd style="margin-left: 1.5em" id="section-3-2.6.2.8">describes attributes essential for
              implementing a test case that are not included in the above
              structure. These attributes must be well defined, so that the
              other implementers of that particular test case are able to
              implement it easily.<a href="#section-3-2.6.2.8" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
</dl>
</dd>
      <dd class="break"></dd>
</dl>
<p id="section-3-3">Any attribute can have a set of values (enclosed within "[]"). Each
      member value of such a set must be treated as different value for the
      same attribute. It is desired to run separate tests for each such
      attribute value.<a href="#section-3-3" class="pilcrow">¶</a></p>
<p id="section-3-4">The test cases described in this document follow the above
      structure.<a href="#section-3-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec-rec-eval">
<section id="section-4">
      <h2 id="name-recommended-evaluation-sett">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-recommended-evaluation-sett" class="section-name selfRef">Recommended Evaluation Settings</a>
      </h2>
<p id="section-4-1">This section describes recommended test case settings and could be
      overwritten by the respective test cases.<a href="#section-4-1" class="pilcrow">¶</a></p>
<div id="EM">
<section id="section-4.1">
        <h3 id="name-evaluation-metrics">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-evaluation-metrics" class="section-name selfRef">Evaluation Metrics</a>
        </h3>
<p id="section-4.1-1">To evaluate the performance of the candidate algorithms, the
        implementers must log enough information to visualize the following
        metrics at a fine enough time granularity:<a href="#section-4.1-1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-4.1-2">
          <li id="section-4.1-2.1">
            <p id="section-4.1-2.1.1">Flow level:<a href="#section-4.1-2.1.1" class="pilcrow">¶</a></p>
<ol start="1" type="A" class="normal type-A" id="section-4.1-2.1.2">
              <li id="section-4.1-2.1.2.1">End-to-end delay for the congestion-controlled media
                flow(s). For example, end-to-end delay observed on the IP packet
                level and the video frame level.<a href="#section-4.1-2.1.2.1" class="pilcrow">¶</a>
</li>
              <li id="section-4.1-2.1.2.2">Variation in sending bit rate and throughput. Mainly
                observing the frequency and magnitude of oscillations.<a href="#section-4.1-2.1.2.2" class="pilcrow">¶</a>
</li>
              <li id="section-4.1-2.1.2.3">Packet losses observed at the receiving endpoint.<a href="#section-4.1-2.1.2.3" class="pilcrow">¶</a>
</li>
              <li id="section-4.1-2.1.2.4">Feedback message overhead.<a href="#section-4.1-2.1.2.4" class="pilcrow">¶</a>
</li>
              <li id="section-4.1-2.1.2.5">Convergence time. Time to reach steady state for the
                congestion-controlled media flow(s). Each occurrence of
                convergence during the test period needs to be presented.<a href="#section-4.1-2.1.2.5" class="pilcrow">¶</a>
</li>
            </ol>
</li>
          <li id="section-4.1-2.2">
            <p id="section-4.1-2.2.1">Transport level:<a href="#section-4.1-2.2.1" class="pilcrow">¶</a></p>
<ol start="1" type="A" class="normal type-A" id="section-4.1-2.2.2">
              <li id="section-4.1-2.2.2.1">Bandwidth utilization.<a href="#section-4.1-2.2.2.1" class="pilcrow">¶</a>
</li>
              <li id="section-4.1-2.2.2.2">Queue length (milliseconds at specified path capacity).<a href="#section-4.1-2.2.2.2" class="pilcrow">¶</a>
</li>
            </ol>
</li>
        </ol>
</section>
</div>
<div id="PC">
<section id="section-4.2">
        <h3 id="name-path-characteristics">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-path-characteristics" class="section-name selfRef">Path Characteristics</a>
        </h3>
<p id="section-4.2-1">Each path between a sender and receiver as described in 
<a href="#fig-eval-topo" class="xref">Figure 1</a> has the following characteristics unless
        otherwise specified in the test case:<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-4.2-2">
          <dt id="section-4.2-2.1">Path direction: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.2">forward and backward.<a href="#section-4.2-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.3">Reference bottleneck capacity: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.4">1 Mbps.<a href="#section-4.2-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.5">One-way propagation delay: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.6">50 ms. Implementers are encouraged to
            run the experiment with additional propagation delays mentioned in
            <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.<a href="#section-4.2-2.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.7">Maximum end-to-end jitter: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.8">30 ms. Jitter models are described in
            <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.<a href="#section-4.2-2.8" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.9">Bottleneck queue type: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.10">"tail drop". Implementers are encouraged
            to run the experiment with other Active Queue Management (AQM) schemes, such as FQ-CoDel and
            PIE.<a href="#section-4.2-2.10" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.11">Bottleneck queue size: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.12">300 ms.<a href="#section-4.2-2.12" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-4.2-2.13">Path loss ratio: </dt>
          <dd style="margin-left: 1.5em" id="section-4.2-2.14">0%.<a href="#section-4.2-2.14" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<p id="section-4.2-3">Examples of additional network parameters are discussed in <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.<a href="#section-4.2-3" class="pilcrow">¶</a></p>
<p id="section-4.2-4">For test cases involving time-varying bottleneck capacity, all
        capacity values are specified as a ratio with respect to a reference
        capacity value, so as to allow flexible scaling of capacity values
        along with media source rate range. There exist two different
        mechanisms for inducing path capacity variation: a) by explicitly
        modifying the value of physical link capacity, or b) by introducing
        background non-adaptive UDP traffic with time-varying traffic rate.
        Implementers are encouraged to run the experiments with both
        mechanisms for test cases specified in <a href="#VACS" class="xref">Section 5.1</a>, <a href="#VACM" class="xref">Section 5.2</a>, and <a href="#CFL" class="xref">Section 5.3</a>.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="MS">
<section id="section-4.3">
        <h3 id="name-media-source">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-media-source" class="section-name selfRef">Media Source</a>
        </h3>
<p id="section-4.3-1">Unless otherwise specified, each test case will include one or more
        media sources as described below:<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-4.3-2">
          <dt id="section-4.3-2.1">Media type:</dt>
          <dd style="margin-left: 1.5em" id="section-4.3-2.2">
            <p id="section-4.3-2.2.1">Video<a href="#section-4.3-2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-4.3-2.2.2">
              <dt id="section-4.3-2.2.2.1">Media codec:</dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.2">VBR<a href="#section-4.3-2.2.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-4.3-2.2.2.3">Media source behavior:</dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4">
                <p id="section-4.3-2.2.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-4.3-2.2.2.4.2">
                  <dt id="section-4.3-2.2.2.4.2.1">Adaptability:</dt>
                  <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.2">
                    <p id="section-4.3-2.2.2.4.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-4.3-2.2.2.4.2.2.2">
                      <dt id="section-4.3-2.2.2.4.2.2.2.1">Bit rate range:</dt>
                      <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.2.2.2">
                        150 Kbps - 1.5 Mbps. In real-life
                        applications, the bit rate range can vary a lot
                        depending on the provided service; for example, the
                        maximum bit rate can be up to 4 Mbps. However, for
                        running tests to evaluate the congestion control
                        algorithms, it is more important to have a look at how
                        they react to a certain amount of bandwidth
                        change. Also it is possible that the media traffic
                        generator used in a particular simulator or testbed is
                        not capable of generating a higher bit rate. Hence, we
                        have selected a suitable bit rate range typical of
                        consumer-grade video conferencing applications in
                        designing the test case. If a different bit rate range
                        is used in the test cases, then the end-to-end path
                        capacity values will also need to be scaled
                        accordingly.<a href="#section-4.3-2.2.2.4.2.2.2.2" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-4.3-2.2.2.4.2.2.2.3">Frame resolution: </dt>
                      <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.2.2.4">144p - 720p (or 1080p). This
                        resolution range is selected based on the bit rate
                        range. If a different bit rate range is used in the
                        test cases, then a suitable frame resolution range also needs
                        to be selected.<a href="#section-4.3-2.2.2.4.2.2.2.4" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-4.3-2.2.2.4.2.2.2.5">Frame rate: </dt>
                      <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.2.2.6">10 fps - 30 fps. This frame rate range is
                        selected based on the bit rate range. If a different
                        bit rate range is used in the test cases, then the
                        frame rate range also needs to be suitably adjusted.<a href="#section-4.3-2.2.2.4.2.2.2.6" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-4.3-2.2.2.4.2.3">Variation from target bit rate: </dt>
                  <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.4">+/-5%. Unless otherwise
                    specified in the test case(s), bit rate variation should
                    be calculated over a one (1) second period of time.<a href="#section-4.3-2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-4.3-2.2.2.4.2.5">Responsiveness to new bit rate request: </dt>
                  <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.4.2.6">100 ms<a href="#section-4.3-2.2.2.4.2.6" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-4.3-2.2.2.5">Media content:</dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.6">The media content should represent a typical
                video conversational scenario with head and shoulder movement.
                We recommend using the Foreman video sequence <span>[<a href="#xiph-seq" class="xref">xiph-seq</a>]</span>.<a href="#section-4.3-2.2.2.6" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-4.3-2.2.2.7">Media startup behavior:</dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.2.2.8">150 Kbps. It should be noted that
                applications can use smart ways to select an optimal startup
                bit rate value for a certain network condition. In such cases,
                the candidate proposals may show the effectiveness of such a
                smart approach as additional information for the evaluation
                process.<a href="#section-4.3-2.2.2.8" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-4.3-2.3">Media type:</dt>
          <dd style="margin-left: 1.5em" id="section-4.3-2.4">
            <p id="section-4.3-2.4.1">Audio<a href="#section-4.3-2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-4.3-2.4.2">
              <dt id="section-4.3-2.4.2.1">Media codec:   </dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.4.2.2">CBR<a href="#section-4.3-2.4.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-4.3-2.4.2.3">Media bit rate:</dt>
              <dd style="margin-left: 1.5em" id="section-4.3-2.4.2.4">20 Kbps<a href="#section-4.3-2.4.2.4" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
        <dd class="break"></dd>
</dl>
</section>
</div>
</section>
</div>
<div id="TC">
<section id="section-5">
      <h2 id="name-basic-test-cases">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-basic-test-cases" class="section-name selfRef">Basic Test Cases</a>
      </h2>
<div id="VACS">
<section id="section-5.1">
        <h3 id="name-variable-available-capacity">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-variable-available-capacity" class="section-name selfRef">Variable Available Capacity with a Single Flow</a>
        </h3>
<p id="section-5.1-1">In this test case, the minimum bottleneck-link capacity between the two
        endpoints varies over time. This test is designed to measure the
        responsiveness of the candidate algorithm. This test tries to address
        the requirements in <span>[<a href="#RFC8836" class="xref">RFC8836</a>]</span>,
        which requires the algorithm to adapt the flow(s) and provide lower
        end-to-end latency when there exists:<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.1-2.1">an intermediate bottleneck<a href="#section-5.1-2.1" class="pilcrow">¶</a>
</li>
          <li class="normal" id="section-5.1-2.2">change in available capacity (e.g., due to interface change,
            routing change, abrupt arrival/departure of background
            non-adaptive traffic)<a href="#section-5.1-2.2" class="pilcrow">¶</a>
</li>
          <li class="normal" id="section-5.1-2.3">maximum media bit rate is greater than link capacity. In this
            case, when the application tries to ramp up to its maximum bit
            rate, since the link capacity is limited to a lower value, the
            congestion control scheme is expected to stabilize the sending bit
            rate close to the available bottleneck capacity.<a href="#section-5.1-2.3" class="pilcrow">¶</a>
</li>
        </ul>
<p id="section-5.1-3">It should be noted that the exact variation in available
        capacity due to any of the above depends on the underlying
        technologies. Hence, we describe a set of known factors, which may be
        extended to devise a more specific test case targeting certain
        behaviors in a certain network environment.<a href="#section-5.1-3" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-4">
          <dt id="section-5.1-4.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.1-4.2">The candidate algorithm is expected to detect
        the path capacity constraint, converge to the bottleneck link's
        capacity, and adapt the flow to avoid unwanted media rate oscillation
        when the sending bit rate is approaching the bottleneck link's
        capacity. Such oscillations might occur when the media flow(s)
        attempts to reach its maximum bit rate but overshoots the usage of the
        available bottleneck capacity, then to rectify, it reduces the bit rate
        and starts to ramp up again.<a href="#section-5.1-4.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.1-4.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.1-4.4">As described in <a href="#EM" class="xref">Section 4.1</a>.<a href="#section-5.1-4.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.1-4.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.1-4.6">One media source S1 is connected to the
        corresponding R1. The media traffic is transported over the forward
        path and corresponding feedback/control traffic is transported over
        the backward path.<a href="#section-5.1-4.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-limite"></span><div id="fig-eval-topo-4-2">
<figure id="figure-2">
          <div class="artwork art-text alignLeft" id="section-5.1-5.1">
<pre>
                             Forward --&gt;
+---+       +-----+                               +-----+       +---+
|S1 |=======|  A  |------------------------------&gt;|  B  |=======|R1 |
+---+       |     |&lt;------------------------------|     |       +---+
            +-----+                               +-----+
                          &lt;-- Backward
</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-testbed-topology-for-limite" class="selfRef">Testbed Topology for Limited Link Capacity</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6">
          <dt id="section-5.1-6.1">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.1-6.2">
            <p id="section-5.1-6.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2">
              <dt id="section-5.1-6.2.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.2">100 s<a href="#section-5.1-6.2.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.1-6.2.2.3">Path characteristics:</dt>
              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.4">as described in <a href="#PC" class="xref">Section 4.2</a><a href="#section-5.1-6.2.2.4" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.1-6.2.2.5">Application-related:</dt>
              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6">
                <p id="section-5.1-6.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2">
                  <dt id="section-5.1-6.2.2.6.2.1">Media Traffic:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2">
                    <p id="section-5.1-6.2.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.2.2">
                      <dt id="section-5.1-6.2.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2">
                        <p id="section-5.1-6.2.2.6.2.2.2.2.1">Video<a href="#section-5.1-6.2.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.2.2.2.2">
                          <dt id="section-5.1-6.2.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2.2.2">forward<a href="#section-5.1-6.2.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2.2.4">one (1)<a href="#section-5.1-6.2.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.2.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2.2.6">
                            <p id="section-5.1-6.2.2.6.2.2.2.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.2.2.2.2.6.2">
                              <dt id="section-5.1-6.2.2.6.2.2.2.2.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2.2.6.2.2">0 s<a href="#section-5.1-6.2.2.6.2.2.2.2.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.2.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.2.2.6.2.4">99 s<a href="#section-5.1-6.2.2.6.2.2.2.2.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4">
                        <p id="section-5.1-6.2.2.6.2.2.2.4.1">Audio<a href="#section-5.1-6.2.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.2.2.4.2">
                          <dt id="section-5.1-6.2.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4.2.2">forward<a href="#section-5.1-6.2.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4.2.4">one (1)<a href="#section-5.1-6.2.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.4.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4.2.6">
                            <p id="section-5.1-6.2.2.6.2.2.2.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.2.2.4.2.6.2">
                              <dt id="section-5.1-6.2.2.6.2.2.2.4.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4.2.6.2.2">0 s<a href="#section-5.1-6.2.2.6.2.2.2.4.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.2.2.4.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.2.2.4.2.6.2.4">99 s<a href="#section-5.1-6.2.2.6.2.2.2.4.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.1-6.2.2.6.2.3">Competing traffic:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.4">
                    <p id="section-5.1-6.2.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.2.2.6.2.4.2">
                      <dt id="section-5.1-6.2.2.6.2.4.2.1">Number of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.1-6.2.2.6.2.4.2.2">zero (0)<a href="#section-5.1-6.2.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.1-6.3">Test-specific information:</dt>
          <dd style="margin-left: 1.5em" id="section-5.1-6.4">
            <p id="section-5.1-6.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6.4.2">
              <dt id="section-5.1-6.4.2.1">One-way propagation delay:</dt>
              <dd style="margin-left: 1.5em" id="section-5.1-6.4.2.2">[50 ms, 100 ms]. On the forward path direction.<a href="#section-5.1-6.4.2.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
<p id="section-5.1-6.4.3">This test uses bottleneck path capacity variation as listed
                    in <a href="#VACS_US" class="xref">Table 1</a>.<a href="#section-5.1-6.4.3" class="pilcrow">¶</a></p>
<p id="section-5.1-6.4.4">When using background non-adaptive UDP traffic to induce a
                    time-varying bottleneck, the physical path capacity remains
                    at 4 Mbps, and the UDP traffic source rate changes over time as
                    (4 - (Y x r)), where r is the Reference bottleneck capacity in
                    Mbps, and Y is the path capacity ratio specified in 
                    <a href="#VACS_US" class="xref">Table 1</a>.<a href="#section-5.1-6.4.4" class="pilcrow">¶</a></p>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-path-capacity-variation-pat"></span><div id="VACS_US">
<table class="center" id="table-1">
          <caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-path-capacity-variation-pat" class="selfRef">Path Capacity Variation Pattern for the Forward Direction</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Variation pattern index</th>
              <th class="text-left" rowspan="1" colspan="1">Path direction</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">Path capacity ratio</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">One</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Two</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.5</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Three</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">60 s</td>
              <td class="text-left" rowspan="1" colspan="1">0.6</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Four</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">80 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.0</td>
            </tr>
          </tbody>
        </table>
</div>
<p id="section-5.1-8"></p>
</section>
</div>
<div id="VACM">
<section id="section-5.2">
        <h3 id="name-variable-available-capacity-">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-variable-available-capacity-" class="section-name selfRef">Variable Available Capacity with Multiple Flows</a>
        </h3>
<p id="section-5.2-1">This test case is similar to <a href="#VACS" class="xref">Section 5.1</a>. However,
        this test will also consider persistent network load due to
        competing traffic.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.2-2">
          <dt id="section-5.2-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.2-2.2">The candidate algorithm is expected to detect
        the variation in available capacity and adapt the media stream(s)
        accordingly. The flows stabilize around their maximum bit rate as the
        maximum link capacity is large enough to accommodate the flows. When
        the available capacity drops, the flows adapt by decreasing their
        sending bit rate, and when congestion disappears, the flows are again
        expected to ramp up.<a href="#section-5.2-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.2-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.2-2.4">As described in <a href="#EM" class="xref">Section 4.1</a>.<a href="#section-5.2-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.2-2.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.2-2.6">Two (2) media sources S1 and S2 are connected to
        their corresponding destinations R1 and R2. The media traffic is
        transported over the forward path and corresponding feedback/control
        traffic is transported over the backward path.<a href="#section-5.2-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-variab"></span><div id="fig-eval-topo-4-1">
<figure id="figure-3">
          <div class="artwork art-text alignLeft" id="section-5.2-3.1">
<pre>
+---+                                                         +---+
|S1 |===== \                                         / =======|R1 |
+---+      \\             Forward --&gt;               //        +---+
            \\                                     //
            +-----+                               +-----+
            |  A  |------------------------------&gt;|  B  |
            |     |&lt;------------------------------|     |
            +-----+                               +-----+
              //                                    \\
             //          &lt;-- Backward                \\
+---+       //                                        \\       +---+
|S2 |====== /                                          \ ======|R2 |
+---+                                                          +---+
</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-testbed-topology-for-variab" class="selfRef">Testbed Topology for Variable Available Capacity</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2-4">
          <dt id="section-5.2-4.1">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.2-4.2">Testbed attributes are similar to those described in <a href="#VACS" class="xref">Section 5.1</a>, 
        except for the test-specific capacity variation setup.<a href="#section-5.2-4.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.2-4.3">Test-specific information:</dt>
          <dd style="margin-left: 1.5em" id="section-5.2-4.4">This test uses path capacity variation
        as listed in <a href="#VACM_US" class="xref">Table 2</a> with a corresponding end time of
        125 seconds. The reference bottleneck capacity is 2 Mbps. When using
        background non-adaptive UDP traffic to induce time-varying bottleneck
        for congestion-controlled media flows, the physical path capacity is
        4 Mbps, and the UDP traffic source rate changes over time as (4 - (Y x
        r)), where r is the Reference bottleneck capacity in Mbps, and Y is the
        path capacity ratio specified in <a href="#VACM_US" class="xref">Table 2</a>.<a href="#section-5.2-4.4" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-path-capacity-variation-patt"></span><div id="VACM_US">
<table class="center" id="table-2">
          <caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-path-capacity-variation-patt" class="selfRef">Path Capacity Variation Pattern for the Forward Direction</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Variation pattern index</th>
              <th class="text-left" rowspan="1" colspan="1">Path direction</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">Path capacity ratio</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">One</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Two</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">25 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Three</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">50 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.75</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Four</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">75 s</td>
              <td class="text-left" rowspan="1" colspan="1">0.5</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Five</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">100 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.0</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
</div>
<div id="CFL">
<section id="section-5.3">
        <h3 id="name-congested-feedback-link-wit">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-congested-feedback-link-wit" class="section-name selfRef">Congested Feedback Link with Bi-directional Media Flows</a>
        </h3>
<p id="section-5.3-1">Real-time interactive media uses RTP; hence it is assumed that RTCP,
        RTP header extension, or such would be used by the congestion control
        algorithm in the back channel. Due to the asymmetric nature of the link
        between communicating peers, it is possible for a participating peer to
        not receive such feedback information due to an impaired or congested
        back channel (even when the forward channel might not be impaired).
        This test case is designed to observe the candidate congestion control
        behavior in such an event.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-2">
          <dt id="section-5.3-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.3-2.2">
            <p id="section-5.3-2.2.1">It is expected that the candidate algorithms are
        able to cope with the lack of feedback information and to adapt to
        minimize the performance degradation of media flows in the forward
        channel.<a href="#section-5.3-2.2.1" class="pilcrow">¶</a></p>
<p id="section-5.3-2.2.2">It should be noted that for this test case, logs are compared with
        the reference case, i.e., when the backward channel has no
        impairments.<a href="#section-5.3-2.2.2" class="pilcrow">¶</a></p>
</dd>
          <dd class="break"></dd>
<dt id="section-5.3-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.3-2.4">As described in <a href="#EM" class="xref">Section 4.1</a>.<a href="#section-5.3-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.3-2.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.3-2.6">One (1) media source S1 is connected to
        corresponding R1, but both endpoints are additionally receiving and
        sending data, respectively. The media traffic (S1-&gt;R1) is
        transported over the forward path, and the corresponding feedback/control
        traffic is transported over the backward path. Likewise, media traffic
        (S2-&gt;R2) is transported over the backward path, and the corresponding
        feedback/control traffic is transported over the forward path.<a href="#section-5.3-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-conges"></span><div id="fig-eval-topo-4-6">
<figure id="figure-4">
          <div class="artwork art-text alignLeft" id="section-5.3-3.1">
<pre>
+---+                                                          +---+
|S1 |====== \                Forward --&gt;              / =======|R1 |
+---+       \\                                       //        +---+
             \\                                     //
          +-----+                               +-----+
          |  A  |------------------------------&gt;|  B  |
          |     |&lt;------------------------------|     |
          +-----+                               +-----+
             //                                     \\
            //            &lt;-- Backward               \\
+---+      //                                         \\       +---+
|R2 |===== /                                           \ ======|S2 |
+---+                                                          +---+
</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-testbed-topology-for-conges" class="selfRef">Testbed Topology for Congested Feedback Link</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4">
          <dt id="section-5.3-4.1">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.3-4.2">
            <p id="section-5.3-4.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2">
              <dt id="section-5.3-4.2.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.2">100 s<a href="#section-5.3-4.2.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.3-4.2.2.3">Path characteristics:</dt>
              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.4">
                <p id="section-5.3-4.2.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.4.2">
                  <dt id="section-5.3-4.2.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.4.2.2">1 Mbps<a href="#section-5.3-4.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.3-4.2.2.5">Application-related:</dt>
              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6">
                <p id="section-5.3-4.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2">
                  <dt id="section-5.3-4.2.2.6.2.1">Media source:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2">
                    <p id="section-5.3-4.2.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.2.2">
                      <dt id="section-5.3-4.2.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2">
                        <p id="section-5.3-4.2.2.6.2.2.2.2.1">Video<a href="#section-5.3-4.2.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.2.2.2.2">
                          <dt id="section-5.3-4.2.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2.2.2">forward and backward<a href="#section-5.3-4.2.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2.2.4">two (2)<a href="#section-5.3-4.2.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.2.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2.2.6">
                            <p id="section-5.3-4.2.2.6.2.2.2.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.2.2.2.2.6.2">
                              <dt id="section-5.3-4.2.2.6.2.2.2.2.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2.2.6.2.2">0 s<a href="#section-5.3-4.2.2.6.2.2.2.2.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.2.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.2.2.6.2.4">99 s<a href="#section-5.3-4.2.2.6.2.2.2.2.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4">
                        <p id="section-5.3-4.2.2.6.2.2.2.4.1">Audio<a href="#section-5.3-4.2.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.2.2.4.2">
                          <dt id="section-5.3-4.2.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4.2.2">forward and backward<a href="#section-5.3-4.2.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4.2.4">two (2)<a href="#section-5.3-4.2.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.4.2.5">Media timeline: </dt>
                          <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4.2.6">
                            <p id="section-5.3-4.2.2.6.2.2.2.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.2.2.4.2.6.2">
                              <dt id="section-5.3-4.2.2.6.2.2.2.4.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4.2.6.2.2">0 s<a href="#section-5.3-4.2.2.6.2.2.2.4.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.2.2.4.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.2.2.4.2.6.2.4">99 s<a href="#section-5.3-4.2.2.6.2.2.2.4.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.3-4.2.2.6.2.3">Competing traffic: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.4">
                    <p id="section-5.3-4.2.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.3-4.2.2.6.2.4.2">
                      <dt id="section-5.3-4.2.2.6.2.4.2.1">Number of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.3-4.2.2.6.2.4.2.2">zero (0)<a href="#section-5.3-4.2.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.3-4.3">Test-specific information:</dt>
          <dd style="margin-left: 1.5em" id="section-5.3-4.4">This test uses path capacity
            variations to create a congested feedback link. <a href="#CFL_US" class="xref">Table 3</a> 
            lists the variation patterns applied to
            the forward path, and <a href="#CFL_DS" class="xref">Table 4</a> lists the variation
            patterns applied to the backward path. When using background
            non-adaptive UDP traffic to induce a time-varying bottleneck for
            congestion-controlled media flows, the physical path capacity is
            4 Mbps for both directions, and the UDP traffic source rate changes
            over time as (4-x) Mbps in each direction, where x is the
            bottleneck capacity specified in <a href="#CFL_DS" class="xref">Table 4</a>.<a href="#section-5.3-4.4" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-path-capacity-variation-patte"></span><div id="CFL_US">
<table class="center" id="table-3">
          <caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-path-capacity-variation-patte" class="selfRef">Path Capacity Variation Pattern for the Forward Direction</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Variation pattern index</th>
              <th class="text-left" rowspan="1" colspan="1">Path direction</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">Path capacity ratio</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">One</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Two</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">20 s</td>
              <td class="text-left" rowspan="1" colspan="1">1.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Three</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">0.5</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Four</td>
              <td class="text-left" rowspan="1" colspan="1">Forward</td>
              <td class="text-left" rowspan="1" colspan="1">60 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.0</td>
            </tr>
          </tbody>
        </table>
</div>
<p id="section-5.3-6"></p>
<span id="name-path-capacity-variation-patter"></span><div id="CFL_DS">
<table class="center" id="table-4">
          <caption>
<a href="#table-4" class="selfRef">Table 4</a>:
<a href="#name-path-capacity-variation-patter" class="selfRef">Path Capacity Variation Pattern for the Backward Direction</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Variation pattern index</th>
              <th class="text-left" rowspan="1" colspan="1">Path direction</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">Path capacity ratio</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">One</td>
              <td class="text-left" rowspan="1" colspan="1">Backward</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.0</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Two</td>
              <td class="text-left" rowspan="1" colspan="1">Backward</td>
              <td class="text-left" rowspan="1" colspan="1">35 s</td>
              <td class="text-left" rowspan="1" colspan="1">0.8</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">Three</td>
              <td class="text-left" rowspan="1" colspan="1">Backward</td>
              <td class="text-left" rowspan="1" colspan="1">70 s</td>
              <td class="text-left" rowspan="1" colspan="1">2.0</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
</div>
<div id="competing-rmcat-flow">
<section id="section-5.4">
        <h3 id="name-competing-media-flows-with-">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-competing-media-flows-with-" class="section-name selfRef">Competing Media Flows with the Same Congestion Control Algorithm</a>
        </h3>
<p id="section-5.4-1">In this test case, more than one media flow share the bottleneck
        link, and each of them uses the same congestion control algorithm. This
        is a typical scenario where a real-time interactive application sends
        more than one media flow to the same destination, and these flows are
        multiplexed over the same port. In such a scenario, it is likely that
        the flows will be routed via the same path and need to share the
        available bandwidth amongst themselves. For the sake of simplicity, it
        is assumed that there are no other competing traffic sources in the
        bottleneck link and that there is sufficient capacity to accommodate
        all the flows individually. While this appears to be a variant of the
        test case defined in <a href="#VACM" class="xref">Section 5.2</a>, it focuses 
        on the capacity-sharing aspect of the candidate algorithm. The previous test case, on
        the other hand, measures adaptability, stability, and responsiveness
        of the candidate algorithm.<a href="#section-5.4-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-2">
          <dt id="section-5.4-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.4-2.2">It is expected that the competing flows will
        converge to an optimum bit rate to accommodate all the flows with
        minimum possible latency and loss. Specifically, the test introduces
        three media flows at different time instances. When the second flow
        appears, there should still be room to accommodate another flow on the
        bottleneck link. Lastly, when the third flow appears, the bottleneck
        link should be saturated.<a href="#section-5.4-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.4-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.4-2.4">As described in <a href="#EM" class="xref">Section 4.1</a>.<a href="#section-5.4-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.4-2.5">Testbed topology: </dt>
          <dd style="margin-left: 1.5em" id="section-5.4-2.6">Three media sources S1, S2, and S3 are connected to
        R1, R2, and R3, respectively. The media traffic is transported over the
        forward path, and the corresponding feedback/control traffic is transported
        over the backward path.<a href="#section-5.4-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-multip"></span><div id="fig-eval-topo-4-3">
<figure id="figure-5">
          <div class="artwork art-text alignLeft" id="section-5.4-3.1">
<pre>
+---+                                                         +---+
|S1 |===== \                Forward --&gt;              / =======|R1 |
+---+      \\                                       //        +---+
            \\                                     //
+---+       +-----+                               +-----+       +---+
|S2 |=======|  A  |------------------------------&gt;|  B  |=======|R2 |
+---+       |     |&lt;------------------------------|     |       +---+
            +-----+                               +-----+
            //          &lt;-- Backward               \\
+---+      //                                       \\       +---+
|S3 |===== /                                         \ ======|R3 |
+---+                                                        +---+
</pre>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a>:
<a href="#name-testbed-topology-for-multip" class="selfRef">Testbed Topology for Multiple Congestion-Controlled Media Flows</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4">
          <dt id="section-5.4-4.1">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.4-4.2">
            <p id="section-5.4-4.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2">
              <dt id="section-5.4-4.2.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.2">120 s<a href="#section-5.4-4.2.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.4-4.2.2.3">Path characteristics:</dt>
              <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.4">
                <p id="section-5.4-4.2.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.4.2">
                  <dt id="section-5.4-4.2.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.4.2.2">3.5 Mbps<a href="#section-5.4-4.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.4-4.2.2.4.2.3">Path capacity ratio:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.4.2.4">1.0<a href="#section-5.4-4.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.4-4.2.2.5">Application-related: </dt>
              <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6">
                <p id="section-5.4-4.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.6.2">
                  <dt id="section-5.4-4.2.2.6.2.1">Media Source: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2">
                    <p id="section-5.4-4.2.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.6.2.2.2">
                      <dt id="section-5.4-4.2.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.2">
                        <p id="section-5.4-4.2.2.6.2.2.2.2.1">Video<a href="#section-5.4-4.2.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.6.2.2.2.2.2">
                          <dt id="section-5.4-4.2.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.2.2.2">forward<a href="#section-5.4-4.2.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.2.2.4">three (3)<a href="#section-5.4-4.2.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.2.2.2.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.2.2.6">New media flows are added
                        sequentially, at short time intervals. See the 
                        test-specific setup below.<a href="#section-5.4-4.2.2.6.2.2.2.2.2.6" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.4">
                        <p id="section-5.4-4.2.2.6.2.2.2.4.1">Audio<a href="#section-5.4-4.2.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.6.2.2.2.4.2">
                          <dt id="section-5.4-4.2.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.4.2.2">forward<a href="#section-5.4-4.2.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.4.2.4">three (3)<a href="#section-5.4-4.2.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.2.2.4.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.2.2.4.2.6">New media flows are added
                        sequentially, at short time intervals. See the test-specific setup below.<a href="#section-5.4-4.2.2.6.2.2.2.4.2.6" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.4-4.2.2.6.2.3">Competing traffic: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.4">
                    <p id="section-5.4-4.2.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.4-4.2.2.6.2.4.2">
                      <dt id="section-5.4-4.2.2.6.2.4.2.1">Number of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.4-4.2.2.6.2.4.2.2">zero (0)<a href="#section-5.4-4.2.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.4-4.3">Test-specific information:</dt>
          <dd style="margin-left: 1.5em" id="section-5.4-4.4">
            <a href="#MTL_CF" class="xref">Table 5</a> defines the
            media timeline for both media types.<a href="#section-5.4-4.4" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-media-timelines-for-video-a"></span><div id="MTL_CF">
<table class="center" id="table-5">
          <caption>
<a href="#table-5" class="selfRef">Table 5</a>:
<a href="#name-media-timelines-for-video-a" class="selfRef">Media Timelines for Video and Audio Media Sources</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Flow ID</th>
              <th class="text-left" rowspan="1" colspan="1">Media type</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">End time</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">1</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">2</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">20 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">3</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">4</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">5</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">20 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">6</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">119 s</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
</div>
<section id="section-5.5">
        <h3 id="name-round-trip-time-fairness">
<a href="#section-5.5" class="section-number selfRef">5.5. </a><a href="#name-round-trip-time-fairness" class="section-name selfRef">Round Trip Time Fairness</a>
        </h3>
<p id="section-5.5-1">In this test case, multiple media flows share the bottleneck link,
        but the one-way propagation delay for each flow is different. For the
        sake of simplicity, it is assumed that there are no other competing
        traffic sources in the bottleneck link and that there is sufficient
        capacity to accommodate all the flows. While this appears to be a
        variant of test case 5.2 (<a href="#VACM" class="xref">Section 5.2</a>), 
        it focuses on the capacity-sharing aspect of
        the candidate algorithm under different RTTs.<a href="#section-5.5-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2">
          <dt id="section-5.5-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.5-2.2">It is expected that the competing flows will
        converge to bit rates to accommodate all the flows with minimum
        possible latency and loss. The effectiveness of the algorithm depends
        on how fast and fairly the competing flows converge to their steady
        states irrespective of the RTT observed.<a href="#section-5.5-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.5-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.5-2.4">As described in <a href="#EM" class="xref">Section 4.1</a>.<a href="#section-5.5-2.4" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.5-2.5">Testbed topology: </dt>
          <dd style="margin-left: 1.5em" id="section-5.5-2.6">Five (5) media sources S1..S5 are connected
        to their corresponding media sinks R1..R5. The media traffic is
        transported over the forward path, and the corresponding feedback/control
        traffic is transported over the backward path. The topology is the
        same as in <a href="#competing-rmcat-flow" class="xref">Section 5.4</a>.<a href="#section-5.5-2.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.5-2.7">Testbed attributes: </dt>
          <dd style="margin-left: 1.5em" id="section-5.5-2.8">
            <p id="section-5.5-2.8.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2">
              <dt id="section-5.5-2.8.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.2">300 s<a href="#section-5.5-2.8.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.5-2.8.2.3">Path characteristics: </dt>
              <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.4">
                <p id="section-5.5-2.8.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.4.2">
                  <dt id="section-5.5-2.8.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.4.2.2">4 Mbps<a href="#section-5.5-2.8.2.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.5-2.8.2.4.2.3">Path capacity ratio:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.4.2.4">1.0<a href="#section-5.5-2.8.2.4.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.5-2.8.2.4.2.5">One-way propagation delay for each flow:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.4.2.6">10 ms for S1-R1,
                25 ms for S2-R2, 50 ms for S3-R3, 100 ms for S4-R4, and 150 ms
                S5-R5.<a href="#section-5.5-2.8.2.4.2.6" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.5-2.8.2.5">Application-related: </dt>
              <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6">
                <p id="section-5.5-2.8.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.6.2">
                  <dt id="section-5.5-2.8.2.6.2.1">Media source: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2">
                    <p id="section-5.5-2.8.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.6.2.2.2">
                      <dt id="section-5.5-2.8.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.2">
                        <p id="section-5.5-2.8.2.6.2.2.2.2.1">Video<a href="#section-5.5-2.8.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.6.2.2.2.2.2">
                          <dt id="section-5.5-2.8.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.2.2.2">forward<a href="#section-5.5-2.8.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.2.2.4">five (5)<a href="#section-5.5-2.8.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.2.2.2.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.2.2.6">New media flows are added
                        sequentially, at short time intervals. See the 
                        test-specific setup below.<a href="#section-5.5-2.8.2.6.2.2.2.2.2.6" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.4">
                        <p id="section-5.5-2.8.2.6.2.2.2.4.1">Audio<a href="#section-5.5-2.8.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.6.2.2.2.4.2">
                          <dt id="section-5.5-2.8.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.4.2.2">forward<a href="#section-5.5-2.8.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.4.2.4"> five (5)<a href="#section-5.5-2.8.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.2.2.4.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.2.2.4.2.6">New media flows are added
                        sequentially, at short time intervals. See the
                        test-specific setup below.<a href="#section-5.5-2.8.2.6.2.2.2.4.2.6" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.5-2.8.2.6.2.3">Competing traffic: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.4">
                    <p id="section-5.5-2.8.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.5-2.8.2.6.2.4.2">
                      <dt id="section-5.5-2.8.2.6.2.4.2.1">Number of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.5-2.8.2.6.2.4.2.2">zero (0)<a href="#section-5.5-2.8.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.5-2.9">Test-specific information: </dt>
          <dd style="margin-left: 1.5em" id="section-5.5-2.10">
            <a href="#MTL_RTT" class="xref">Table 6</a> defines the
            media timeline for both media types.<a href="#section-5.5-2.10" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-media-timeline-for-video-an"></span><div id="MTL_RTT">
<table class="center" id="table-6">
          <caption>
<a href="#table-6" class="selfRef">Table 6</a>:
<a href="#name-media-timeline-for-video-an" class="selfRef">Media Timeline for Video and Audio Media Sources</a>
          </caption>
<thead>
            <tr>
              <th class="text-left" rowspan="1" colspan="1">Flow ID</th>
              <th class="text-left" rowspan="1" colspan="1">Media type</th>
              <th class="text-left" rowspan="1" colspan="1">Start time</th>
              <th class="text-left" rowspan="1" colspan="1">End time</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">1</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">2</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">10 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">3</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">20 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">4</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">30 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">5</td>
              <td class="text-left" rowspan="1" colspan="1">Video</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">6</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">0 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">7</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">10 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">8</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">20 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">9</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">30 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
            <tr>
              <td class="text-left" rowspan="1" colspan="1">10</td>
              <td class="text-left" rowspan="1" colspan="1">Audio</td>
              <td class="text-left" rowspan="1" colspan="1">40 s</td>
              <td class="text-left" rowspan="1" colspan="1">299 s</td>
            </tr>
          </tbody>
        </table>
</div>
</section>
<section id="section-5.6">
        <h3 id="name-media-flow-competing-with-a">
<a href="#section-5.6" class="section-number selfRef">5.6. </a><a href="#name-media-flow-competing-with-a" class="section-name selfRef">Media Flow Competing with a Long TCP Flow</a>
        </h3>
<p id="section-5.6-1">In this test case, one or more media flows share the bottleneck
        link with at least one long-lived TCP flow. Long-lived TCP flows
        download data throughout the session and are expected to have infinite
        amount of data to send and receive. This is a scenario where a
        multimedia application coexists with a large file download. The test
        case measures the adaptivity of the candidate algorithm to competing
        traffic. It addresses requirement 3 in <span><a href="https://www.rfc-editor.org/rfc/rfc8836#section-2" class="relref">Section 2</a> of [<a href="#RFC8836" class="xref">RFC8836</a>]</span>.<a href="#section-5.6-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-2">
          <dt id="section-5.6-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.6-2.2">Depending on the convergence observed in test
        cases 5.1 and 5.2, the candidate algorithm may be able to avoid
        congestion collapse. In the worst case, the media stream will fall to
        the minimum media bit rate.<a href="#section-5.6-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.6-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.6-2.4">
            <p id="section-5.6-2.4.1">Includes the following metrics in addition to those described
        in <a href="#EM" class="xref">Section 4.1</a>:<a href="#section-5.6-2.4.1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-5.6-2.4.2">
              <li id="section-5.6-2.4.2.1">
                <p id="section-5.6-2.4.2.1.1">Flow level:<a href="#section-5.6-2.4.2.1.1" class="pilcrow">¶</a></p>
<ol start="1" type="a" class="normal type-a" id="section-5.6-2.4.2.1.2">
                   <li id="section-5.6-2.4.2.1.2.1">TCP throughput<a href="#section-5.6-2.4.2.1.2.1" class="pilcrow">¶</a>
</li>
                  <li id="section-5.6-2.4.2.1.2.2">Loss for the TCP flow<a href="#section-5.6-2.4.2.1.2.2" class="pilcrow">¶</a>
</li>
                </ol>
</li>
            </ol>
</dd>
          <dd class="break"></dd>
<dt id="section-5.6-2.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.6-2.6">One (1) media source S1 is connected to the
        corresponding media sink, R1. In addition, there is a long-lived TCP
        flow sharing the same bottleneck link. The media traffic is
        transported over the forward path, and the corresponding feedback/control
        traffic is transported over the backward path. The TCP traffic goes
        over the forward path from S_tcp with acknowledgment packets going over
        the backward path from R_tcp.<a href="#section-5.6-2.6" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-tcp-vs"></span><div id="fig-eval-topo-4-4">
<figure id="figure-6">
          <div class="artwork art-text alignLeft" id="section-5.6-3.1">
<pre>
 +--+                                                     +--+
 |S1|===== \              Forward --&gt;              / =====|R1|
 +--+      \\                                     //      +--+
            \\                                   //
            +-----+                             +-----+
            |  A  |----------------------------&gt;|  B  |
            |     |&lt;----------------------------|     |
            +-----+                             +-----+
            //        &lt;-- Backward               \\
+-----+    //                                     \\    +-----+
|S_tcp|=== /                                       \ ===|R_tcp|
+-----+                                                 +-----+
</pre>
</div>
<figcaption><a href="#figure-6" class="selfRef">Figure 6</a>:
<a href="#name-testbed-topology-for-tcp-vs" class="selfRef">Testbed Topology for TCP vs Congestion-Controlled Media Flows</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4">
          <dt id="section-5.6-4.1">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.6-4.2">
            <p id="section-5.6-4.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2">
              <dt id="section-5.6-4.2.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.2">120 s<a href="#section-5.6-4.2.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.6-4.2.2.3">Path characteristics:</dt>
              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.4">
                <p id="section-5.6-4.2.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.4.2">
                  <dt id="section-5.6-4.2.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.4.2.2">2 Mbps<a href="#section-5.6-4.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.6-4.2.2.4.2.3">Path capacity ratio:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.4.2.4">1.0<a href="#section-5.6-4.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.6-4.2.2.4.2.5">Bottleneck queue size:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.4.2.6">[300 ms, 1000 ms]<a href="#section-5.6-4.2.2.4.2.6" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.6-4.2.2.5">Application-related:</dt>
              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6">
                <p id="section-5.6-4.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2">
                  <dt id="section-5.6-4.2.2.6.2.1">Media source:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2">
                    <p id="section-5.6-4.2.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.2.2">
                      <dt id="section-5.6-4.2.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2">
                        <p id="section-5.6-4.2.2.6.2.2.2.2.1">Video<a href="#section-5.6-4.2.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.2.2.2.2">
                          <dt id="section-5.6-4.2.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2.2.2">forward<a href="#section-5.6-4.2.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2.2.4">one (1)<a href="#section-5.6-4.2.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.2.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2.2.6">
                            <p id="section-5.6-4.2.2.6.2.2.2.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.2.2.2.2.6.2">
                              <dt id="section-5.6-4.2.2.6.2.2.2.2.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2.2.6.2.2">5 s<a href="#section-5.6-4.2.2.6.2.2.2.2.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.2.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.2.2.6.2.4">119 s<a href="#section-5.6-4.2.2.6.2.2.2.2.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4">
                        <p id="section-5.6-4.2.2.6.2.2.2.4.1">Audio<a href="#section-5.6-4.2.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.2.2.4.2">
                          <dt id="section-5.6-4.2.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4.2.2">forward<a href="#section-5.6-4.2.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4.2.4">one (1)<a href="#section-5.6-4.2.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.4.2.5">Media timeline:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4.2.6">
                            <p id="section-5.6-4.2.2.6.2.2.2.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.2.2.4.2.6.2">
                              <dt id="section-5.6-4.2.2.6.2.2.2.4.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4.2.6.2.2">5 s<a href="#section-5.6-4.2.2.6.2.2.2.4.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.2.2.4.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.2.2.4.2.6.2.4">119 s<a href="#section-5.6-4.2.2.6.2.2.2.4.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
<p id="section-5.6-4.2.2.6.2.2.3">Additionally, implementers are encouraged to run the
                experiment with multiple media sources.<a href="#section-5.6-4.2.2.6.2.2.3" class="pilcrow">¶</a></p>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.3">Competing traffic:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4">
                    <p id="section-5.6-4.2.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.4.2">
                      <dt id="section-5.6-4.2.2.6.2.4.2.1">Number and types of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.2">one (1) and long-lived TCP<a href="#section-5.6-4.2.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.4.2.3">Traffic direction:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.4">forward<a href="#section-5.6-4.2.2.6.2.4.2.4" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.4.2.5">Congestion control:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.6">default TCP congestion control 
                       <span>[<a href="#RFC5681" class="xref">RFC5681</a>]</span>. Implementers are also encouraged to
                       run the experiment with alternative TCP congestion control algorithms.<a href="#section-5.6-4.2.2.6.2.4.2.6" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.4.2.7">Traffic timeline: </dt>
                      <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.8">
                        <p id="section-5.6-4.2.2.6.2.4.2.8.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.6-4.2.2.6.2.4.2.8.2">
                          <dt id="section-5.6-4.2.2.6.2.4.2.8.2.1">Start time:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.8.2.2">0 s<a href="#section-5.6-4.2.2.6.2.4.2.8.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.6-4.2.2.6.2.4.2.8.2.3">End time:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.6-4.2.2.6.2.4.2.8.2.4">119 s<a href="#section-5.6-4.2.2.6.2.4.2.8.2.4" class="pilcrow">¶</a>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.6-4.3">Test-specific information:</dt>
          <dd style="margin-left: 1.5em" id="section-5.6-4.4">none<a href="#section-5.6-4.4" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
</section>
<section id="section-5.7">
        <h3 id="name-media-flow-competing-with-s">
<a href="#section-5.7" class="section-number selfRef">5.7. </a><a href="#name-media-flow-competing-with-s" class="section-name selfRef">Media Flow Competing with Short TCP Flows</a>
        </h3>
<p id="section-5.7-1">In this test case, one or more congestion-controlled media flows
        share the bottleneck link with multiple short-lived TCP flows.
        Short-lived TCP flows resemble the on/off pattern observed in web
        traffic, wherein clients (for example, browsers) connect to a server
        and download a resource (typically a web page, few images, text files,
        etc.) using several TCP connections. This scenario shows the
        performance of a multimedia application when several browser windows
        are active. The test case measures the adaptivity of the candidate
        algorithm to competing web traffic, and it addresses requirement 1.E
        in <span><a href="https://www.rfc-editor.org/rfc/rfc8836#section-2" class="relref">Section 2</a> of [<a href="#RFC8836" class="xref">RFC8836</a>]</span>.<a href="#section-5.7-1" class="pilcrow">¶</a></p>
<p id="section-5.7-2">Depending on the number of short TCP flows, the cross traffic
        either appears as a short burst flow or resembles a long-lived TCP flow. The
        intention of this test is to observe the impact of a short-term burst on
        the behavior of the candidate algorithm.<a href="#section-5.7-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3">
          <dt id="section-5.7-3.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.7-3.2"> The candidate algorithm is expected to avoid
        flow starvation during the presence of short and bursty competing TCP
        flows, streaming at least at the minimum media bit rate. After
        competing TCP flows terminate, the media streams are expected to be
        robust enough to eventually recover to previous steady state behavior,
        and at the very least, avoid persistent starvation.<a href="#section-5.7-3.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.7-3.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.7-3.4">
            <p id="section-5.7-3.4.1">Includes the following metrics in addition to those described
        in <a href="#EM" class="xref">Section 4.1</a>:<a href="#section-5.7-3.4.1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-5.7-3.4.2">
        <li id="section-5.7-3.4.2.1">
                <p id="section-5.7-3.4.2.1.1">Flow level:<a href="#section-5.7-3.4.2.1.1" class="pilcrow">¶</a></p>
<ol start="1" type="A" class="normal type-A" id="section-5.7-3.4.2.1.2">
             <li id="section-5.7-3.4.2.1.2.1">Variation in the sending rate of the TCP flow<a href="#section-5.7-3.4.2.1.2.1" class="pilcrow">¶</a>
</li>
                  <li id="section-5.7-3.4.2.1.2.2">TCP throughput<a href="#section-5.7-3.4.2.1.2.2" class="pilcrow">¶</a>
</li>
                </ol>
</li>
            </ol>
</dd>
          <dd class="break"></dd>
<dt id="section-5.7-3.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.7-3.6">The topology described here is the same as the one
        described in <a href="#fig-eval-topo-4-4" class="xref">Figure 6</a>.<a href="#section-5.7-3.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.7-3.7">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.7-3.8">
            <p id="section-5.7-3.8.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2">
              <dt id="section-5.7-3.8.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.2">300 s<a href="#section-5.7-3.8.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-5.7-3.8.2.3">Path characteristics:</dt>
              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.4">
                <p id="section-5.7-3.8.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.4.2">
                  <dt id="section-5.7-3.8.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.4.2.2">2.0 Mbps<a href="#section-5.7-3.8.2.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.7-3.8.2.4.2.3">Path capacity ratio:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.4.2.4">1.0<a href="#section-5.7-3.8.2.4.2.4" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.7-3.8.2.5">Application-related: </dt>
              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6">
                <p id="section-5.7-3.8.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2">
                  <dt id="section-5.7-3.8.2.6.2.1">Media source: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2">
                    <p id="section-5.7-3.8.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.2.2">
                      <dt id="section-5.7-3.8.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2">
                        <p id="section-5.7-3.8.2.6.2.2.2.2.1">Video<a href="#section-5.7-3.8.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.2.2.2.2">
                          <dt id="section-5.7-3.8.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2.2.2">forward<a href="#section-5.7-3.8.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2.2.4">two (2)<a href="#section-5.7-3.8.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.2.2.5">Media timeline: </dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2.2.6">
                            <p id="section-5.7-3.8.2.6.2.2.2.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.2.2.2.2.6.2">
                              <dt id="section-5.7-3.8.2.6.2.2.2.2.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2.2.6.2.2">5 s<a href="#section-5.7-3.8.2.6.2.2.2.2.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.2.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.2.2.6.2.4">299 s<a href="#section-5.7-3.8.2.6.2.2.2.2.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4">
                        <p id="section-5.7-3.8.2.6.2.2.2.4.1">Audio<a href="#section-5.7-3.8.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.2.2.4.2">
                          <dt id="section-5.7-3.8.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4.2.2">forward<a href="#section-5.7-3.8.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4.2.4"> two (2)<a href="#section-5.7-3.8.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.4.2.5">Media timeline: </dt>
                          <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4.2.6">
                            <p id="section-5.7-3.8.2.6.2.2.2.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.2.2.4.2.6.2">
                              <dt id="section-5.7-3.8.2.6.2.2.2.4.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4.2.6.2.2"> 5 s<a href="#section-5.7-3.8.2.6.2.2.2.4.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.2.2.4.2.6.2.3">End time: </dt>
                              <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.2.2.4.2.6.2.4">299 s<a href="#section-5.7-3.8.2.6.2.2.2.4.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.3">Competing traffic: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.4">
                    <p id="section-5.7-3.8.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.8.2.6.2.4.2">
                      <dt id="section-5.7-3.8.2.6.2.4.2.1">Number and types of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.4.2.2"> ten (10), short-lived TCP flows.<a href="#section-5.7-3.8.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.4.2.3">Traffic direction: </dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.4.2.4">forward<a href="#section-5.7-3.8.2.6.2.4.2.4" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.4.2.5">Congestion algorithm:</dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.4.2.6"> default TCP congestion control
                    <span>[<a href="#RFC5681" class="xref">RFC5681</a>]</span>. Implementers are also encouraged
                    to run the experiment with an alternative TCP congestion
                    control algorithm.<a href="#section-5.7-3.8.2.6.2.4.2.6" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-5.7-3.8.2.6.2.4.2.7">Traffic timeline: </dt>
                      <dd style="margin-left: 1.5em" id="section-5.7-3.8.2.6.2.4.2.8">Each short TCP flow is modeled as a
                    sequence of file downloads interleaved with idle periods.
                    Not all short TCP flows start at the same time, two of them
                    start in the ON state, while rest of the eight flows start in
                    an OFF state. For a description of the short TCP flow model, see
                    test-specific information below.<a href="#section-5.7-3.8.2.6.2.4.2.8" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
          <dd class="break"></dd>
<dt id="section-5.7-3.9">Test-specific information: </dt>
          <dd style="margin-left: 1.5em" id="section-5.7-3.10">
            <p id="section-5.7-3.10.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.7-3.10.2">
              <dt id="section-5.7-3.10.2.1">Short TCP traffic model:</dt>
              <dd style="margin-left: 1.5em" id="section-5.7-3.10.2.2">The short TCP model to be used in
            this test is described in <span>[<a href="#RFC8868" class="xref">RFC8868</a>]</span>.<a href="#section-5.7-3.10.2.2" class="pilcrow">¶</a>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
        <dd class="break"></dd>
</dl>
</section>
<section id="section-5.8">
        <h3 id="name-media-pause-and-resume">
<a href="#section-5.8" class="section-number selfRef">5.8. </a><a href="#name-media-pause-and-resume" class="section-name selfRef">Media Pause and Resume</a>
        </h3>
<p id="section-5.8-1">In this test case, more than one real-time interactive media flow
        share the link bandwidth, and all flows reach to a steady state by
        utilizing the link capacity in an optimum way. At this stage, one of
        the media flows is paused for a moment. This event will result in more
        available bandwidth for the rest of the flows as they are on a shared
        link. When the paused media flow resumes, it no longer has the
        same bandwidth share on the link. It has to make its way through the
        other existing flows in the link to achieve a fair share of the link
        capacity. This test case is important specially for real-time
        interactive media, which consists of more than one media flows and can
        pause/resume media flows at any point of time during the session. This
        test case directly addresses requirement 5 in 
        <span><a href="https://www.rfc-editor.org/rfc/rfc8836#section-2" class="relref">Section 2</a> of [<a href="#RFC8836" class="xref">RFC8836</a>]</span>. One can think of it as a
        variation of the test case defined in 
        <a href="#competing-rmcat-flow" class="xref">Section 5.4</a>. 
        However, it is different as the
        candidate algorithms can use different strategies to increase 
        efficiency, for example, in terms of fairness, convergence time,
        oscillation reduction, etc., by capitalizing on the fact that they have previous
        information of the link.<a href="#section-5.8-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.8-2">
          <dt id="section-5.8-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-5.8-2.2">During the period where the third stream is
        paused, the two remaining flows are expected to increase their rates
        and reach the maximum media bit rate. When the third stream resumes,
        all three flows are expected to converge to the same original fair
        share of rates prior to the media pause/resume event.<a href="#section-5.8-2.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.8-2.3">Evaluation metrics:</dt>
          <dd style="margin-left: 1.5em" id="section-5.8-2.4">
            <p id="section-5.8-2.4.1">Includes the following metrics in addition to those described
        in <a href="#EM" class="xref">Section 4.1</a>:<a href="#section-5.8-2.4.1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-5.8-2.4.2">
          <li id="section-5.8-2.4.2.1">
                <p id="section-5.8-2.4.2.1.1">Flow level:<a href="#section-5.8-2.4.2.1.1" class="pilcrow">¶</a></p>
<ol start="1" type="A" class="normal type-A" id="section-5.8-2.4.2.1.2">
              <li id="section-5.8-2.4.2.1.2.1">Variation in sending bit rate and throughput. Mainly
                observing the frequency and magnitude of oscillations.<a href="#section-5.8-2.4.2.1.2.1" class="pilcrow">¶</a>
</li>
                </ol>
</li>
            </ol>
</dd>
          <dd class="break"></dd>
<dt id="section-5.8-2.5">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-5.8-2.6">Same as the test case defined in <a href="#competing-rmcat-flow" class="xref">Section 5.4</a>.<a href="#section-5.8-2.6" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-5.8-2.7">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-5.8-2.8">
            <p id="section-5.8-2.8.1">The general description of the testbed parameters are 
        the same as <a href="#competing-rmcat-flow" class="xref">Section 5.4</a> 
        with changes in the test-specific setup as below:<a href="#section-5.8-2.8.1" class="pilcrow">¶</a></p>
<p id="section-5.8-2.8.2">Other test-specific setup:<a href="#section-5.8-2.8.2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.8-2.8.3">
              <dt id="section-5.8-2.8.3.1">Media flow timeline: </dt>
              <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2">
                <p id="section-5.8-2.8.3.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.8-2.8.3.2.2">
                  <dt id="section-5.8-2.8.3.2.2.1">Flow ID: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2.2.2">one (1)<a href="#section-5.8-2.8.3.2.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.2.2.3">Start time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2.2.4">0 s<a href="#section-5.8-2.8.3.2.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.2.2.5">Flow duration: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2.2.6">119 s<a href="#section-5.8-2.8.3.2.2.6" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.2.2.7">Pause time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2.2.8">not required<a href="#section-5.8-2.8.3.2.2.8" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.2.2.9">Resume time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.2.2.10">not required<a href="#section-5.8-2.8.3.2.2.10" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.8-2.8.3.3">Media flow timeline: </dt>
              <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4">
                <p id="section-5.8-2.8.3.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.8-2.8.3.4.2">
                  <dt id="section-5.8-2.8.3.4.2.1">Flow ID: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4.2.2">two (2)<a href="#section-5.8-2.8.3.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.4.2.3">Start time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4.2.4">0 s<a href="#section-5.8-2.8.3.4.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.4.2.5">Flow duration: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4.2.6">119 s<a href="#section-5.8-2.8.3.4.2.6" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.4.2.7">Pause time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4.2.8">at 40 s<a href="#section-5.8-2.8.3.4.2.8" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.4.2.9">Resume time: </dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.4.2.10">at 60 s<a href="#section-5.8-2.8.3.4.2.10" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-5.8-2.8.3.5">Media flow timeline: </dt>
              <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6">
                <p id="section-5.8-2.8.3.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-5.8-2.8.3.6.2">
                  <dt id="section-5.8-2.8.3.6.2.1">Flow ID:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6.2.2">three (3)<a href="#section-5.8-2.8.3.6.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.6.2.3">Start time:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6.2.4">0 s<a href="#section-5.8-2.8.3.6.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.6.2.5">Flow duration:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6.2.6">119 s<a href="#section-5.8-2.8.3.6.2.6" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.6.2.7">Pause time:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6.2.8">not required<a href="#section-5.8-2.8.3.6.2.8" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-5.8-2.8.3.6.2.9">Resume time:</dt>
                  <dd style="margin-left: 1.5em" id="section-5.8-2.8.3.6.2.10">not required<a href="#section-5.8-2.8.3.6.2.10" class="pilcrow">¶</a>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
        <dd class="break"></dd>
</dl>
</section>
</section>
</div>
<section id="section-6">
      <h2 id="name-other-potential-test-cases">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-other-potential-test-cases" class="section-name selfRef">Other Potential Test Cases</a>
      </h2>
<p id="section-6-1">It has been noticed that there are other interesting test cases
      besides the basic test cases listed above. In many aspects, these
      additional test cases can help further evaluation of the candidate
      algorithm. They are listed below.<a href="#section-6-1" class="pilcrow">¶</a></p>
<section id="section-6.1">
        <h3 id="name-media-flows-with-priority">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-media-flows-with-priority" class="section-name selfRef">Media Flows with Priority</a>
        </h3>
<p id="section-6.1-1">In this test case, media flows will have different priority levels.
        This is an extension of <a href="#competing-rmcat-flow" class="xref">Section 5.4</a>
        where the same test is run with different priority levels imposed
        on each of the media flows. For example, the first flow (S1) is
        assigned a priority of 2, whereas the remaining two flows (S2 and S3)
        are assigned a priority of 1. The candidate algorithm must reflect the
        relative priorities assigned to each media flow. In this case, the
        first flow (S1) must arrive at a steady-state rate approximately twice
        that of the other two flows (S2 and S3).<a href="#section-6.1-1" class="pilcrow">¶</a></p>
<p id="section-6.1-2">The candidate algorithm can use a coupled congestion control
        mechanism <span>[<a href="#RFC8699" class="xref">RFC8699</a>]</span> or use a weighted
        priority scheduler for the bandwidth distribution according to the
        respective media flow priority or use.<a href="#section-6.1-2" class="pilcrow">¶</a></p>
</section>
<section id="section-6.2">
        <h3 id="name-explicit-congestion-notific">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-explicit-congestion-notific" class="section-name selfRef">Explicit Congestion Notification Usage</a>
        </h3>
<p id="section-6.2-1">This test case requires running all the basic test cases with the
        availability of Explicit Congestion Notification (ECN) 
        <span>[<a href="#RFC6679" class="xref">RFC6679</a>]</span> feature enabled. The goal of this test is to
        exhibit that the candidate algorithms do not fail when ECN signals are
        available. With ECN signals enabled, the algorithms are expected to
        perform better than their delay-based variants.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
</section>
<section id="section-6.3">
        <h3 id="name-multiple-bottlenecks">
<a href="#section-6.3" class="section-number selfRef">6.3. </a><a href="#name-multiple-bottlenecks" class="section-name selfRef">Multiple Bottlenecks</a>
        </h3>
<p id="section-6.3-1">In this test case, one congestion-controlled media flow, S1-&gt;R1,
        traverses a path with multiple bottlenecks. As illustrated in 
        <a href="#fig-eval-topo-6-2" class="xref">Figure 7</a>, the first flow (S1-&gt;R1) competes with
        the second congestion-controlled media flow (S2-&gt;R2) over the link
        between A and B, which is close to the sender side. Again, that flow
        (S1-&gt;R1) competes with the third congestion-controlled media flow
        (S3-&gt;R3) over the link between C and D, which is close to the
        receiver side. The goal of this test is to ensure that the candidate
        algorithms work properly in the presence of multiple bottleneck links
        on the end-to-end path.<a href="#section-6.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-2">
          <dt id="section-6.3-2.1">Expected behavior:</dt>
          <dd style="margin-left: 1.5em" id="section-6.3-2.2"> The candidate algorithm is expected to achieve
        full utilization at both bottleneck links without starving any of the
        three congestion-controlled media flows and ensuring fair share of the
        available bandwidth at each bottleneck.<a href="#section-6.3-2.2" class="pilcrow">¶</a>
</dd>
        <dd class="break"></dd>
</dl>
<span id="name-testbed-topology-for-multipl"></span><div id="fig-eval-topo-6-2">
<figure id="figure-7">
          <div class="artwork art-text alignLeft" id="section-6.3-3.1">
<pre>
                             Forward ----&gt;

            +---+          +---+        +---+      +---+
            |S2 |          |R2 |        |S3 |      |R3 |
            +---+          +---+        +---+      +---+
              |              |            |          |
              |              |            |          |
+---+      +-----+       +-----+      +-----+     +-----+      +---+
|S1 |======|  A  |------&gt;|  B  |-----&gt;|  C  |----&gt;|  D  |======|R1 |
+---+      |     |&lt;------|     |&lt;-----|     |&lt;----|     |      +---+
           +-----+       +-----+      +-----+     +-----+

                    1st                       2nd
             Bottleneck (A-&gt;B)          Bottleneck (C-&gt;D)

                          &lt;------ Backward
</pre>
</div>
<figcaption><a href="#figure-7" class="selfRef">Figure 7</a>:
<a href="#name-testbed-topology-for-multipl" class="selfRef">Testbed Topology for Multiple Bottlenecks</a>
          </figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4">
          <dt id="section-6.3-4.1">Testbed topology:</dt>
          <dd style="margin-left: 1.5em" id="section-6.3-4.2">Three media sources S1, S2, and S3 are connected
      to respective destinations R1, R2, and R3. For all three flows, the
      media traffic is transported over the forward path, and the corresponding
      feedback/control traffic is transported over the backward path.<a href="#section-6.3-4.2" class="pilcrow">¶</a>
</dd>
          <dd class="break"></dd>
<dt id="section-6.3-4.3">Testbed attributes:</dt>
          <dd style="margin-left: 1.5em" id="section-6.3-4.4">
            <p id="section-6.3-4.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2">
              <dt id="section-6.3-4.4.2.1">Test duration:</dt>
              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.2"> 300 s<a href="#section-6.3-4.4.2.2" class="pilcrow">¶</a>
</dd>
              <dd class="break"></dd>
<dt id="section-6.3-4.4.2.3">Path characteristics: </dt>
              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4">
                <p id="section-6.3-4.4.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.4.2">
                  <dt id="section-6.3-4.4.2.4.2.1">Reference bottleneck capacity:</dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.2">2 Mbps<a href="#section-6.3-4.4.2.4.2.2" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.3">Path capacity ratio between A and B:</dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.4">1.0<a href="#section-6.3-4.4.2.4.2.4" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.5">Path capacity ratio between B and C:</dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.6">4.0<a href="#section-6.3-4.4.2.4.2.6" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.7">Path capacity ratio between C and D:</dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.8">0.75<a href="#section-6.3-4.4.2.4.2.8" class="pilcrow">¶</a>
</dd>
                  <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.9">One-way propagation delay: </dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.10">
                    <p id="section-6.3-4.4.2.4.2.10.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.4.2.10.2">
                      <dt id="section-6.3-4.4.2.4.2.10.2.1">Between S1 and R1:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.10.2.2">100 ms<a href="#section-6.3-4.4.2.4.2.10.2.2" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.10.2.3">Between S2 and R2:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.10.2.4">40 ms<a href="#section-6.3-4.4.2.4.2.10.2.4" class="pilcrow">¶</a>
</dd>
                      <dd class="break"></dd>
<dt id="section-6.3-4.4.2.4.2.10.2.5">Between S3 and R3:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.4.2.10.2.6">40 ms<a href="#section-6.3-4.4.2.4.2.10.2.6" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
              <dd class="break"></dd>
<dt id="section-6.3-4.4.2.5">Application-related: </dt>
              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6">
                <p id="section-6.3-4.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2">
                  <dt id="section-6.3-4.4.2.6.2.1">Media source:</dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2">
                    <p id="section-6.3-4.4.2.6.2.2.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.2.2">
                      <dt id="section-6.3-4.4.2.6.2.2.2.1">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2">
                        <p id="section-6.3-4.4.2.6.2.2.2.2.1">Video<a href="#section-6.3-4.4.2.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.2.2.2.2">
                          <dt id="section-6.3-4.4.2.6.2.2.2.2.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2.2.2">Forward<a href="#section-6.3-4.4.2.6.2.2.2.2.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.2.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2.2.4">Three (3)<a href="#section-6.3-4.4.2.6.2.2.2.2.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.2.2.5">Media timeline: </dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2.2.6">
                            <p id="section-6.3-4.4.2.6.2.2.2.2.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.2.2.2.2.6.2">
                              <dt id="section-6.3-4.4.2.6.2.2.2.2.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2.2.6.2.2"> 0 s<a href="#section-6.3-4.4.2.6.2.2.2.2.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.2.2.6.2.3">End time: </dt>
                              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.2.2.6.2.4">299 s<a href="#section-6.3-4.4.2.6.2.2.2.2.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                      <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.3">Media type:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4">
                        <p id="section-6.3-4.4.2.6.2.2.2.4.1">Audio<a href="#section-6.3-4.4.2.6.2.2.2.4.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.2.2.4.2">
                          <dt id="section-6.3-4.4.2.6.2.2.2.4.2.1">Media direction:</dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4.2.2">Forward<a href="#section-6.3-4.4.2.6.2.2.2.4.2.2" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.4.2.3">Number of media sources:</dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4.2.4">Three (3)<a href="#section-6.3-4.4.2.6.2.2.2.4.2.4" class="pilcrow">¶</a>
</dd>
                          <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.4.2.5">Media timeline: </dt>
                          <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4.2.6">
                            <p id="section-6.3-4.4.2.6.2.2.2.4.2.6.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.2.2.4.2.6.2">
                              <dt id="section-6.3-4.4.2.6.2.2.2.4.2.6.2.1">Start time:</dt>
                              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4.2.6.2.2">0 s<a href="#section-6.3-4.4.2.6.2.2.2.4.2.6.2.2" class="pilcrow">¶</a>
</dd>
                              <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.2.2.4.2.6.2.3">End time:</dt>
                              <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.2.2.4.2.6.2.4">299 s<a href="#section-6.3-4.4.2.6.2.2.2.4.2.6.2.4" class="pilcrow">¶</a>
</dd>
                            <dd class="break"></dd>
</dl>
</dd>
                        <dd class="break"></dd>
</dl>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                  <dd class="break"></dd>
<dt id="section-6.3-4.4.2.6.2.3">Competing traffic: </dt>
                  <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.4">
                    <p id="section-6.3-4.4.2.6.2.4.1"><br></p>
<span class="break"></span><dl class="dlParallel" id="section-6.3-4.4.2.6.2.4.2">
                      <dt id="section-6.3-4.4.2.6.2.4.2.1">Number of sources:</dt>
                      <dd style="margin-left: 1.5em" id="section-6.3-4.4.2.6.2.4.2.2">Zero (0)<a href="#section-6.3-4.4.2.6.2.4.2.2" class="pilcrow">¶</a>
</dd>
                    <dd class="break"></dd>
</dl>
</dd>
                <dd class="break"></dd>
</dl>
</dd>
            <dd class="break"></dd>
</dl>
</dd>
        <dd class="break"></dd>
</dl>
</section>
</section>
<section id="section-7">
      <h2 id="name-wireless-access-links">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-wireless-access-links" class="section-name selfRef">Wireless Access Links</a>
      </h2>
<p id="section-7-1">Additional wireless network (both cellular network and Wi-Fi network)
      specific test cases are defined in <span>[<a href="#RFC8869" class="xref">RFC8869</a>]</span>.<a href="#section-7-1" class="pilcrow">¶</a></p>
</section>
<section id="section-8">
      <h2 id="name-security-considerations">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
      </h2>
<p id="section-8-1">The security considerations in <span><a href="https://www.rfc-editor.org/rfc/rfc8868#section-6" class="relref">Section 6</a> of [<a href="#RFC8868" class="xref">RFC8868</a>]</span> and the relevant congestion
      control algorithms apply. The principles for congestion control are
      described in <span>[<a href="#RFC2914" class="xref">RFC2914</a>]</span>, and in particular any new method
      must implement safeguards to avoid congestion collapse of the
      Internet.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2">The evaluation of the test cases are intended to be run in a
      controlled lab environment. Hence, the applications, simulators, and
      network nodes ought to be well-behaved and should not impact the desired
      results. Moreover, proper measures must be taken to avoid leaking
      nonresponsive traffic from unproven congestion avoidance techniques
      onto the open Internet.<a href="#section-8-2" class="pilcrow">¶</a></p>
</section>
<section id="section-9">
      <h2 id="name-iana-considerations">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
      </h2>
<p id="section-9-1">This document has no IANA actions.<a href="#section-9-1" class="pilcrow">¶</a></p>
</section>
<section id="section-10">
      <h2 id="name-references">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-references" class="section-name selfRef">References</a>
      </h2>
<section id="section-10.1">
        <h3 id="name-normative-references">
<a href="#section-10.1" class="section-number selfRef">10.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
        </h3>
<dl class="references">
<dt id="RFC3550">[RFC3550]</dt>
        <dd>
<span class="refAuthor">Schulzrinne, H.</span><span class="refAuthor">, Casner, S.</span><span class="refAuthor">, Frederick, R.</span><span class="refAuthor">, and V. Jacobson</span>, <span class="refTitle">"RTP: A Transport Protocol for Real-Time Applications"</span>, <span class="seriesInfo">STD 64</span>, <span class="seriesInfo">RFC 3550</span>, <span class="seriesInfo">DOI 10.17487/RFC3550</span>, <time datetime="2003-07" class="refDate">July 2003</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3550">https://www.rfc-editor.org/info/rfc3550</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC3551">[RFC3551]</dt>
        <dd>
<span class="refAuthor">Schulzrinne, H.</span><span class="refAuthor"> and S. Casner</span>, <span class="refTitle">"RTP Profile for Audio and Video Conferences with Minimal Control"</span>, <span class="seriesInfo">STD 65</span>, <span class="seriesInfo">RFC 3551</span>, <span class="seriesInfo">DOI 10.17487/RFC3551</span>, <time datetime="2003-07" class="refDate">July 2003</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3551">https://www.rfc-editor.org/info/rfc3551</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC3611">[RFC3611]</dt>
        <dd>
<span class="refAuthor">Friedman, T., Ed.</span><span class="refAuthor">, Caceres, R., Ed.</span><span class="refAuthor">, and A. Clark, Ed.</span>, <span class="refTitle">"RTP Control Protocol Extended Reports (RTCP XR)"</span>, <span class="seriesInfo">RFC 3611</span>, <span class="seriesInfo">DOI 10.17487/RFC3611</span>, <time datetime="2003-11" class="refDate">November 2003</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc3611">https://www.rfc-editor.org/info/rfc3611</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC4585">[RFC4585]</dt>
        <dd>
<span class="refAuthor">Ott, J.</span><span class="refAuthor">, Wenger, S.</span><span class="refAuthor">, Sato, N.</span><span class="refAuthor">, Burmeister, C.</span><span class="refAuthor">, and J. Rey</span>, <span class="refTitle">"Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF)"</span>, <span class="seriesInfo">RFC 4585</span>, <span class="seriesInfo">DOI 10.17487/RFC4585</span>, <time datetime="2006-07" class="refDate">July 2006</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc4585">https://www.rfc-editor.org/info/rfc4585</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC5506">[RFC5506]</dt>
        <dd>
<span class="refAuthor">Johansson, I.</span><span class="refAuthor"> and M. Westerlund</span>, <span class="refTitle">"Support for Reduced-Size Real-Time Transport Control Protocol (RTCP): Opportunities and Consequences"</span>, <span class="seriesInfo">RFC 5506</span>, <span class="seriesInfo">DOI 10.17487/RFC5506</span>, <time datetime="2009-04" class="refDate">April 2009</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5506">https://www.rfc-editor.org/info/rfc5506</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC5681">[RFC5681]</dt>
        <dd>
<span class="refAuthor">Allman, M.</span><span class="refAuthor">, Paxson, V.</span><span class="refAuthor">, and E. Blanton</span>, <span class="refTitle">"TCP Congestion Control"</span>, <span class="seriesInfo">RFC 5681</span>, <span class="seriesInfo">DOI 10.17487/RFC5681</span>, <time datetime="2009-09" class="refDate">September 2009</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc5681">https://www.rfc-editor.org/info/rfc5681</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC6679">[RFC6679]</dt>
        <dd>
<span class="refAuthor">Westerlund, M.</span><span class="refAuthor">, Johansson, I.</span><span class="refAuthor">, Perkins, C.</span><span class="refAuthor">, O'Hanlon, P.</span><span class="refAuthor">, and K. Carlberg</span>, <span class="refTitle">"Explicit Congestion Notification (ECN) for RTP over UDP"</span>, <span class="seriesInfo">RFC 6679</span>, <span class="seriesInfo">DOI 10.17487/RFC6679</span>, <time datetime="2012-08" class="refDate">August 2012</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc6679">https://www.rfc-editor.org/info/rfc6679</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8593">[RFC8593]</dt>
        <dd>
<span class="refAuthor">Zhu, X.</span><span class="refAuthor">, Mena, S.</span><span class="refAuthor">, and Z. Sarker</span>, <span class="refTitle">"Video Traffic Models for RTP Congestion Control Evaluations"</span>, <span class="seriesInfo">RFC 8593</span>, <span class="seriesInfo">DOI 10.17487/RFC8593</span>, <time datetime="2019-05" class="refDate">May 2019</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8593">https://www.rfc-editor.org/info/rfc8593</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8836">[RFC8836]</dt>
        <dd>
<span class="refAuthor">Jesup, R.</span><span class="refAuthor"> and Z. Sarker, Ed.</span>, <span class="refTitle">"Congestion Control Requirements for Interactive Real-Time Media"</span>, <span class="seriesInfo">RFC 8836</span>, <span class="seriesInfo">DOI 10.17487/RFC8836</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8836">https://www.rfc-editor.org/info/rfc8836</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8868">[RFC8868]</dt>
        <dd>
<span class="refAuthor">Singh, V.</span><span class="refAuthor">, Ott, J.</span><span class="refAuthor">, and S. Holmer</span>, <span class="refTitle">"Evaluating Congestion Control for Interactive Real-Time Media"</span>, <span class="seriesInfo">RFC 8868</span>, <span class="seriesInfo">DOI 10.17487/RFC8868</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8868">https://www.rfc-editor.org/info/rfc8868</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8869">[RFC8869]</dt>
      <dd>
<span class="refAuthor">Sarker, Z.</span><span class="refAuthor">, Zhu, X.</span><span class="refAuthor">, and J. Fu</span>, <span class="refTitle">"Evaluation Test Cases for Interactive Real-Time Media over Wireless Networks"</span>, <span class="seriesInfo">RFC 8869</span>, <span class="seriesInfo">DOI 10.17487/RFC8869</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8869">https://www.rfc-editor.org/info/rfc8869</a>&gt;</span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-10.2">
        <h3 id="name-informative-references">
<a href="#section-10.2" class="section-number selfRef">10.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
        </h3>
<dl class="references">
<dt id="HEVC-seq">[HEVC-seq]</dt>
        <dd>
<span class="refAuthor">HEVC</span>, <span class="refTitle">"Test Sequences"</span>, <span>&lt;<a href="http://www.netlab.tkk.fi/~varun/test_sequences/">http://www.netlab.tkk.fi/~varun/test_sequences/</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC2914">[RFC2914]</dt>
        <dd>
<span class="refAuthor">Floyd, S.</span>, <span class="refTitle">"Congestion Control Principles"</span>, <span class="seriesInfo">BCP 41</span>, <span class="seriesInfo">RFC 2914</span>, <span class="seriesInfo">DOI 10.17487/RFC2914</span>, <time datetime="2000-09" class="refDate">September 2000</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc2914">https://www.rfc-editor.org/info/rfc2914</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC7567">[RFC7567]</dt>
        <dd>
<span class="refAuthor">Baker, F., Ed.</span><span class="refAuthor"> and G. Fairhurst, Ed.</span>, <span class="refTitle">"IETF Recommendations Regarding Active Queue Management"</span>, <span class="seriesInfo">BCP 197</span>, <span class="seriesInfo">RFC 7567</span>, <span class="seriesInfo">DOI 10.17487/RFC7567</span>, <time datetime="2015-07" class="refDate">July 2015</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc7567">https://www.rfc-editor.org/info/rfc7567</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8033">[RFC8033]</dt>
        <dd>
<span class="refAuthor">Pan, R.</span><span class="refAuthor">, Natarajan, P.</span><span class="refAuthor">, Baker, F.</span><span class="refAuthor">, and G. White</span>, <span class="refTitle">"Proportional Integral Controller Enhanced (PIE): A Lightweight Control Scheme to Address the Bufferbloat Problem"</span>, <span class="seriesInfo">RFC 8033</span>, <span class="seriesInfo">DOI 10.17487/RFC8033</span>, <time datetime="2017-02" class="refDate">February 2017</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8033">https://www.rfc-editor.org/info/rfc8033</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8290">[RFC8290]</dt>
        <dd>
<span class="refAuthor">Hoeiland-Joergensen, T.</span><span class="refAuthor">, McKenney, P.</span><span class="refAuthor">, Taht, D.</span><span class="refAuthor">, Gettys, J.</span><span class="refAuthor">, and E. Dumazet</span>, <span class="refTitle">"The Flow Queue CoDel Packet Scheduler and Active Queue Management Algorithm"</span>, <span class="seriesInfo">RFC 8290</span>, <span class="seriesInfo">DOI 10.17487/RFC8290</span>, <time datetime="2018-01" class="refDate">January 2018</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8290">https://www.rfc-editor.org/info/rfc8290</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="RFC8699">[RFC8699]</dt>
        <dd>
<span class="refAuthor">Islam, S.</span><span class="refAuthor">, Welzl, M.</span><span class="refAuthor">, and S. Gjessing</span>, <span class="refTitle">"Coupled Congestion Control for RTP Media"</span>, <span class="seriesInfo">RFC 8699</span>, <span class="seriesInfo">DOI 10.17487/RFC8699</span>, <time datetime="2020-01" class="refDate">January 2020</time>, <span>&lt;<a href="https://www.rfc-editor.org/info/rfc8699">https://www.rfc-editor.org/info/rfc8699</a>&gt;</span>. </dd>
<dd class="break"></dd>
<dt id="xiph-seq">[xiph-seq]</dt>
      <dd>
<span class="refAuthor">Xiph.org</span>, <span class="refTitle">"Video Test Media"</span>, <span>&lt;<a href="http://media.xiph.org/video/derf/">http://media.xiph.org/video/derf/</a>&gt;</span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<section id="section-appendix.a">
      <h2 id="name-acknowledgments">
<a href="#name-acknowledgments" class="section-name selfRef">Acknowledgments</a>
      </h2>
<p id="section-appendix.a-1">Much of this document is derived from previous work on congestion
      control at the IETF.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<p id="section-appendix.a-2">The content and concepts within this document are a product of the
      discussion carried out within the Design Team.<a href="#section-appendix.a-2" class="pilcrow">¶</a></p>
</section>
<div id="authors-addresses">
<section id="section-appendix.b">
      <h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
      </h2>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Zaheduzzaman Sarker</span></div>
<div dir="auto" class="left"><span class="org">Ericsson AB</span></div>
<div dir="auto" class="left"><span class="street-address">Torshamnsgatan 23</span></div>
<div dir="auto" class="left">SE-<span class="postal-code">164 83</span> <span class="locality">Stockholm</span>
</div>
<div dir="auto" class="left"><span class="country-name">Sweden</span></div>
<div class="tel">
<span>Phone:</span>
<a href="tel:+46%2010%20717%2037%2043" class="tel">+46 10 717 37 43</a>
</div>
<div class="email">
<span>Email:</span>
<a href="mailto:zaheduzzaman.sarker@ericsson.com" class="email">zaheduzzaman.sarker@ericsson.com</a>
</div>
</address>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Varun Singh</span></div>
<div dir="auto" class="left"><span class="org">CALLSTATS I/O Oy</span></div>
<div dir="auto" class="left"><span class="street-address">Rauhankatu 11 C</span></div>
<div dir="auto" class="left">FI-<span class="postal-code">00100</span> <span class="locality">Helsinki</span>
</div>
<div dir="auto" class="left"><span class="country-name">Finland</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:varun.singh@iki.fi" class="email">varun.singh@iki.fi</a>
</div>
<div class="url">
<span>URI:</span>
<a href="http://www.callstats.io/" class="url">http://www.callstats.io/</a>
</div>
</address>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Xiaoqing Zhu</span></div>
<div dir="auto" class="left"><span class="org">Cisco Systems</span></div>
<div dir="auto" class="left"><span class="street-address">12515 Research Blvd</span></div>
<div dir="auto" class="left">
<span class="locality">Austin</span>, <span class="region">TX</span> <span class="postal-code">78759</span>
</div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:xiaoqzhu@cisco.com" class="email">xiaoqzhu@cisco.com</a>
</div>
</address>
<address class="vcard">
        <div dir="auto" class="left"><span class="fn nameRole">Michael A. Ramalho</span></div>
<div dir="auto" class="left"><span class="org">AcousticComms Consulting</span></div>
<div dir="auto" class="left"><span class="street-address">6310 Watercrest Way Unit 203</span></div>
<div dir="auto" class="left">
<span class="locality">Lakewood Ranch</span>, <span class="region">FL</span> <span class="postal-code">34202-5211</span>
</div>
<div dir="auto" class="left"><span class="country-name">United States of America</span></div>
<div class="tel">
<span>Phone:</span>
<a href="tel:+1%20732%20832%209723" class="tel">+1 732 832 9723</a>
</div>
<div class="email">
<span>Email:</span>
<a href="mailto:mar42@cornell.edu" class="email">mar42@cornell.edu</a>
</div>
<div class="url">
<span>URI:</span>
<a href="http://ramalho.webhop.info/" class="url">http://ramalho.webhop.info/</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
  toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
  toc.classList.remove("active");
});
</script>
</body>
</html>