1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627
|
<!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 8855: The Binary Floor Control Protocol (BFCP)</title>
<meta content="Gonzalo Camarillo" name="author">
<meta content="Keith Drage" name="author">
<meta content="Tom Kristensen" name="author">
<meta content="Jörg Ott" name="author">
<meta content="Charles Eckel" name="author">
<meta content="
Floor control is a means to manage joint or exclusive access to
shared resources in a (multiparty) conferencing environment. Thereby,
floor control complements other functions -- such as conference and
media session setup, conference policy manipulation, and media control
-- that are realized by other protocols.
This document specifies the Binary Floor Control Protocol
(BFCP). BFCP is used between floor participants and floor control
servers, and between floor chairs (i.e., moderators) and floor control
servers.
This document obsoletes RFC 4582.
" name="description">
<meta content="xml2rfc 3.5.0" name="generator">
<meta content="floor control" name="keyword">
<meta content="conference" name="keyword">
<meta content="8855" 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="rfc8855.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/rfc8855" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-bfcpbis-rfc4582bis-16" 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 8855</td>
<td class="center">BFCP</td>
<td class="right">January 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Camarillo, et al.</td>
<td class="center">Standards Track</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/rfc8855" class="eref">8855</a></dd>
<dt class="label-obsoletes">Obsoletes:</dt>
<dd class="obsoletes">
<a href="https://www.rfc-editor.org/rfc/rfc4582" class="eref">4582</a> </dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</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">G. Camarillo</div>
<div class="org">Ericsson</div>
</div>
<div class="author">
<div class="author-name">K. Drage</div>
</div>
<div class="author">
<div class="author-name">T. Kristensen</div>
<div class="org">Jotron</div>
</div>
<div class="author">
<div class="author-name">J. Ott</div>
<div class="org">Technical University Munich</div>
</div>
<div class="author">
<div class="author-name">C. Eckel</div>
<div class="org">Cisco</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8855</h1>
<h1 id="title">The Binary Floor Control Protocol (BFCP)</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">Floor control is a means to manage joint or exclusive access to
shared resources in a (multiparty) conferencing environment. Thereby,
floor control complements other functions -- such as conference and
media session setup, conference policy manipulation, and media control
-- that are realized by other protocols.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">This document specifies the Binary Floor Control Protocol
(BFCP). BFCP is used between floor participants and floor control
servers, and between floor chairs (i.e., moderators) and floor control
servers.<a href="#section-abstract-2" class="pilcrow">¶</a></p>
<p id="section-abstract-3">This document obsoletes RFC 4582.<a href="#section-abstract-3" 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 is an Internet Standards Track document.<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). Further
information on Internet Standards is available in 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/rfc8855">https://www.rfc-editor.org/info/rfc8855</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="ulEmpty compact toc">
<li class="ulEmpty compact toc" 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="ulEmpty compact toc" 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="ulEmpty compact toc" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-scope" class="xref">Scope</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.3.2.1">
<p id="section-toc.1-1.3.2.1.1" class="keepWithNext"><a href="#section-3.1" class="xref">3.1</a>. <a href="#name-floor-creation" class="xref">Floor Creation</a><a href="#section-toc.1-1.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.3.2.2">
<p id="section-toc.1-1.3.2.2.1"><a href="#section-3.2" class="xref">3.2</a>. <a href="#name-obtaining-information-to-co" class="xref">Obtaining Information to Contact a Floor Control Server</a><a href="#section-toc.1-1.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.3.2.3">
<p id="section-toc.1-1.3.2.3.1"><a href="#section-3.3" class="xref">3.3</a>. <a href="#name-obtaining-floor-resource-as" class="xref">Obtaining Floor-Resource Associations</a><a href="#section-toc.1-1.3.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.3.2.4">
<p id="section-toc.1-1.3.2.4.1"><a href="#section-3.4" class="xref">3.4</a>. <a href="#name-privileges-of-floor-control" class="xref">Privileges of Floor Control</a><a href="#section-toc.1-1.3.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-overview-of-operation" class="xref">Overview of Operation</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" 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-floor-participant-to-floor-" class="xref">Floor Participant to Floor Control Server Interface</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" 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-floor-chair-to-floor-contro" class="xref">Floor Chair to Floor Control Server Interface</a><a href="#section-toc.1-1.4.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-packet-format" class="xref">Packet Format</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" 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-common-header-format" class="xref">COMMON-HEADER Format</a><a href="#section-toc.1-1.5.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" 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-attribute-format" class="xref">Attribute Format</a><a href="#section-toc.1-1.5.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.1">
<p id="section-toc.1-1.5.2.2.2.1.1"><a href="#section-5.2.1" class="xref">5.2.1</a>. <a href="#name-beneficiary-id" class="xref">BENEFICIARY-ID</a><a href="#section-toc.1-1.5.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.2">
<p id="section-toc.1-1.5.2.2.2.2.1"><a href="#section-5.2.2" class="xref">5.2.2</a>. <a href="#name-floor-id" class="xref">FLOOR-ID</a><a href="#section-toc.1-1.5.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.3">
<p id="section-toc.1-1.5.2.2.2.3.1"><a href="#section-5.2.3" class="xref">5.2.3</a>. <a href="#name-floor-request-id" class="xref">FLOOR-REQUEST-ID</a><a href="#section-toc.1-1.5.2.2.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.4">
<p id="section-toc.1-1.5.2.2.2.4.1"><a href="#section-5.2.4" class="xref">5.2.4</a>. <a href="#name-priority" class="xref">PRIORITY</a><a href="#section-toc.1-1.5.2.2.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.5">
<p id="section-toc.1-1.5.2.2.2.5.1"><a href="#section-5.2.5" class="xref">5.2.5</a>. <a href="#name-request-status" class="xref">REQUEST-STATUS</a><a href="#section-toc.1-1.5.2.2.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.6">
<p id="section-toc.1-1.5.2.2.2.6.1"><a href="#section-5.2.6" class="xref">5.2.6</a>. <a href="#name-error-code" class="xref">ERROR-CODE</a><a href="#section-toc.1-1.5.2.2.2.6.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.6.2.1">
<p id="section-toc.1-1.5.2.2.2.6.2.1.1"><a href="#section-5.2.6.1" class="xref">5.2.6.1</a>. <a href="#name-error-specific-details-for-" class="xref">Error Specific Details for Error Code 4</a><a href="#section-toc.1-1.5.2.2.2.6.2.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.7">
<p id="section-toc.1-1.5.2.2.2.7.1"><a href="#section-5.2.7" class="xref">5.2.7</a>. <a href="#name-error-info" class="xref">ERROR-INFO</a><a href="#section-toc.1-1.5.2.2.2.7.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.8">
<p id="section-toc.1-1.5.2.2.2.8.1"><a href="#section-5.2.8" class="xref">5.2.8</a>. <a href="#name-participant-provided-info" class="xref">PARTICIPANT-PROVIDED-INFO</a><a href="#section-toc.1-1.5.2.2.2.8.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.9">
<p id="section-toc.1-1.5.2.2.2.9.1"><a href="#section-5.2.9" class="xref">5.2.9</a>. <a href="#name-status-info" class="xref">STATUS-INFO</a><a href="#section-toc.1-1.5.2.2.2.9.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.10">
<p id="section-toc.1-1.5.2.2.2.10.1"><a href="#section-5.2.10" class="xref">5.2.10</a>. <a href="#name-supported-attributes" class="xref">SUPPORTED-ATTRIBUTES</a><a href="#section-toc.1-1.5.2.2.2.10.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.11">
<p id="section-toc.1-1.5.2.2.2.11.1"><a href="#section-5.2.11" class="xref">5.2.11</a>. <a href="#name-supported-primitives" class="xref">SUPPORTED-PRIMITIVES</a><a href="#section-toc.1-1.5.2.2.2.11.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.12">
<p id="section-toc.1-1.5.2.2.2.12.1"><a href="#section-5.2.12" class="xref">5.2.12</a>. <a href="#name-user-display-name" class="xref">USER-DISPLAY-NAME</a><a href="#section-toc.1-1.5.2.2.2.12.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.13">
<p id="section-toc.1-1.5.2.2.2.13.1"><a href="#section-5.2.13" class="xref">5.2.13</a>. <a href="#name-user-uri" class="xref">USER-URI</a><a href="#section-toc.1-1.5.2.2.2.13.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.14">
<p id="section-toc.1-1.5.2.2.2.14.1"><a href="#section-5.2.14" class="xref">5.2.14</a>. <a href="#name-beneficiary-information" class="xref">BENEFICIARY-INFORMATION</a><a href="#section-toc.1-1.5.2.2.2.14.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.15">
<p id="section-toc.1-1.5.2.2.2.15.1"><a href="#section-5.2.15" class="xref">5.2.15</a>. <a href="#name-floor-request-information" class="xref">FLOOR-REQUEST-INFORMATION</a><a href="#section-toc.1-1.5.2.2.2.15.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.16">
<p id="section-toc.1-1.5.2.2.2.16.1"><a href="#section-5.2.16" class="xref">5.2.16</a>. <a href="#name-requested-by-information" class="xref">REQUESTED-BY-INFORMATION</a><a href="#section-toc.1-1.5.2.2.2.16.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.17">
<p id="section-toc.1-1.5.2.2.2.17.1"><a href="#section-5.2.17" class="xref">5.2.17</a>. <a href="#name-floor-request-status" class="xref">FLOOR-REQUEST-STATUS</a><a href="#section-toc.1-1.5.2.2.2.17.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2.2.18">
<p id="section-toc.1-1.5.2.2.2.18.1"><a href="#section-5.2.18" class="xref">5.2.18</a>. <a href="#name-overall-request-status" class="xref">OVERALL-REQUEST-STATUS</a><a href="#section-toc.1-1.5.2.2.2.18.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-message-format" class="xref">Message Format</a><a href="#section-toc.1-1.5.2.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.1">
<p id="section-toc.1-1.5.2.3.2.1.1"><a href="#section-5.3.1" class="xref">5.3.1</a>. <a href="#name-floorrequest" class="xref">FloorRequest</a><a href="#section-toc.1-1.5.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.2">
<p id="section-toc.1-1.5.2.3.2.2.1"><a href="#section-5.3.2" class="xref">5.3.2</a>. <a href="#name-floorrelease" class="xref">FloorRelease</a><a href="#section-toc.1-1.5.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.3">
<p id="section-toc.1-1.5.2.3.2.3.1"><a href="#section-5.3.3" class="xref">5.3.3</a>. <a href="#name-floorrequestquery" class="xref">FloorRequestQuery</a><a href="#section-toc.1-1.5.2.3.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.4">
<p id="section-toc.1-1.5.2.3.2.4.1"><a href="#section-5.3.4" class="xref">5.3.4</a>. <a href="#name-floorrequeststatus" class="xref">FloorRequestStatus</a><a href="#section-toc.1-1.5.2.3.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.5">
<p id="section-toc.1-1.5.2.3.2.5.1"><a href="#section-5.3.5" class="xref">5.3.5</a>. <a href="#name-userquery" class="xref">UserQuery</a><a href="#section-toc.1-1.5.2.3.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.6">
<p id="section-toc.1-1.5.2.3.2.6.1"><a href="#section-5.3.6" class="xref">5.3.6</a>. <a href="#name-userstatus" class="xref">UserStatus</a><a href="#section-toc.1-1.5.2.3.2.6.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.7">
<p id="section-toc.1-1.5.2.3.2.7.1"><a href="#section-5.3.7" class="xref">5.3.7</a>. <a href="#name-floorquery" class="xref">FloorQuery</a><a href="#section-toc.1-1.5.2.3.2.7.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.8">
<p id="section-toc.1-1.5.2.3.2.8.1"><a href="#section-5.3.8" class="xref">5.3.8</a>. <a href="#name-floorstatus" class="xref">FloorStatus</a><a href="#section-toc.1-1.5.2.3.2.8.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.9">
<p id="section-toc.1-1.5.2.3.2.9.1"><a href="#section-5.3.9" class="xref">5.3.9</a>. <a href="#name-chairaction" class="xref">ChairAction</a><a href="#section-toc.1-1.5.2.3.2.9.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.10">
<p id="section-toc.1-1.5.2.3.2.10.1"><a href="#section-5.3.10" class="xref">5.3.10</a>. <a href="#name-chairactionack" class="xref">ChairActionAck</a><a href="#section-toc.1-1.5.2.3.2.10.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.11">
<p id="section-toc.1-1.5.2.3.2.11.1"><a href="#section-5.3.11" class="xref">5.3.11</a>. <a href="#name-hello" class="xref">Hello</a><a href="#section-toc.1-1.5.2.3.2.11.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.12">
<p id="section-toc.1-1.5.2.3.2.12.1"><a href="#section-5.3.12" class="xref">5.3.12</a>. <a href="#name-helloack" class="xref">HelloAck</a><a href="#section-toc.1-1.5.2.3.2.12.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.13">
<p id="section-toc.1-1.5.2.3.2.13.1"><a href="#section-5.3.13" class="xref">5.3.13</a>. <a href="#name-error" class="xref">Error</a><a href="#section-toc.1-1.5.2.3.2.13.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.14">
<p id="section-toc.1-1.5.2.3.2.14.1"><a href="#section-5.3.14" class="xref">5.3.14</a>. <a href="#name-floorrequeststatusack" class="xref">FloorRequestStatusAck</a><a href="#section-toc.1-1.5.2.3.2.14.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.15">
<p id="section-toc.1-1.5.2.3.2.15.1"><a href="#section-5.3.15" class="xref">5.3.15</a>. <a href="#name-floorstatusack" class="xref">FloorStatusAck</a><a href="#section-toc.1-1.5.2.3.2.15.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.16">
<p id="section-toc.1-1.5.2.3.2.16.1"><a href="#section-5.3.16" class="xref">5.3.16</a>. <a href="#name-goodbye" class="xref">Goodbye</a><a href="#section-toc.1-1.5.2.3.2.16.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.17">
<p id="section-toc.1-1.5.2.3.2.17.1"><a href="#section-5.3.17" class="xref">5.3.17</a>. <a href="#name-goodbyeack" class="xref">GoodbyeAck</a><a href="#section-toc.1-1.5.2.3.2.17.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-transport" class="xref">Transport</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" 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-reliable-transport" class="xref">Reliable Transport</a><a href="#section-toc.1-1.6.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" 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-unreliable-transport" class="xref">Unreliable Transport</a><a href="#section-toc.1-1.6.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1">
<p id="section-toc.1-1.6.2.2.2.1.1"><a href="#section-6.2.1" class="xref">6.2.1</a>. <a href="#name-congestion-control" class="xref">Congestion Control</a><a href="#section-toc.1-1.6.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2">
<p id="section-toc.1-1.6.2.2.2.2.1"><a href="#section-6.2.2" class="xref">6.2.2</a>. <a href="#name-icmp-error-handling" class="xref">ICMP Error Handling</a><a href="#section-toc.1-1.6.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3">
<p id="section-toc.1-1.6.2.2.2.3.1"><a href="#section-6.2.3" class="xref">6.2.3</a>. <a href="#name-fragmentation-handling" class="xref">Fragmentation Handling</a><a href="#section-toc.1-1.6.2.2.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.4">
<p id="section-toc.1-1.6.2.2.2.4.1"><a href="#section-6.2.4" class="xref">6.2.4</a>. <a href="#name-nat-traversal" class="xref">NAT Traversal</a><a href="#section-toc.1-1.6.2.2.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-lower-layer-security" class="xref">Lower-Layer Security</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" 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-protocol-transactions" class="xref">Protocol Transactions</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.1">
<p id="section-toc.1-1.8.2.1.1"><a href="#section-8.1" class="xref">8.1</a>. <a href="#name-client-behavior" class="xref">Client Behavior</a><a href="#section-toc.1-1.8.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.2">
<p id="section-toc.1-1.8.2.2.1"><a href="#section-8.2" class="xref">8.2</a>. <a href="#name-server-behavior" class="xref">Server Behavior</a><a href="#section-toc.1-1.8.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3">
<p id="section-toc.1-1.8.2.3.1"><a href="#section-8.3" class="xref">8.3</a>. <a href="#name-timers" class="xref">Timers</a><a href="#section-toc.1-1.8.2.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.1">
<p id="section-toc.1-1.8.2.3.2.1.1"><a href="#section-8.3.1" class="xref">8.3.1</a>. <a href="#name-request-retransmission-time" class="xref">Request Retransmission Timer, T1</a><a href="#section-toc.1-1.8.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.2">
<p id="section-toc.1-1.8.2.3.2.2.1"><a href="#section-8.3.2" class="xref">8.3.2</a>. <a href="#name-response-retransmission-tim" class="xref">Response Retransmission Timer, T2</a><a href="#section-toc.1-1.8.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8.2.3.2.3">
<p id="section-toc.1-1.8.2.3.2.3.1"><a href="#section-8.3.3" class="xref">8.3.3</a>. <a href="#name-timer-values" class="xref">Timer Values</a><a href="#section-toc.1-1.8.2.3.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-authentication-and-authoriz" class="xref">Authentication and Authorization</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.9.2.1">
<p id="section-toc.1-1.9.2.1.1"><a href="#section-9.1" class="xref">9.1</a>. <a href="#name-tls-dtls-based-mutual-authe" class="xref">TLS/DTLS Based Mutual Authentication</a><a href="#section-toc.1-1.9.2.1.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-floor-participant-operation" class="xref">Floor Participant Operations</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" 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-requesting-a-floor" class="xref">Requesting a Floor</a><a href="#section-toc.1-1.10.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.10.2.1.2.1">
<p id="section-toc.1-1.10.2.1.2.1.1"><a href="#section-10.1.1" class="xref">10.1.1</a>. <a href="#name-sending-a-floorrequest-mess" class="xref">Sending a FloorRequest Message</a><a href="#section-toc.1-1.10.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.10.2.1.2.2">
<p id="section-toc.1-1.10.2.1.2.2.1"><a href="#section-10.1.2" class="xref">10.1.2</a>. <a href="#name-receiving-a-response" class="xref">Receiving a Response</a><a href="#section-toc.1-1.10.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.10.2.1.2.3">
<p id="section-toc.1-1.10.2.1.2.3.1"><a href="#section-10.1.3" class="xref">10.1.3</a>. <a href="#name-reception-of-a-subsequent-f" class="xref">Reception of a Subsequent FloorRequestStatus Message</a><a href="#section-toc.1-1.10.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" 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-cancelling-a-floor-request-" class="xref">Cancelling a Floor Request and Releasing a Floor</a><a href="#section-toc.1-1.10.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.10.2.2.2.1">
<p id="section-toc.1-1.10.2.2.2.1.1"><a href="#section-10.2.1" class="xref">10.2.1</a>. <a href="#name-sending-a-floorrelease-mess" class="xref">Sending a FloorRelease Message</a><a href="#section-toc.1-1.10.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.10.2.2.2.2">
<p id="section-toc.1-1.10.2.2.2.2.1"><a href="#section-10.2.2" class="xref">10.2.2</a>. <a href="#name-receiving-a-response-2" class="xref">Receiving a Response</a><a href="#section-toc.1-1.10.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-11" class="xref">11</a>. <a href="#name-chair-operations" class="xref">Chair Operations</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.11.2.1">
<p id="section-toc.1-1.11.2.1.1"><a href="#section-11.1" class="xref">11.1</a>. <a href="#name-sending-a-chairaction-messa" class="xref">Sending a ChairAction Message</a><a href="#section-toc.1-1.11.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11.2.2">
<p id="section-toc.1-1.11.2.2.1"><a href="#section-11.2" class="xref">11.2</a>. <a href="#name-receiving-a-response-3" class="xref">Receiving a Response</a><a href="#section-toc.1-1.11.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#section-12" class="xref">12</a>. <a href="#name-general-client-operations" class="xref">General Client Operations</a><a href="#section-toc.1-1.12.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.1">
<p id="section-toc.1-1.12.2.1.1"><a href="#section-12.1" class="xref">12.1</a>. <a href="#name-requesting-information-abou" class="xref">Requesting Information about Floors</a><a href="#section-toc.1-1.12.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.1.2.1">
<p id="section-toc.1-1.12.2.1.2.1.1"><a href="#section-12.1.1" class="xref">12.1.1</a>. <a href="#name-sending-a-floorquery-messag" class="xref">Sending a FloorQuery Message</a><a href="#section-toc.1-1.12.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.1.2.2">
<p id="section-toc.1-1.12.2.1.2.2.1"><a href="#section-12.1.2" class="xref">12.1.2</a>. <a href="#name-receiving-a-response-4" class="xref">Receiving a Response</a><a href="#section-toc.1-1.12.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.1.2.3">
<p id="section-toc.1-1.12.2.1.2.3.1"><a href="#section-12.1.3" class="xref">12.1.3</a>. <a href="#name-reception-of-a-subsequent-fl" class="xref">Reception of a Subsequent FloorStatus Message</a><a href="#section-toc.1-1.12.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.2">
<p id="section-toc.1-1.12.2.2.1"><a href="#section-12.2" class="xref">12.2</a>. <a href="#name-requesting-information-about" class="xref">Requesting Information about Floor Requests</a><a href="#section-toc.1-1.12.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.2.2.1">
<p id="section-toc.1-1.12.2.2.2.1.1"><a href="#section-12.2.1" class="xref">12.2.1</a>. <a href="#name-sending-a-floorrequestquery" class="xref">Sending a FloorRequestQuery Message</a><a href="#section-toc.1-1.12.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.2.2.2">
<p id="section-toc.1-1.12.2.2.2.2.1"><a href="#section-12.2.2" class="xref">12.2.2</a>. <a href="#name-receiving-a-response-5" class="xref">Receiving a Response</a><a href="#section-toc.1-1.12.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.3">
<p id="section-toc.1-1.12.2.3.1"><a href="#section-12.3" class="xref">12.3</a>. <a href="#name-requesting-information-about-" class="xref">Requesting Information about a User</a><a href="#section-toc.1-1.12.2.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.3.2.1">
<p id="section-toc.1-1.12.2.3.2.1.1"><a href="#section-12.3.1" class="xref">12.3.1</a>. <a href="#name-sending-a-userquery-message" class="xref">Sending a UserQuery Message</a><a href="#section-toc.1-1.12.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.3.2.2">
<p id="section-toc.1-1.12.2.3.2.2.1"><a href="#section-12.3.2" class="xref">12.3.2</a>. <a href="#name-receiving-a-response-6" class="xref">Receiving a Response</a><a href="#section-toc.1-1.12.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.4">
<p id="section-toc.1-1.12.2.4.1"><a href="#section-12.4" class="xref">12.4</a>. <a href="#name-obtaining-the-capabilities-" class="xref">Obtaining the Capabilities of a Floor Control Server</a><a href="#section-toc.1-1.12.2.4.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.4.2.1">
<p id="section-toc.1-1.12.2.4.2.1.1"><a href="#section-12.4.1" class="xref">12.4.1</a>. <a href="#name-sending-a-hello-message" class="xref">Sending a Hello Message</a><a href="#section-toc.1-1.12.2.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.12.2.4.2.2">
<p id="section-toc.1-1.12.2.4.2.2.1"><a href="#section-12.4.2" class="xref">12.4.2</a>. <a href="#name-receiving-responses" class="xref">Receiving Responses</a><a href="#section-toc.1-1.12.2.4.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13">
<p id="section-toc.1-1.13.1"><a href="#section-13" class="xref">13</a>. <a href="#name-floor-control-server-operat" class="xref">Floor Control Server Operations</a><a href="#section-toc.1-1.13.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.1">
<p id="section-toc.1-1.13.2.1.1"><a href="#section-13.1" class="xref">13.1</a>. <a href="#name-reception-of-a-floorrequest" class="xref">Reception of a FloorRequest Message</a><a href="#section-toc.1-1.13.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.1.2.1">
<p id="section-toc.1-1.13.2.1.2.1.1"><a href="#section-13.1.1" class="xref">13.1.1</a>. <a href="#name-generating-the-first-floorr" class="xref">Generating the First FloorRequestStatus Message</a><a href="#section-toc.1-1.13.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.1.2.2">
<p id="section-toc.1-1.13.2.1.2.2.1"><a href="#section-13.1.2" class="xref">13.1.2</a>. <a href="#name-generation-of-subsequent-fl" class="xref">Generation of Subsequent FloorRequestStatus Messages</a><a href="#section-toc.1-1.13.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.2">
<p id="section-toc.1-1.13.2.2.1"><a href="#section-13.2" class="xref">13.2</a>. <a href="#name-reception-of-a-floorrequestq" class="xref">Reception of a FloorRequestQuery Message</a><a href="#section-toc.1-1.13.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.3">
<p id="section-toc.1-1.13.2.3.1"><a href="#section-13.3" class="xref">13.3</a>. <a href="#name-reception-of-a-userquery-me" class="xref">Reception of a UserQuery Message</a><a href="#section-toc.1-1.13.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.4">
<p id="section-toc.1-1.13.2.4.1"><a href="#section-13.4" class="xref">13.4</a>. <a href="#name-reception-of-a-floorrelease" class="xref">Reception of a FloorRelease Message</a><a href="#section-toc.1-1.13.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.5">
<p id="section-toc.1-1.13.2.5.1"><a href="#section-13.5" class="xref">13.5</a>. <a href="#name-reception-of-a-floorquery-m" class="xref">Reception of a FloorQuery Message</a><a href="#section-toc.1-1.13.2.5.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.5.2.1">
<p id="section-toc.1-1.13.2.5.2.1.1"><a href="#section-13.5.1" class="xref">13.5.1</a>. <a href="#name-generation-of-the-first-flo" class="xref">Generation of the First FloorStatus Message</a><a href="#section-toc.1-1.13.2.5.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.5.2.2">
<p id="section-toc.1-1.13.2.5.2.2.1"><a href="#section-13.5.2" class="xref">13.5.2</a>. <a href="#name-generation-of-subsequent-flo" class="xref">Generation of Subsequent FloorStatus Messages</a><a href="#section-toc.1-1.13.2.5.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.6">
<p id="section-toc.1-1.13.2.6.1"><a href="#section-13.6" class="xref">13.6</a>. <a href="#name-reception-of-a-chairaction-" class="xref">Reception of a ChairAction Message</a><a href="#section-toc.1-1.13.2.6.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.7">
<p id="section-toc.1-1.13.2.7.1"><a href="#section-13.7" class="xref">13.7</a>. <a href="#name-reception-of-a-hello-messag" class="xref">Reception of a Hello Message</a><a href="#section-toc.1-1.13.2.7.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.13.2.8">
<p id="section-toc.1-1.13.2.8.1"><a href="#section-13.8" class="xref">13.8</a>. <a href="#name-error-message-generation" class="xref">Error Message Generation</a><a href="#section-toc.1-1.13.2.8.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.14">
<p id="section-toc.1-1.14.1"><a href="#section-14" class="xref">14</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.14.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.15">
<p id="section-toc.1-1.15.1"><a href="#section-15" class="xref">15</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.15.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.15.2.1">
<p id="section-toc.1-1.15.2.1.1"><a href="#section-15.1" class="xref">15.1</a>. <a href="#name-attributes-subregistry" class="xref">Attributes Subregistry</a><a href="#section-toc.1-1.15.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.15.2.2">
<p id="section-toc.1-1.15.2.2.1"><a href="#section-15.2" class="xref">15.2</a>. <a href="#name-primitives-subregistry" class="xref">Primitives Subregistry</a><a href="#section-toc.1-1.15.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.15.2.3">
<p id="section-toc.1-1.15.2.3.1"><a href="#section-15.3" class="xref">15.3</a>. <a href="#name-request-statuses-subregistr" class="xref">Request Statuses Subregistry</a><a href="#section-toc.1-1.15.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.15.2.4">
<p id="section-toc.1-1.15.2.4.1"><a href="#section-15.4" class="xref">15.4</a>. <a href="#name-error-codes-subregistry" class="xref">Error Codes Subregistry</a><a href="#section-toc.1-1.15.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.16">
<p id="section-toc.1-1.16.1"><a href="#section-16" class="xref">16</a>. <a href="#name-changes-from-rfc-4582" class="xref">Changes from RFC 4582</a><a href="#section-toc.1-1.16.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.16.2.1">
<p id="section-toc.1-1.16.2.1.1"><a href="#section-16.1" class="xref">16.1</a>. <a href="#name-extensions-for-an-unreliabl" class="xref">Extensions for an Unreliable Transport</a><a href="#section-toc.1-1.16.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.16.2.2">
<p id="section-toc.1-1.16.2.2.1"><a href="#section-16.2" class="xref">16.2</a>. <a href="#name-other-changes" class="xref">Other Changes</a><a href="#section-toc.1-1.16.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.17">
<p id="section-toc.1-1.17.1"><a href="#section-17" class="xref">17</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.17.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.17.2.1">
<p id="section-toc.1-1.17.2.1.1"><a href="#section-17.1" class="xref">17.1</a>. <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.17.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.17.2.2">
<p id="section-toc.1-1.17.2.2.1"><a href="#section-17.2" class="xref">17.2</a>. <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.17.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.18">
<p id="section-toc.1-1.18.1"><a href="#section-appendix.a" class="xref">Appendix A</a>. <a href="#name-example-call-flows-for-bfcp" class="xref">Example Call Flows for BFCP over an Unreliable Transport</a><a href="#section-toc.1-1.18.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19">
<p id="section-toc.1-1.19.1"><a href="#section-appendix.b" class="xref">Appendix B</a>. <a href="#name-motivation-for-supporting-a" class="xref">Motivation for Supporting an Unreliable Transport</a><a href="#section-toc.1-1.19.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1">
<p id="section-toc.1-1.19.2.1.1"><a href="#section-b.1" class="xref">B.1</a>. <a href="#name-motivation" class="xref">Motivation</a><a href="#section-toc.1-1.19.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1">
<p id="section-toc.1-1.19.2.1.2.1.1"><a href="#section-b.1.1" class="xref">B.1.1</a>. <a href="#name-alternatives-considered" class="xref">Alternatives Considered</a><a href="#section-toc.1-1.19.2.1.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.1">
<p id="section-toc.1-1.19.2.1.2.1.2.1.1"><a href="#section-b.1.1.1" class="xref">B.1.1.1</a>. <a href="#name-ice-tcp" class="xref">ICE TCP</a><a href="#section-toc.1-1.19.2.1.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.2">
<p id="section-toc.1-1.19.2.1.2.1.2.2.1"><a href="#section-b.1.1.2" class="xref">B.1.1.2</a>. <a href="#name-teredo" class="xref">Teredo</a><a href="#section-toc.1-1.19.2.1.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.3">
<p id="section-toc.1-1.19.2.1.2.1.2.3.1"><a href="#section-b.1.1.3" class="xref">B.1.1.3</a>. <a href="#name-gut" class="xref">GUT</a><a href="#section-toc.1-1.19.2.1.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.4">
<p id="section-toc.1-1.19.2.1.2.1.2.4.1"><a href="#section-b.1.1.4" class="xref">B.1.1.4</a>. <a href="#name-upnp-igd" class="xref">UPnP IGD</a><a href="#section-toc.1-1.19.2.1.2.1.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.5">
<p id="section-toc.1-1.19.2.1.2.1.2.5.1"><a href="#section-b.1.1.5" class="xref">B.1.1.5</a>. <a href="#name-nat-pmp" class="xref">NAT PMP</a><a href="#section-toc.1-1.19.2.1.2.1.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.6">
<p id="section-toc.1-1.19.2.1.2.1.2.6.1"><a href="#section-b.1.1.6" class="xref">B.1.1.6</a>. <a href="#name-sctp" class="xref">SCTP</a><a href="#section-toc.1-1.19.2.1.2.1.2.6.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.19.2.1.2.1.2.7">
<p id="section-toc.1-1.19.2.1.2.1.2.7.1"><a href="#section-b.1.1.7" class="xref">B.1.1.7</a>. <a href="#name-bfcp-over-udp-transport" class="xref">BFCP over UDP Transport</a><a href="#section-toc.1-1.19.2.1.2.1.2.7.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.20">
<p id="section-toc.1-1.20.1"><a href="#section-appendix.c" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a><a href="#section-toc.1-1.20.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.21">
<p id="section-toc.1-1.21.1"><a href="#section-appendix.d" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.21.1" class="pilcrow">¶</a></p>
</li>
</ul>
</nav>
</section>
</div>
<div id="sec_intro">
<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">Within a conference, some applications need to manage the access to a set of shared resources, such as the right to send media to a particular media session. Floor control enables such applications to provide users with coordinated (shared or exclusive) access to these resources.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2">The Requirements for Floor Control Protocol <span>[<a href="#RFC4376" class="xref">18</a>]</span> list a set of requirements that need to be met by floor control protocols. The Binary Floor Control Protocol (BFCP), which is specified in this document, meets these requirements.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">In addition, BFCP has been designed so that it can be used in low-bandwidth environments. The binary encoding used by BFCP achieves a small message size (when message signatures are not used) that keeps the time it takes to transmit delay-sensitive BFCP messages to a minimum. Delay-sensitive BFCP messages include FloorRequest, FloorRelease, FloorRequestStatus, and ChairAction. It is expected that future extensions to these messages will not increase the size of these messages in a significant way.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">The remainder of this document is organized as follows: <a href="#sec_terminology" class="xref">Section 2</a> defines the terminology used
throughout this document, <a href="#sec_scope" class="xref">Section 3</a>
discusses the scope of BFCP (i.e., which tasks fall within the scope of
BFCP and which ones are performed using different mechanisms), <a href="#sec_overview" class="xref">Section 4</a> provides a non-normative
overview of BFCP operation. The subsequent sections provide the
normative specification of BFCP. <a href="#sec_changes" class="xref">Section 16</a>
summarizes changes from <span><a href="#RFC4582" class="xref">RFC 4582</a> [<a href="#RFC4582" class="xref">3</a>]</span>.<a href="#section-1-4" class="pilcrow">¶</a></p>
</section>
</div>
<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 key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">1</a>]</span> <span>[<a href="#RFC8174" class="xref">10</a>]</span>
when, and only when, they appear in all capitals, as shown here.<a href="#section-2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-2-2">
<dt id="section-2-2.1">Media Participant:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.2">An entity that has access to the media resources of a conference (e.g., it can receive a media stream). In floor-controlled conferences, a given media participant is typically co-located with a floor participant, but it does not need to be. Third-party floor requests consist of having a floor participant request a floor for a media participant when they are not co-located. The protocol between a floor participant and a media participant (that are not co-located) is outside the scope of this document.<a href="#section-2-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.3">Client:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.4">A floor participant or a floor chair that communicates with a floor control server using BFCP.<a href="#section-2-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.5">Floor:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.6">A temporary permission to access or manipulate a specific shared resource or set of resources.<a href="#section-2-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.7">Floor Chair:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.8">A logical entity that manages one floor (grants, denies, or revokes a floor). An entity that assumes the logical role of a floor chair for a given transaction may assume a different role (e.g., floor participant) for a different transaction. The roles of floor chair and floor participant are defined on a transaction-by-transaction basis. BFCP transactions are defined in <a href="#sec_transactions" class="xref">Section 8</a>.<a href="#section-2-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.9">Floor Control:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.10">A mechanism that enables applications or users to gain safe and mutually exclusive or non-exclusive input access to the shared object or resource.<a href="#section-2-2.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.11">Floor Control Server:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.12">A logical entity that maintains the state of the floor(s), including which floors exists, who the floor chairs are, who holds a floor, etc. Requests to manipulate a floor are directed at the floor control server. The floor control server of a conference may perform other logical roles (e.g., floor participant) in another conference.<a href="#section-2-2.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.13">Floor Participant:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.14">A logical entity that requests floors, and possibly information about them, from a floor control server. An entity that assumes the logical role of a floor participant for a given transaction may assume a different role (e.g., a floor chair) for a different transaction. The roles of floor participant and floor chair are defined on a transaction-by-transaction basis. BFCP transactions are defined in <a href="#sec_transactions" class="xref">Section 8</a>. In floor-controlled conferences, a given floor participant is typically co-located with a media participant, but it does not need to be. Third-party floor requests consist of having a floor participant request a floor for a media participant when they are not co-located.<a href="#section-2-2.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.15">Participant:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.16">An entity that acts as a floor participant, as a media participant, or as both.<a href="#section-2-2.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.17">BFCP Connection:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.18">A transport association between BFCP entities, used to exchange BFCP messages.<a href="#section-2-2.18" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-2.19">Transaction Failure Window:</dt>
<dd style="margin-left: 1.5em" id="section-2-2.20">When communicating over an
unreliable transport, this is some period of time less than or equal to
T1*2<sup>4</sup> (see <a href="#timers" class="xref">Section 8.3</a>). For
reliable transports, this period of time is unbounded.<a href="#section-2-2.20" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_scope">
<section id="section-3">
<h2 id="name-scope">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-scope" class="section-name selfRef">Scope</a>
</h2>
<p id="section-3-1">As stated earlier, BFCP is a protocol to coordinate access to shared resources in a conference following the requirements defined in <span>[<a href="#RFC4376" class="xref">18</a>]</span>. Floor control complements other functions defined in the Centralized Conferencing (XCON) Framework <span>[<a href="#RFC5239" class="xref">19</a>]</span>. The floor control protocol BFCP defined in this document only specifies a means to arbitrate access to floors. The rules and constraints for floor arbitration and the results of floor assignments are outside the scope of this document and are defined by other protocols <span>[<a href="#RFC5239" class="xref">19</a>]</span>.<a href="#section-3-1" class="pilcrow">¶</a></p>
<p id="section-3-2"><a href="#fig_arch" class="xref">Figure 1</a> shows the tasks that BFCP can perform.<a href="#section-3-2" class="pilcrow">¶</a></p>
<span id="name-functionality-provided-by-b"></span><div id="fig_arch">
<figure id="figure-1">
<div class="artwork art-text alignLeft" id="section-3-3.1">
<pre>
+---------+
| Floor |
| Chair |
| |
+---------+
^ |
| |
Notification | | Decision
| |
| |
Floor | v
+-------------+ Request +---------+ +-------------+
| Floor |----------->| Floor | Notification | Floor |
| Participant | | Control |------------->| Participant |
| |<-----------| Server | | |
+-------------+ Granted or +---------+ +-------------+
Denied</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-functionality-provided-by-b" class="selfRef">Functionality provided by BFCP</a>
</figcaption></figure>
</div>
<p id="section-3-4">BFCP provides a means:<a href="#section-3-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3-5.1">for floor participants to send floor requests to floor control servers.<a href="#section-3-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.2">for floor control servers to grant or deny requests to access a given resource from floor participants.<a href="#section-3-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.3">for floor chairs to send floor control servers decisions regarding floor requests.<a href="#section-3-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.4">for floor control servers to keep floor participants and floor chairs informed about the status of a given floor or a given floor request.<a href="#section-3-5.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-3-6">Even though tasks that do not belong to the previous list are outside the scope of BFCP, some of these out-of-scope tasks relate to floor control and are essential for creating floors and establishing BFCP connections between different entities. In the following subsections, we discuss some of these tasks and mechanisms to perform them.<a href="#section-3-6" class="pilcrow">¶</a></p>
<div id="sec_scope_creation">
<section id="section-3.1">
<h3 id="name-floor-creation">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-floor-creation" class="section-name selfRef">Floor Creation</a>
</h3>
<p id="section-3.1-1">The association of a given floor with a resource or a set of resources (e.g., media streams) is out of the scope of BFCP as described in <span>[<a href="#RFC5239" class="xref">19</a>]</span>. Floor creation and termination are also outside the scope of BFCP; these aspects are handled using the conference control protocol for manipulating the conference object. Consequently, the floor control server needs to stay up to date on changes to the conference object (e.g., when a new floor is created).<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<p id="section-3.1-2">Conference control clients using Centralized Conferencing Manipulation Protocol (CCMP) <span>[<a href="#RFC6503" class="xref">23</a>]</span> can specify such floor-related settings in the <floor-information> element <span>[<a href="#RFC6501" class="xref">22</a>]</span> of the to-be created conference object provided in the body of a CCMP confRequest/create message issued to the conference control server.<a href="#section-3.1-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_scope_info">
<section id="section-3.2">
<h3 id="name-obtaining-information-to-co">
<a href="#section-3.2" class="section-number selfRef">3.2. </a><a href="#name-obtaining-information-to-co" class="section-name selfRef">Obtaining Information to Contact a Floor Control Server</a>
</h3>
<p id="section-3.2-1">A client needs a set of data in order to establish a BFCP connection to a floor control server. These data include the transport address of the server, the conference identifier, and a user identifier.<a href="#section-3.2-1" class="pilcrow">¶</a></p>
<p id="section-3.2-2">Clients can obtain this information in different ways. One is to use a Session Description Protocol (SDP) offer/answer <span>[<a href="#RFC3264" class="xref">17</a>]</span> exchange, which is described in <span>[<a href="#RFC8856" class="xref">12</a>]</span>. How to establish a connection to a BFCP floor control server is outside the context of an offer/answer exchange when using a reliable transport is described in <span>[<a href="#RFC5018" class="xref">4</a>]</span>. Other mechanisms are described in the XCON Framework <span>[<a href="#RFC5239" class="xref">19</a>]</span> (and other related documents). For unreliable transports, the use of an SDP offer/answer exchange is the only specified mechanism.<a href="#section-3.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_scope_associations">
<section id="section-3.3">
<h3 id="name-obtaining-floor-resource-as">
<a href="#section-3.3" class="section-number selfRef">3.3. </a><a href="#name-obtaining-floor-resource-as" class="section-name selfRef">Obtaining Floor-Resource Associations</a>
</h3>
<p id="section-3.3-1">Floors are associated with resources. For example, a floor that controls who talks at a given time has a particular audio session as its associated resource. Associations between floors and resources are part of the conference object.<a href="#section-3.3-1" class="pilcrow">¶</a></p>
<p id="section-3.3-2">Floor participants and floor chairs need to know which resources are associated with which floors. They can obtain this information by using different mechanisms, such as an SDP offer/answer <span>[<a href="#RFC3264" class="xref">17</a>]</span> exchange. How to use an SDP offer/answer exchange to obtain these associations is described in <span>[<a href="#RFC8856" class="xref">12</a>]</span>.<a href="#section-3.3-2" class="pilcrow">¶</a></p>
<aside id="section-3.3-3">
<p id="section-3.3-3.1">Note that floor participants perform SDP offer/answer exchanges with the conference focus of the conference. So, the conference focus needs to obtain information about associations between floors and resources in order to be able to provide this information to a floor participant in an SDP offer/answer exchange.<a href="#section-3.3-3.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-3.3-4">Other mechanisms for obtaining this information, including discussion of how the information is made available to a (SIP) focus, are described in the XCON Framework <span>[<a href="#RFC5239" class="xref">19</a>]</span> (and other related documents). According to the conferencing system policies, conference control clients using CCMP <span>[<a href="#RFC6503" class="xref">23</a>]</span> can modify the floor settings of a conference by issuing CCMP confRequest/update messages providing the specific updates to the <floor-information> element of the target conference object. More information about CCMP and BFCP interaction can be found in <span>[<a href="#RFC6504" class="xref">24</a>]</span>.<a href="#section-3.3-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_scope_policy">
<section id="section-3.4">
<h3 id="name-privileges-of-floor-control">
<a href="#section-3.4" class="section-number selfRef">3.4. </a><a href="#name-privileges-of-floor-control" class="section-name selfRef">Privileges of Floor Control</a>
</h3>
<p id="section-3.4-1">A participant whose floor request is granted has the right to use the resource or resources associated with the floor that was requested. For example, the participant may have the right to send media over a particular audio stream.<a href="#section-3.4-1" class="pilcrow">¶</a></p>
<p id="section-3.4-2">Nevertheless, holding a floor does not imply that others will not be able to use its associated resources at the same time, even if they do not have the right to do so. Determination of which media participants can actually use the resources in the conference is discussed in the XCON Framework <span>[<a href="#RFC5239" class="xref">19</a>]</span>.<a href="#section-3.4-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_overview">
<section id="section-4">
<h2 id="name-overview-of-operation">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-overview-of-operation" class="section-name selfRef">Overview of Operation</a>
</h2>
<p id="section-4-1">This section provides a non-normative description of BFCP operations. <a href="#sec_overview_user" class="xref">Section 4.1</a> describes the interface between floor participants and floor control servers, and <a href="#sec_overview_chair" class="xref">Section 4.2</a> describes the interface between floor chairs and floor control servers.<a href="#section-4-1" class="pilcrow">¶</a></p>
<p id="section-4-2">BFCP messages, which use a TLV (Type-Length-Value) binary encoding, consist of a COMMON-HEADER followed by a set of attributes. The COMMON-HEADER contains, among other information, a 32-bit conference identifier. Floor participants, media participants, and floor chairs are identified by 16-bit user identifiers.<a href="#section-4-2" class="pilcrow">¶</a></p>
<p id="section-4-3">BFCP supports nested attributes (i.e., attributes that contain attributes). These are referred to as grouped attributes.<a href="#section-4-3" class="pilcrow">¶</a></p>
<p id="section-4-4">There are two types of transactions in BFCP: client-initiated transactions and server-initiated transactions. <a href="#sec_transactions" class="xref">Section 8</a> describes both types of transactions in detail.<a href="#section-4-4" class="pilcrow">¶</a></p>
<div id="sec_overview_user">
<section id="section-4.1">
<h3 id="name-floor-participant-to-floor-">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-floor-participant-to-floor-" class="section-name selfRef">Floor Participant to Floor Control Server Interface</a>
</h3>
<p id="section-4.1-1">Floor participants request a floor by sending a FloorRequest message to the floor control server. BFCP supports third-party floor requests. That is, the floor participant sending the floor request need not be co-located with the media participant that will get the floor once the floor request is granted. FloorRequest messages carry the identity of the requester in the User ID field of the COMMON-HEADER, and the identity of the beneficiary of the floor (in third-party floor requests) in a BENEFICIARY-ID attribute.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
<aside id="section-4.1-2">
<p id="section-4.1-2.1">Third-party floor requests can be sent, for example, by floor participants that have a BFCP connection to the floor control server but that are not media participants (i.e., they do not handle any media).<a href="#section-4.1-2.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-4.1-3">FloorRequest messages identify the floor or floors being requested by carrying their 16-bit floor identifiers in FLOOR-ID attributes. If a FloorRequest message carries more than one floor identifier, the floor control server treats all the floor requests as an atomic package. That is, the floor control server either grants or denies all the floors in the FloorRequest message.<a href="#section-4.1-3" class="pilcrow">¶</a></p>
<p id="section-4.1-4">Floor control servers respond to FloorRequest messages with FloorRequestStatus messages, which provide information about the status of the floor request. The first FloorRequestStatus message is the response to the FloorRequest message from the client, and therefore has the same Transaction ID as the FloorRequest.<a href="#section-4.1-4" class="pilcrow">¶</a></p>
<p id="section-4.1-5">Additionally, the first FloorRequestStatus message carries the Floor Request ID in a FLOOR-REQUEST-INFORMATION attribute. Subsequent FloorRequestStatus messages related to the same floor request will carry the same Floor Request ID. This way, the floor participant can associate them with the appropriate floor request.<a href="#section-4.1-5" class="pilcrow">¶</a></p>
<p id="section-4.1-6">Messages from the floor participant related to a particular floor request also use the same Floor Request ID as the first FloorRequestStatus message from the floor control server.<a href="#section-4.1-6" class="pilcrow">¶</a></p>
<p id="section-4.1-7"><a href="#fig_flow1" class="xref">Figure 2</a> and <a href="#fig_flow2" class="xref">Figure 3</a> show examples of call flows where BFCP is used over a reliable transport. <a href="#app_unrelcallflow" class="xref">Appendix A</a> shows the same call flow examples using an unreliable transport.<a href="#section-4.1-7" class="pilcrow">¶</a></p>
<p id="section-4.1-8"><a href="#fig_flow1" class="xref">Figure 2</a> shows how a floor participant requests a floor, obtains it, and, at a later time, releases it. This figure illustrates the use, among other things, of the Transaction ID and the FLOOR-REQUEST-ID attribute.<a href="#section-4.1-8" class="pilcrow">¶</a></p>
<span id="name-requesting-and-releasing-a-"></span><div id="fig_flow1">
<figure id="figure-2">
<div class="artwork art-text alignLeft" id="section-4.1-9.1">
<pre>
Floor Participant Floor Control
Server
|(1) FloorRequest |
|Transaction ID: 123 |
|User ID: 234 |
|FLOOR-ID: 543 |
|---------------------------------------------->|
| |
|(2) FloorRequestStatus |
|Transaction ID: 123 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Pending |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(3) FloorRequestStatus |
|Transaction ID: 0 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(4) FloorRequestStatus |
|Transaction ID: 0 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(5) FloorRelease |
|Transaction ID: 154 |
|User ID: 234 |
|FLOOR-REQUEST-ID: 789 |
|---------------------------------------------->|
| |
|(6) FloorRequestStatus |
|Transaction ID: 154 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Released |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-requesting-and-releasing-a-" class="selfRef">Requesting and releasing a floor</a>
</figcaption></figure>
</div>
<p id="section-4.1-10"><a href="#fig_flow2" class="xref">Figure 3</a> shows how a floor participant requests to be informed on the status of a floor. The first FloorStatus message from the floor control server is the response to the FloorQuery message and, as such, has the same Transaction ID as the FloorQuery message.<a href="#section-4.1-10" class="pilcrow">¶</a></p>
<p id="section-4.1-11">Subsequent FloorStatus messages consist of server-initiated transactions, and therefore their Transaction ID is 0 given this example uses a reliable transport. FloorStatus message (2) indicates that there are currently two floor requests for the floor whose Floor ID is 543. FloorStatus message (3) indicates that the floor requests with Floor Request ID 764 has been granted, and the floor request with Floor Request ID 635 is the first in the queue. FloorStatus message (4) indicates that the floor request with Floor Request ID 635 has been granted.<a href="#section-4.1-11" class="pilcrow">¶</a></p>
<span id="name-obtaining-status-informatio"></span><div id="fig_flow2">
<figure id="figure-3">
<div class="artwork art-text alignLeft" id="section-4.1-12.1">
<pre>
Floor Participant Floor Control
Server
|(1) FloorQuery |
|Transaction ID: 257 |
|User ID: 234 |
|FLOOR-ID: 543 |
|---------------------------------------------->|
| |
|(2) FloorStatus |
|Transaction ID: 257 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 764 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 124 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 2nd |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|
| |
|(3) FloorStatus |
|Transaction ID: 0 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 764 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 124 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|
| |
|(4) FloorStatus |
|Transaction ID: 0 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-obtaining-status-informatio" class="selfRef">Obtaining status information about a floor</a>
</figcaption></figure>
</div>
<p id="section-4.1-13">FloorStatus messages contain information about the floor requests
they carry. For example, FloorStatus message (4) indicates that the
floor request with Floor Request ID 635 has as the beneficiary (i.e.,
the participant that holds the floor when a particular floor request is
granted) the participant whose User ID is 154. The floor request applies
only to the floor whose Floor ID is 543. That is, this is not a
multi-floor floor request.<a href="#section-4.1-13" class="pilcrow">¶</a></p>
<aside id="section-4.1-14">
<p id="section-4.1-14.1">A multi-floor floor request applies to more than one floor (e.g., a participant wants to be able to speak and write on the whiteboard at the same time). The floor control server treats a multi-floor floor request as an atomic package. That is, the floor control server either grants the request for all floors or denies the request for all floors.<a href="#section-4.1-14.1" class="pilcrow">¶</a></p>
</aside>
</section>
</div>
<div id="sec_overview_chair">
<section id="section-4.2">
<h3 id="name-floor-chair-to-floor-contro">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-floor-chair-to-floor-contro" class="section-name selfRef">Floor Chair to Floor Control Server Interface</a>
</h3>
<p id="section-4.2-1"><a href="#fig_flow3" class="xref">Figure 4</a> shows a floor chair instructing a floor control server to grant a floor.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<aside id="section-4.2-2">
<p id="section-4.2-2.1">Note, however, that although the floor control server needs to take into consideration the instructions received in ChairAction messages (e.g., granting a floor), it does not necessarily need to perform them exactly as requested by the floor chair. The operation that the floor control server performs depends on the ChairAction message and on the internal state of the floor control server.<a href="#section-4.2-2.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-4.2-3">For example, a floor chair may send a ChairAction message granting a floor that was requested as part of an atomic floor request operation that involved several floors. Even if the chair responsible for one of the floors instructs the floor control server to grant the floor, the floor control server will not grant it until the chairs responsible for the other floors agree to grant them as well. In another example, a floor chair may instruct the floor control server to grant a floor to a participant. The floor control server needs to revoke the floor from its current holder before granting it to the new participant.<a href="#section-4.2-3" class="pilcrow">¶</a></p>
<p id="section-4.2-4">So, the floor control server is ultimately responsible for keeping a coherent floor state using instructions from floor chairs as input to this state.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
<span id="name-chair-instructing-the-floor"></span><div id="fig_flow3">
<figure id="figure-4">
<div class="artwork art-text alignLeft" id="section-4.2-5.1">
<pre>
Floor Chair Floor Control
Server
|(1) ChairAction |
|Transaction ID: 769 |
|User ID: 357 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| Request Status: Granted |
|---------------------------------------------->|
| |
|(2) ChairActionAck |
|Transaction ID: 769 |
|User ID: 357 |
|<----------------------------------------------|</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-chair-instructing-the-floor" class="selfRef">Chair instructing the floor control server</a>
</figcaption></figure>
</div>
</section>
</div>
</section>
</div>
<div id="sec_format">
<section id="section-5">
<h2 id="name-packet-format">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-packet-format" class="section-name selfRef">Packet Format</a>
</h2>
<p id="section-5-1">BFCP packets consist of a 12-octet COMMON-HEADER followed by attributes. All the protocol values <span class="bcp14">MUST</span> be sent in network byte order.<a href="#section-5-1" class="pilcrow">¶</a></p>
<div id="sec_format_common">
<section id="section-5.1">
<h3 id="name-common-header-format">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-common-header-format" class="section-name selfRef">COMMON-HEADER Format</a>
</h3>
<p id="section-5.1-1">The following is the format of the COMMON-HEADER.<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<span id="name-common-header-format-2"></span><div id="fig_common">
<figure id="figure-5">
<div class="artwork art-text alignLeft" id="section-5.1-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Ver |R|F| Res | Primitive | Payload Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Conference ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Transaction ID | User ID |
+> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Fragment Offset (if F is set) | Fragment Length (if F is set) |
+> +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
+---- These fragment fields are never present
when using reliable transports</pre>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a>:
<a href="#name-common-header-format-2" class="selfRef">COMMON-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.1-3">
<dt id="section-5.1-3.1">Ver:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-3.2">This 3-bit field defines the version of BFCP to which this message adheres. This specification defines two versions: 1 and 2. The version field <span class="bcp14">MUST</span> be set to 1 when using BFCP over a reliable transport. The version field <span class="bcp14">MUST</span> be set to 2 when using BFCP over an unreliable transport. If a floor control server receives a message with an unsupported version field value or a message with a version number that is not permitted with the transport over which it was received, the server <span class="bcp14">MUST</span> indicate it does not support the protocol version by sending an Error message with parameter value 12 (Unsupported Version). Note that BFCP entities supporting only the <span>[<a href="#RFC4582" class="xref">3</a>]</span> subset will not support this parameter value.<a href="#section-5.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-3.3">R:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-3.4">The Transaction Responder (R) flag bit has relevance only for use of BFCP over an unreliable transport. When cleared, it indicates that this message is a request initiating a new transaction, and the Transaction ID that follows has been generated for this transaction. When set, it indicates that this message is a response to a previous request, and the Transaction ID that follows is the one associated with that request. When BFCP is used over a reliable transport, the flag has no significance and <span class="bcp14">MUST</span> be cleared by the sender and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.1-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-3.5">F:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-3.6">The Fragmentation (F) flag bit has relevance only for use of BFCP over an unreliable transport. When cleared, the message is not fragmented. When set, it indicates that the message is a fragment of a large, fragmented BFCP message. (The optional fields Fragment Offset and Fragment Length described below are present only if the F flag is set). When BFCP is used over a reliable transport, the flag has no significance and <span class="bcp14">MUST</span> be cleared by the sender, and the flag <span class="bcp14">MUST</span> be ignored by the receiver. In the latter case, the receiver should also ignore the Fragment Offset and Fragment Length fields when processing the COMMON-HEADER.<a href="#section-5.1-3.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-3.7">Res:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-3.8">The 3 bits in the reserved field <span class="bcp14">MUST</span> be set to zero by the sender of the message and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.1-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-3.9">Primitive:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-3.10">This 8-bit field identifies the main purpose of the
message. The following primitive values are defined:<a href="#section-5.1-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-bfcp-primitives"></span><div id="tab_primitives">
<table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-bfcp-primitives" class="selfRef">BFCP primitives</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Primitive</th>
<th class="text-left" rowspan="1" colspan="1">Direction</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequest</td>
<td class="text-left" rowspan="1" colspan="1">P -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">FloorRelease</td>
<td class="text-left" rowspan="1" colspan="1">P -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestQuery</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestStatus</td>
<td class="text-left" rowspan="1" colspan="1">P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">UserQuery</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">UserStatus</td>
<td class="text-left" rowspan="1" colspan="1">P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">FloorQuery</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">FloorStatus</td>
<td class="text-left" rowspan="1" colspan="1">P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">ChairAction</td>
<td class="text-left" rowspan="1" colspan="1"> Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">ChairActionAck</td>
<td class="text-left" rowspan="1" colspan="1"> Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">Hello</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">HelloAck</td>
<td class="text-left" rowspan="1" colspan="1">P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">Error</td>
<td class="text-left" rowspan="1" colspan="1">P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestStatusAck</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">15</td>
<td class="text-left" rowspan="1" colspan="1">FloorStatusAck</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">Goodbye</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S ; P <- S ; Ch <- S</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">17</td>
<td class="text-left" rowspan="1" colspan="1">GoodbyeAck</td>
<td class="text-left" rowspan="1" colspan="1">P -> S ; Ch -> S ; P <- S ; Ch <- S</td>
</tr>
</tbody>
<tfoot>
<tr>
<td class="text-left" rowspan="1" colspan="3">
<p id="section-5.1-4.3.1.1.1">S: Floor Control Server<br>P: Floor Participant<br>Ch: Floor Chair<a href="#section-5.1-4.3.1.1.1" class="pilcrow">¶</a></p>
</td>
</tr>
</tfoot>
</table>
</div>
<p id="section-5.1-5"></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1-6">
<dt id="section-5.1-6.1">Payload Length:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-6.2">This 16-bit field contains the length of
the message in 4-octet units, excluding the COMMON-HEADER. If a floor
control server receives a message with an incorrect Payload Length
field value, the receiving server <span class="bcp14">MUST</span> send an Error
message with parameter value 13 (Incorrect Message Length) to indicate
this and then discard the message. Other entities that receive a
message with an incorrect length <span class="bcp14">MUST</span> discard the
message.<a href="#section-5.1-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-5.1-7">
<p id="section-5.1-7.1">Note: BFCP is designed to achieve small message size, as explained in <a href="#sec_intro" class="xref">Section 1</a>, and BFCP entities are <span class="bcp14">REQUIRED</span> to keep the BFCP message size smaller than the size limited by the 16-bit Payload Length field. To convey information not strictly related to floor control, other protocols should be used, such as the XCON Framework (cf. <a href="#sec_scope" class="xref">Section 3</a>).<a href="#section-5.1-7.1" class="pilcrow">¶</a></p>
</aside>
<span class="break"></span><dl class="dlParallel" id="section-5.1-8">
<dt id="section-5.1-8.1">Conference ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-8.2">This 32-bit unsigned integer field identifies the conference to which the message belongs. It is <span class="bcp14">RECOMMENDED</span> that the conference identifier be randomly chosen. (Note that the use of predictable conference identifiers in conjunction with a nonsecure transport protocol makes BFCP susceptible to off-path data injection attacks, where an attacker can forge a request or response message.)<a href="#section-5.1-8.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-8.3">Transaction ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-8.4">This field contains a 16-bit value that allows users to match a given message with its response (see <a href="#sec_transactions" class="xref">Section 8</a>).<a href="#section-5.1-8.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-8.5">User ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-8.6">This field contains a 16-bit unsigned integer
that uniquely identifies a participant within a conference.<a href="#section-5.1-8.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-5.1-9">
<p id="section-5.1-9.1">The identity used by a participant in BFCP, which is carried in the User ID field, is generally mapped to the identity used by the same participant in the session establishment protocol (e.g., in SIP). The way this mapping is performed is outside the scope of this specification.<a href="#section-5.1-9.1" class="pilcrow">¶</a></p>
</aside>
<span class="break"></span><dl class="dlParallel" id="section-5.1-10">
<dt id="section-5.1-10.1">Fragment Offset:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-10.2">This optional field is present only if the F flag is set and contains a 16-bit value that specifies the number of 4-octet units contained in previous fragments, excluding the COMMON-HEADER.<a href="#section-5.1-10.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1-10.3">Fragment Length:</dt>
<dd style="margin-left: 1.5em" id="section-5.1-10.4">This optional field is present only if
the F flag is set and contains a 16-bit value that specifies the
number of 4-octet units contained in this fragment, excluding the
COMMON-HEADER. BFCP entities that receive message fragments that,
individually or collectively, exceed the Payload Length value
<span class="bcp14">MUST</span> discard the message. Additionally, if the
receiver is a floor control server, it <span class="bcp14">MUST</span> also send an Error message
with parameter value 13 (Incorrect Message Length)<a href="#section-5.1-10.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes">
<section id="section-5.2">
<h3 id="name-attribute-format">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-attribute-format" class="section-name selfRef">Attribute Format</a>
</h3>
<p id="section-5.2-1">BFCP attributes are encoded in TLV (Type-Length-Value) format. Attributes are 32-bit aligned.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
<span id="name-attribute-format-2"></span><div id="sec_format_tlv">
<figure id="figure-6">
<div class="artwork art-text alignLeft" id="section-5.2-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type |M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Attribute Contents /
/ /
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-6" class="selfRef">Figure 6</a>:
<a href="#name-attribute-format-2" class="selfRef">Attribute format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2-3">
<dt id="section-5.2-3.1">Type:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-3.2">
<p id="section-5.2-3.2.1">This 7-bit field contains the type of the attribute. Each attribute, identified by its type, has a particular format. The attribute formats defined are:<a href="#section-5.2-3.2.1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.2-3.2.2">
<dt id="section-5.2-3.2.2.1">Unsigned16:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-3.2.2.2">The contents of the attribute consist of a 16-bit unsigned integer.<a href="#section-5.2-3.2.2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-3.2.2.3">OctetString16:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-3.2.2.4">The contents of the attribute consist of 16 bits of arbitrary data.<a href="#section-5.2-3.2.2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-3.2.2.5">OctetString:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-3.2.2.6">The contents of the attribute consist of arbitrary data of variable length.<a href="#section-5.2-3.2.2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-3.2.2.7">Grouped:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-3.2.2.8">The contents of the attribute consist of a sequence of attributes.<a href="#section-5.2-3.2.2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-5.2-4">
<p id="section-5.2-4.1">Note that extension attributes defined in the future may define new attribute formats.<a href="#section-5.2-4.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-5.2-5">The following attribute types are defined:<a href="#section-5.2-5" class="pilcrow">¶</a></p>
<span id="name-bfcp-attributes"></span><div id="tab_attributes">
<table class="center" id="table-2">
<caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-bfcp-attributes" class="selfRef">BFCP attributes</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Attribute</th>
<th class="text-left" rowspan="1" colspan="1">Format</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">BENEFICIARY-ID</td>
<td class="text-left" rowspan="1" colspan="1">Unsigned16</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-ID</td>
<td class="text-left" rowspan="1" colspan="1">Unsigned16</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-ID</td>
<td class="text-left" rowspan="1" colspan="1">Unsigned16</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">PRIORITY</td>
<td class="text-left" rowspan="1" colspan="1">OctetString16</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">OctetString16</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">ERROR-CODE</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">ERROR-INFO</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">PARTICIPANT-PROVIDED-INFO</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">STATUS-INFO</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">SUPPORTED-ATTRIBUTES</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">SUPPORTED-PRIMITIVES</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">USER-DISPLAY-NAME</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">USER-URI</td>
<td class="text-left" rowspan="1" colspan="1">OctetString</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">BENEFICIARY-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">Grouped</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">15</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">Grouped</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">REQUESTED-BY-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">Grouped</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">17</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">Grouped</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">18</td>
<td class="text-left" rowspan="1" colspan="1">OVERALL-REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">Grouped</td>
</tr>
</tbody>
</table>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2-7">
<dt id="section-5.2-7.1">M:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-7.2">The 'M' bit, known as the Mandatory bit, indicates whether support of the attribute is <span class="bcp14">REQUIRED</span>. If a floor control server receives an unrecognized attribute with the 'M' bit set, the server <span class="bcp14">MUST</span> send an Error message with parameter value 4 (Unknown Mandatory Attribute) to indicate this. The 'M' bit is significant for extension attributes defined in other documents only. All attributes specified in this document <span class="bcp14">MUST</span> be understood by the receiver so that the setting of the 'M' bit is irrelevant for these. Unrecognized attributes, such as those that might be specified in future extensions, that do not have the 'M' bit set are ignored, but the message is processed.<a href="#section-5.2-7.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-7.3">Length:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-7.4">This 8-bit field contains the length of the attribute in octets, excluding any padding defined for specific attributes. The length of attributes that are not grouped includes the Type, 'M' bit, and Length fields. The Length in grouped attributes is the length of the grouped attribute itself (including Type, 'M' bit, and Length fields) plus the total length (including padding) of all the included attributes.<a href="#section-5.2-7.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-7.5">Attribute Contents:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-7.6">The contents of the different
attributes are defined in the following sections.<a href="#section-5.2-7.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<div id="sec_format_attributes_beneficiaryid">
<section id="section-5.2.1">
<h4 id="name-beneficiary-id">
<a href="#section-5.2.1" class="section-number selfRef">5.2.1. </a><a href="#name-beneficiary-id" class="section-name selfRef">BENEFICIARY-ID</a>
</h4>
<p id="section-5.2.1-1">The following is the format of the BENEFICIARY-ID attribute.<a href="#section-5.2.1-1" class="pilcrow">¶</a></p>
<span id="name-beneficiary-id-format"></span><div id="sec_format_beneficiary-id">
<figure id="figure-7">
<div class="artwork art-text alignLeft" id="section-5.2.1-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 0 0 1|M|0 0 0 0 0 1 0 0| Beneficiary ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-7" class="selfRef">Figure 7</a>:
<a href="#name-beneficiary-id-format" class="selfRef">BENEFICIARY-ID format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.1-3">
<dt id="section-5.2.1-3.1">Beneficiary ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.1-3.2">This field contains a 16-bit value that
uniquely identifies a user within a conference.<a href="#section-5.2.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-5.2.1-4">
<p id="section-5.2.1-4.1">Note that although the formats of the Beneficiary ID and of the User ID field in the COMMON-HEADER are similar, their semantics are different. The Beneficiary ID is used in third-party floor requests and to request information about a particular participant.<a href="#section-5.2.1-4.1" class="pilcrow">¶</a></p>
</aside>
</section>
</div>
<div id="sec_format_attributes_floorid">
<section id="section-5.2.2">
<h4 id="name-floor-id">
<a href="#section-5.2.2" class="section-number selfRef">5.2.2. </a><a href="#name-floor-id" class="section-name selfRef">FLOOR-ID</a>
</h4>
<p id="section-5.2.2-1">The following is the format of the FLOOR-ID attribute.<a href="#section-5.2.2-1" class="pilcrow">¶</a></p>
<span id="name-floor-id-format"></span><div id="sec_format_floor-id">
<figure id="figure-8">
<div class="artwork art-text alignLeft" id="section-5.2.2-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 0 1 0|M|0 0 0 0 0 1 0 0| Floor ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-8" class="selfRef">Figure 8</a>:
<a href="#name-floor-id-format" class="selfRef">FLOOR-ID format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.2-3">
<dt id="section-5.2.2-3.1">Floor ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.2-3.2">This field contains a 16-bit value that
uniquely identifies a floor within a conference.<a href="#section-5.2.2-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_floorrequestid">
<section id="section-5.2.3">
<h4 id="name-floor-request-id">
<a href="#section-5.2.3" class="section-number selfRef">5.2.3. </a><a href="#name-floor-request-id" class="section-name selfRef">FLOOR-REQUEST-ID</a>
</h4>
<p id="section-5.2.3-1">The following is the format of the FLOOR-REQUEST-ID attribute.<a href="#section-5.2.3-1" class="pilcrow">¶</a></p>
<span id="name-floor-request-id-format"></span><div id="sec_format_floor-request-id">
<figure id="figure-9">
<div class="artwork art-text alignLeft" id="section-5.2.3-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 0 1 1|M|0 0 0 0 0 1 0 0| Floor Request ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-9" class="selfRef">Figure 9</a>:
<a href="#name-floor-request-id-format" class="selfRef">FLOOR-REQUEST-ID format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.3-3">
<dt id="section-5.2.3-3.1">Floor Request ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.3-3.2">This field contains a 16-bit value
that identifies a floor request at the floor control server.<a href="#section-5.2.3-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_priority">
<section id="section-5.2.4">
<h4 id="name-priority">
<a href="#section-5.2.4" class="section-number selfRef">5.2.4. </a><a href="#name-priority" class="section-name selfRef">PRIORITY</a>
</h4>
<p id="section-5.2.4-1">The following is the format of the PRIORITY attribute.<a href="#section-5.2.4-1" class="pilcrow">¶</a></p>
<span id="name-priority-format"></span><div id="sec_format_priority">
<figure id="figure-10">
<div class="artwork art-text alignLeft" id="section-5.2.4-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 1 0 0|M|0 0 0 0 0 1 0 0|Prio | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-10" class="selfRef">Figure 10</a>:
<a href="#name-priority-format" class="selfRef">PRIORITY format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.4-3">
<dt id="section-5.2.4-3.1">Prio:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.4-3.2">This field contains a 3-bit Priority value, as
shown in <a href="#tab_priority" class="xref">Table 3</a>. Senders
<span class="bcp14">SHOULD NOT</span> use values higher than 4 in this
field. Receivers <span class="bcp14">MUST</span> treat values higher than 4 as
if the value received were 4 (Highest). The default Priority value
when the PRIORITY attribute is missing is 2 (Normal).<a href="#section-5.2.4-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-priority-values"></span><div id="tab_priority">
<table class="center" id="table-3">
<caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-priority-values" class="selfRef">Priority values</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Priority</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">Lowest</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Low</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Normal</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">High</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">Highest</td>
</tr>
</tbody>
</table>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.4-5">
<dt id="section-5.2.4-5.1">Reserved:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.4-5.2">The 13 bits in the reserved field <span class="bcp14">MUST</span> be set to zero by the sender of the message and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.2.4-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_req-status">
<section id="section-5.2.5">
<h4 id="name-request-status">
<a href="#section-5.2.5" class="section-number selfRef">5.2.5. </a><a href="#name-request-status" class="section-name selfRef">REQUEST-STATUS</a>
</h4>
<p id="section-5.2.5-1">The following is the format of the REQUEST-STATUS attribute.<a href="#section-5.2.5-1" class="pilcrow">¶</a></p>
<span id="name-request-status-format"></span><div id="sec_format_request-status">
<figure id="figure-11">
<div class="artwork art-text alignLeft" id="section-5.2.5-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 1 0 1|M|0 0 0 0 0 1 0 0|Request Status |Queue Position |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-11" class="selfRef">Figure 11</a>:
<a href="#name-request-status-format" class="selfRef">REQUEST-STATUS format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.5-3">
<dt id="section-5.2.5-3.1">Request Status:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.5-3.2">This 8-bit field contains the status of the request, as described in the following table.<a href="#section-5.2.5-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-request-status-values"></span><div id="tab_requeststatusvalues">
<table class="center" id="table-4">
<caption>
<a href="#table-4" class="selfRef">Table 4</a>:
<a href="#name-request-status-values" class="selfRef">Request Status values</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Status</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Pending</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Accepted</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Granted</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">Denied</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">Cancelled</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">Released</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">Revoked</td>
</tr>
</tbody>
</table>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.5-5">
<dt id="section-5.2.5-5.1">Queue Position:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.5-5.2">This 8-bit field contains, when
applicable, the position of the floor request in the floor request
queue at the server. If the Request Status value is different from
Accepted, if the floor control server does not implement a floor
request queue, or if the floor control server does not want to
provide the client with this information, all the bits of this field
<span class="bcp14">SHOULD</span> be set to zero.<a href="#section-5.2.5-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.5-6">A floor request is in Pending state if the floor control server needs to contact a floor chair in order to accept the floor request, but has not done it yet. Once the floor control chair accepts the floor request, the floor request is moved to the Accepted state.<a href="#section-5.2.5-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_format_attributes_error-code">
<section id="section-5.2.6">
<h4 id="name-error-code">
<a href="#section-5.2.6" class="section-number selfRef">5.2.6. </a><a href="#name-error-code" class="section-name selfRef">ERROR-CODE</a>
</h4>
<p id="section-5.2.6-1">The following is the format of the ERROR-CODE attribute.<a href="#section-5.2.6-1" class="pilcrow">¶</a></p>
<span id="name-error-code-format"></span><div id="sec_format_error">
<figure id="figure-12">
<div class="artwork art-text alignLeft" id="section-5.2.6-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 1 1 0|M| Length | Error Code | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
| Error Specific Details |
/ /
/ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-12" class="selfRef">Figure 12</a>:
<a href="#name-error-code-format" class="selfRef">ERROR-CODE format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.6-3">
<dt id="section-5.2.6-3.1">Error Code:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.6-3.2">This 8-bit field contains an error code
from the following table. If an error code is not recognized by the
receiver, then the receiver <span class="bcp14">MUST</span> assume that an error
exists, and therefore that the original message that triggered the
Error message to be sent is processed, but the nature of the error
is unclear.<a href="#section-5.2.6-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<span id="name-error-code-meaning"></span><div id="tab_errorcode">
<table class="center" id="table-5">
<caption>
<a href="#table-5" class="selfRef">Table 5</a>:
<a href="#name-error-code-meaning" class="selfRef">Error Code meaning</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Meaning</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Conference Does Not Exist</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">User Does Not Exist</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Unknown Primitive</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">Unknown Mandatory Attribute</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">Unauthorized Operation</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">Invalid Floor ID</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">Floor Request ID Does Not Exist</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">You have Already Reached the Maximum Number of Ongoing Floor Requests for This Floor</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">Use TLS</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">Unable to Parse Message</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">Use DTLS</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">Unsupported Version</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">Incorrect Message Length</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">Generic Error</td>
</tr>
</tbody>
</table>
</div>
<aside id="section-5.2.6-5">
<p id="section-5.2.6-5.1">Note: The Generic Error error code is intended to be used when an error occurs and the other specific error codes do not apply.<a href="#section-5.2.6-5.1" class="pilcrow">¶</a></p>
</aside>
<span class="break"></span><dl class="dlParallel" id="section-5.2.6-6">
<dt id="section-5.2.6-6.1">Error Specific Details:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.6-6.2">Present only for certain error codes. In this document, this field is present only for Error Code 4 (Unknown Mandatory Attribute). See <a href="#sec_format_attributes_error-code_specific-4" class="xref">Section 5.2.6.1</a> for its definition.<a href="#section-5.2.6-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.6-6.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.6-6.4">
<p id="section-5.2.6-6.4.1">One, two, or three octets of padding added so that the contents of the ERROR-CODE attribute is 32-bit aligned. If the attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.6-6.4.1" class="pilcrow">¶</a></p>
<p id="section-5.2.6-6.4.2">The Padding bits <span class="bcp14">MUST</span> be set to zero by the sender and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.2.6-6.4.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<div id="sec_format_attributes_error-code_specific-4">
<section id="section-5.2.6.1">
<h5 id="name-error-specific-details-for-">
<a href="#section-5.2.6.1" class="section-number selfRef">5.2.6.1. </a><a href="#name-error-specific-details-for-" class="section-name selfRef">Error Specific Details for Error Code 4</a>
</h5>
<p id="section-5.2.6.1-1">The following is the format of the Error Specific Details field for Error Code 4.<a href="#section-5.2.6.1-1" class="pilcrow">¶</a></p>
<span id="name-unknown-attributes-format"></span><div id="sec_format_unknown-tlvs">
<figure id="figure-13">
<div class="artwork art-text alignLeft" id="section-5.2.6.1-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Unknown Type|R| Unknown Type|R| Unknown Type|R| Unknown Type|R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
/ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Unknown Type|R| Unknown Type|R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Unknown Type|R| Unknown Type|R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-13" class="selfRef">Figure 13</a>:
<a href="#name-unknown-attributes-format" class="selfRef">Unknown attributes format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.6.1-3">
<dt id="section-5.2.6.1-3.1">Unknown Type:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.6.1-3.2">These 7-bit fields contain the Types of the attributes (which were present in the message that triggered the Error message) that were unknown to the receiver.<a href="#section-5.2.6.1-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.6.1-3.3">Reserved (R):</dt>
<dd style="margin-left: 1.5em" id="section-5.2.6.1-3.4">This bit is reserved. It <span class="bcp14">MUST</span> be
set to zero by the sender of the message and <span class="bcp14">MUST</span>
be ignored by the receiver.<a href="#section-5.2.6.1-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
</section>
</div>
<div id="sec_format_attributes_error-info">
<section id="section-5.2.7">
<h4 id="name-error-info">
<a href="#section-5.2.7" class="section-number selfRef">5.2.7. </a><a href="#name-error-info" class="section-name selfRef">ERROR-INFO</a>
</h4>
<p id="section-5.2.7-1">The following is the format of the ERROR-INFO attribute.<a href="#section-5.2.7-1" class="pilcrow">¶</a></p>
<span id="name-error-info-format"></span><div id="sec_format_error-info">
<figure id="figure-14">
<div class="artwork art-text alignLeft" id="section-5.2.7-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 0 1 1 1|M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Text /
/ +-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-14" class="selfRef">Figure 14</a>:
<a href="#name-error-info-format" class="selfRef">ERROR-INFO format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.7-3">
<dt id="section-5.2.7-3.1">Text:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.7-3.2">
<p id="section-5.2.7-3.2.1">This field contains UTF-8 encoded text <span>[<a href="#RFC3629" class="xref">9</a>]</span>.<a href="#section-5.2.7-3.2.1" class="pilcrow">¶</a></p>
<p id="section-5.2.7-3.2.2">In some situations, the contents of the Text field may be generated by an automaton. If this automaton has information about the preferred language of the receiver of a particular ERROR-INFO attribute, it <span class="bcp14">MAY</span> use this language to generate the Text field.<a href="#section-5.2.7-3.2.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.7-3.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.7-3.4">One, two, or three octets of padding added so
that the contents of the ERROR-INFO attribute is 32-bit aligned. The
Padding bits <span class="bcp14">MUST</span> be set to zero by the sender and
<span class="bcp14">MUST</span> be ignored by the receiver. If the attribute is
already 32-bit aligned, no padding is needed.<a href="#section-5.2.7-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_human-read-info">
<section id="section-5.2.8">
<h4 id="name-participant-provided-info">
<a href="#section-5.2.8" class="section-number selfRef">5.2.8. </a><a href="#name-participant-provided-info" class="section-name selfRef">PARTICIPANT-PROVIDED-INFO</a>
</h4>
<p id="section-5.2.8-1">The following is the format of the PARTICIPANT-PROVIDED-INFO attribute.<a href="#section-5.2.8-1" class="pilcrow">¶</a></p>
<span id="name-participant-provided-info-f"></span><div id="sec_format_human">
<figure id="figure-15">
<div class="artwork art-text alignLeft" id="section-5.2.8-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 0 0 0|M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Text /
/ +-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-15" class="selfRef">Figure 15</a>:
<a href="#name-participant-provided-info-f" class="selfRef">PARTICIPANT-PROVIDED-INFO format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.8-3">
<dt id="section-5.2.8-3.1">Text:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.8-3.2">This field contains UTF-8 encoded text <span>[<a href="#RFC3629" class="xref">9</a>]</span>.<a href="#section-5.2.8-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.8-3.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.8-3.4">One, two, or three octets of padding added so
that the contents of the PARTICIPANT-PROVIDED-INFO attribute is
32-bit aligned. The Padding bits <span class="bcp14">MUST</span> be set to zero
by the sender and <span class="bcp14">MUST</span> be ignored by the receiver. If
the attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.8-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_status-info">
<section id="section-5.2.9">
<h4 id="name-status-info">
<a href="#section-5.2.9" class="section-number selfRef">5.2.9. </a><a href="#name-status-info" class="section-name selfRef">STATUS-INFO</a>
</h4>
<p id="section-5.2.9-1">The following is the format of the STATUS-INFO attribute.<a href="#section-5.2.9-1" class="pilcrow">¶</a></p>
<span id="name-status-info-format"></span><div id="sec_format_status">
<figure id="figure-16">
<div class="artwork art-text alignLeft" id="section-5.2.9-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 0 0 1|M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Text /
/ +-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-16" class="selfRef">Figure 16</a>:
<a href="#name-status-info-format" class="selfRef">STATUS-INFO format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.9-3">
<dt id="section-5.2.9-3.1">Text:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.9-3.2">
<p id="section-5.2.9-3.2.1">This field contains UTF-8 encoded text <span>[<a href="#RFC3629" class="xref">9</a>]</span>.<a href="#section-5.2.9-3.2.1" class="pilcrow">¶</a></p>
<p id="section-5.2.9-3.2.2">In some situations, the contents of the Text field may be generated by an automaton. If this automaton has information about the preferred language of the receiver of a particular STATUS-INFO attribute, it <span class="bcp14">MAY</span> use this language to generate the Text field.<a href="#section-5.2.9-3.2.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.9-3.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.9-3.4">One, two, or three octets of padding added so
that the contents of the STATUS-INFO attribute is 32-bit
aligned. The Padding bits <span class="bcp14">MUST</span> be set to zero by the
sender and <span class="bcp14">MUST</span> be ignored by the receiver. If the
attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.9-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_supported-tlvs">
<section id="section-5.2.10">
<h4 id="name-supported-attributes">
<a href="#section-5.2.10" class="section-number selfRef">5.2.10. </a><a href="#name-supported-attributes" class="section-name selfRef">SUPPORTED-ATTRIBUTES</a>
</h4>
<p id="section-5.2.10-1">The following is the format of the SUPPORTED-ATTRIBUTES attribute.<a href="#section-5.2.10-1" class="pilcrow">¶</a></p>
<span id="name-supported-attributes-format"></span><div id="fig_format_supported-tlvs">
<figure id="figure-17">
<div class="artwork art-text alignLeft" id="section-5.2.10-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 0 1 0|M| Length | Supp. Attr. |R| Supp. Attr. |R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Supp. Attr. |R| Supp. Attr. |R| Supp. Attr. |R| Supp. Attr. |R|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
/ /
/ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-17" class="selfRef">Figure 17</a>:
<a href="#name-supported-attributes-format" class="selfRef">SUPPORTED-ATTRIBUTES format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.10-3">
<dt id="section-5.2.10-3.1">Supp. Attr.:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.10-3.2">These fields contain the
BFCP attribute types that are supported by the floor control server.
See <a href="#tab_attributes" class="xref">Table 2</a> for the list
of BFCP attributes.<a href="#section-5.2.10-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.10-3.3">Reserved (R):</dt>
<dd style="margin-left: 1.5em" id="section-5.2.10-3.4">This bit <span class="bcp14">MUST</span> be set to zero upon transmission and <span class="bcp14">MUST</span> be ignored upon reception.<a href="#section-5.2.10-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.10-3.5">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.10-3.6">
<p id="section-5.2.10-3.6.1">One, two, or three octets of padding added so that the contents of the SUPPORTED-ATTRIBUTES attribute is 32-bit aligned. If the attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.10-3.6.1" class="pilcrow">¶</a></p>
<p id="section-5.2.10-3.6.2">The Padding bits <span class="bcp14">MUST</span> be set to zero by the sender
and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.2.10-3.6.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_supported-reqs">
<section id="section-5.2.11">
<h4 id="name-supported-primitives">
<a href="#section-5.2.11" class="section-number selfRef">5.2.11. </a><a href="#name-supported-primitives" class="section-name selfRef">SUPPORTED-PRIMITIVES</a>
</h4>
<p id="section-5.2.11-1">The following is the format of the SUPPORTED-PRIMITIVES attribute.<a href="#section-5.2.11-1" class="pilcrow">¶</a></p>
<span id="name-supported-primitives-format"></span><div id="fig_format_supported-reqs">
<figure id="figure-18">
<div class="artwork art-text alignLeft" id="section-5.2.11-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 0 1 1|M| Length | Primitive | Primitive |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Primitive | Primitive | Primitive | Primitive |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
/ /
/ +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-18" class="selfRef">Figure 18</a>:
<a href="#name-supported-primitives-format" class="selfRef">SUPPORTED-PRIMITIVES format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.11-3">
<dt id="section-5.2.11-3.1">Primitive:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.11-3.2">These fields contain the types of the BFCP messages that are supported by the floor control server. See <a href="#tab_primitives" class="xref">Table 1</a> for the list of BFCP primitives.<a href="#section-5.2.11-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.11-3.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.11-3.4">
<p id="section-5.2.11-3.4.1">One, two, or three octets of padding added so that the contents of the SUPPORTED-PRIMITIVES attribute is 32-bit aligned. If the attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.11-3.4.1" class="pilcrow">¶</a></p>
<p id="section-5.2.11-3.4.2">The Padding bits <span class="bcp14">MUST</span> be set to zero by the sender
and <span class="bcp14">MUST</span> be ignored by the receiver.<a href="#section-5.2.11-3.4.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_user-display-name">
<section id="section-5.2.12">
<h4 id="name-user-display-name">
<a href="#section-5.2.12" class="section-number selfRef">5.2.12. </a><a href="#name-user-display-name" class="section-name selfRef">USER-DISPLAY-NAME</a>
</h4>
<p id="section-5.2.12-1">The following is the format of the USER-DISPLAY-NAME attribute.<a href="#section-5.2.12-1" class="pilcrow">¶</a></p>
<span id="name-user-display-name-format"></span><div id="sec_format_user-display">
<figure id="figure-19">
<div class="artwork art-text alignLeft" id="section-5.2.12-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 1 0 0|M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Text /
/ +-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-19" class="selfRef">Figure 19</a>:
<a href="#name-user-display-name-format" class="selfRef">USER-DISPLAY-NAME format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.12-3">
<dt id="section-5.2.12-3.1">Text:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.12-3.2">This field contains the UTF-8 encoded name of the user.<a href="#section-5.2.12-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2.12-3.3">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.12-3.4">One, two, or three octets of padding added so
that the contents of the USER-DISPLAY-NAME attribute is 32-bit
aligned. The Padding bits <span class="bcp14">MUST</span> be set to zero by the
sender and <span class="bcp14">MUST</span> be ignored by the receiver. If the
attribute is already 32-bit aligned, no padding is needed.<a href="#section-5.2.12-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_user-uri">
<section id="section-5.2.13">
<h4 id="name-user-uri">
<a href="#section-5.2.13" class="section-number selfRef">5.2.13. </a><a href="#name-user-uri" class="section-name selfRef">USER-URI</a>
</h4>
<p id="section-5.2.13-1">The following is the format of the USER-URI attribute.<a href="#section-5.2.13-1" class="pilcrow">¶</a></p>
<span id="name-user-uri-format"></span><div id="sec_format_user-uri">
<figure id="figure-20">
<div class="artwork art-text alignLeft" id="section-5.2.13-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 1 0 1|M| Length | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
| |
/ Text /
/ +-+-+-+-+-+-+-+-+
| | Padding |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-20" class="selfRef">Figure 20</a>:
<a href="#name-user-uri-format" class="selfRef">USER-URI format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.13-3">
<dt id="section-5.2.13-3.1">Text:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.13-3.2">This field contains the UTF-8 encoded user's contact URI, that is, the URI used by the user to set up the resources (e.g., media streams) that are controlled by BFCP. For example, in the context of a conference set up by SIP, the USER-URI attribute would carry the SIP URI of the user.<a href="#section-5.2.13-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<aside id="section-5.2.13-4">
<p id="section-5.2.13-4.1">Messages containing a user's URI in a USER-URI attribute also contain the user's User ID. This way, a client receiving such a message can correlate the user's URI (e.g., the SIP URI the user used to join a conference) with the user's User ID.<a href="#section-5.2.13-4.1" class="pilcrow">¶</a></p>
</aside>
<span class="break"></span><dl class="dlParallel" id="section-5.2.13-5">
<dt id="section-5.2.13-5.1">Padding:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.13-5.2">One, two, or three octets of padding added so
that the contents of the USER-URI attribute is 32-bit aligned. The
Padding bits <span class="bcp14">MUST</span> be set to zero by the sender and
<span class="bcp14">MUST</span> be ignored by the receiver. If the attribute is
already 32-bit aligned, no padding is needed.<a href="#section-5.2.13-5.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="sec_format_attributes_ben-info">
<section id="section-5.2.14">
<h4 id="name-beneficiary-information">
<a href="#section-5.2.14" class="section-number selfRef">5.2.14. </a><a href="#name-beneficiary-information" class="section-name selfRef">BENEFICIARY-INFORMATION</a>
</h4>
<p id="section-5.2.14-1">The BENEFICIARY-INFORMATION attribute is a grouped attribute that consists of a header, which is referred to as BENEFICIARY-INFORMATION-HEADER, followed by a sequence of attributes. The following is the format of the BENEFICIARY-INFORMATION-HEADER:<a href="#section-5.2.14-1" class="pilcrow">¶</a></p>
<span id="name-beneficiary-information-hea"></span><div id="fig_format_ben-information-header">
<figure id="figure-21">
<div class="artwork art-text alignLeft" id="section-5.2.14-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 1 1 0|M| Length | Beneficiary ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-21" class="selfRef">Figure 21</a>:
<a href="#name-beneficiary-information-hea" class="selfRef">BENEFICIARY-INFORMATION-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.14-3">
<dt id="section-5.2.14-3.1">Beneficiary ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.14-3.2">This field contains a 16-bit value that uniquely identifies a user within a conference.<a href="#section-5.2.14-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.14-4">The following is the ABNF (Augmented Backus-Naur Form) <span>[<a href="#RFC5234" class="xref">5</a>]</span> of the BENEFICIARY-INFORMATION
grouped attribute. (EXTENSION-ATTRIBUTE refers to extension
attributes that may be defined in the future.)<a href="#section-5.2.14-4" class="pilcrow">¶</a></p>
<span id="name-beneficiary-information-for"></span><div id="fig_ben-information">
<figure id="figure-22">
<div id="section-5.2.14-5.1">
<pre class="sourcecode lang-abnf">
BENEFICIARY-INFORMATION = BENEFICIARY-INFORMATION-HEADER
[USER-DISPLAY-NAME]
[USER-URI]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-22" class="selfRef">Figure 22</a>:
<a href="#name-beneficiary-information-for" class="selfRef">BENEFICIARY-INFORMATION format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_format_attributes_floor-req-info">
<section id="section-5.2.15">
<h4 id="name-floor-request-information">
<a href="#section-5.2.15" class="section-number selfRef">5.2.15. </a><a href="#name-floor-request-information" class="section-name selfRef">FLOOR-REQUEST-INFORMATION</a>
</h4>
<p id="section-5.2.15-1">The FLOOR-REQUEST-INFORMATION attribute is a grouped attribute that consists of a header, which is referred to as FLOOR-REQUEST-INFORMATION-HEADER, followed by a sequence of attributes. The following is the format of the FLOOR-REQUEST-INFORMATION-HEADER:<a href="#section-5.2.15-1" class="pilcrow">¶</a></p>
<span id="name-floor-request-information-h"></span><div id="fig_format_request-information-header">
<figure id="figure-23">
<div class="artwork art-text alignLeft" id="section-5.2.15-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 0 1 1 1 1|M| Length | Floor Request ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-23" class="selfRef">Figure 23</a>:
<a href="#name-floor-request-information-h" class="selfRef">FLOOR-REQUEST-INFORMATION-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.15-3">
<dt id="section-5.2.15-3.1">Floor Request ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.15-3.2">This field contains a 16-bit value
that identifies a floor request at the floor control server.<a href="#section-5.2.15-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.15-4">The following is the ABNF of the FLOOR-REQUEST-INFORMATION
grouped attribute. (EXTENSION-ATTRIBUTE refers to extension
attributes that may be defined in the future.)<a href="#section-5.2.15-4" class="pilcrow">¶</a></p>
<span id="name-floor-request-information-f"></span><div id="fig_floor-request-information">
<figure id="figure-24">
<div id="section-5.2.15-5.1">
<pre class="sourcecode lang-abnf">
FLOOR-REQUEST-INFORMATION = FLOOR-REQUEST-INFORMATION-HEADER
[OVERALL-REQUEST-STATUS]
1*FLOOR-REQUEST-STATUS
[BENEFICIARY-INFORMATION]
[REQUESTED-BY-INFORMATION]
[PRIORITY]
[PARTICIPANT-PROVIDED-INFO]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-24" class="selfRef">Figure 24</a>:
<a href="#name-floor-request-information-f" class="selfRef">FLOOR-REQUEST-INFORMATION format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_format_attributes_req-by-info">
<section id="section-5.2.16">
<h4 id="name-requested-by-information">
<a href="#section-5.2.16" class="section-number selfRef">5.2.16. </a><a href="#name-requested-by-information" class="section-name selfRef">REQUESTED-BY-INFORMATION</a>
</h4>
<p id="section-5.2.16-1">The REQUESTED-BY-INFORMATION attribute is a grouped attribute that consists of a header, which is referred to as REQUESTED-BY-INFORMATION-HEADER, followed by a sequence of attributes. The following is the format of the REQUESTED-BY-INFORMATION-HEADER:<a href="#section-5.2.16-1" class="pilcrow">¶</a></p>
<span id="name-requested-by-information-he"></span><div id="fig_format_req-by-information-header">
<figure id="figure-25">
<div class="artwork art-text alignLeft" id="section-5.2.16-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 1 0 0 0 0|M| Length | Requested-by ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-25" class="selfRef">Figure 25</a>:
<a href="#name-requested-by-information-he" class="selfRef">REQUESTED-BY-INFORMATION-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.16-3">
<dt id="section-5.2.16-3.1">Requested-by ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.16-3.2">This field contains a 16-bit value
that uniquely identifies a user within a conference.<a href="#section-5.2.16-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.16-4">The following is the ABNF of the REQUESTED-BY-INFORMATION grouped
attribute. (EXTENSION-ATTRIBUTE refers to extension attributes that
may be defined in the future.)<a href="#section-5.2.16-4" class="pilcrow">¶</a></p>
<span id="name-requested-by-information-fo"></span><div id="fig_reqby-information">
<figure id="figure-26">
<div id="section-5.2.16-5.1">
<pre class="sourcecode lang-abnf">
REQUESTED-BY-INFORMATION = REQUESTED-BY-INFORMATION-HEADER
[USER-DISPLAY-NAME]
[USER-URI]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-26" class="selfRef">Figure 26</a>:
<a href="#name-requested-by-information-fo" class="selfRef">REQUESTED-BY-INFORMATION format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_format_attributes_floor-req-status">
<section id="section-5.2.17">
<h4 id="name-floor-request-status">
<a href="#section-5.2.17" class="section-number selfRef">5.2.17. </a><a href="#name-floor-request-status" class="section-name selfRef">FLOOR-REQUEST-STATUS</a>
</h4>
<p id="section-5.2.17-1">The FLOOR-REQUEST-STATUS attribute is a grouped attribute that consists of a header, which is referred to as FLOOR-REQUEST-STATUS-HEADER, followed by a sequence of attributes. The following is the format of the FLOOR-REQUEST-STATUS-HEADER:<a href="#section-5.2.17-1" class="pilcrow">¶</a></p>
<span id="name-floor-request-status-header"></span><div id="fig_format_floor-req-status-header">
<figure id="figure-27">
<div class="artwork art-text alignLeft" id="section-5.2.17-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 1 0 0 0 1|M| Length | Floor ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-27" class="selfRef">Figure 27</a>:
<a href="#name-floor-request-status-header" class="selfRef">FLOOR-REQUEST-STATUS-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.17-3">
<dt id="section-5.2.17-3.1">Floor ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.17-3.2">this field contains a 16-bit value that
uniquely identifies a floor within a conference.<a href="#section-5.2.17-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.17-4">The following is the ABNF of the FLOOR-REQUEST-STATUS grouped attribute. (EXTENSION-ATTRIBUTE refers to extension attributes that may be defined in the future.)<a href="#section-5.2.17-4" class="pilcrow">¶</a></p>
<span id="name-floor-request-status-format"></span><div id="fig_floor-req-status">
<figure id="figure-28">
<div id="section-5.2.17-5.1">
<pre class="sourcecode lang-abnf">
FLOOR-REQUEST-STATUS = FLOOR-REQUEST-STATUS-HEADER
[REQUEST-STATUS]
[STATUS-INFO]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-28" class="selfRef">Figure 28</a>:
<a href="#name-floor-request-status-format" class="selfRef">FLOOR-REQUEST-STATUS format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_format_attributes_overall-req-status">
<section id="section-5.2.18">
<h4 id="name-overall-request-status">
<a href="#section-5.2.18" class="section-number selfRef">5.2.18. </a><a href="#name-overall-request-status" class="section-name selfRef">OVERALL-REQUEST-STATUS</a>
</h4>
<p id="section-5.2.18-1">The OVERALL-REQUEST-STATUS attribute is a grouped attribute that consists of a header, which is referred to as OVERALL-REQUEST-STATUS-HEADER, followed by a sequence of attributes. The following is the format of the OVERALL-REQUEST-STATUS-HEADER:<a href="#section-5.2.18-1" class="pilcrow">¶</a></p>
<span id="name-overall-request-status-head"></span><div id="fig_format_overall-req-status-header">
<figure id="figure-29">
<div class="artwork art-text alignLeft" id="section-5.2.18-2.1">
<pre>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 1 0 0 1 0|M| Length | Floor Request ID |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+</pre>
</div>
<figcaption><a href="#figure-29" class="selfRef">Figure 29</a>:
<a href="#name-overall-request-status-head" class="selfRef">OVERALL-REQUEST-STATUS-HEADER format</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.2.18-3">
<dt id="section-5.2.18-3.1">Floor Request ID:</dt>
<dd style="margin-left: 1.5em" id="section-5.2.18-3.2">This field contains a 16-bit value that identifies a floor request at the floor control server.<a href="#section-5.2.18-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.2.18-4">The following is the ABNF of the OVERALL-REQUEST-STATUS grouped attribute. (EXTENSION-ATTRIBUTE refers to extension attributes that may be defined in the future.)<a href="#section-5.2.18-4" class="pilcrow">¶</a></p>
<span id="name-overall-request-status-form"></span><div id="fig_overall-req-status">
<figure id="figure-30">
<div id="section-5.2.18-5.1">
<pre class="sourcecode lang-abnf">
OVERALL-REQUEST-STATUS = OVERALL-REQUEST-STATUS-HEADER
[REQUEST-STATUS]
[STATUS-INFO]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-30" class="selfRef">Figure 30</a>:
<a href="#name-overall-request-status-form" class="selfRef">OVERALL-REQUEST-STATUS format</a>
</figcaption></figure>
</div>
</section>
</div>
</section>
</div>
<div id="sec_msg_format">
<section id="section-5.3">
<h3 id="name-message-format">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-message-format" class="section-name selfRef">Message Format</a>
</h3>
<p id="section-5.3-1">This section contains the normative ABNF (Augmented Backus-Naur Form) <span>[<a href="#RFC5234" class="xref">5</a>]</span> of the BFCP messages. Extension attributes that may be defined in the future are referred to as EXTENSION-ATTRIBUTE in the ABNF.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<div id="sec_msg_format_FloorRequest">
<section id="section-5.3.1">
<h4 id="name-floorrequest">
<a href="#section-5.3.1" class="section-number selfRef">5.3.1. </a><a href="#name-floorrequest" class="section-name selfRef">FloorRequest</a>
</h4>
<p id="section-5.3.1-1">Floor participants request a floor by sending a FloorRequest message to the floor control server. The following is the format of the FloorRequest message:<a href="#section-5.3.1-1" class="pilcrow">¶</a></p>
<span id="name-floorrequest-format"></span><div id="fig_floorequest">
<figure id="figure-31">
<div id="section-5.3.1-2.1">
<pre class="sourcecode lang-abnf">
FloorRequest = COMMON-HEADER
1*FLOOR-ID
[BENEFICIARY-ID]
[PARTICIPANT-PROVIDED-INFO]
[PRIORITY]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-31" class="selfRef">Figure 31</a>:
<a href="#name-floorrequest-format" class="selfRef">FloorRequest format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_FloorRelease">
<section id="section-5.3.2">
<h4 id="name-floorrelease">
<a href="#section-5.3.2" class="section-number selfRef">5.3.2. </a><a href="#name-floorrelease" class="section-name selfRef">FloorRelease</a>
</h4>
<p id="section-5.3.2-1">Floor participants release a floor by sending a FloorRelease message to the floor control server. Floor participants also use the FloorRelease message to cancel pending floor requests. The following is the format of the FloorRelease message:<a href="#section-5.3.2-1" class="pilcrow">¶</a></p>
<span id="name-floorrelease-format"></span><div id="fig_floorelease">
<figure id="figure-32">
<div id="section-5.3.2-2.1">
<pre class="sourcecode lang-abnf">
FloorRelease = COMMON-HEADER
FLOOR-REQUEST-ID
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-32" class="selfRef">Figure 32</a>:
<a href="#name-floorrelease-format" class="selfRef">FloorRelease format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_FloorRequestQuery">
<section id="section-5.3.3">
<h4 id="name-floorrequestquery">
<a href="#section-5.3.3" class="section-number selfRef">5.3.3. </a><a href="#name-floorrequestquery" class="section-name selfRef">FloorRequestQuery</a>
</h4>
<p id="section-5.3.3-1">Floor participants and floor chairs request information about a floor request by sending a FloorRequestQuery message to the floor control server. The following is the format of the FloorRequestQuery message:<a href="#section-5.3.3-1" class="pilcrow">¶</a></p>
<span id="name-floorrequestquery-format"></span><div id="fig_floorrequestinfo">
<figure id="figure-33">
<div id="section-5.3.3-2.1">
<pre class="sourcecode lang-abnf">
FloorRequestQuery = COMMON-HEADER
FLOOR-REQUEST-ID
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-33" class="selfRef">Figure 33</a>:
<a href="#name-floorrequestquery-format" class="selfRef">FloorRequestQuery format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_FloorRequestStatus">
<section id="section-5.3.4">
<h4 id="name-floorrequeststatus">
<a href="#section-5.3.4" class="section-number selfRef">5.3.4. </a><a href="#name-floorrequeststatus" class="section-name selfRef">FloorRequestStatus</a>
</h4>
<p id="section-5.3.4-1">The floor control server informs floor participants and floor chairs about the status of their floor requests by sending them FloorRequestStatus messages. The following is the format of the FloorRequestStatus message:<a href="#section-5.3.4-1" class="pilcrow">¶</a></p>
<span id="name-floorrequeststatus-format"></span><div id="fig_floorrequeststatus">
<figure id="figure-34">
<div id="section-5.3.4-2.1">
<pre class="sourcecode lang-abnf">
FloorRequestStatus = COMMON-HEADER
FLOOR-REQUEST-INFORMATION
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-34" class="selfRef">Figure 34</a>:
<a href="#name-floorrequeststatus-format" class="selfRef">FloorRequestStatus format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_UserQuery">
<section id="section-5.3.5">
<h4 id="name-userquery">
<a href="#section-5.3.5" class="section-number selfRef">5.3.5. </a><a href="#name-userquery" class="section-name selfRef">UserQuery</a>
</h4>
<p id="section-5.3.5-1">Floor participants and floor chairs request information about a participant and the floor requests related to this participant by sending a UserQuery message to the floor control server. The following is the format of the UserQuery message:<a href="#section-5.3.5-1" class="pilcrow">¶</a></p>
<span id="name-userquery-format"></span><div id="fig_userinfowanted">
<figure id="figure-35">
<div id="section-5.3.5-2.1">
<pre class="sourcecode lang-abnf">
UserQuery = COMMON-HEADER
[BENEFICIARY-ID]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-35" class="selfRef">Figure 35</a>:
<a href="#name-userquery-format" class="selfRef">UserQuery format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_UserStatus">
<section id="section-5.3.6">
<h4 id="name-userstatus">
<a href="#section-5.3.6" class="section-number selfRef">5.3.6. </a><a href="#name-userstatus" class="section-name selfRef">UserStatus</a>
</h4>
<p id="section-5.3.6-1">The floor control server provides information about participants and their related floor requests to floor participants and floor chairs by sending them UserStatus messages. The following is the format of the UserStatus message:<a href="#section-5.3.6-1" class="pilcrow">¶</a></p>
<span id="name-userstatus-format"></span><div id="fig_userstatus">
<figure id="figure-36">
<div id="section-5.3.6-2.1">
<pre class="sourcecode lang-abnf">
UserStatus = COMMON-HEADER
[BENEFICIARY-INFORMATION]
*FLOOR-REQUEST-INFORMATION
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-36" class="selfRef">Figure 36</a>:
<a href="#name-userstatus-format" class="selfRef">UserStatus format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_FloorQuery">
<section id="section-5.3.7">
<h4 id="name-floorquery">
<a href="#section-5.3.7" class="section-number selfRef">5.3.7. </a><a href="#name-floorquery" class="section-name selfRef">FloorQuery</a>
</h4>
<p id="section-5.3.7-1">Floor participants and floor chairs request information about a floor or floors by sending a FloorQuery message to the floor control server. The following is the format of the FloorQuery message:<a href="#section-5.3.7-1" class="pilcrow">¶</a></p>
<span id="name-floorquery-format"></span><div id="fig_floorinfo">
<figure id="figure-37">
<div id="section-5.3.7-2.1">
<pre class="sourcecode lang-abnf">
FloorQuery = COMMON-HEADER
*FLOOR-ID
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-37" class="selfRef">Figure 37</a>:
<a href="#name-floorquery-format" class="selfRef">FloorQuery format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_FloorStatus">
<section id="section-5.3.8">
<h4 id="name-floorstatus">
<a href="#section-5.3.8" class="section-number selfRef">5.3.8. </a><a href="#name-floorstatus" class="section-name selfRef">FloorStatus</a>
</h4>
<p id="section-5.3.8-1">The floor control server informs floor participants and floor chairs about the status (e.g., the current holder) of a floor by sending them FloorStatus messages. The following is the format of the FloorStatus message:<a href="#section-5.3.8-1" class="pilcrow">¶</a></p>
<span id="name-floorstatus-format"></span><div id="fig_floorstatus">
<figure id="figure-38">
<div id="section-5.3.8-2.1">
<pre class="sourcecode lang-abnf">
FloorStatus = COMMON-HEADER
*FLOOR-ID
*FLOOR-REQUEST-INFORMATION
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-38" class="selfRef">Figure 38</a>:
<a href="#name-floorstatus-format" class="selfRef">FloorStatus format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_ChairAction">
<section id="section-5.3.9">
<h4 id="name-chairaction">
<a href="#section-5.3.9" class="section-number selfRef">5.3.9. </a><a href="#name-chairaction" class="section-name selfRef">ChairAction</a>
</h4>
<p id="section-5.3.9-1">Floor chairs send instructions to floor control servers by sending them ChairAction messages. The following is the format of the ChairAction message:<a href="#section-5.3.9-1" class="pilcrow">¶</a></p>
<span id="name-chairaction-format"></span><div id="fig_chairaction">
<figure id="figure-39">
<div id="section-5.3.9-2.1">
<pre class="sourcecode lang-abnf">
ChairAction = COMMON-HEADER
FLOOR-REQUEST-INFORMATION
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-39" class="selfRef">Figure 39</a>:
<a href="#name-chairaction-format" class="selfRef">ChairAction format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_ChairActionAck">
<section id="section-5.3.10">
<h4 id="name-chairactionack">
<a href="#section-5.3.10" class="section-number selfRef">5.3.10. </a><a href="#name-chairactionack" class="section-name selfRef">ChairActionAck</a>
</h4>
<p id="section-5.3.10-1">Floor control servers confirm that they have accepted a ChairAction message by sending a ChairActionAck message. The following is the format of the ChairActionAck message:<a href="#section-5.3.10-1" class="pilcrow">¶</a></p>
<span id="name-chairactionack-format"></span><div id="fig_chairactionack">
<figure id="figure-40">
<div id="section-5.3.10-2.1">
<pre class="sourcecode lang-abnf">
ChairActionAck = COMMON-HEADER
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-40" class="selfRef">Figure 40</a>:
<a href="#name-chairactionack-format" class="selfRef">ChairActionAck format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_Hello">
<section id="section-5.3.11">
<h4 id="name-hello">
<a href="#section-5.3.11" class="section-number selfRef">5.3.11. </a><a href="#name-hello" class="section-name selfRef">Hello</a>
</h4>
<p id="section-5.3.11-1">Floor participants and floor chairs <span class="bcp14">MAY</span> check the liveness of floor control servers by sending a Hello message. Additionally, clients communicating with a floor control server over an unreliable transport use the Hello message to initiate communication with the server. The following is the format of the Hello message:<a href="#section-5.3.11-1" class="pilcrow">¶</a></p>
<span id="name-hello-format"></span><div id="fig_hello">
<figure id="figure-41">
<div id="section-5.3.11-2.1">
<pre class="sourcecode lang-abnf">
Hello = COMMON-HEADER
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-41" class="selfRef">Figure 41</a>:
<a href="#name-hello-format" class="selfRef">Hello format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_HelloAck">
<section id="section-5.3.12">
<h4 id="name-helloack">
<a href="#section-5.3.12" class="section-number selfRef">5.3.12. </a><a href="#name-helloack" class="section-name selfRef">HelloAck</a>
</h4>
<p id="section-5.3.12-1">Floor control servers confirm that they are alive on reception of a Hello message by sending a HelloAck message. The following is the format of the HelloAck message:<a href="#section-5.3.12-1" class="pilcrow">¶</a></p>
<span id="name-helloack-format"></span><div id="fig_helloack">
<figure id="figure-42">
<div id="section-5.3.12-2.1">
<pre class="sourcecode lang-abnf">
HelloAck = COMMON-HEADER
SUPPORTED-PRIMITIVES
SUPPORTED-ATTRIBUTES
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-42" class="selfRef">Figure 42</a>:
<a href="#name-helloack-format" class="selfRef">HelloAck format</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="sec_msg_format_Error">
<section id="section-5.3.13">
<h4 id="name-error">
<a href="#section-5.3.13" class="section-number selfRef">5.3.13. </a><a href="#name-error" class="section-name selfRef">Error</a>
</h4>
<p id="section-5.3.13-1">Floor control servers inform floor participants and floor chairs about errors processing requests by sending them Error messages. The following is the format of the Error message:<a href="#section-5.3.13-1" class="pilcrow">¶</a></p>
<span id="name-error-format"></span><div id="fig_error">
<figure id="figure-43">
<div id="section-5.3.13-2.1">
<pre class="sourcecode lang-abnf">
Error = COMMON-HEADER
ERROR-CODE
[ERROR-INFO]
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-43" class="selfRef">Figure 43</a>:
<a href="#name-error-format" class="selfRef">Error format</a>
</figcaption></figure>
</div>
</section>
</div>
<section id="section-5.3.14">
<h4 id="name-floorrequeststatusack">
<a href="#section-5.3.14" class="section-number selfRef">5.3.14. </a><a href="#name-floorrequeststatusack" class="section-name selfRef">FloorRequestStatusAck</a>
</h4>
<p id="section-5.3.14-1">When communicating over an unreliable transport, floor participants and chairs acknowledge the receipt of a subsequent FloorRequestStatus message from the floor control server (cf. <a href="#sec_server_request_subsequent" class="xref">Section 13.1.2</a>) by sending a FloorRequestStatusAck message. The following is the format of the FloorRequestStatusAck message:<a href="#section-5.3.14-1" class="pilcrow">¶</a></p>
<span id="name-floorrequeststatusack-forma"></span><div id="FloorRequestStatusAck">
<figure id="figure-44">
<div id="section-5.3.14-2.1">
<pre class="sourcecode lang-abnf">
FloorRequestStatusAck = (COMMON-HEADER)
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-44" class="selfRef">Figure 44</a>:
<a href="#name-floorrequeststatusack-forma" class="selfRef">FloorRequestStatusAck format</a>
</figcaption></figure>
</div>
</section>
<section id="section-5.3.15">
<h4 id="name-floorstatusack">
<a href="#section-5.3.15" class="section-number selfRef">5.3.15. </a><a href="#name-floorstatusack" class="section-name selfRef">FloorStatusAck</a>
</h4>
<p id="section-5.3.15-1">When communicating over an unreliable transport, floor participants and chairs acknowledge the receipt of a subsequent FloorStatus message from the floor control server (cf. <a href="#sec_server_floorinfo_subsequent" class="xref">Section 13.5.2</a>) by sending a FloorStatusAck message. The following is the format of the FloorStatusAck message:<a href="#section-5.3.15-1" class="pilcrow">¶</a></p>
<span id="name-floorstatusack-format"></span><div id="FloorStatusAck">
<figure id="figure-45">
<div id="section-5.3.15-2.1">
<pre class="sourcecode lang-abnf">
FloorStatusAck = (COMMON-HEADER)
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-45" class="selfRef">Figure 45</a>:
<a href="#name-floorstatusack-format" class="selfRef">FloorStatusAck format</a>
</figcaption></figure>
</div>
</section>
<section id="section-5.3.16">
<h4 id="name-goodbye">
<a href="#section-5.3.16" class="section-number selfRef">5.3.16. </a><a href="#name-goodbye" class="section-name selfRef">Goodbye</a>
</h4>
<p id="section-5.3.16-1">BFCP entities communicating over an unreliable transport that wish to dissociate themselves from their remote participant do so through the transmission of a Goodbye. The following is the format of the Goodbye message:<a href="#section-5.3.16-1" class="pilcrow">¶</a></p>
<span id="name-goodbye-format"></span><div id="Goodbye">
<figure id="figure-46">
<div id="section-5.3.16-2.1">
<pre class="sourcecode lang-abnf">
Goodbye = (COMMON-HEADER)
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-46" class="selfRef">Figure 46</a>:
<a href="#name-goodbye-format" class="selfRef">Goodbye format</a>
</figcaption></figure>
</div>
</section>
<section id="section-5.3.17">
<h4 id="name-goodbyeack">
<a href="#section-5.3.17" class="section-number selfRef">5.3.17. </a><a href="#name-goodbyeack" class="section-name selfRef">GoodbyeAck</a>
</h4>
<p id="section-5.3.17-1">BFCP entities communicating over an unreliable transport acknowledge the receipt of a Goodbye message from a peer. The following is the format of the GoodbyeAck message:<a href="#section-5.3.17-1" class="pilcrow">¶</a></p>
<span id="name-goodbyeack-format"></span><div id="GoodbyeAck">
<figure id="figure-47">
<div id="section-5.3.17-2.1">
<pre class="sourcecode lang-abnf">
GoodbyeAck = (COMMON-HEADER)
*EXTENSION-ATTRIBUTE</pre>
</div>
<figcaption><a href="#figure-47" class="selfRef">Figure 47</a>:
<a href="#name-goodbyeack-format" class="selfRef">GoodbyeAck format</a>
</figcaption></figure>
</div>
</section>
</section>
</div>
</section>
</div>
<div id="sec_transport">
<section id="section-6">
<h2 id="name-transport">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-transport" class="section-name selfRef">Transport</a>
</h2>
<p id="section-6-1">The transport over which BFCP entities exchange messages depends on the information the clients obtain for contacting the floor control server, as described in <a href="#sec_scope_info" class="xref">Section 3.2</a>. Two transports are supported: TCP, which is appropriate where connectivity is not impeded by network elements such as NAT devices or media relays; and UDP for those deployments where TCP may not be applicable or appropriate.<a href="#section-6-1" class="pilcrow">¶</a></p>
<aside id="section-6-2">
<p id="section-6-2.1">Note: In practice, products are configured to try one transport first and then use the other transport as a fallback. Whether TCP or UDP is chosen as underlying transport depends on the type of product and the deployment environment. See <a href="#app_motivation" class="xref">Appendix B</a> for additional considerations.<a href="#section-6-2.1" class="pilcrow">¶</a></p>
</aside>
<div id="tcp_transport">
<section id="section-6.1">
<h3 id="name-reliable-transport">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-reliable-transport" class="section-name selfRef">Reliable Transport</a>
</h3>
<p id="section-6.1-1">BFCP entities may elect to exchange BFCP messages using TCP connections. TCP provides an in-order reliable delivery of a stream of bytes. Consequently, message framing needs to be implemented in the application layer. BFCP implements application-layer framing using TLV-encoded attributes.<a href="#section-6.1-1" class="pilcrow">¶</a></p>
<p id="section-6.1-2">A client <span class="bcp14">MUST NOT</span> use more than one TCP connection to communicate with a given floor control server within a conference. Nevertheless, if the same physical box handles different clients (e.g., a floor chair and a floor participant), which are identified by different User IDs, a separate connection per client is allowed.<a href="#section-6.1-2" class="pilcrow">¶</a></p>
<p id="section-6.1-3">If a BFCP entity (a client or a floor control server) receives data that cannot be parsed, the entity <span class="bcp14">MUST</span> close the TCP connection, and the connection <span class="bcp14">SHOULD</span> be reestablished. Similarly, if a TCP connection cannot deliver a BFCP message and times out or receives an ICMP port unreachable message mid-connection, the TCP connection <span class="bcp14">SHOULD</span> be reestablished.<a href="#section-6.1-3" class="pilcrow">¶</a></p>
<p id="section-6.1-4">The way connection reestablishment is handled depends on how the client obtains information to contact the floor control server. Once the TCP connection is reestablished, the client <span class="bcp14">MAY</span> resend those messages for which it did not get a response from the floor control server.<a href="#section-6.1-4" class="pilcrow">¶</a></p>
<p id="section-6.1-5">If a floor control server detects that the TCP connection towards one of the floor participants is lost, it is up to the local policy of the floor control server what to do with the pending floor requests of the floor participant. In any case, it is <span class="bcp14">RECOMMENDED</span> that the floor control server keep the floor requests (i.e., that it does not cancel them) while the TCP connection is reestablished.<a href="#section-6.1-5" class="pilcrow">¶</a></p>
<p id="section-6.1-6">If a client wishes to end its BFCP connection with a floor control server, the client closes (i.e., a graceful close) the TCP connection towards the floor control server. If a floor control server wishes to end its BFCP connection with a client (e.g., the focus of the conference informs the floor control server that the client has been kicked out of the conference), the floor control server closes (i.e., a graceful close) the TCP connection towards the client.<a href="#section-6.1-6" class="pilcrow">¶</a></p>
<p id="section-6.1-7">In cases where a BFCP entity reestablishes a connection due to protocol errors as described above, the entity <span class="bcp14">SHOULD NOT</span> repeatedly reestablish the connection. Rather, if the same protocol errors persist, the entity <span class="bcp14">MUST</span> cease attempts and <span class="bcp14">SHOULD</span> report the error to the human user and/or log the event. This does not preclude the entity from reestablishing a connection when facing a different set of errors. That said, entities <span class="bcp14">MUST</span> avoid overloading the server with reestablishment requests. A connection <span class="bcp14">MUST NOT</span> be reestablished too frequently. The frequency is a matter of implementation, but <span class="bcp14">SHOULD NOT</span> be attempted more than once in a 30 second period of time.<a href="#section-6.1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="udp_transport">
<section id="section-6.2">
<h3 id="name-unreliable-transport">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-unreliable-transport" class="section-name selfRef">Unreliable Transport</a>
</h3>
<p id="section-6.2-1">BFCP entities may elect to exchange BFCP messages using UDP datagrams. UDP is an unreliable transport where neither delivery nor ordering is assured. Each BFCP UDP datagram <span class="bcp14">MUST</span> contain exactly one BFCP message or message fragment. To keep large BFCP messages from being fragmented at the IP layer, the fragmentation of BFCP messages that exceed the path MTU size is performed at the BFCP level. Considerations related to fragmentation are covered in <a href="#fragmentation_handling" class="xref">Section 6.2.3</a>. The message format for BFCP messages is the same regardless of whether the messages are sent in UDP datagrams or over a TCP stream.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
<p id="section-6.2-2">Clients <span class="bcp14">MUST</span> announce their presence to the floor control server by sending a Hello message. The floor control server responds to the Hello message with a HelloAck message. The client considers the floor control server as present and available only upon receiving the HelloAck message. The behavior when timers fire, including the determination that a connection is broken, is described in <a href="#timers" class="xref">Section 8.3</a>.<a href="#section-6.2-2" class="pilcrow">¶</a></p>
<p id="section-6.2-3">As described in <a href="#sec_transactions" class="xref">Section 8</a>, each request sent by a floor participant or chair forms a client transaction that expects an acknowledgement message from the floor control server within a transaction failure window. Concordantly, messages sent by the floor control server that initiate new transactions (e.g., FloorStatus announcements as part of a FloorQuery subscription) require acknowledgement messages from the floor participant and chair entities to which they were sent.<a href="#section-6.2-3" class="pilcrow">¶</a></p>
<p id="section-6.2-4">If a floor control server receives data that cannot be parsed, the receiving server <span class="bcp14">MUST</span> send an Error message with parameter value 10 (Unable to Parse Message) indicating receipt of a malformed message, given that it is possible to parse the received message to such an extent that an Error message may be built.<a href="#section-6.2-4" class="pilcrow">¶</a></p>
<p id="section-6.2-5">Entities <span class="bcp14">MUST</span> have at most one outstanding request transaction per peer at any one time. Implicit subscriptions occur for a client-initiated request transaction whose acknowledgement is implied by the first server-initiated response for that transaction, followed by zero of more subsequent server-initiated messages corresponding to the same transaction. An example is a FloorRequest message for which there are potentially multiple responses from the floor control server as it processes intermediate states until a terminal state (e.g., Granted or Denied) is attained. The subsequent changes in state for the request are new transactions whose Transaction ID is determined by the floor control server and whose receipt by the client participant is acknowledged with a FloorRequestStatusAck message.<a href="#section-6.2-5" class="pilcrow">¶</a></p>
<p id="section-6.2-6">By restricting entities to having at most one pending transaction open in a BFCP connection, both the out-of-order receipt of messages as well as the possibility for congestion are mitigated. Additional details regarding congestion control are provided in <a href="#congestion" class="xref">Section 6.2.1</a>.
If a participant receives a server-initiated request (e.g., a
FloorStatus from the floor control server) while waiting for a
response to a client-initiated transaction (e.g., the participant
sent a FloorRequest and is waiting for a FloorRequestStatus
response), then the participant <span class="bcp14">MUST</span> treat the server-initiated
request as superseding any response to its client-initiated
transaction.
As the floor control server cannot send a second update to the implicit floor status subscription until the first is acknowledged, ordinality is maintained.<a href="#section-6.2-6" class="pilcrow">¶</a></p>
<p id="section-6.2-7">If a client wishes to end its BFCP connection with a floor control server, it is <span class="bcp14">REQUIRED</span> that the client send a Goodbye message to dissociate itself from any allocated resources. If a floor control server wishes to end its BFCP connection with a client (e.g., the focus of the conference informs the floor control server that the client has been kicked out from the conference), it is <span class="bcp14">REQUIRED</span> that the floor control server send a Goodbye message towards the client.<a href="#section-6.2-7" class="pilcrow">¶</a></p>
<div id="congestion">
<section id="section-6.2.1">
<h4 id="name-congestion-control">
<a href="#section-6.2.1" class="section-number selfRef">6.2.1. </a><a href="#name-congestion-control" class="section-name selfRef">Congestion Control</a>
</h4>
<p id="section-6.2.1-1">BFCP may be characterized as generating "low data-volume" traffic, per the classification in <span>[<a href="#RFC8085" class="xref">15</a>]</span>. Nevertheless, it is necessary to ensure that suitable and necessary congestion control mechanisms are used for BFCP over UDP. As described in <a href="#udp_transport" class="xref">Section 6.2</a>, within the same BFCP connection, every entity -- client or server -- is only allowed to send one request at a time, and await the acknowledging response. This way, at most one datagram is sent per RTT given the message is not lost during transmission. If the message is lost, the request retransmission timer T1 specified in <a href="#timers_retrans" class="xref">Section 8.3.1</a> will fire, and the message is retransmitted up to three times, in addition to the original transmission of the message. The default initial interval <span class="bcp14">MUST</span> be set to 500 ms, but is adjusted dynamically as described in <a href="#timers_retrans" class="xref">Section 8.3.1</a>. The interval <span class="bcp14">MUST</span> be doubled after each retransmission attempt. This is similar to the specification of the timer A and its initial value T1 in SIP as described in <span><a href="https://www.rfc-editor.org/rfc/rfc3261#section-17.1.1.2" class="relref">Section 17.1.1.2</a> of [<a href="#RFC3261" class="xref">20</a>]</span>, except that the value of T1 in this protocol is not fixed from one transaction to another.<a href="#section-6.2.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="icmp">
<section id="section-6.2.2">
<h4 id="name-icmp-error-handling">
<a href="#section-6.2.2" class="section-number selfRef">6.2.2. </a><a href="#name-icmp-error-handling" class="section-name selfRef">ICMP Error Handling</a>
</h4>
<p id="section-6.2.2-1">ICMP is not usable when BFCP is running over an unreliable transport
due to risks associated with off-path attacks. Any ICMP messages associated with BFCP running over an unreliable transport <span class="bcp14">MUST</span> be ignored.<a href="#section-6.2.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="fragmentation_handling">
<section id="section-6.2.3">
<h4 id="name-fragmentation-handling">
<a href="#section-6.2.3" class="section-number selfRef">6.2.3. </a><a href="#name-fragmentation-handling" class="section-name selfRef">Fragmentation Handling</a>
</h4>
<p id="section-6.2.3-1">When using UDP, a single BFCP message could be fragmented at the IP layer if its overall size exceeds the path MTU of the network. To avoid this happening at the IP layer, a fragmentation scheme for BFCP is defined below.<a href="#section-6.2.3-1" class="pilcrow">¶</a></p>
<p id="section-6.2.3-2">BFCP is designed for achieving small message size, due to the binary encoding as described in <a href="#sec_intro" class="xref">Section 1</a>. The fragmentation scheme is therefore deliberately kept simple and straightforward, since the probability of fragmentation of BFCP messages is small. By design, the fragmentation scheme does not acknowledge individual BFCP message fragments. The whole BFCP message is acknowledged if received completely.<a href="#section-6.2.3-2" class="pilcrow">¶</a></p>
<p id="section-6.2.3-3">BFCP entities <span class="bcp14">SHOULD</span> consider the path MTU size
available between the sender and the receiver and <span class="bcp14">MAY</span>
run MTU discovery, such as described in <span>[<a href="#RFC1191" class="xref">25</a>]</span>, <span>[<a href="#RFC8201" class="xref">26</a>]</span>, and <span>[<a href="#RFC4821" class="xref">27</a>]</span>, for this purpose.<a href="#section-6.2.3-3" class="pilcrow">¶</a></p>
<p id="section-6.2.3-4">When transmitting a BFCP message with a size greater than the path MTU, the sender <span class="bcp14">MUST</span> fragment the message into a series of N contiguous data ranges. The size of each of these N messages <span class="bcp14">MUST</span> be smaller than the path MTU to help prevent fragmentation overlap attacks. The value for N is defined as ceil((message size -- COMMON-HEADER size) / (path MTU size -- COMMON-HEADER size)), where ceil is the integer ceiling function, and the COMMON-HEADER size includes the Fragment Offset and Fragment Length fields. The sender then creates N BFCP fragment messages (one for each data range) with the same Transaction ID. The size of each of these N messages, with the COMMON-HEADER included, <span class="bcp14">MUST</span> be smaller than the path MTU. The F flag in the COMMON-HEADER in all the fragments is set to indicate fragmentation of the BFCP message.<a href="#section-6.2.3-4" class="pilcrow">¶</a></p>
<p id="section-6.2.3-5">For each of these fragments, the Fragment Offset and Fragment Length fields are included in the COMMON-HEADER. The Fragment Offset field denotes the number of 4-octet units contained in the previous fragments, excluding the COMMON-HEADER. The Fragment Length contains the length of the fragment itself, also excluding the COMMON-HEADER. Note that the Payload Length field contains the length of the entire, unfragmented message.<a href="#section-6.2.3-5" class="pilcrow">¶</a></p>
<p id="section-6.2.3-6">When a BFCP implementation receives a BFCP message fragment, it <span class="bcp14">MUST</span> buffer the fragment until either it has received the entire BFCP message, or until the Response Retransmission Timer expires. The state machine should handle the BFCP message only after all the fragments of the message have been received.<a href="#section-6.2.3-6" class="pilcrow">¶</a></p>
<p id="section-6.2.3-7">If a fragment of a BFCP message is lost, the sender will not receive an acknowledgement for the message. Therefore the sender will retransmit the message with same transaction ID as specified in <a href="#timers" class="xref">Section 8.3</a>. If the acknowledgement message sent by the receiver is lost, then the entire message will be resent by the sender. The receiver <span class="bcp14">MUST</span> then retransmit the acknowledgement. The receiver <span class="bcp14">MAY</span> discard an incomplete buffer utilizing the Response Retransmission Timer, starting the timer after the receipt of the first fragment.<a href="#section-6.2.3-7" class="pilcrow">¶</a></p>
<aside id="section-6.2.3-8">
<p id="section-6.2.3-8.1">A Denial of Service (DoS) attack utilizing the fragmentation scheme described above is mitigated by the fact that the Response Retransmission Timer is started after receipt of the first BFCP message fragment. In addition, the Payload Length field can be compared with the Fragment Offset and Fragment Length fields to verify the message fragments as they arrive. To make DoS attacks with spoofed IP addresses difficult, BFCP entities <span class="bcp14">SHOULD</span> use the cookie exchange mechanism in DTLS <span>[<a href="#RFC6347" class="xref">8</a>]</span>.<a href="#section-6.2.3-8.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-6.2.3-9">When deciding the size of the message fragment based on path MTU, the BFCP fragmentation handling should take into account how the DTLS record framing expands the datagram size as described in <span><a href="https://www.rfc-editor.org/rfc/rfc6347#section-4.1.1.1" class="relref">Section 4.1.1.1</a> of [<a href="#RFC6347" class="xref">8</a>]</span>.<a href="#section-6.2.3-9" class="pilcrow">¶</a></p>
</section>
</div>
<div id="nat_traversal">
<section id="section-6.2.4">
<h4 id="name-nat-traversal">
<a href="#section-6.2.4" class="section-number selfRef">6.2.4. </a><a href="#name-nat-traversal" class="section-name selfRef">NAT Traversal</a>
</h4>
<p id="section-6.2.4-1">One of the key benefits of using UDP for BFCP communication is the ability to leverage the existing NAT traversal infrastructure and strategies deployed to facilitate transport of the media associated with the video conferencing sessions. Depending on the given deployment, this infrastructure typically includes some subset of Interactive Connectivity Establishment (ICE) <span>[<a href="#RFC8445" class="xref">16</a>]</span>.<a href="#section-6.2.4-1" class="pilcrow">¶</a></p>
<p id="section-6.2.4-2">In order to facilitate the initial establishment of NAT bindings, and to maintain those bindings once established, BFCP entities using an unreliable transport are <span class="bcp14">RECOMMENDED</span> to use STUN <span>[<a href="#RFC5389" class="xref">14</a>]</span> Binding Indication for keepalives, as described for ICE <span>[<a href="#RFC8445" class="xref">16</a>]</span>. <span><a href="https://www.rfc-editor.org/rfc/rfc5763#section-6.7" class="relref">Section 6.7</a> of [<a href="#RFC5763" class="xref">28</a>]</span> provides useful recommendations for middlebox interaction when DTLS is used.<a href="#section-6.2.4-2" class="pilcrow">¶</a></p>
<aside id="section-6.2.4-3">
<p id="section-6.2.4-3.1">Note: Since the version number is set to 2 when BFCP is used over an unreliable transport, cf. the Ver field in <a href="#sec_format_common" class="xref">Section 5.1</a>, it is straightforward to distinguish between STUN and BFCP packets even without checking the STUN magic cookie <span>[<a href="#RFC5389" class="xref">14</a>]</span>.<a href="#section-6.2.4-3.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-6.2.4-4">In order to facilitate traversal of BFCP packets through NATs, BFCP entities using an unreliable transport are <span class="bcp14">RECOMMENDED</span> to use symmetric ports for sending and receiving BFCP packets, as recommended for RTP/RTP Control Protocol (RTCP) <span>[<a href="#RFC4961" class="xref">13</a>]</span>.<a href="#section-6.2.4-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec_lower-security">
<section id="section-7">
<h2 id="name-lower-layer-security">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-lower-layer-security" class="section-name selfRef">Lower-Layer Security</a>
</h2>
<p id="section-7-1">BFCP relies on lower-layer security mechanisms to provide replay and integrity protection and confidentiality. BFCP floor control servers and clients (which include both floor participants and floor chairs) <span class="bcp14">MUST</span> support TLS for transport over TCP <span>[<a href="#RFC8446" class="xref">11</a>]</span> and <span class="bcp14">MUST</span> support DTLS <span>[<a href="#RFC6347" class="xref">8</a>]</span> for transport over UDP. Any BFCP entity <span class="bcp14">MAY</span> support other security mechanisms.<a href="#section-7-1" class="pilcrow">¶</a></p>
<p id="section-7-2">BFCP entities <span class="bcp14">MUST</span> support, at a minimum, the TLS_RSA_WITH_AES_128_CBC_SHA cipher suite <span>[<a href="#RFC5246" class="xref">7</a>]</span> for backwards compatibility with existing implementations of RFC 4582. In accordance with the recommendations and guidelines in <span>[<a href="#RFC7525" class="xref">30</a>]</span>, BFCP entities <span class="bcp14">SHOULD</span> support the following cipher suites:<a href="#section-7-2" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-7-3.1">TLS_DHE_RSA_WITH_AES_128_GCM_SHA256<a href="#section-7-3.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7-3.2">TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256<a href="#section-7-3.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7-3.3">TLS_DHE_RSA_WITH_AES_256_GCM_SHA384<a href="#section-7-3.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-7-3.4">TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384<a href="#section-7-3.4" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="sec_transactions">
<section id="section-8">
<h2 id="name-protocol-transactions">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-protocol-transactions" class="section-name selfRef">Protocol Transactions</a>
</h2>
<p id="section-8-1">In BFCP, there are two types of transactions: client-initiated transactions and server-initiated transactions.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2">Client-initiated transactions consist of a request from a client to a floor control server and a response from the floor control server to the client.<a href="#section-8-2" class="pilcrow">¶</a></p>
<p id="section-8-3">Server-initiated transactions have different requirements and behavior depending on underlying transport:<a href="#section-8-3" class="pilcrow">¶</a></p>
<ul class="ulEmpty normal">
<li class="ulEmpty normal" id="section-8-4.1">When using a reliable transport, server-initiated transactions consist of a single message from a floor control server to a client (notifications). They do not trigger any response.<a href="#section-8-4.1" class="pilcrow">¶</a>
</li>
<li class="ulEmpty normal" id="section-8-4.2">When using an unreliable transport, server-initiated transactions consist of a request from a floor control server to a client and a response from the client to the floor control server.<a href="#section-8-4.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-8-5">When using BFCP over an unreliable transport, retransmission timer T1 (see <a href="#timers" class="xref">Section 8.3</a>) <span class="bcp14">MUST</span> be used for all requests until the transaction is completed. Note that while T1 varies over time, it remains constant for the duration of a given transaction and is only updated at the completion of a transaction.<a href="#section-8-5" class="pilcrow">¶</a></p>
<div id="sec_transactions_client">
<section id="section-8.1">
<h3 id="name-client-behavior">
<a href="#section-8.1" class="section-number selfRef">8.1. </a><a href="#name-client-behavior" class="section-name selfRef">Client Behavior</a>
</h3>
<p id="section-8.1-1">A client starting a client-initiated transaction <span class="bcp14">MUST</span> set the Conference ID in the COMMON-HEADER of the message to the Conference ID for the conference that the client obtained previously.<a href="#section-8.1-1" class="pilcrow">¶</a></p>
<p id="section-8.1-2">The client <span class="bcp14">MUST</span> set the Transaction ID value in the COMMON-HEADER to a number that is different from 0 and that <span class="bcp14">MUST NOT</span> be reused in another message from the client until a response from the server is received for the transaction. The client uses the Transaction ID value to match this message with the response from the floor control server. When using BFCP over an unreliable transport, it is important to choose a Transaction ID value that lets the receiver distinguish the reception of the next message in a sequence of BFCP messages from a retransmission of a previous message. Therefore, BFCP entities using an unreliable transport <span class="bcp14">MUST</span> use monotonically increasing Transaction ID values (except for wrap-around).<a href="#section-8.1-2" class="pilcrow">¶</a></p>
<p id="section-8.1-3">A client receiving a server-initiated transaction over an unreliable transport <span class="bcp14">MUST</span> copy the Transaction ID from the request received from the server into the response.<a href="#section-8.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_transactions_server">
<section id="section-8.2">
<h3 id="name-server-behavior">
<a href="#section-8.2" class="section-number selfRef">8.2. </a><a href="#name-server-behavior" class="section-name selfRef">Server Behavior</a>
</h3>
<p id="section-8.2-1">A floor control server sending a response within a client-initiated transaction <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the request received from the client into the response.<a href="#section-8.2-1" class="pilcrow">¶</a></p>
<p id="section-8.2-2">Server-initiated transactions <span class="bcp14">MUST</span> contain a Transaction ID equal to zero when BFCP is used over a reliable transport. Over an unreliable transport, the Transaction ID shall have the same properties as for client-initiated transactions. The server uses the Transaction ID value to match this message with the response from the floor participant or floor chair.<a href="#section-8.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="timers">
<section id="section-8.3">
<h3 id="name-timers">
<a href="#section-8.3" class="section-number selfRef">8.3. </a><a href="#name-timers" class="section-name selfRef">Timers</a>
</h3>
<p id="section-8.3-1">When BFCP entities are communicating over an unreliable transport, two retransmission timers are employed to help mitigate the loss of datagrams. Retransmission and response caching are not required when BFCP entities communicate over a reliable transport.<a href="#section-8.3-1" class="pilcrow">¶</a></p>
<div id="timers_retrans">
<section id="section-8.3.1">
<h4 id="name-request-retransmission-time">
<a href="#section-8.3.1" class="section-number selfRef">8.3.1. </a><a href="#name-request-retransmission-time" class="section-name selfRef">Request Retransmission Timer, T1</a>
</h4>
<p id="section-8.3.1-1">T1 is a timer that schedules retransmission of a request until an appropriate response is received or until the maximum number of retransmissions has occurred. The timer is computed using the smoothed round-trip time algorithm defined in <span>[<a href="#RFC6298" class="xref">2</a>]</span> with an initial retransmission timeout (RTO) value of 500 ms and clock granularity (G) of 100 ms. In contrast to step 2.4 of <span><a href="https://www.rfc-editor.org/rfc/rfc6298#section-2" class="relref">Section 2</a> of [<a href="#RFC6298" class="xref">2</a>]</span>, if the computed value of RTO is less than 500 ms, then RTO shall be set to 500 ms. Timer T1 <span class="bcp14">MUST</span> be adjusted with the reception of a response to each request transmitted in order to compute an accurate RTO value, which is the effective T1 value. The RTT value R is the time in milliseconds from the time when a request is transmitted to the time the initial response to that request is received. Responses to retransmitted packets <span class="bcp14">MUST NOT</span> be used to recompute the RTO value, as one cannot determine if a response is to an initial or retransmitted request. If T1 always expires on the initial transmission of a new request, this would suggest the recommended initial T1 (and RTO) value is too low and <span class="bcp14">SHOULD</span> be increased by doubling the initial values of T1 (and RTO) until T1 does not expire when sending a new request.<a href="#section-8.3.1-1" class="pilcrow">¶</a></p>
<p id="section-8.3.1-2">When retransmitting a request, timer T1 is doubled with each retransmission, failing after three unacknowledged retransmission attempts.<a href="#section-8.3.1-2" class="pilcrow">¶</a></p>
<p id="section-8.3.1-3">If a valid response is not received for a client- or server-initiated transaction, the implementation <span class="bcp14">MUST</span> consider the BFCP connection as broken. Implementations <span class="bcp14">SHOULD</span> follow the reestablishment procedure described in <a href="#sec_transport" class="xref">Section 6</a>.<a href="#section-8.3.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="timers_cache">
<section id="section-8.3.2">
<h4 id="name-response-retransmission-tim">
<a href="#section-8.3.2" class="section-number selfRef">8.3.2. </a><a href="#name-response-retransmission-tim" class="section-name selfRef">Response Retransmission Timer, T2</a>
</h4>
<p id="section-8.3.2-1">T2 is a timer that, when fired, signals that the BFCP entity can release knowledge of the transaction against which it is running. It is started upon the first transmission of the response to a request and is the only mechanism by which that response is released by the BFCP entity. Any subsequent retransmissions of the same request can be responded to by replaying the cached response, while that value is retained until the timer has fired. Refer to <a href="#fragmentation_handling" class="xref">Section 6.2.3</a> for this timer's role in the fragmentation handling scheme.<a href="#section-8.3.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="timers_values">
<section id="section-8.3.3">
<h4 id="name-timer-values">
<a href="#section-8.3.3" class="section-number selfRef">8.3.3. </a><a href="#name-timer-values" class="section-name selfRef">Timer Values</a>
</h4>
<p id="section-8.3.3-1">The table below defines the different timers required when BFCP entities communicate over an unreliable transport.<a href="#section-8.3.3-1" class="pilcrow">¶</a></p>
<span id="name-timers-2"></span><div id="timertable">
<table class="center" id="table-6">
<caption>
<a href="#table-6" class="selfRef">Table 6</a>:
<a href="#name-timers-2" class="selfRef">Timers</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Timer</th>
<th class="text-left" rowspan="1" colspan="1">Description</th>
<th class="text-center" rowspan="1" colspan="1">Value/s</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">T1</td>
<td class="text-left" rowspan="1" colspan="1">Initial request retransmission timer</td>
<td class="text-center" rowspan="1" colspan="1">0.5 s (initial)</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">T2</td>
<td class="text-left" rowspan="1" colspan="1">Response retransmission timer</td>
<td class="text-center" rowspan="1" colspan="1">(T1*2<sup>4</sup>)*1.25</td>
</tr>
</tbody>
</table>
</div>
<p id="section-8.3.3-3">The initial value for T1 is 500 ms, which is an estimate of the RTT for completing the transaction. Computation of this value follows the procedures described in <a href="#timers_retrans" class="xref">Section 8.3.1</a>, which includes exponential backoffs on retransmissions.<a href="#section-8.3.3-3" class="pilcrow">¶</a></p>
<p id="section-8.3.3-4">T2 <span class="bcp14">MUST</span> be set such that it encompasses all legal retransmissions per T1 plus a factor to accommodate network latency between BFCP entities, processing delays, etc.<a href="#section-8.3.3-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec_auth">
<section id="section-9">
<h2 id="name-authentication-and-authoriz">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-authentication-and-authoriz" class="section-name selfRef">Authentication and Authorization</a>
</h2>
<p id="section-9-1">BFCP clients <span class="bcp14">SHOULD</span> authenticate the floor control server before sending any BFCP message to it or accepting any BFCP message from it. Similarly, floor control servers <span class="bcp14">SHOULD</span> authenticate a client before accepting any BFCP message from it or sending any BFCP message to it.<a href="#section-9-1" class="pilcrow">¶</a></p>
<p id="section-9-2">If the signaling or control protocol traffic used to set up the conference is authenticated and confidentiality and integrity protected, and the extensions in this document are supported, the BFCP clients <span class="bcp14">MUST</span> authenticate the floor control server, and the floor control servers <span class="bcp14">MUST</span> authenticate the client before communicating as described above. Note that BFCP entities supporting only the <span>[<a href="#RFC4582" class="xref">3</a>]</span> subset may not comply with this mandatory authentication requirement.<a href="#section-9-2" class="pilcrow">¶</a></p>
<p id="section-9-3">BFCP supports TLS/DTLS mutual authentication between clients and floor control servers, as specified in <a href="#sec_auth_tls" class="xref">Section 9.1</a>. This is the <span class="bcp14">RECOMMENDED</span> authentication mechanism in BFCP.<a href="#section-9-3" class="pilcrow">¶</a></p>
<p id="section-9-4">Note that future extensions may define additional authentication mechanisms.<a href="#section-9-4" class="pilcrow">¶</a></p>
<p id="section-9-5">In addition to authenticating BFCP messages, floor control servers need to authorize them. On receiving an authenticated BFCP message, the floor control server checks whether the client sending the message is authorized. If the client is not authorized to perform the operation being requested, the floor control server generates an Error message, as described in <a href="#sec_server_error" class="xref">Section 13.8</a>, with an error code with a value of 5 (Unauthorized Operation). Messages from a client that cannot be authorized <span class="bcp14">MUST NOT</span> be processed further.<a href="#section-9-5" class="pilcrow">¶</a></p>
<div id="sec_auth_tls">
<section id="section-9.1">
<h3 id="name-tls-dtls-based-mutual-authe">
<a href="#section-9.1" class="section-number selfRef">9.1. </a><a href="#name-tls-dtls-based-mutual-authe" class="section-name selfRef">TLS/DTLS Based Mutual Authentication</a>
</h3>
<p id="section-9.1-1">BFCP supports TLS/DTLS based mutual authentication between clients and floor control servers. If TLS/DTLS is used, an initial integrity-protected channel is <span class="bcp14">REQUIRED</span> between the client and the floor control server that can be used to exchange their certificates (which <span class="bcp14">MAY</span> be self-signed certificates) or, more commonly, the fingerprints of these certificates. These certificates are used at TLS/DTLS establishment time.<a href="#section-9.1-1" class="pilcrow">¶</a></p>
<aside id="section-9.1-2">
<p id="section-9.1-2.1">The implementation of such an integrity-protected channel using SIP and the SDP offer/answer model is described in <span>[<a href="#RFC8856" class="xref">12</a>]</span>.<a href="#section-9.1-2.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-9.1-3">BFCP messages received over an authenticated TLS/DTLS connection are considered authenticated. A floor control server that receives a BFCP message over TCP/UDP (no TLS/DTLS) <span class="bcp14">MAY</span> request the use of TLS/DTLS by generating an Error message, as described in <a href="#sec_server_error" class="xref">Section 13.8</a>, with an error code with a value of 9 (Use TLS) or a value of 11 (Use DTLS) respectively. Clients configured to require the use of TLS/DTLS <span class="bcp14">MUST</span> ignore unauthenticated messages.<a href="#section-9.1-3" class="pilcrow">¶</a></p>
<p id="section-9.1-4">Note that future extensions may define additional authentication mechanisms that may not require an initial integrity-protected channel (e.g., authentication based on certificates signed by a certificate authority).<a href="#section-9.1-4" class="pilcrow">¶</a></p>
<p id="section-9.1-5">As described in <a href="#sec_auth" class="xref">Section 9</a>, floor control servers need to perform authorization before processing any message. In particular, the floor control server <span class="bcp14">MUST</span> check that messages arriving over a given authenticated TLS/DTLS connection use an authorized User ID (i.e., a User ID that the user that established the authenticated TLS/DTLS connection is allowed to use).<a href="#section-9.1-5" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_participant">
<section id="section-10">
<h2 id="name-floor-participant-operation">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-floor-participant-operation" class="section-name selfRef">Floor Participant Operations</a>
</h2>
<p id="section-10-1">This section specifies how floor participants can perform different operations, such as requesting a floor, using the protocol elements described in earlier sections. <a href="#sec_chair" class="xref">Section 11</a> specifies operations that are specific to floor chairs, such as instructing the floor control server to grant or revoke a floor, and <a href="#sec_client" class="xref">Section 12</a> specifies operations that can be performed by any client (i.e., both floor participants and floor chairs).<a href="#section-10-1" class="pilcrow">¶</a></p>
<div id="sec_participant_request">
<section id="section-10.1">
<h3 id="name-requesting-a-floor">
<a href="#section-10.1" class="section-number selfRef">10.1. </a><a href="#name-requesting-a-floor" class="section-name selfRef">Requesting a Floor</a>
</h3>
<p id="section-10.1-1">A floor participant that wishes to request one or more floors does so by sending a FloorRequest message to the floor control server.<a href="#section-10.1-1" class="pilcrow">¶</a></p>
<div id="sec_participant_request_send">
<section id="section-10.1.1">
<h4 id="name-sending-a-floorrequest-mess">
<a href="#section-10.1.1" class="section-number selfRef">10.1.1. </a><a href="#name-sending-a-floorrequest-mess" class="section-name selfRef">Sending a FloorRequest Message</a>
</h4>
<p id="section-10.1.1-1">The ABNF in <a href="#sec_msg_format_FloorRequest" class="xref">Section 5.3.1</a> describes the attributes that a FloorRequest message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-10.1.1-1" class="pilcrow">¶</a></p>
<p id="section-10.1.1-2">The floor participant sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>.<a href="#section-10.1.1-2" class="pilcrow">¶</a></p>
<p id="section-10.1.1-3">The floor participant sets the User ID in the COMMON-HEADER to the floor participant's identifier. If the sender of the FloorRequest message (identified by the User ID) is not the participant that would eventually get the floor (i.e., a third-party floor request), the sender <span class="bcp14">SHOULD</span> add a BENEFICIARY-ID attribute to the message identifying the beneficiary of the floor.<a href="#section-10.1.1-3" class="pilcrow">¶</a></p>
<aside id="section-10.1.1-4">
<p id="section-10.1.1-4.1">Note that the namespace for both the User ID and the Beneficiary ID is the same. That is, a given participant is identified by a single 16-bit value that can be used in the User ID in the COMMON-HEADER and in several attributes: BENEFICIARY-ID, BENEFICIARY-INFORMATION, and REQUESTED-BY-INFORMATION.<a href="#section-10.1.1-4.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-10.1.1-5">The floor participant <span class="bcp14">MUST</span> insert at least one FLOOR-ID attribute in the FloorRequest message. If the client inserts more than one FLOOR-ID attribute, the floor control server will treat all the floor requests as an atomic package. That is, the floor control server will either grant or deny all the floors in the FloorRequest message.<a href="#section-10.1.1-5" class="pilcrow">¶</a></p>
<p id="section-10.1.1-6">The floor participant may use a PARTICIPANT-PROVIDED-INFO attribute to state the reason why the floor or floors are being requested. The Text field in the PARTICIPANT-PROVIDED-INFO attribute is intended for human consumption.<a href="#section-10.1.1-6" class="pilcrow">¶</a></p>
<p id="section-10.1.1-7">The floor participant may request that the server handle the floor request with a certain priority using a PRIORITY attribute.<a href="#section-10.1.1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_client_request_response">
<section id="section-10.1.2">
<h4 id="name-receiving-a-response">
<a href="#section-10.1.2" class="section-number selfRef">10.1.2. </a><a href="#name-receiving-a-response" class="section-name selfRef">Receiving a Response</a>
</h4>
<p id="section-10.1.2-1">A message from the floor control server is considered a response to the FloorRequest message if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the FloorRequest message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the floor participant follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-10.1.2-1" class="pilcrow">¶</a></p>
<p id="section-10.1.2-2">The successful processing of a FloorRequest message at the floor control server involves generating one or several FloorRequestStatus messages. The floor participant obtains a Floor Request ID in the Floor Request ID field of a FLOOR-REQUEST-INFORMATION attribute in the first FloorRequestStatus message from the floor control server. Subsequent FloorRequestStatus messages from the floor control server regarding the same floor request will carry the same Floor Request ID in a FLOOR-REQUEST-INFORMATION attribute as the initial FloorRequestStatus message. This way, the floor participant can associate subsequent incoming FloorRequestStatus messages with the ongoing floor request.<a href="#section-10.1.2-2" class="pilcrow">¶</a></p>
<p id="section-10.1.2-3">The floor participant obtains information about the status of the floor request in the FLOOR-REQUEST-INFORMATION attribute of each of the FloorRequestStatus messages received from the floor control server. This attribute is a grouped attribute, and as such it includes a number of attributes that provide information about the floor request.<a href="#section-10.1.2-3" class="pilcrow">¶</a></p>
<p id="section-10.1.2-4">The OVERALL-REQUEST-STATUS attribute provides information about the overall status of the floor request. If the Request Status value is Granted, all the floors that were requested in the FloorRequest message have been granted. If the Request Status value is Denied, all the floors that were requested in the FloorRequest message have been denied. A floor request is considered to be ongoing while it is in the Pending, Accepted, or Granted states. If the floor request value is unknown, then the response is still processed. However, no meaningful value can be reported to the user.<a href="#section-10.1.2-4" class="pilcrow">¶</a></p>
<p id="section-10.1.2-5">The STATUS-INFO attribute, if present, provides extra information that the floor participant can display to the user.<a href="#section-10.1.2-5" class="pilcrow">¶</a></p>
<p id="section-10.1.2-6">The FLOOR-REQUEST-STATUS attributes provide information about the status of the floor request as it relates to a particular floor. The STATUS-INFO attribute, if present, provides extra information that the floor participant can display to the user.<a href="#section-10.1.2-6" class="pilcrow">¶</a></p>
<p id="section-10.1.2-7">The BENEFICIARY-INFORMATION attribute identifies the beneficiary of the floor request in third-party floor requests. The REQUESTED-BY-INFORMATION attribute need not be present in FloorRequestStatus messages received by the floor participant that requested the floor, as this floor participant is already identified by the User ID in the COMMON-HEADER.<a href="#section-10.1.2-7" class="pilcrow">¶</a></p>
<p id="section-10.1.2-8">The PRIORITY attribute, when present, contains the priority that was requested by the generator of the FloorRequest message.<a href="#section-10.1.2-8" class="pilcrow">¶</a></p>
<p id="section-10.1.2-9">If the response is an Error message, the floor control server could not process the FloorRequest message for some reason, which is described in the Error message.<a href="#section-10.1.2-9" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_recept_frsm">
<section id="section-10.1.3">
<h4 id="name-reception-of-a-subsequent-f">
<a href="#section-10.1.3" class="section-number selfRef">10.1.3. </a><a href="#name-reception-of-a-subsequent-f" class="section-name selfRef">Reception of a Subsequent FloorRequestStatus Message</a>
</h4>
<p id="section-10.1.3-1">When communicating over an unreliable transport and upon receiving a FloorRequestStatus message from a floor control server, the participant <span class="bcp14">MUST</span> respond with a FloorRequestStatusAck message within the transaction failure window to complete the transaction.<a href="#section-10.1.3-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_participant_cancel">
<section id="section-10.2">
<h3 id="name-cancelling-a-floor-request-">
<a href="#section-10.2" class="section-number selfRef">10.2. </a><a href="#name-cancelling-a-floor-request-" class="section-name selfRef">Cancelling a Floor Request and Releasing a Floor</a>
</h3>
<p id="section-10.2-1">A floor participant that wishes to cancel an ongoing floor request does so by sending a FloorRelease message to the floor control server. The FloorRelease message is also used by floor participants that hold a floor and would like to release it.<a href="#section-10.2-1" class="pilcrow">¶</a></p>
<div id="sec_participant_cancel_send">
<section id="section-10.2.1">
<h4 id="name-sending-a-floorrelease-mess">
<a href="#section-10.2.1" class="section-number selfRef">10.2.1. </a><a href="#name-sending-a-floorrelease-mess" class="section-name selfRef">Sending a FloorRelease Message</a>
</h4>
<p id="section-10.2.1-1">The ABNF in <a href="#sec_msg_format_FloorRelease" class="xref">Section 5.3.2</a> describes the attributes that a FloorRelease message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-10.2.1-1" class="pilcrow">¶</a></p>
<p id="section-10.2.1-2">The floor participant sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The floor participant sets the User ID in the COMMON-HEADER to the floor participant's identifier.<a href="#section-10.2.1-2" class="pilcrow">¶</a></p>
<aside id="section-10.2.1-3">
<p id="section-10.2.1-3.1">Note that the FloorRelease message is used to release a floor or floors that were granted and to cancel ongoing floor requests (from the protocol perspective, both are ongoing floor requests). Using the same message in both situations helps resolve the race condition that occurs when the FloorRelease message and the FloorGrant message cross each other on the wire.<a href="#section-10.2.1-3.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-10.2.1-4">The floor participant uses the FLOOR-REQUEST-ID that was received in the response to the FloorRequest message that the FloorRelease message is cancelling.<a href="#section-10.2.1-4" class="pilcrow">¶</a></p>
<aside id="section-10.2.1-5">
<p id="section-10.2.1-5.1">Note that if the floor participant requested several floors as an atomic operation (i.e., in a single FloorRequest message), all the floors are released as an atomic operation as well (i.e., all are released at the same time).<a href="#section-10.2.1-5.1" class="pilcrow">¶</a></p>
</aside>
</section>
</div>
<div id="sec_participant_cancel_response">
<section id="section-10.2.2">
<h4 id="name-receiving-a-response-2">
<a href="#section-10.2.2" class="section-number selfRef">10.2.2. </a><a href="#name-receiving-a-response-2" class="section-name selfRef">Receiving a Response</a>
</h4>
<p id="section-10.2.2-1">A message from the floor control server is considered a response to the FloorRelease message if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the FloorRelease message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the floor participant follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-10.2.2-1" class="pilcrow">¶</a></p>
<p id="section-10.2.2-2">If the response is a FloorRequestStatus message, the Request Status value in the OVERALL-REQUEST-STATUS attribute (within the FLOOR-REQUEST-INFORMATION grouped attribute) will be Cancelled or Released.<a href="#section-10.2.2-2" class="pilcrow">¶</a></p>
<p id="section-10.2.2-3">If the response is an Error message, the floor control server could not process the FloorRequest message for some reason, which is described in the Error message.<a href="#section-10.2.2-3" class="pilcrow">¶</a></p>
<p id="section-10.2.2-4">It is possible that the FloorRelease message crosses on the wire with a FloorRequestStatus message from the server with a Request Status different from Cancelled or Released. In any case, such a FloorRequestStatus message will not be a response to the FloorRelease message, as its Transaction ID will not match that of the FloorRelease.<a href="#section-10.2.2-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec_chair">
<section id="section-11">
<h2 id="name-chair-operations">
<a href="#section-11" class="section-number selfRef">11. </a><a href="#name-chair-operations" class="section-name selfRef">Chair Operations</a>
</h2>
<p id="section-11-1">This section specifies how floor chairs can instruct the floor control server to grant or revoke a floor using the protocol elements described in earlier sections.<a href="#section-11-1" class="pilcrow">¶</a></p>
<p id="section-11-2">Floor chairs that wish to send instructions to a floor control server do so by sending a ChairAction message.<a href="#section-11-2" class="pilcrow">¶</a></p>
<div id="sec_chair_send">
<section id="section-11.1">
<h3 id="name-sending-a-chairaction-messa">
<a href="#section-11.1" class="section-number selfRef">11.1. </a><a href="#name-sending-a-chairaction-messa" class="section-name selfRef">Sending a ChairAction Message</a>
</h3>
<p id="section-11.1-1">The ABNF in <a href="#sec_msg_format_ChairAction" class="xref">Section 5.3.9</a> describes the attributes that a ChairAction message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-11.1-1" class="pilcrow">¶</a></p>
<p id="section-11.1-2">The floor chair sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The floor chair sets the User ID in the COMMON-HEADER to the floor chair's identifier.<a href="#section-11.1-2" class="pilcrow">¶</a></p>
<p id="section-11.1-3">The ChairAction message contains instructions that apply to one or more floors within a particular floor request. The floor or floors are identified by the FLOOR-REQUEST-STATUS attributes and the floor request is identified by the FLOOR-REQUEST-INFORMATION-HEADER, which are carried in the ChairAction message.<a href="#section-11.1-3" class="pilcrow">¶</a></p>
<p id="section-11.1-4">For example, if a floor request consists of two floors that depend on different floor chairs, each floor chair will grant its floor within the floor request. Once both chairs have granted their floor, the floor control server will grant the floor request as a whole. On the other hand, if one of the floor chairs denies its floor, the floor control server will deny the floor request as a whole, regardless of the other floor chair's decision.<a href="#section-11.1-4" class="pilcrow">¶</a></p>
<p id="section-11.1-5">The floor chair provides the new status of the floor request as it relates to a particular floor using a FLOOR-REQUEST-STATUS attribute. If the new status of the floor request is Accepted, the floor chair <span class="bcp14">MAY</span> use the Queue Position field to provide a queue position for the floor request. If the floor chair does not wish to provide a queue position, all the bits of the Queue Position field <span class="bcp14">MUST</span> be set to zero. The floor chair <span class="bcp14">MUST</span> use the Status Revoked to revoke a floor that was granted (i.e., Granted status) and <span class="bcp14">MUST</span> use the Status Denied to reject floor requests in any other status (e.g., Pending and Accepted).<a href="#section-11.1-5" class="pilcrow">¶</a></p>
<p id="section-11.1-6">The floor chair <span class="bcp14">MAY</span> add an OVERALL-REQUEST-STATUS attribute to the ChairAction message to provide a new overall status for the floor request. If the new overall status of the floor request is Accepted, the floor chair can use the Queue Position field to provide a queue position for the floor request.<a href="#section-11.1-6" class="pilcrow">¶</a></p>
<aside id="section-11.1-7">
<p id="section-11.1-7.1">Note that a particular floor control server can implement a different queue for each floor containing all the floor requests that relate to that particular floor, a general queue for all floor requests, or both. Also note that a floor request can involve several floors and that a ChairAction message can only deal with a subset of these floors (e.g., if a single floor chair is not authorized to manage all the floors). In this case, the floor control server will combine the instructions received from the different floor chairs in FLOOR-REQUEST-STATUS attributes to come up with the overall status of the floor request.<a href="#section-11.1-7.1" class="pilcrow">¶</a></p>
<p id="section-11.1-7.2">Note that, while the action of a floor chair may communicate information in the OVERALL-REQUEST-STATUS attribute, the floor control server may override, modify, or ignore this field's content.<a href="#section-11.1-7.2" class="pilcrow">¶</a></p>
</aside>
<p id="section-11.1-8">The floor chair <span class="bcp14">MAY</span> include STATUS-INFO attributes to state the reason why the floor or floors are being accepted, granted, or revoked. The Text in the STATUS-INFO attribute is intended for human consumption.<a href="#section-11.1-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_chair_instruct_response">
<section id="section-11.2">
<h3 id="name-receiving-a-response-3">
<a href="#section-11.2" class="section-number selfRef">11.2. </a><a href="#name-receiving-a-response-3" class="section-name selfRef">Receiving a Response</a>
</h3>
<p id="section-11.2-1">A message from the floor control server is considered a response to the ChairAction message if the message from the server has the same Conference ID, Transaction ID, and User ID as the ChairAction message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the floor chair follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-11.2-1" class="pilcrow">¶</a></p>
<p id="section-11.2-2">A ChairActionAck message from the floor control server confirms that the floor control server has accepted the ChairAction message. An Error message indicates that the floor control server could not process the ChairAction message for some reason, which is described in the Error message.<a href="#section-11.2-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_client">
<section id="section-12">
<h2 id="name-general-client-operations">
<a href="#section-12" class="section-number selfRef">12. </a><a href="#name-general-client-operations" class="section-name selfRef">General Client Operations</a>
</h2>
<p id="section-12-1">This section specifies operations that can be performed by any client. That is, they are not specific to floor participants or floor chairs. They can be performed by both.<a href="#section-12-1" class="pilcrow">¶</a></p>
<div id="sec_client_floorinfo">
<section id="section-12.1">
<h3 id="name-requesting-information-abou">
<a href="#section-12.1" class="section-number selfRef">12.1. </a><a href="#name-requesting-information-abou" class="section-name selfRef">Requesting Information about Floors</a>
</h3>
<p id="section-12.1-1">A client can obtain information about the status of a floor or floors in different ways, which include using BFCP and using out-of-band mechanisms. Clients using BFCP to obtain such information use the procedures described in this section.<a href="#section-12.1-1" class="pilcrow">¶</a></p>
<p id="section-12.1-2">Clients request information about the status of one or several floors by sending a FloorQuery message to the floor control server.<a href="#section-12.1-2" class="pilcrow">¶</a></p>
<div id="sec_client_floorinfo_send">
<section id="section-12.1.1">
<h4 id="name-sending-a-floorquery-messag">
<a href="#section-12.1.1" class="section-number selfRef">12.1.1. </a><a href="#name-sending-a-floorquery-messag" class="section-name selfRef">Sending a FloorQuery Message</a>
</h4>
<p id="section-12.1.1-1">The ABNF in <a href="#sec_msg_format_FloorQuery" class="xref">Section 5.3.7</a> describes the attributes that a FloorQuery message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-12.1.1-1" class="pilcrow">¶</a></p>
<p id="section-12.1.1-2">The client sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The client sets the User ID in the COMMON-HEADER to the client's identifier.<a href="#section-12.1.1-2" class="pilcrow">¶</a></p>
<p id="section-12.1.1-3">The client inserts in the message all the Floor IDs it wants to receive information about. The floor control server will send periodic information about all of these floors. If the client does not want to receive information about a particular floor any longer, it sends a new FloorQuery message removing the FLOOR-ID of this floor. If the client does not want to receive information about any floor any longer, it sends a FloorQuery message with no FLOOR-ID attribute.<a href="#section-12.1.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_client_floorinfo_response">
<section id="section-12.1.2">
<h4 id="name-receiving-a-response-4">
<a href="#section-12.1.2" class="section-number selfRef">12.1.2. </a><a href="#name-receiving-a-response-4" class="section-name selfRef">Receiving a Response</a>
</h4>
<p id="section-12.1.2-1">A message from the floor control server is considered a response to the FloorQuery message if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the FloorQuery message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the client follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-12.1.2-1" class="pilcrow">¶</a></p>
<p id="section-12.1.2-2">On reception of the FloorQuery message, the floor control server <span class="bcp14">MUST</span> respond with a FloorStatus message or with an Error message. If the response is a FloorStatus message, it will contain information about one of the floors the client requested information about. If the client did not include any FLOOR-ID attribute in its FloorQuery message (i.e., the client does not want to receive information about any floor any longer), the FloorStatus message from the floor control server will not include any FLOOR-ID attribute either.<a href="#section-12.1.2-2" class="pilcrow">¶</a></p>
<p id="section-12.1.2-3">FloorStatus messages that carry information about a floor contain a FLOOR-ID attribute that identifies the floor. After this attribute, FloorStatus messages contain information about existing (one or more) floor requests that relate to that floor. The information about each particular floor request is encoded in a FLOOR-REQUEST-INFORMATION attribute. This grouped attribute carries a Floor Request ID that identifies the floor request, followed by a set of attributes that provide information about the floor request.<a href="#section-12.1.2-3" class="pilcrow">¶</a></p>
<p id="section-12.1.2-4">After the first FloorStatus, the floor control server will continue sending FloorStatus messages, periodically informing the client about changes on the floors the client requested information about.<a href="#section-12.1.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_recept_fsm">
<section id="section-12.1.3">
<h4 id="name-reception-of-a-subsequent-fl">
<a href="#section-12.1.3" class="section-number selfRef">12.1.3. </a><a href="#name-reception-of-a-subsequent-fl" class="section-name selfRef">Reception of a Subsequent FloorStatus Message</a>
</h4>
<p id="section-12.1.3-1">When communicating over an unreliable transport and upon receiving a FloorStatus message from a floor control server, the participant <span class="bcp14">MUST</span> respond with a FloorStatusAck message within the transaction failure window to complete the transaction.<a href="#section-12.1.3-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_client_info">
<section id="section-12.2">
<h3 id="name-requesting-information-about">
<a href="#section-12.2" class="section-number selfRef">12.2. </a><a href="#name-requesting-information-about" class="section-name selfRef">Requesting Information about Floor Requests</a>
</h3>
<p id="section-12.2-1">A client can obtain information about the status of one or several floor requests in different ways, which include using BFCP and using out-of-band mechanisms. Clients using BFCP to obtain such information use the procedures described in this section.<a href="#section-12.2-1" class="pilcrow">¶</a></p>
<p id="section-12.2-2">Clients request information about the current status of a floor request by sending a FloorRequestQuery message to the floor control server.<a href="#section-12.2-2" class="pilcrow">¶</a></p>
<p id="section-12.2-3">Requesting information about a particular floor request is useful in a number of situations. For example, on reception of a FloorRequest message, a floor control server may choose to return FloorRequestStatus messages only when the floor request changes its state (e.g., from Accepted to Granted), but not when the floor request advances in its queue. In this situation, if the user requests it, the floor participant can use a FloorRequestQuery message to poll the floor control server for the status of the floor request.<a href="#section-12.2-3" class="pilcrow">¶</a></p>
<div id="sec_client_info_send">
<section id="section-12.2.1">
<h4 id="name-sending-a-floorrequestquery">
<a href="#section-12.2.1" class="section-number selfRef">12.2.1. </a><a href="#name-sending-a-floorrequestquery" class="section-name selfRef">Sending a FloorRequestQuery Message</a>
</h4>
<p id="section-12.2.1-1">The ABNF in <a href="#sec_msg_format_FloorRequestQuery" class="xref">Section 5.3.3</a> describes the attributes that a FloorRequestQuery message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-12.2.1-1" class="pilcrow">¶</a></p>
<p id="section-12.2.1-2">The client sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The client sets the User ID in the COMMON-HEADER to the client's identifier.<a href="#section-12.2.1-2" class="pilcrow">¶</a></p>
<p id="section-12.2.1-3">The client <span class="bcp14">MUST</span> insert a FLOOR-REQUEST-ID attribute that identifies the floor request at the floor control server.<a href="#section-12.2.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_client_info_response">
<section id="section-12.2.2">
<h4 id="name-receiving-a-response-5">
<a href="#section-12.2.2" class="section-number selfRef">12.2.2. </a><a href="#name-receiving-a-response-5" class="section-name selfRef">Receiving a Response</a>
</h4>
<p id="section-12.2.2-1">A message from the floor control server is considered a response to the FloorRequestQuery message if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the FloorRequestQuery message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the client follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-12.2.2-1" class="pilcrow">¶</a></p>
<p id="section-12.2.2-2">If the response is a FloorRequestStatus message, the client obtains information about the status of the FloorRequest the client requested information about in a FLOOR-REQUEST-INFORMATION attribute.<a href="#section-12.2.2-2" class="pilcrow">¶</a></p>
<p id="section-12.2.2-3">If the response is an Error message, the floor control server could not process the FloorRequestQuery message for some reason, which is described in the Error message.<a href="#section-12.2.2-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_client_user">
<section id="section-12.3">
<h3 id="name-requesting-information-about-">
<a href="#section-12.3" class="section-number selfRef">12.3. </a><a href="#name-requesting-information-about-" class="section-name selfRef">Requesting Information about a User</a>
</h3>
<p id="section-12.3-1">A client can obtain information about a participant and the floor requests related to this participant in different ways, which include using BFCP and using out-of-band mechanisms. Clients using BFCP to obtain such information use the procedures described in this section.<a href="#section-12.3-1" class="pilcrow">¶</a></p>
<p id="section-12.3-2">Clients request information about a participant and the floor requests related to this participant by sending a UserQuery message to the floor control server.<a href="#section-12.3-2" class="pilcrow">¶</a></p>
<p id="section-12.3-3">This functionality may be useful for floor chairs or floor participants interested in the display name and the URI of a particular floor participant. In addition, a floor participant may find it useful to request information about itself. For example, a floor participant, after experiencing connectivity problems (e.g., its TCP connection with the floor control server was down for a while and eventually was re-established), may need to request information about all the floor requests associated to itself that still exist.<a href="#section-12.3-3" class="pilcrow">¶</a></p>
<div id="sec_client_user_send">
<section id="section-12.3.1">
<h4 id="name-sending-a-userquery-message">
<a href="#section-12.3.1" class="section-number selfRef">12.3.1. </a><a href="#name-sending-a-userquery-message" class="section-name selfRef">Sending a UserQuery Message</a>
</h4>
<p id="section-12.3.1-1">The ABNF in <a href="#sec_msg_format_UserQuery" class="xref">Section 5.3.5</a> describes the attributes that a UserQuery message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-12.3.1-1" class="pilcrow">¶</a></p>
<p id="section-12.3.1-2">The client sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The client sets the User ID in the COMMON-HEADER to the client's identifier.<a href="#section-12.3.1-2" class="pilcrow">¶</a></p>
<p id="section-12.3.1-3">If the floor participant the client is requesting information about is not the client issuing the UserQuery message (which is identified by the User ID in the COMMON-HEADER of the message), the client <span class="bcp14">MUST</span> insert a BENEFICIARY-ID attribute.<a href="#section-12.3.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_client_user_response">
<section id="section-12.3.2">
<h4 id="name-receiving-a-response-6">
<a href="#section-12.3.2" class="section-number selfRef">12.3.2. </a><a href="#name-receiving-a-response-6" class="section-name selfRef">Receiving a Response</a>
</h4>
<p id="section-12.3.2-1">A message from the floor control server is considered a response to the UserQuery message if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the UserQuery message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the client follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-12.3.2-1" class="pilcrow">¶</a></p>
<p id="section-12.3.2-2">If the response is a UserStatus message, the client obtains information about the floor participant in a BENEFICIARY-INFORMATION grouped attribute and about the status of the floor requests associated with the floor participant in FLOOR-REQUEST-INFORMATION attributes.<a href="#section-12.3.2-2" class="pilcrow">¶</a></p>
<p id="section-12.3.2-3">If the response is an Error message, the floor control server could not process the UserQuery message for some reason, which is described in the Error message.<a href="#section-12.3.2-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_client_hello">
<section id="section-12.4">
<h3 id="name-obtaining-the-capabilities-">
<a href="#section-12.4" class="section-number selfRef">12.4. </a><a href="#name-obtaining-the-capabilities-" class="section-name selfRef">Obtaining the Capabilities of a Floor Control Server</a>
</h3>
<p id="section-12.4-1">A client that wishes to obtain the capabilities of a floor control server does so by sending a Hello message to the floor control server.<a href="#section-12.4-1" class="pilcrow">¶</a></p>
<div id="sec_client_hello_send">
<section id="section-12.4.1">
<h4 id="name-sending-a-hello-message">
<a href="#section-12.4.1" class="section-number selfRef">12.4.1. </a><a href="#name-sending-a-hello-message" class="section-name selfRef">Sending a Hello Message</a>
</h4>
<p id="section-12.4.1-1">The ABNF in <a href="#sec_msg_format_Hello" class="xref">Section 5.3.11</a> describes the attributes that a Hello message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory, and which ones are optional.<a href="#section-12.4.1-1" class="pilcrow">¶</a></p>
<p id="section-12.4.1-2">The client sets the Conference ID and the Transaction ID in the COMMON-HEADER following the rules given in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. The client sets the User ID in the COMMON-HEADER to the client's identifier.<a href="#section-12.4.1-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_client_hello_responses">
<section id="section-12.4.2">
<h4 id="name-receiving-responses">
<a href="#section-12.4.2" class="section-number selfRef">12.4.2. </a><a href="#name-receiving-responses" class="section-name selfRef">Receiving Responses</a>
</h4>
<p id="section-12.4.2-1">A message from the floor control server is considered a response to the Hello message by the client if the message from the floor control server has the same Conference ID, Transaction ID, and User ID as the Hello message, as described in <a href="#sec_transactions_client" class="xref">Section 8.1</a>. On receiving such a response, the client follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to floor control server authentication.<a href="#section-12.4.2-1" class="pilcrow">¶</a></p>
<p id="section-12.4.2-2">If the response is a HelloAck message, the floor control server could process the Hello message successfully. The SUPPORTED-PRIMITIVES and SUPPORTED-ATTRIBUTES attributes indicate which primitives and attributes, respectively, are supported by the server.<a href="#section-12.4.2-2" class="pilcrow">¶</a></p>
<p id="section-12.4.2-3">If the response is an Error message, the floor control server could not process the Hello message for some reason, which is described in the Error message.<a href="#section-12.4.2-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec_server">
<section id="section-13">
<h2 id="name-floor-control-server-operat">
<a href="#section-13" class="section-number selfRef">13. </a><a href="#name-floor-control-server-operat" class="section-name selfRef">Floor Control Server Operations</a>
</h2>
<p id="section-13-1">This section specifies how floor control servers can perform different operations, such as granting a floor, using the protocol elements described in earlier sections.<a href="#section-13-1" class="pilcrow">¶</a></p>
<p id="section-13-2">On reception of a message from a client, the floor control server <span class="bcp14">MUST</span> check whether the value of the primitive is supported. If it is not, the floor control server <span class="bcp14">MUST</span> send an Error message, as described in <a href="#sec_server_error" class="xref">Section 13.8</a>, with Error Code 3 (Unknown Primitive).<a href="#section-13-2" class="pilcrow">¶</a></p>
<p id="section-13-3">On reception of a message from a client, the floor control server <span class="bcp14">MUST</span> check whether the value of the Conference ID matched an existing conference. If it does not, the floor control server <span class="bcp14">MUST</span> send an Error message, as described in <a href="#sec_server_error" class="xref">Section 13.8</a>, with Error Code 1 (Conference Does Not Exist).<a href="#section-13-3" class="pilcrow">¶</a></p>
<p id="section-13-4">On reception of a message from a client, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to the authentication of the message.<a href="#section-13-4" class="pilcrow">¶</a></p>
<p id="section-13-5">On reception of a message from a client, the floor control server <span class="bcp14">MUST</span> check whether it understands all the mandatory ('M' bit set) attributes in the message. If the floor control server does not understand all of them, the floor control server <span class="bcp14">MUST</span> send an Error message, as described in <a href="#sec_server_error" class="xref">Section 13.8</a>, with Error Code 4 (Unknown Mandatory Attribute). The Error message <span class="bcp14">SHOULD</span> list the attributes that were not understood.<a href="#section-13-5" class="pilcrow">¶</a></p>
<div id="sec_server_request">
<section id="section-13.1">
<h3 id="name-reception-of-a-floorrequest">
<a href="#section-13.1" class="section-number selfRef">13.1. </a><a href="#name-reception-of-a-floorrequest" class="section-name selfRef">Reception of a FloorRequest Message</a>
</h3>
<p id="section-13.1-1">On reception of a FloorRequest message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication and authorization. If while processing the FloorRequest message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.1-1" class="pilcrow">¶</a></p>
<aside id="section-13.1-2">
<p id="section-13.1-2.1">BFCP allows floor participants to have several ongoing floor requests for the same floor (e.g., the same floor participant can occupy more than one position in a queue at the same time). A floor control server that only supports a certain number of ongoing floor requests per floor participant (e.g., one) can use Error Code 8 (You have Already Reached the Maximum Number of Ongoing Floor Requests for This Floor) to inform the floor participant.<a href="#section-13.1-2.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.1-3">When communicating over an unreliable transport and upon receiving a FloorRequest from a participant, the floor control server <span class="bcp14">MUST</span> respond with a FloorRequestStatus message within the transaction failure window to complete the transaction.<a href="#section-13.1-3" class="pilcrow">¶</a></p>
<div id="sec_server_request_first">
<section id="section-13.1.1">
<h4 id="name-generating-the-first-floorr">
<a href="#section-13.1.1" class="section-number selfRef">13.1.1. </a><a href="#name-generating-the-first-floorr" class="section-name selfRef">Generating the First FloorRequestStatus Message</a>
</h4>
<p id="section-13.1.1-1">The successful processing of a FloorRequest message by a floor control server involves generating one or several FloorRequestStatus messages, the first of which <span class="bcp14">SHOULD</span> be generated as soon as possible. If the floor control server cannot accept, grant, or deny the floor request right away (e.g., a decision from a chair is needed), it <span class="bcp14">SHOULD</span> use a Request Status value of Pending in the OVERALL-REQUEST-STATUS attribute (within the FLOOR-REQUEST-INFORMATION grouped attribute) of the first FloorRequestStatus message it generates.<a href="#section-13.1.1-1" class="pilcrow">¶</a></p>
<aside id="section-13.1.1-2">
<p id="section-13.1.1-2.1">The policy that a floor control server follows to grant or deny floors is outside the scope of this document. A given floor control server may perform these decisions automatically while another may contact a human acting as a chair every time a decision needs to be made.<a href="#section-13.1.1-2.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.1.1-3">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the FloorRequest into the FloorRequestStatus, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>. Additionally, the floor control server <span class="bcp14">MUST</span> add a FLOOR-REQUEST-INFORMATION grouped attribute to the FloorRequestStatus. The attributes contained in this grouped attribute carry information about the floor request.<a href="#section-13.1.1-3" class="pilcrow">¶</a></p>
<p id="section-13.1.1-4">The floor control server <span class="bcp14">MUST</span> assign an identifier that is unique within the conference to this floor request, and <span class="bcp14">MUST</span> insert it in the Floor Request ID field of the FLOOR-REQUEST-INFORMATION attribute. This identifier will be used by the floor participant (or by a chair or chairs) to refer to this specific floor request in the future.<a href="#section-13.1.1-4" class="pilcrow">¶</a></p>
<p id="section-13.1.1-5">The floor control server <span class="bcp14">MUST</span> copy the Floor IDs in the FLOOR-ID attributes of the FloorRequest into the FLOOR-REQUEST-STATUS attributes in the FLOOR-REQUEST-INFORMATION grouped attribute. These Floor IDs identify the floors being requested (i.e., the floors associated with this particular floor request).<a href="#section-13.1.1-5" class="pilcrow">¶</a></p>
<p id="section-13.1.1-6">The floor control server <span class="bcp14">SHOULD</span> copy (if present) the contents of the BENEFICIARY-ID attribute from the FloorRequest into a BENEFICIARY-INFORMATION attribute inside the FLOOR-REQUEST-INFORMATION grouped attribute. Additionally, the floor control server <span class="bcp14">MAY</span> provide the display name and the URI of the beneficiary in this BENEFICIARY-INFORMATION attribute.<a href="#section-13.1.1-6" class="pilcrow">¶</a></p>
<p id="section-13.1.1-7">The floor control server <span class="bcp14">MAY</span> provide information about the requester of the floor in a REQUESTED-BY-INFORMATION attribute inside the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.1.1-7" class="pilcrow">¶</a></p>
<p id="section-13.1.1-8">The floor control server <span class="bcp14">MAY</span> copy (if present) the PRIORITY attribute from the FloorRequest into the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.1.1-8" class="pilcrow">¶</a></p>
<aside id="section-13.1.1-9">
<p id="section-13.1.1-9.1">Note that this attribute carries the priority requested by the participant. The priority that the floor control server assigns to the floor request depends on the priority requested by the participant and the rights the participant has according to the policy of the conference. For example, a participant that is only allowed to use the Normal priority may request Highest priority for a floor request. In that case, the floor control server would ignore the priority requested by the participant.<a href="#section-13.1.1-9.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.1.1-10">The floor control server <span class="bcp14">MAY</span> copy (if present) the PARTICIPANT-PROVIDED-INFO attribute from the FloorRequest into the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.1.1-10" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_request_subsequent">
<section id="section-13.1.2">
<h4 id="name-generation-of-subsequent-fl">
<a href="#section-13.1.2" class="section-number selfRef">13.1.2. </a><a href="#name-generation-of-subsequent-fl" class="section-name selfRef">Generation of Subsequent FloorRequestStatus Messages</a>
</h4>
<p id="section-13.1.2-1">A floor request is considered to be ongoing as long as it is not in the Cancelled, Released, or Revoked states. If the OVERALL-REQUEST-STATUS attribute (inside the FLOOR-REQUEST-INFORMATION grouped attribute) of the first FloorRequestStatus message generated by the floor control server did not indicate any of these states, the floor control server will need to send subsequent FloorRequestStatus messages.<a href="#section-13.1.2-1" class="pilcrow">¶</a></p>
<p id="section-13.1.2-2">When the status of the floor request changes, the floor control server <span class="bcp14">SHOULD</span> send new FloorRequestStatus messages with the appropriate Request Status. The floor control server <span class="bcp14">MUST</span> add a FLOOR-REQUEST-INFORMATION attribute with a Floor Request ID equal to the one sent in the first FloorRequestStatus message to any new FloorRequestStatus related to the same floor request. (The Floor Request ID identifies the floor request to which the FloorRequestStatus applies.)<a href="#section-13.1.2-2" class="pilcrow">¶</a></p>
<p id="section-13.1.2-3">When using BFCP over a reliable transport, the floor control server <span class="bcp14">MUST</span> set the Transaction ID of subsequent FloorRequestStatus messages to zero. When using BFCP over an unreliable transport, the Transaction ID <span class="bcp14">MUST</span> be non-zero and unique in the context of outstanding transactions over an unreliable transport as described in <a href="#sec_transactions" class="xref">Section 8</a>.<a href="#section-13.1.2-3" class="pilcrow">¶</a></p>
<aside id="section-13.1.2-4">
<p id="section-13.1.2-4.1">The rate at which the floor control server sends FloorRequestStatus messages is a matter of local policy. A floor control server may choose to send a new FloorRequestStatus message every time the floor request moves in the floor request queue, while another may choose only to send a new FloorRequestStatus message when the floor request is Granted or Denied.<a href="#section-13.1.2-4.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.1.2-5">The floor control server may add a STATUS-INFO attribute to any of the FloorRequestStatus messages it generates to provide extra information about its decisions regarding the floor request (e.g., why it was denied).<a href="#section-13.1.2-5" class="pilcrow">¶</a></p>
<aside id="section-13.1.2-6">
<p id="section-13.1.2-6.1">Floor participants and floor chairs may request to be informed about the status of a floor following the procedures in <a href="#sec_client_floorinfo" class="xref">Section 12.1</a>. If the processing of a floor request changes the status of a floor (e.g., the floor request is granted and consequently the floor has a new holder), the floor control server needs to follow the procedures in <a href="#sec_server_floorinfo" class="xref">Section 13.5</a> to inform the clients that have requested that information.<a href="#section-13.1.2-6.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.1.2-7">The COMMON-HEADER and the rest of the attributes are the same as in the first FloorRequestStatus message.<a href="#section-13.1.2-7" class="pilcrow">¶</a></p>
<p id="section-13.1.2-8">The floor control server can discard the state information about a particular floor request when this reaches a status of Cancelled, Released, or Revoked.<a href="#section-13.1.2-8" class="pilcrow">¶</a></p>
<p id="section-13.1.2-9">When communicating over an unreliable transport and a FloorRequestStatusAck message is not received within the transaction failure window, the floor control server <span class="bcp14">MUST</span> retransmit the FloorRequestStatus message according to <a href="#udp_transport" class="xref">Section 6.2</a>.<a href="#section-13.1.2-9" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_server_requestinfo">
<section id="section-13.2">
<h3 id="name-reception-of-a-floorrequestq">
<a href="#section-13.2" class="section-number selfRef">13.2. </a><a href="#name-reception-of-a-floorrequestq" class="section-name selfRef">Reception of a FloorRequestQuery Message</a>
</h3>
<p id="section-13.2-1">On reception of a FloorRequestQuery message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication and authorization. If while processing the FloorRequestQuery message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.2-1" class="pilcrow">¶</a></p>
<p id="section-13.2-2">The successful processing of a FloorRequestQuery message by a floor control server involves generating a FloorRequestStatus message, which <span class="bcp14">SHOULD</span> be generated as soon as possible.<a href="#section-13.2-2" class="pilcrow">¶</a></p>
<p id="section-13.2-3">When communicating over an unreliable transport and upon receiving a FloorRequestQuery from a participant, the floor control server <span class="bcp14">MUST</span> respond with a FloorRequestStatus message within the transaction failure window to complete the transaction.<a href="#section-13.2-3" class="pilcrow">¶</a></p>
<p id="section-13.2-4">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the FloorRequestQuery message into the FloorRequestStatus message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>. Additionally, the floor control server <span class="bcp14">MUST</span> include information about the floor request in the FLOOR-REQUEST-INFORMATION grouped attribute to the FloorRequestStatus.<a href="#section-13.2-4" class="pilcrow">¶</a></p>
<p id="section-13.2-5">The floor control server <span class="bcp14">MUST</span> copy the contents of the FLOOR-REQUEST-ID attribute from the FloorRequestQuery message into the Floor Request ID field of the FLOOR-REQUEST-INFORMATION attribute.<a href="#section-13.2-5" class="pilcrow">¶</a></p>
<p id="section-13.2-6">The floor control server <span class="bcp14">MUST</span> add FLOOR-REQUEST-STATUS attributes to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the floors being requested (i.e., the floors associated with the floor request identified by the FLOOR-REQUEST-ID attribute).<a href="#section-13.2-6" class="pilcrow">¶</a></p>
<p id="section-13.2-7">The floor control server <span class="bcp14">SHOULD</span> add a BENEFICIARY-ID attribute to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the beneficiary of the floor request. Additionally, the floor control server <span class="bcp14">MAY</span> provide the display name and the URI of the beneficiary in this BENEFICIARY-INFORMATION attribute.<a href="#section-13.2-7" class="pilcrow">¶</a></p>
<p id="section-13.2-8">The floor control server <span class="bcp14">MAY</span> provide information about the requester of the floor in a REQUESTED-BY-INFORMATION attribute inside the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.2-8" class="pilcrow">¶</a></p>
<p id="section-13.2-9">The floor control server <span class="bcp14">MAY</span> provide the reason why the floor participant requested the floor in a PARTICIPANT-PROVIDED-INFO.<a href="#section-13.2-9" class="pilcrow">¶</a></p>
<p id="section-13.2-10">The floor control server <span class="bcp14">MAY</span> also add to the FLOOR-REQUEST-INFORMATION grouped attribute a PRIORITY attribute with the Priority value requested for the floor request and a STATUS-INFO attribute with extra information about the floor request.<a href="#section-13.2-10" class="pilcrow">¶</a></p>
<p id="section-13.2-11">The floor control server <span class="bcp14">MUST</span> add an OVERALL-REQUEST-STATUS attribute to the FLOOR-REQUEST-INFORMATION grouped attribute with the current status of the floor request. The floor control server <span class="bcp14">MAY</span> provide information about the status of the floor request as it relates to each of the floors being requested in the FLOOR-REQUEST-STATUS attributes.<a href="#section-13.2-11" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_userinfo">
<section id="section-13.3">
<h3 id="name-reception-of-a-userquery-me">
<a href="#section-13.3" class="section-number selfRef">13.3. </a><a href="#name-reception-of-a-userquery-me" class="section-name selfRef">Reception of a UserQuery Message</a>
</h3>
<p id="section-13.3-1">On reception of a UserQuery message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication and authorization. If while processing the UserQuery message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.3-1" class="pilcrow">¶</a></p>
<p id="section-13.3-2">The successful processing of a UserQuery message by a floor control server involves generating a UserStatus message, which <span class="bcp14">SHOULD</span> be generated as soon as possible.<a href="#section-13.3-2" class="pilcrow">¶</a></p>
<p id="section-13.3-3">When communicating over an unreliable transport and upon receiving a UserQuery from a participant, the floor control server <span class="bcp14">MUST</span> respond with a UserStatus message within the transaction failure window to complete the transaction.<a href="#section-13.3-3" class="pilcrow">¶</a></p>
<p id="section-13.3-4">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the UserQuery message into the UserStatus message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.3-4" class="pilcrow">¶</a></p>
<p id="section-13.3-5">The sender of the UserQuery message is requesting information about all the floor requests associated with a given participant (i.e., the floor requests where the participant is either the beneficiary or the requester). This participant is identified by a BENEFICIARY-ID attribute or, in the absence of a BENEFICIARY-ID attribute, by a the User ID in the COMMON-HEADER of the UserQuery message.<a href="#section-13.3-5" class="pilcrow">¶</a></p>
<p id="section-13.3-6">The floor control server <span class="bcp14">MUST</span> copy, if present, the contents of the BENEFICIARY-ID attribute from the UserQuery message into a BENEFICIARY-INFORMATION attribute in the UserStatus message. Additionally, the floor control server <span class="bcp14">MAY</span> provide the display name and the URI of the participant about which the UserStatus message provides information in this BENEFICIARY-INFORMATION attribute.<a href="#section-13.3-6" class="pilcrow">¶</a></p>
<p id="section-13.3-7">The floor control server <span class="bcp14">SHOULD</span> add to the UserStatus message a FLOOR-REQUEST-INFORMATION grouped attribute for each floor request related to the participant about which the message provides information (i.e., the floor requests where the participant is either the beneficiary or the requester). For each FLOOR-REQUEST-INFORMATION attribute, the floor control server follows the following steps.<a href="#section-13.3-7" class="pilcrow">¶</a></p>
<p id="section-13.3-8">The floor control server <span class="bcp14">MUST</span> identify the floor request the FLOOR-REQUEST-INFORMATION attribute applies to by filling the Floor Request ID field of the FLOOR-REQUEST-INFORMATION attribute.<a href="#section-13.3-8" class="pilcrow">¶</a></p>
<p id="section-13.3-9">The floor control server <span class="bcp14">MUST</span> add FLOOR-REQUEST-STATUS attributes to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the floors being requested (i.e., the floors associated with the floor request identified by the FLOOR-REQUEST-ID attribute).<a href="#section-13.3-9" class="pilcrow">¶</a></p>
<p id="section-13.3-10">The floor control server <span class="bcp14">SHOULD</span> add a BENEFICIARY-ID attribute to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the beneficiary of the floor request. Additionally, the floor control server <span class="bcp14">MAY</span> provide the display name and the URI of the beneficiary in this BENEFICIARY-INFORMATION attribute.<a href="#section-13.3-10" class="pilcrow">¶</a></p>
<p id="section-13.3-11">The floor control server <span class="bcp14">MAY</span> provide information about the requester of the floor in a REQUESTED-BY-INFORMATION attribute inside the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.3-11" class="pilcrow">¶</a></p>
<p id="section-13.3-12">The floor control server <span class="bcp14">MAY</span> provide the reason why the floor participant requested the floor in a PARTICIPANT-PROVIDED-INFO.<a href="#section-13.3-12" class="pilcrow">¶</a></p>
<p id="section-13.3-13">The floor control server <span class="bcp14">MAY</span> also add to the FLOOR-REQUEST-INFORMATION grouped attribute a PRIORITY attribute with the Priority value requested for the floor request.<a href="#section-13.3-13" class="pilcrow">¶</a></p>
<p id="section-13.3-14">The floor control server <span class="bcp14">MUST</span> include the current status of the floor request in an OVERALL-REQUEST-STATUS attribute to the FLOOR-REQUEST-INFORMATION grouped attribute. The floor control server <span class="bcp14">MAY</span> add a STATUS-INFO attribute with extra information about the floor request.<a href="#section-13.3-14" class="pilcrow">¶</a></p>
<p id="section-13.3-15">The floor control server <span class="bcp14">MAY</span> provide information about the status of the floor request as it relates to each of the floors being requested in the FLOOR-REQUEST-STATUS attributes.<a href="#section-13.3-15" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_release">
<section id="section-13.4">
<h3 id="name-reception-of-a-floorrelease">
<a href="#section-13.4" class="section-number selfRef">13.4. </a><a href="#name-reception-of-a-floorrelease" class="section-name selfRef">Reception of a FloorRelease Message</a>
</h3>
<p id="section-13.4-1">On reception of a FloorRelease message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication and authorization. If while processing the FloorRelease message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.4-1" class="pilcrow">¶</a></p>
<p id="section-13.4-2">The successful processing of a FloorRelease message by a floor control server involves generating a FloorRequestStatus message, which <span class="bcp14">SHOULD</span> be generated as soon as possible.<a href="#section-13.4-2" class="pilcrow">¶</a></p>
<p id="section-13.4-3">When communicating over an unreliable transport and upon receiving a FloorRelease from a participant, the floor control server <span class="bcp14">MUST</span> respond with a FloorRequestStatus message within the transaction failure window to complete the transaction.<a href="#section-13.4-3" class="pilcrow">¶</a></p>
<p id="section-13.4-4">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the FloorRelease message into the FloorRequestStatus message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.4-4" class="pilcrow">¶</a></p>
<p id="section-13.4-5">The floor control server <span class="bcp14">MUST</span> add a FLOOR-REQUEST-INFORMATION grouped attribute to the FloorRequestStatus. The attributes contained in this grouped attribute carry information about the floor request.<a href="#section-13.4-5" class="pilcrow">¶</a></p>
<p id="section-13.4-6">The FloorRelease message identifies the floor request it applies to using a FLOOR-REQUEST-ID. The floor control server <span class="bcp14">MUST</span> copy the contents of the FLOOR-REQUEST-ID attribute from the FloorRelease message into the Floor Request ID field of the FLOOR-REQUEST-INFORMATION attribute.<a href="#section-13.4-6" class="pilcrow">¶</a></p>
<p id="section-13.4-7">The floor control server <span class="bcp14">MUST</span> identify the floors being released (i.e., the floors associated with the floor request identified by the FLOOR-REQUEST-ID attribute) in FLOOR-REQUEST-STATUS attributes to the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.4-7" class="pilcrow">¶</a></p>
<p id="section-13.4-8">The floor control server <span class="bcp14">MUST</span> add an OVERALL-REQUEST-STATUS attribute to the FLOOR-REQUEST-INFORMATION grouped attribute. The Request Status value <span class="bcp14">SHOULD</span> be Released, if the floor (or floors) had been previously granted, or Cancelled, if the floor (or floors) had not been previously granted. The floor control server <span class="bcp14">MAY</span> add a STATUS-INFO attribute with extra information about the floor request.<a href="#section-13.4-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_floorinfo">
<section id="section-13.5">
<h3 id="name-reception-of-a-floorquery-m">
<a href="#section-13.5" class="section-number selfRef">13.5. </a><a href="#name-reception-of-a-floorquery-m" class="section-name selfRef">Reception of a FloorQuery Message</a>
</h3>
<p id="section-13.5-1">On reception of a FloorQuery message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication. If while processing the FloorQuery message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.5-1" class="pilcrow">¶</a></p>
<p id="section-13.5-2">When communicating over an unreliable transport and upon receiving a FloorQuery from a participant, the floor control server <span class="bcp14">MUST</span> respond with a FloorStatus message within the transaction failure window to complete the transaction.<a href="#section-13.5-2" class="pilcrow">¶</a></p>
<p id="section-13.5-3">A floor control server receiving a FloorQuery message from a client <span class="bcp14">SHOULD</span> keep this client informed about the status of the floors identified by FLOOR-ID attributes in the FloorQuery message. Floor control servers keep clients informed by using FloorStatus messages.<a href="#section-13.5-3" class="pilcrow">¶</a></p>
<p id="section-13.5-4">An individual FloorStatus message carries information about a single floor. So, when a FloorQuery message requests information about more than one floor, the floor control server needs to send separate FloorStatus messages for different floors.<a href="#section-13.5-4" class="pilcrow">¶</a></p>
<p id="section-13.5-5">The information FloorQuery messages carry may depend on the user requesting the information. For example, a chair may be able to receive information about pending requests, while a regular user may not be authorized to do so.<a href="#section-13.5-5" class="pilcrow">¶</a></p>
<div id="sec_server_floorinfo_first">
<section id="section-13.5.1">
<h4 id="name-generation-of-the-first-flo">
<a href="#section-13.5.1" class="section-number selfRef">13.5.1. </a><a href="#name-generation-of-the-first-flo" class="section-name selfRef">Generation of the First FloorStatus Message</a>
</h4>
<p id="section-13.5.1-1">The successful processing of a FloorQuery message by a floor control server involves generating one or several FloorStatus messages, the first of which <span class="bcp14">SHOULD</span> be generated as soon as possible.<a href="#section-13.5.1-1" class="pilcrow">¶</a></p>
<p id="section-13.5.1-2">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the FloorQuery message into the FloorStatus message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.5.1-2" class="pilcrow">¶</a></p>
<p id="section-13.5.1-3">If the FloorQuery message did not contain any FLOOR-ID attribute, the floor control server sends the FloorStatus message without adding any additional attribute and does not send any subsequent FloorStatus message to the floor participant.<a href="#section-13.5.1-3" class="pilcrow">¶</a></p>
<p id="section-13.5.1-4">If the FloorQuery message contained one or more FLOOR-ID attributes, the floor control server chooses one from among them and adds this FLOOR-ID attribute to the FloorStatus message. The floor control server <span class="bcp14">SHOULD</span> add a FLOOR-REQUEST-INFORMATION grouped attribute for each floor request associated to the floor. Each FLOOR-REQUEST-INFORMATION grouped attribute contains a number of attributes that provide information about the floor request. For each FLOOR-REQUEST-INFORMATION attribute, the floor control server follows the following steps.<a href="#section-13.5.1-4" class="pilcrow">¶</a></p>
<p id="section-13.5.1-5">The floor control server <span class="bcp14">MUST</span> identify the floor request the FLOOR-REQUEST-INFORMATION attribute applies to by filling the Floor Request ID field of the FLOOR-REQUEST-INFORMATION attribute.<a href="#section-13.5.1-5" class="pilcrow">¶</a></p>
<p id="section-13.5.1-6">The floor control server <span class="bcp14">MUST</span> add FLOOR-REQUEST-STATUS attributes to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the floors being requested (i.e., the floors associated with the floor request identified by the FLOOR-REQUEST-ID attribute).<a href="#section-13.5.1-6" class="pilcrow">¶</a></p>
<p id="section-13.5.1-7">The floor control server <span class="bcp14">SHOULD</span> add a BENEFICIARY-ID attribute to the FLOOR-REQUEST-INFORMATION grouped attribute identifying the beneficiary of the floor request. Additionally, the floor control server <span class="bcp14">MAY</span> provide the display name and the URI of the beneficiary in this BENEFICIARY-INFORMATION attribute.<a href="#section-13.5.1-7" class="pilcrow">¶</a></p>
<p id="section-13.5.1-8">The floor control server <span class="bcp14">MAY</span> provide information about the requester of the floor in a REQUESTED-BY-INFORMATION attribute inside the FLOOR-REQUEST-INFORMATION grouped attribute.<a href="#section-13.5.1-8" class="pilcrow">¶</a></p>
<p id="section-13.5.1-9">The floor control server <span class="bcp14">MAY</span> provide the reason why the floor participant requested the floor in a PARTICIPANT-PROVIDED-INFO.<a href="#section-13.5.1-9" class="pilcrow">¶</a></p>
<p id="section-13.5.1-10">The floor control server <span class="bcp14">MAY</span> also add to the FLOOR-REQUEST-INFORMATION grouped attribute a PRIORITY attribute with the Priority value requested for the floor request.<a href="#section-13.5.1-10" class="pilcrow">¶</a></p>
<p id="section-13.5.1-11">The floor control server <span class="bcp14">MUST</span> add an OVERALL-REQUEST-STATUS attribute to the FLOOR-REQUEST-INFORMATION grouped attribute with the current status of the floor request. The floor control server <span class="bcp14">MAY</span> add a STATUS-INFO attribute with extra information about the floor request.<a href="#section-13.5.1-11" class="pilcrow">¶</a></p>
<p id="section-13.5.1-12">The floor control server <span class="bcp14">MAY</span> provide information about the status of the floor request as it relates to each of the floors being requested in the FLOOR-REQUEST-STATUS attributes.<a href="#section-13.5.1-12" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_floorinfo_subsequent">
<section id="section-13.5.2">
<h4 id="name-generation-of-subsequent-flo">
<a href="#section-13.5.2" class="section-number selfRef">13.5.2. </a><a href="#name-generation-of-subsequent-flo" class="section-name selfRef">Generation of Subsequent FloorStatus Messages</a>
</h4>
<p id="section-13.5.2-1">If the FloorQuery message carried more than one FLOOR-ID attribute, the floor control server <span class="bcp14">SHOULD</span> generate a FloorStatus message for each of them (except for the FLOOR-ID attribute chosen for the first FloorStatus message) as soon as possible. These FloorStatus messages are generated following the same rules as those for the first FloorStatus message (see <a href="#sec_server_floorinfo_first" class="xref">Section 13.5.1</a>), but their Transaction ID is 0 when using a reliable transport and non-zero and unique in the context of outstanding transactions when using an unreliable transport (cf. <a href="#sec_transactions" class="xref">Section 8</a>).<a href="#section-13.5.2-1" class="pilcrow">¶</a></p>
<p id="section-13.5.2-2">After generating these messages, the floor control server sends FloorStatus messages, periodically keeping the client informed about all the floors for which the client requested information. The Transaction ID of these messages <span class="bcp14">MUST</span> be 0 when using a reliable transport and non-zero and unique in the context of outstanding transactions when using an unreliable transport (cf. <a href="#sec_transactions" class="xref">Section 8</a>).<a href="#section-13.5.2-2" class="pilcrow">¶</a></p>
<aside id="section-13.5.2-3">
<p id="section-13.5.2-3.1">The rate at which the floor control server sends FloorStatus messages is a matter of local policy. A floor control server may choose to send a new FloorStatus message every time a new floor request arrives, while another may choose to only send a new FloorStatus message when a new floor request is Granted.<a href="#section-13.5.2-3.1" class="pilcrow">¶</a></p>
</aside>
<p id="section-13.5.2-4">When communicating over an unreliable transport and a FloorStatusAck message is not received within the transaction failure window, the floor control server <span class="bcp14">MUST</span> retransmit the FloorStatus message according to <a href="#udp_transport" class="xref">Section 6.2</a>.<a href="#section-13.5.2-4" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_server_chairaction">
<section id="section-13.6">
<h3 id="name-reception-of-a-chairaction-">
<a href="#section-13.6" class="section-number selfRef">13.6. </a><a href="#name-reception-of-a-chairaction-" class="section-name selfRef">Reception of a ChairAction Message</a>
</h3>
<p id="section-13.6-1">On reception of a ChairAction message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication and authorization. If while processing the ChairAction message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.6-1" class="pilcrow">¶</a></p>
<p id="section-13.6-2">The successful processing of a ChairAction message by a floor control server involves generating a ChairActionAck message, which <span class="bcp14">SHOULD</span> be generated as soon as possible.<a href="#section-13.6-2" class="pilcrow">¶</a></p>
<p id="section-13.6-3">When communicating over an unreliable transport and upon receiving a ChairAction from a chair, the floor control server <span class="bcp14">MUST</span> respond with a ChairActionAck message within the transaction failure window to complete the transaction.<a href="#section-13.6-3" class="pilcrow">¶</a></p>
<p id="section-13.6-4">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the ChairAction message into the ChairActionAck message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.6-4" class="pilcrow">¶</a></p>
<p id="section-13.6-5">The floor control server needs to take into consideration the operation requested in the ChairAction message (e.g., granting a floor) but does not necessarily need to perform it as requested by the floor chair. The operation that the floor control server performs depends on the ChairAction message and on the internal state of the floor control server.<a href="#section-13.6-5" class="pilcrow">¶</a></p>
<p id="section-13.6-6">For example, a floor chair may send a ChairAction message granting a floor that was requested as part of an atomic floor request operation that involved several floors. Even if the chair responsible for one of the floors instructs the floor control server to grant the floor, the floor control server will not grant it until the chairs responsible for the other floors agree to grant them as well.<a href="#section-13.6-6" class="pilcrow">¶</a></p>
<p id="section-13.6-7">So, the floor control server is ultimately responsible for keeping a coherent floor state using instructions from floor chairs as input to this state.<a href="#section-13.6-7" class="pilcrow">¶</a></p>
<p id="section-13.6-8">If the new Status in the ChairAction message is Accepted and all the bits of the Queue Position field are zero, the floor chair is requesting that the floor control server assign a queue position (e.g., the last in the queue) to the floor request based on the local policy of the floor control server. (Of course, such a request only applies if the floor control server implements a queue.)<a href="#section-13.6-8" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_helloack">
<section id="section-13.7">
<h3 id="name-reception-of-a-hello-messag">
<a href="#section-13.7" class="section-number selfRef">13.7. </a><a href="#name-reception-of-a-hello-messag" class="section-name selfRef">Reception of a Hello Message</a>
</h3>
<p id="section-13.7-1">On reception of a Hello message, the floor control server follows the rules in <a href="#sec_auth" class="xref">Section 9</a> that relate to client authentication. If while processing the Hello message, the floor control server encounters an error, it <span class="bcp14">MUST</span> generate an Error response following the procedures described in <a href="#sec_server_error" class="xref">Section 13.8</a>.<a href="#section-13.7-1" class="pilcrow">¶</a></p>
<p id="section-13.7-2">If the version of BFCP specified in the version field of the COMMON-HEADER is supported by the floor control server, it <span class="bcp14">MUST</span> respond with the same version number in the HelloAck; this defines the version for all subsequent BFCP messages within this BFCP Connection.<a href="#section-13.7-2" class="pilcrow">¶</a></p>
<p id="section-13.7-3">When communicating over an unreliable transport and upon receiving a Hello from a participant, the floor control server <span class="bcp14">MUST</span> respond with a HelloAck message within the transaction failure window to complete the transaction.<a href="#section-13.7-3" class="pilcrow">¶</a></p>
<p id="section-13.7-4">The successful processing of a Hello message by a floor control server involves generating a HelloAck message, which <span class="bcp14">SHOULD</span> be generated as soon as possible. The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the Hello into the HelloAck, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.7-4" class="pilcrow">¶</a></p>
<p id="section-13.7-5">The floor control server <span class="bcp14">MUST</span> add a SUPPORTED-PRIMITIVES attribute to the HelloAck message listing all the primitives (i.e., BFCP messages) supported by the floor control server.<a href="#section-13.7-5" class="pilcrow">¶</a></p>
<p id="section-13.7-6">The floor control server <span class="bcp14">MUST</span> add a SUPPORTED-ATTRIBUTES attribute to the HelloAck message listing all the attributes supported by the floor control server.<a href="#section-13.7-6" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_server_error">
<section id="section-13.8">
<h3 id="name-error-message-generation">
<a href="#section-13.8" class="section-number selfRef">13.8. </a><a href="#name-error-message-generation" class="section-name selfRef">Error Message Generation</a>
</h3>
<p id="section-13.8-1">Error messages are always sent in response to a previous message from the client as part of a client-initiated transaction. The ABNF in <a href="#sec_msg_format_Error" class="xref">Section 5.3.13</a> describes the attributes that an Error message can contain. In addition, the ABNF specifies normatively which of these attributes are mandatory and which ones are optional.<a href="#section-13.8-1" class="pilcrow">¶</a></p>
<p id="section-13.8-2">The floor control server <span class="bcp14">MUST</span> copy the Conference ID, the Transaction ID, and the User ID from the message from the client into the Error message, as described in <a href="#sec_transactions_server" class="xref">Section 8.2</a>.<a href="#section-13.8-2" class="pilcrow">¶</a></p>
<p id="section-13.8-3">The floor control server <span class="bcp14">MUST</span> add an ERROR-CODE attribute to the Error message. The ERROR-CODE attribute contains an error code from <a href="#tab_errorcode" class="xref">Table 5</a>. Additionally, the floor control server may add an ERROR-INFO attribute with extra information about the error.<a href="#section-13.8-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="sec_security">
<section id="section-14">
<h2 id="name-security-considerations">
<a href="#section-14" class="section-number selfRef">14. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-14-1">BFCP uses TLS/DTLS to provide mutual authentication between clients and servers. TLS/DTLS also provides replay and integrity protection and confidentiality. It is <span class="bcp14">RECOMMENDED</span> that TLS/DTLS with an encryption algorithm according to <a href="#sec_lower-security" class="xref">Section 7</a> always be used. In cases where signaling/control traffic is properly protected, as described in <a href="#sec_auth" class="xref">Section 9</a>, it is <span class="bcp14">REQUIRED</span> to use a mandated encryption algorithm. BFCP entities <span class="bcp14">MAY</span> use other security mechanisms to interwork with legacy implementation that do not use TLS/DTLS as long as these mechanisms provide similar security properties. An example of other mechanisms to effectively secure a nonsecure BFCP connection is IPsec <span>[<a href="#RFC4301" class="xref">21</a>]</span>.<a href="#section-14-1" class="pilcrow">¶</a></p>
<p id="section-14-2">The remainder of this section analyzes some of the threats against BFCP and how they are addressed.<a href="#section-14-2" class="pilcrow">¶</a></p>
<p id="section-14-3">An attacker may attempt to impersonate a client (a floor participant or a floor chair) in order to generate forged floor requests or to grant or deny existing floor requests. Client impersonation is avoided by having servers only accept BFCP messages over authenticated TLS/DTLS connections. The floor control server assumes that attackers cannot hijack the TLS/DTLS connection and, therefore, that messages over the TLS/DTLS connection come from the client that was initially authenticated.<a href="#section-14-3" class="pilcrow">¶</a></p>
<p id="section-14-4">An attacker may attempt to impersonate a floor control server. A successful attacker would be able to make clients think that they hold a particular floor so that they would try to access a resource (e.g., sending media) without having legitimate rights to access it. Floor control server impersonation is avoided by having servers only accept BFCP messages over authenticated TLS/DTLS connections, as well as ensuring clients only send and accept messages over authenticated TLS/DTLS connections.<a href="#section-14-4" class="pilcrow">¶</a></p>
<p id="section-14-5">Attackers may attempt to modify messages exchanged by a client and a floor control server. The integrity protection provided by TLS/DTLS connections prevents this attack.<a href="#section-14-5" class="pilcrow">¶</a></p>
<p id="section-14-6">An attacker may attempt to fetch a valid message sent by a client to a floor control server and replay it over a connection between the attacker and the floor control server. This attack is prevented by having floor control servers check that messages arriving over a given authenticated TLS/DTLS connection use an authorized user ID (i.e., a user ID that the user that established the authenticated TLS/DTLS connection is allowed to use).<a href="#section-14-6" class="pilcrow">¶</a></p>
<p id="section-14-7">Attackers may attempt to pick messages from the network to get access to confidential information between the floor control server and a client (e.g., why a floor request was denied). TLS/DTLS confidentiality prevents this attack. Therefore, it is <span class="bcp14">REQUIRED</span> that TLS/DTLS be used with an encryption algorithm according to <a href="#sec_lower-security" class="xref">Section 7</a>.<a href="#section-14-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sec_iana">
<section id="section-15">
<h2 id="name-iana-considerations">
<a href="#section-15" class="section-number selfRef">15. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-15-1">The IANA has created a registry for BFCP parameters called "The Binary Floor Control Protocol (BFCP) Parameters". This registry has a number of subregistries, which are described in the following sections.<a href="#section-15-1" class="pilcrow">¶</a></p>
<section id="section-15.1">
<h3 id="name-attributes-subregistry">
<a href="#section-15.1" class="section-number selfRef">15.1. </a><a href="#name-attributes-subregistry" class="section-name selfRef">Attributes Subregistry</a>
</h3>
<p id="section-15.1-1">This section establishes the "Attributes" subregistry under the BFCP
Parameters registry. As per the terminology in RFC 8126 <span>[<a href="#RFC8126" class="xref">6</a>]</span>, the registration policy for BFCP
attributes is "Specification Required". For the purposes of this
subregistry, the BFCP attributes for which IANA registration is
requested <span class="bcp14">MUST</span> be defined by a Standards Track
RFC. Such an RFC <span class="bcp14">MUST</span> specify the attribute's type,
name, format, and semantics.<a href="#section-15.1-1" class="pilcrow">¶</a></p>
<p id="section-15.1-2">For each BFCP attribute, the IANA registers its type, its name, and
the reference to the RFC where the attribute is defined. The following
table contains the initial values of this subregistry.<a href="#section-15.1-2" class="pilcrow">¶</a></p>
<span id="name-initial-values-of-the-bfcp-"></span><div id="tab_iana-attributes">
<table class="center" id="table-7">
<caption>
<a href="#table-7" class="selfRef">Table 7</a>:
<a href="#name-initial-values-of-the-bfcp-" class="selfRef">Initial values of the BFCP Attributes subregistry</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Type</th>
<th class="text-left" rowspan="1" colspan="1">Attribute</th>
<th class="text-left" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">BENEFICIARY-ID</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-ID</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-ID</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">PRIORITY</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">ERROR-CODE</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">ERROR-INFO</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">PARTICIPANT-PROVIDED-INFO</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">STATUS-INFO</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">SUPPORTED-ATTRIBUTES</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">SUPPORTED-PRIMITIVES</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">USER-DISPLAY-NAME</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">USER-URI</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">BENEFICIARY-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">15</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">REQUESTED-BY-INFORMATION</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">17</td>
<td class="text-left" rowspan="1" colspan="1">FLOOR-REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">18</td>
<td class="text-left" rowspan="1" colspan="1">OVERALL-REQUEST-STATUS</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="sec_iana_primitive">
<section id="section-15.2">
<h3 id="name-primitives-subregistry">
<a href="#section-15.2" class="section-number selfRef">15.2. </a><a href="#name-primitives-subregistry" class="section-name selfRef">Primitives Subregistry</a>
</h3>
<p id="section-15.2-1">This section establishes the "Primitives" subregistry under the
BFCP Parameters registry. As per the terminology in RFC 8126 <span>[<a href="#RFC8126" class="xref">6</a>]</span>, the registration policy for BFCP
primitives is "Specification Required". For the purposes of this
subregistry, the BFCP primitives for which IANA registration is
requested <span class="bcp14">MUST</span> be defined by a Standards Track
RFC. Such an RFC <span class="bcp14">MUST</span> specify the primitive's value,
name, format, and semantics.<a href="#section-15.2-1" class="pilcrow">¶</a></p>
<p id="section-15.2-2">For each BFCP primitive, the IANA registers its value, its name, and the reference to the RFC where the primitive is defined. The following table contains the initial values of this subregistry.<a href="#section-15.2-2" class="pilcrow">¶</a></p>
<span id="name-initial-values-of-the-bfcp-p"></span><div id="tab_iana-primitives">
<table class="center" id="table-8">
<caption>
<a href="#table-8" class="selfRef">Table 8</a>:
<a href="#name-initial-values-of-the-bfcp-p" class="selfRef">Initial values of the BFCP Primitives subregistry</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Primitive</th>
<th class="text-left" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequest</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">FloorRelease</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestQuery</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestStatus</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">UserQuery</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">UserStatus</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">FloorQuery</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">FloorStatus</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">ChairAction</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">ChairActionAck</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">Hello</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">HelloAck</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">Error</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">FloorRequestStatusAck</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">15</td>
<td class="text-left" rowspan="1" colspan="1">FloorStatusAck</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">Goodbye</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">17</td>
<td class="text-left" rowspan="1" colspan="1">GoodbyeAck</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
<section id="section-15.3">
<h3 id="name-request-statuses-subregistr">
<a href="#section-15.3" class="section-number selfRef">15.3. </a><a href="#name-request-statuses-subregistr" class="section-name selfRef">Request Statuses Subregistry</a>
</h3>
<p id="section-15.3-1">This section establishes the "Request Statuses" subregistry under the
BFCP Parameters registry. As per the terminology in RFC 8126 <span>[<a href="#RFC8126" class="xref">6</a>]</span>, the registration policy for BFCP
request statuses is "Specification Required". For the purposes of
this subregistry, the BFCP request statuses for which IANA registration
is requested <span class="bcp14">MUST</span> be defined by a Standards Track
RFC. Such an RFC <span class="bcp14">MUST</span> specify the value and the
semantics of the request status.<a href="#section-15.3-1" class="pilcrow">¶</a></p>
<p id="section-15.3-2">For each BFCP request status, the IANA registers its value, its meaning, and the reference to the RFC where the request status is defined. The following table contains the initial values of this subregistry.<a href="#section-15.3-2" class="pilcrow">¶</a></p>
<span id="name-initial-values-of-the-reque"></span><div id="tab_iana-requeststatusvalues">
<table class="center" id="table-9">
<caption>
<a href="#table-9" class="selfRef">Table 9</a>:
<a href="#name-initial-values-of-the-reque" class="selfRef">Initial values of the Request Statuses subregistry</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Status</th>
<th class="text-left" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Pending</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Accepted</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Granted</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">Denied</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">Cancelled</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">Released</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">Revoked</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="sec_iana_errorcode">
<section id="section-15.4">
<h3 id="name-error-codes-subregistry">
<a href="#section-15.4" class="section-number selfRef">15.4. </a><a href="#name-error-codes-subregistry" class="section-name selfRef">Error Codes Subregistry</a>
</h3>
<p id="section-15.4-1">This section establishes the "Error Codes" subregistry under the BFCP
Parameters registry. As per the terminology in RFC 8126 <span>[<a href="#RFC8126" class="xref">6</a>]</span>, the registration policy for BFCP
error codes is "Specification Required". For the purposes of
this subregistry, the BFCP error codes for which IANA registration is
requested <span class="bcp14">MUST</span> be defined by a Standards Track
RFC. Such an RFC <span class="bcp14">MUST</span> specify the value and the
semantics of the error code, and any Error Specific Details that apply
to it.<a href="#section-15.4-1" class="pilcrow">¶</a></p>
<p id="section-15.4-2">For each BFCP primitive, the IANA registers its value, its meaning, and the reference to the RFC where the primitive is defined. The following table contains the initial values of this subregistry.<a href="#section-15.4-2" class="pilcrow">¶</a></p>
<span id="name-initial-values-of-the-error"></span><div id="tab_iana-errorcode">
<table class="center" id="table-10">
<caption>
<a href="#table-10" class="selfRef">Table 10</a>:
<a href="#name-initial-values-of-the-error" class="selfRef">Initial values of the Error Codes subregistry</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Value</th>
<th class="text-left" rowspan="1" colspan="1">Meaning</th>
<th class="text-left" rowspan="1" colspan="1">Reference</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Conference Does Not Exist</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">User Does Not Exist</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Unknown Primitive</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">Unknown Mandatory Attribute</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">5</td>
<td class="text-left" rowspan="1" colspan="1">Unauthorized Operation</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">6</td>
<td class="text-left" rowspan="1" colspan="1">Invalid Floor ID</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">7</td>
<td class="text-left" rowspan="1" colspan="1">Floor Request ID Does Not Exist</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">You have Already Reached the Maximum Number
of Ongoing Floor Requests for This Floor</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">9</td>
<td class="text-left" rowspan="1" colspan="1">Use TLS</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">10</td>
<td class="text-left" rowspan="1" colspan="1">Unable to Parse Message</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">11</td>
<td class="text-left" rowspan="1" colspan="1">Use DTLS</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">12</td>
<td class="text-left" rowspan="1" colspan="1">Unsupported Version</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">13</td>
<td class="text-left" rowspan="1" colspan="1">Incorrect Message Length</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
<tr>
<td class="text-center" rowspan="1" colspan="1">14</td>
<td class="text-left" rowspan="1" colspan="1">Generic Error</td>
<td class="text-left" rowspan="1" colspan="1">RFC 8855</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</section>
</div>
<div id="sec_changes">
<section id="section-16">
<h2 id="name-changes-from-rfc-4582">
<a href="#section-16" class="section-number selfRef">16. </a><a href="#name-changes-from-rfc-4582" class="section-name selfRef">Changes from RFC 4582</a>
</h2>
<p id="section-16-1">The following is the list of technical changes and other non-trivial fixes from <span>[<a href="#RFC4582" class="xref">3</a>]</span>.<a href="#section-16-1" class="pilcrow">¶</a></p>
<section id="section-16.1">
<h3 id="name-extensions-for-an-unreliabl">
<a href="#section-16.1" class="section-number selfRef">16.1. </a><a href="#name-extensions-for-an-unreliabl" class="section-name selfRef">Extensions for an Unreliable Transport</a>
</h3>
<p id="section-16.1-1">The main purpose of this work was to revise the specification to support BFCP over an unreliable transport, resulting in the following changes:<a href="#section-16.1-1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-16.1-2">
<li id="section-16.1-2.1">
<p id="section-16.1-2.1.1">Overview of Operation (<a href="#sec_overview" class="xref">Section 4</a>):<a href="#section-16.1-2.1.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.1.2">
Changed the description of client-initiated and server-initiated transactions, referring to <a href="#sec_transactions" class="xref">Section 8</a>.<a href="#section-16.1-2.1.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.2">
<p id="section-16.1-2.2.1">COMMON-HEADER Format (<a href="#sec_format_common" class="xref">Section 5.1</a>):<a href="#section-16.1-2.2.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.2.2">
Ver(sion) field, where the value 2 is used for the extensions for an unreliable transport. Added new R and F flag bits for an unreliable transport. Res(erved) field is now 3 bit. New optional Fragment Offset and Fragment Length fields.<a href="#section-16.1-2.2.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.3">
<p id="section-16.1-2.3.1">New primitives (<a href="#sec_format_common" class="xref">Section 5.1</a>):<a href="#section-16.1-2.3.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.3.2">
Added four new primitives: FloorRequestStatusAck, FloorStatusAck, Goodbye, and GoodbyeAck.<a href="#section-16.1-2.3.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.4">
<p id="section-16.1-2.4.1">New error codes (<a href="#sec_format_attributes_error-code" class="xref">Section 5.2.6</a>):<a href="#section-16.1-2.4.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.4.2">
Added three new error codes: "Unable to Parse Message", "Use DTLS" and "Unsupported Version". Note that two additional error codes were added, see <a href="#sec_changes_other" class="xref">Section 16.2</a>.<a href="#section-16.1-2.4.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.5">
<p id="section-16.1-2.5.1">ABNF for new primitives (<a href="#sec_msg_format" class="xref">Section 5.3</a>):<a href="#section-16.1-2.5.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.5.2">
Added new subsections with normative ABNF for the new primitives.<a href="#section-16.1-2.5.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.6">
<p id="section-16.1-2.6.1">Transport split in two (<a href="#sec_transport" class="xref">Section 6</a>):<a href="#section-16.1-2.6.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.6.2"><a href="#sec_transport" class="xref">Section 6</a> specifying the transport was split in two subsections; <a href="#tcp_transport" class="xref">Section 6.1</a> for a reliable transport and <a href="#udp_transport" class="xref">Section 6.2</a> for an unreliable transport. The specification for an unreliable transport, among other issues, deals with reliability, congestion control, fragmentation and ICMP.<a href="#section-16.1-2.6.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.7">
<p id="section-16.1-2.7.1">Mandated DTLS (<a href="#sec_lower-security" class="xref">Section 7</a> and <a href="#sec_auth" class="xref">Section 9</a>):<a href="#section-16.1-2.7.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.7.2">
Mandated DTLS support when transport over UDP is used.<a href="#section-16.1-2.7.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.8">
<p id="section-16.1-2.8.1">Transaction changes (<a href="#sec_transactions" class="xref">Section 8</a>):<a href="#section-16.1-2.8.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.8.2">
Server-initiated transactions over an unreliable transport have non-zero and unique Transaction IDs. Over an unreliable transport, the retransmit timers T1 and T2 described in <a href="#timers" class="xref">Section 8.3</a> apply.<a href="#section-16.1-2.8.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.9">
<p id="section-16.1-2.9.1">Timely response required (<a href="#timers" class="xref">Section 8.3</a>, <a href="#sec_client_request_response" class="xref">Section 10.1.2</a>, <a href="#sec_participant_cancel_response" class="xref">Section 10.2.2</a>, <a href="#sec_chair_instruct_response" class="xref">Section 11.2</a>, <a href="#sec_client_floorinfo_response" class="xref">Section 12.1.2</a>, <a href="#sec_client_info_response" class="xref">Section 12.2.2</a>, <a href="#sec_client_user_response" class="xref">Section 12.3.2</a>, <a href="#sec_client_hello_responses" class="xref">Section 12.4.2</a>, <a href="#sec_recept_frsm" class="xref">Section 10.1.3</a> and <a href="#sec_recept_fsm" class="xref">Section 12.1.3</a>):<a href="#section-16.1-2.9.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.9.2">
Described that a given response must be sent within the transaction failure window to complete the transaction.<a href="#section-16.1-2.9.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.10">
<p id="section-16.1-2.10.1">Updated IANA Considerations (<a href="#sec_iana" class="xref">Section 15</a>):<a href="#section-16.1-2.10.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.10.2">
Added the new primitives and error codes to <a href="#sec_iana_primitive" class="xref">Section 15.2</a> and <a href="#sec_iana_errorcode" class="xref">Section 15.4</a> respectively.<a href="#section-16.1-2.10.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.11">
<p id="section-16.1-2.11.1">Examples over an unreliable transport (<a href="#app_unrelcallflow" class="xref">Appendix A</a>):<a href="#section-16.1-2.11.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.11.2">
Added sample interactions over an unreliable transport for the scenarios in <a href="#fig_flow1" class="xref">Figure 2</a> and <a href="#fig_flow2" class="xref">Figure 3</a><a href="#section-16.1-2.11.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.1-2.12">
<p id="section-16.1-2.12.1">Motivation for an unreliable transport (<a href="#app_motivation" class="xref">Appendix B</a>):<a href="#section-16.1-2.12.1" class="pilcrow">¶</a></p>
<p id="section-16.1-2.12.2">
Added introduction to and motivation for extending BFCP to support an unreliable transport.<a href="#section-16.1-2.12.2" class="pilcrow">¶</a></p>
</li>
</ol>
</section>
<div id="sec_changes_other">
<section id="section-16.2">
<h3 id="name-other-changes">
<a href="#section-16.2" class="section-number selfRef">16.2. </a><a href="#name-other-changes" class="section-name selfRef">Other Changes</a>
</h3>
<p id="section-16.2-1">Clarifications and bug fixes:<a href="#section-16.2-1" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-16.2-2">
<li id="section-16.2-2.1">
<p id="section-16.2-2.1.1">ABNF fixes (<a href="#fig_ben-information" class="xref">Figure 22</a>, <a href="#fig_floor-request-information" class="xref">Figure 24</a>, <a href="#fig_reqby-information" class="xref">Figure 26</a>, <a href="#fig_floor-req-status" class="xref">Figure 28</a>, <a href="#fig_overall-req-status" class="xref">Figure 30</a>, and the ABNF figures in <a href="#sec_msg_format" class="xref">Section 5.3</a>):<a href="#section-16.2-2.1.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.1.2">
Although formally correct in <span>[<a href="#RFC4582" class="xref">3</a>]</span>, the notation has changed in a number of figures to an equivalent form for clarity, e.g., <code>s/*1(FLOOR-ID)/[FLOOR-ID]/</code> in <a href="#fig_floorstatus" class="xref">Figure 38</a> and <code>s/*[XXX]/*(XXX)/</code> in the other figures.<a href="#section-16.2-2.1.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.2-2.2">
<p id="section-16.2-2.2.1">Typo (<a href="#sec_client_hello_responses" class="xref">Section 12.4.2</a>):<a href="#section-16.2-2.2.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.2.2">
Changed from SUPPORTED-PRIMITVIES to SUPPORTED-PRIMITIVES in the second paragraph.<a href="#section-16.2-2.2.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.2-2.3">
<p id="section-16.2-2.3.1">Corrected attribute type (<a href="#sec_server_request_first" class="xref">Section 13.1.1</a>):<a href="#section-16.2-2.3.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.3.2">
Changed from PARTICIPANT-PROVIDED-INFO to PRIORITY attribute in the eighth paragraph, since the note below describes priority and that the last paragraph deals with PARTICIPANT-PROVIDED-INFO.<a href="#section-16.2-2.3.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.2-2.4">
<p id="section-16.2-2.4.1">New error codes (<a href="#sec_format_attributes_error-code" class="xref">Section 5.2.6</a>):<a href="#section-16.2-2.4.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.4.2">
Added two additional error codes: "Incorrect Message Length" and "Generic Error".<a href="#section-16.2-2.4.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.2-2.5">
<p id="section-16.2-2.5.1">New cipher suites (<a href="#sec_lower-security" class="xref">Section 7</a>)<a href="#section-16.2-2.5.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.5.2">Additional cipher suites are now specified which should be supported.<a href="#section-16.2-2.5.2" class="pilcrow">¶</a></p>
</li>
<li id="section-16.2-2.6">
<p id="section-16.2-2.6.1">Assorted clarifications (Across the document):<a href="#section-16.2-2.6.1" class="pilcrow">¶</a></p>
<p id="section-16.2-2.6.2">
Language clarifications as a result of reviews. Also, the normative language was tightened where appropriate, i.e. changed from <span class="bcp14">SHOULD</span> strength to <span class="bcp14">MUST</span> in a number of places.<a href="#section-16.2-2.6.2" class="pilcrow">¶</a></p>
</li>
</ol>
</section>
</div>
</section>
</div>
<section id="section-17">
<h2 id="name-references">
<a href="#section-17" class="section-number selfRef">17. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-17.1">
<h3 id="name-normative-references">
<a href="#section-17.1" class="section-number selfRef">17.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="RFC2119">[1]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6298">[2]</dt>
<dd>
<span class="refAuthor">Paxson, V.</span><span class="refAuthor">, Allman, M.</span><span class="refAuthor">, Chu, J.</span><span class="refAuthor">, and M. Sargent</span>, <span class="refTitle">"Computing TCP's Retransmission Timer"</span>, <span class="seriesInfo">RFC 6298</span>, <span class="seriesInfo">DOI 10.17487/RFC6298</span>, <time datetime="2011-06" class="refDate">June 2011</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6298">https://www.rfc-editor.org/info/rfc6298</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4582">[3]</dt>
<dd>
<span class="refAuthor">Camarillo, G.</span><span class="refAuthor">, Ott, J.</span><span class="refAuthor">, and K. Drage</span>, <span class="refTitle">"The Binary Floor Control Protocol (BFCP)"</span>, <span class="seriesInfo">RFC 4582</span>, <span class="seriesInfo">DOI 10.17487/RFC4582</span>, <time datetime="2006-11" class="refDate">November 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4582">https://www.rfc-editor.org/info/rfc4582</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5018">[4]</dt>
<dd>
<span class="refAuthor">Camarillo, G.</span>, <span class="refTitle">"Connection Establishment in the Binary Floor Control Protocol (BFCP)"</span>, <span class="seriesInfo">RFC 5018</span>, <span class="seriesInfo">DOI 10.17487/RFC5018</span>, <time datetime="2007-09" class="refDate">September 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5018">https://www.rfc-editor.org/info/rfc5018</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5234">[5]</dt>
<dd>
<span class="refAuthor">Crocker, D., Ed.</span><span class="refAuthor"> and P. Overell</span>, <span class="refTitle">"Augmented BNF for Syntax Specifications: ABNF"</span>, <span class="seriesInfo">STD 68</span>, <span class="seriesInfo">RFC 5234</span>, <span class="seriesInfo">DOI 10.17487/RFC5234</span>, <time datetime="2008-01" class="refDate">January 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5234">https://www.rfc-editor.org/info/rfc5234</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8126">[6]</dt>
<dd>
<span class="refAuthor">Cotton, M.</span><span class="refAuthor">, Leiba, B.</span><span class="refAuthor">, and T. Narten</span>, <span class="refTitle">"Guidelines for Writing an IANA Considerations Section in RFCs"</span>, <span class="seriesInfo">BCP 26</span>, <span class="seriesInfo">RFC 8126</span>, <span class="seriesInfo">DOI 10.17487/RFC8126</span>, <time datetime="2017-06" class="refDate">June 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8126">https://www.rfc-editor.org/info/rfc8126</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5246">[7]</dt>
<dd>
<span class="refAuthor">Dierks, T.</span><span class="refAuthor"> and E. Rescorla</span>, <span class="refTitle">"The Transport Layer Security (TLS) Protocol Version 1.2"</span>, <span class="seriesInfo">RFC 5246</span>, <span class="seriesInfo">DOI 10.17487/RFC5246</span>, <time datetime="2008-08" class="refDate">August 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5246">https://www.rfc-editor.org/info/rfc5246</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6347">[8]</dt>
<dd>
<span class="refAuthor">Rescorla, E.</span><span class="refAuthor"> and N. Modadugu</span>, <span class="refTitle">"Datagram Transport Layer Security Version 1.2"</span>, <span class="seriesInfo">RFC 6347</span>, <span class="seriesInfo">DOI 10.17487/RFC6347</span>, <time datetime="2012-01" class="refDate">January 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6347">https://www.rfc-editor.org/info/rfc6347</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3629">[9]</dt>
<dd>
<span class="refAuthor">Yergeau, F.</span>, <span class="refTitle">"UTF-8, a transformation format of ISO 10646"</span>, <span class="seriesInfo">STD 63</span>, <span class="seriesInfo">RFC 3629</span>, <span class="seriesInfo">DOI 10.17487/RFC3629</span>, <time datetime="2003-11" class="refDate">November 2003</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3629">https://www.rfc-editor.org/info/rfc3629</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[10]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8446">[11]</dt>
<dd>
<span class="refAuthor">Rescorla, E.</span>, <span class="refTitle">"The Transport Layer Security (TLS) Protocol Version 1.3"</span>, <span class="seriesInfo">RFC 8446</span>, <span class="seriesInfo">DOI 10.17487/RFC8446</span>, <time datetime="2018-08" class="refDate">August 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8446">https://www.rfc-editor.org/info/rfc8446</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8856">[12]</dt>
<dd>
<span class="refAuthor">Camarillo, G.</span><span class="refAuthor">, Kristensen, T.</span><span class="refAuthor">, and C. Holmberg</span>, <span class="refTitle">"Session Description Protocol (SDP) Format for Binary Floor Control Protocol (BFCP) Streams"</span>, <span class="seriesInfo">RFC 8856</span>, <span class="seriesInfo">DOI 10.17487/RFC8856</span>, <time datetime="2021-01" class="refDate">January 2021</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8856">https://www.rfc-editor.org/info/rfc8856</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4961">[13]</dt>
<dd>
<span class="refAuthor">Wing, D.</span>, <span class="refTitle">"Symmetric RTP / RTP Control Protocol (RTCP)"</span>, <span class="seriesInfo">BCP 131</span>, <span class="seriesInfo">RFC 4961</span>, <span class="seriesInfo">DOI 10.17487/RFC4961</span>, <time datetime="2007-07" class="refDate">July 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4961">https://www.rfc-editor.org/info/rfc4961</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5389">[14]</dt>
<dd>
<span class="refAuthor">Rosenberg, J.</span><span class="refAuthor">, Mahy, R.</span><span class="refAuthor">, Matthews, P.</span><span class="refAuthor">, and D. Wing</span>, <span class="refTitle">"Session Traversal Utilities for NAT (STUN)"</span>, <span class="seriesInfo">RFC 5389</span>, <span class="seriesInfo">DOI 10.17487/RFC5389</span>, <time datetime="2008-10" class="refDate">October 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5389">https://www.rfc-editor.org/info/rfc5389</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8085">[15]</dt>
<dd>
<span class="refAuthor">Eggert, L.</span><span class="refAuthor">, Fairhurst, G.</span><span class="refAuthor">, and G. Shepherd</span>, <span class="refTitle">"UDP Usage Guidelines"</span>, <span class="seriesInfo">BCP 145</span>, <span class="seriesInfo">RFC 8085</span>, <span class="seriesInfo">DOI 10.17487/RFC8085</span>, <time datetime="2017-03" class="refDate">March 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8085">https://www.rfc-editor.org/info/rfc8085</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8445">[16]</dt>
<dd>
<span class="refAuthor">Keranen, A.</span><span class="refAuthor">, Holmberg, C.</span><span class="refAuthor">, and J. Rosenberg</span>, <span class="refTitle">"Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal"</span>, <span class="seriesInfo">RFC 8445</span>, <span class="seriesInfo">DOI 10.17487/RFC8445</span>, <time datetime="2018-07" class="refDate">July 2018</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8445">https://www.rfc-editor.org/info/rfc8445</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-17.2">
<h3 id="name-informative-references">
<a href="#section-17.2" class="section-number selfRef">17.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="RFC3264">[17]</dt>
<dd>
<span class="refAuthor">Rosenberg, J.</span><span class="refAuthor"> and H. Schulzrinne</span>, <span class="refTitle">"An Offer/Answer Model with Session Description Protocol (SDP)"</span>, <span class="seriesInfo">RFC 3264</span>, <span class="seriesInfo">DOI 10.17487/RFC3264</span>, <time datetime="2002-06" class="refDate">June 2002</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3264">https://www.rfc-editor.org/info/rfc3264</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4376">[18]</dt>
<dd>
<span class="refAuthor">Koskelainen, P.</span><span class="refAuthor">, Ott, J.</span><span class="refAuthor">, Schulzrinne, H.</span><span class="refAuthor">, and X. Wu</span>, <span class="refTitle">"Requirements for Floor Control Protocols"</span>, <span class="seriesInfo">RFC 4376</span>, <span class="seriesInfo">DOI 10.17487/RFC4376</span>, <time datetime="2006-02" class="refDate">February 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4376">https://www.rfc-editor.org/info/rfc4376</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5239">[19]</dt>
<dd>
<span class="refAuthor">Barnes, M.</span><span class="refAuthor">, Boulton, C.</span><span class="refAuthor">, and O. Levin</span>, <span class="refTitle">"A Framework for Centralized Conferencing"</span>, <span class="seriesInfo">RFC 5239</span>, <span class="seriesInfo">DOI 10.17487/RFC5239</span>, <time datetime="2008-06" class="refDate">June 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5239">https://www.rfc-editor.org/info/rfc5239</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3261">[20]</dt>
<dd>
<span class="refAuthor">Rosenberg, J.</span><span class="refAuthor">, Schulzrinne, H.</span><span class="refAuthor">, Camarillo, G.</span><span class="refAuthor">, Johnston, A.</span><span class="refAuthor">, Peterson, J.</span><span class="refAuthor">, Sparks, R.</span><span class="refAuthor">, Handley, M.</span><span class="refAuthor">, and E. Schooler</span>, <span class="refTitle">"SIP: Session Initiation Protocol"</span>, <span class="seriesInfo">RFC 3261</span>, <span class="seriesInfo">DOI 10.17487/RFC3261</span>, <time datetime="2002-06" class="refDate">June 2002</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3261">https://www.rfc-editor.org/info/rfc3261</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4301">[21]</dt>
<dd>
<span class="refAuthor">Kent, S.</span><span class="refAuthor"> and K. Seo</span>, <span class="refTitle">"Security Architecture for the Internet Protocol"</span>, <span class="seriesInfo">RFC 4301</span>, <span class="seriesInfo">DOI 10.17487/RFC4301</span>, <time datetime="2005-12" class="refDate">December 2005</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4301">https://www.rfc-editor.org/info/rfc4301</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6501">[22]</dt>
<dd>
<span class="refAuthor">Novo, O.</span><span class="refAuthor">, Camarillo, G.</span><span class="refAuthor">, Morgan, D.</span><span class="refAuthor">, and J. Urpalainen</span>, <span class="refTitle">"Conference Information Data Model for Centralized Conferencing (XCON)"</span>, <span class="seriesInfo">RFC 6501</span>, <span class="seriesInfo">DOI 10.17487/RFC6501</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6501">https://www.rfc-editor.org/info/rfc6501</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6503">[23]</dt>
<dd>
<span class="refAuthor">Barnes, M.</span><span class="refAuthor">, Boulton, C.</span><span class="refAuthor">, Romano, S.</span><span class="refAuthor">, and H. Schulzrinne</span>, <span class="refTitle">"Centralized Conferencing Manipulation Protocol"</span>, <span class="seriesInfo">RFC 6503</span>, <span class="seriesInfo">DOI 10.17487/RFC6503</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6503">https://www.rfc-editor.org/info/rfc6503</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6504">[24]</dt>
<dd>
<span class="refAuthor">Barnes, M.</span><span class="refAuthor">, Miniero, L.</span><span class="refAuthor">, Presta, R.</span><span class="refAuthor">, and S P. Romano</span>, <span class="refTitle">"Centralized Conferencing Manipulation Protocol (CCMP) Call Flow Examples"</span>, <span class="seriesInfo">RFC 6504</span>, <span class="seriesInfo">DOI 10.17487/RFC6504</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6504">https://www.rfc-editor.org/info/rfc6504</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC1191">[25]</dt>
<dd>
<span class="refAuthor">Mogul, J.</span><span class="refAuthor"> and S. Deering</span>, <span class="refTitle">"Path MTU discovery"</span>, <span class="seriesInfo">RFC 1191</span>, <span class="seriesInfo">DOI 10.17487/RFC1191</span>, <time datetime="1990-11" class="refDate">November 1990</time>, <span><<a href="https://www.rfc-editor.org/info/rfc1191">https://www.rfc-editor.org/info/rfc1191</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8201">[26]</dt>
<dd>
<span class="refAuthor">McCann, J.</span><span class="refAuthor">, Deering, S.</span><span class="refAuthor">, Mogul, J.</span><span class="refAuthor">, and R. Hinden, Ed.</span>, <span class="refTitle">"Path MTU Discovery for IP version 6"</span>, <span class="seriesInfo">STD 87</span>, <span class="seriesInfo">RFC 8201</span>, <span class="seriesInfo">DOI 10.17487/RFC8201</span>, <time datetime="2017-07" class="refDate">July 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8201">https://www.rfc-editor.org/info/rfc8201</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4821">[27]</dt>
<dd>
<span class="refAuthor">Mathis, M.</span><span class="refAuthor"> and J. Heffner</span>, <span class="refTitle">"Packetization Layer Path MTU Discovery"</span>, <span class="seriesInfo">RFC 4821</span>, <span class="seriesInfo">DOI 10.17487/RFC4821</span>, <time datetime="2007-03" class="refDate">March 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4821">https://www.rfc-editor.org/info/rfc4821</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5763">[28]</dt>
<dd>
<span class="refAuthor">Fischl, J.</span><span class="refAuthor">, Tschofenig, H.</span><span class="refAuthor">, and E. Rescorla</span>, <span class="refTitle">"Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS)"</span>, <span class="seriesInfo">RFC 5763</span>, <span class="seriesInfo">DOI 10.17487/RFC5763</span>, <time datetime="2010-05" class="refDate">May 2010</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5763">https://www.rfc-editor.org/info/rfc5763</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6951">[29]</dt>
<dd>
<span class="refAuthor">Tuexen, M.</span><span class="refAuthor"> and R. Stewart</span>, <span class="refTitle">"UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets for End-Host to End-Host Communication"</span>, <span class="seriesInfo">RFC 6951</span>, <span class="seriesInfo">DOI 10.17487/RFC6951</span>, <time datetime="2013-05" class="refDate">May 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6951">https://www.rfc-editor.org/info/rfc6951</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7525">[30]</dt>
<dd>
<span class="refAuthor">Sheffer, Y.</span><span class="refAuthor">, Holz, R.</span><span class="refAuthor">, and P. Saint-Andre</span>, <span class="refTitle">"Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)"</span>, <span class="seriesInfo">BCP 195</span>, <span class="seriesInfo">RFC 7525</span>, <span class="seriesInfo">DOI 10.17487/RFC7525</span>, <time datetime="2015-05" class="refDate">May 2015</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7525">https://www.rfc-editor.org/info/rfc7525</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4380">[31]</dt>
<dd>
<span class="refAuthor">Huitema, C.</span>, <span class="refTitle">"Teredo: Tunneling IPv6 over UDP through Network Address Translations (NATs)"</span>, <span class="seriesInfo">RFC 4380</span>, <span class="seriesInfo">DOI 10.17487/RFC4380</span>, <time datetime="2006-02" class="refDate">February 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4380">https://www.rfc-editor.org/info/rfc4380</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6081">[32]</dt>
<dd>
<span class="refAuthor">Thaler, D.</span>, <span class="refTitle">"Teredo Extensions"</span>, <span class="seriesInfo">RFC 6081</span>, <span class="seriesInfo">DOI 10.17487/RFC6081</span>, <time datetime="2011-01" class="refDate">January 2011</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6081">https://www.rfc-editor.org/info/rfc6081</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4960">[33]</dt>
<dd>
<span class="refAuthor">Stewart, R., Ed.</span>, <span class="refTitle">"Stream Control Transmission Protocol"</span>, <span class="seriesInfo">RFC 4960</span>, <span class="seriesInfo">DOI 10.17487/RFC4960</span>, <time datetime="2007-09" class="refDate">September 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4960">https://www.rfc-editor.org/info/rfc4960</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6544">[34]</dt>
<dd>
<span class="refAuthor">Rosenberg, J.</span><span class="refAuthor">, Keranen, A.</span><span class="refAuthor">, Lowekamp, B. B.</span><span class="refAuthor">, and A. B. Roach</span>, <span class="refTitle">"TCP Candidates with Interactive Connectivity Establishment (ICE)"</span>, <span class="seriesInfo">RFC 6544</span>, <span class="seriesInfo">DOI 10.17487/RFC6544</span>, <time datetime="2012-03" class="refDate">March 2012</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6544">https://www.rfc-editor.org/info/rfc6544</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.manner-tsvwg-gut">[35]</dt>
<dd>
<span class="refAuthor">Manner, J.</span><span class="refAuthor">, Varis, N.</span><span class="refAuthor">, and B. Briscoe</span>, <span class="refTitle">"Generic UDP Tunnelling (GUT)"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-manner-tsvwg-gut-02</span>, <time datetime="2010-07-12" class="refDate">12 July 2010</time>, <span><<a href="https://tools.ietf.org/html/draft-manner-tsvwg-gut-02">https://tools.ietf.org/html/draft-manner-tsvwg-gut-02</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.ietf-mmusic-media-path-middleboxes">[36]</dt>
<dd>
<span class="refAuthor">Stucker, B.</span><span class="refAuthor">, Tschofenig, H.</span><span class="refAuthor">, and G. Salgueiro</span>, <span class="refTitle">"Analysis of Middlebox Interactions for Signaling Protocol Communication along the Media Path"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-mmusic-media-path-middleboxes-07</span>, <time datetime="2013-05-30" class="refDate">30 May 2013</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-mmusic-media-path-middleboxes-07">https://tools.ietf.org/html/draft-ietf-mmusic-media-path-middleboxes-07</a>></span>. </dd>
<dd class="break"></dd>
<dt id="IMC05">[37]</dt>
<dd>
<span class="refAuthor">Guha, S.</span><span class="refAuthor"> and P. Francis</span>, <span class="refTitle">"Characterization and Measurement of TCP Traversal through NATs and Firewalls"</span>, <time datetime="2005" class="refDate">2005</time>, <span><<a href="https://www.usenix.org/legacy/event/imc05/tech/full_papers/guha/guha.pdf">https://www.usenix.org/legacy/event/imc05/tech/full_papers/guha/guha.pdf</a>></span>. </dd>
<dd class="break"></dd>
<dt id="P2PNAT">[38]</dt>
<dd>
<span class="refAuthor">Ford, B.</span><span class="refAuthor">, Srisuresh, P.</span><span class="refAuthor">, and D. Kegel</span>, <span class="refTitle">"Peer-to-Peer Communication Across Network Address Translators"</span>, <time datetime="2005-04" class="refDate">April 2005</time>, <span><<a href="https://www.usenix.org/legacy/events/usenix05/tech/general/full_papers/ford/ford.pdf">https://www.usenix.org/legacy/events/usenix05/tech/general/full_papers/ford/ford.pdf</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<div id="app_unrelcallflow">
<section id="section-appendix.a">
<h2 id="name-example-call-flows-for-bfcp">
<a href="#section-appendix.a" class="section-number selfRef">Appendix A. </a><a href="#name-example-call-flows-for-bfcp" class="section-name selfRef">Example Call Flows for BFCP over an Unreliable Transport</a>
</h2>
<p id="section-appendix.a-1">With reference to <a href="#sec_overview_user" class="xref">Section 4.1</a>, the following figures show representative call flows for requesting and releasing a floor, and obtaining status information about a floor when BFCP is deployed over an unreliable transport. The figures here show a lossless interaction.<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<span id="name-requesting-and-releasing-a-f"></span><div id="ReqRelUnrelExample">
<figure id="figure-48">
<div class="artwork art-text alignLeft" id="section-appendix.a-2.1">
<pre>
Floor Participant Floor Control
Server
|(1) FloorRequest |
|Transaction Responder: 0 |
|Transaction ID: 123 |
|User ID: 234 |
|FLOOR-ID: 543 |
|---------------------------------------------->|
| |
|(2) FloorRequestStatus |
|Transaction Responder: 1 |
|Transaction ID: 123 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Pending |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(3) FloorRequestStatus |
|Transaction Responder: 0 |
|Transaction ID: 124 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(4) FloorRequestStatusAck |
|Transaction Responder: 1 |
|Transaction ID: 124 |
|User ID: 234 |
|---------------------------------------------->|
| |
|(5) FloorRequestStatus |
|Transaction Responder: 0 |
|Transaction ID: 125 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|
| |
|(6) FloorRequestStatusAck |
|Transaction Responder: 1 |
|Transaction ID: 125 |
|User ID: 234 |
|---------------------------------------------->|
| |
|(7) FloorRelease |
|Transaction Responder: 0 |
|Transaction ID: 126 |
|User ID: 234 |
|FLOOR-REQUEST-ID: 789 |
|---------------------------------------------->|
| |
|(8) FloorRequestStatus |
|Transaction Responder: 1 |
|Transaction ID: 126 |
|User ID: 234 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 789 |
| OVERALL-REQUEST-STATUS |
| Request Status: Released |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
|<----------------------------------------------|</pre>
</div>
<figcaption><a href="#figure-48" class="selfRef">Figure 48</a>:
<a href="#name-requesting-and-releasing-a-f" class="selfRef">Requesting and releasing a floor</a>
</figcaption></figure>
</div>
<p id="section-appendix.a-3">Note that in <a href="#ReqRelUnrelExample" class="xref">Figure 48</a>, the
FloorRequestStatus message from the floor control server to the floor
participant is a transaction-closing message as a response to the
client-initiated transaction with Transaction ID 126. As such, it is not
followed by a FloorRequestStatusAck message from the floor participant to
the floor control server.<a href="#section-appendix.a-3" class="pilcrow">¶</a></p>
<span id="name-obtaining-status-information"></span><div id="StatusUnrelExample">
<figure id="figure-49">
<div class="artwork art-text alignLeft" id="section-appendix.a-4.1">
<pre>
Floor Participant Floor Control
Server
|(1) FloorQuery |
|Transaction Responder: 0 |
|Transaction ID: 257 |
|User ID: 234 |
|FLOOR-ID: 543 |
|---------------------------------------------->|
| |
|(2) FloorStatus |
|Transaction Responder: 1 |
|Transaction ID: 257 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 764 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 124 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 2nd |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|
| |
|(3) FloorStatus |
|Transaction Responder: 0 |
|Transaction ID: 258 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 764 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 124 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Accepted |
| Queue Position: 1st |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|
| |
|(4) FloorStatusAck |
|Transaction Responder: 1 |
|Transaction ID: 258 |
|User ID: 234 |
|---------------------------------------------->|
| |
|(5) FloorStatus |
|Transaction Responder: 0 |
|Transaction ID: 259 |
|User ID: 234 |
|FLOOR-ID:543 |
|FLOOR-REQUEST-INFORMATION |
| Floor Request ID: 635 |
| OVERALL-REQUEST-STATUS |
| Request Status: Granted |
| FLOOR-REQUEST-STATUS |
| Floor ID: 543 |
| BENEFICIARY-INFORMATION |
| Beneficiary ID: 154 |
|<----------------------------------------------|
| |
|(6) FloorStatusAck |
|Transaction Responder: 1 |
|Transaction ID: 259 |
|User ID: 234 |
|---------------------------------------------->|</pre>
</div>
<figcaption><a href="#figure-49" class="selfRef">Figure 49</a>:
<a href="#name-obtaining-status-information" class="selfRef">Obtaining status information about a floor</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="app_motivation">
<section id="section-appendix.b">
<h2 id="name-motivation-for-supporting-a">
<a href="#section-appendix.b" class="section-number selfRef">Appendix B. </a><a href="#name-motivation-for-supporting-a" class="section-name selfRef">Motivation for Supporting an Unreliable Transport</a>
</h2>
<p id="section-appendix.b-1">This appendix is provided as an aid to understand the background and rationale for adding support for unreliable transport.<a href="#section-appendix.b-1" class="pilcrow">¶</a></p>
<div id="motivation">
<section id="section-b.1">
<h2 id="name-motivation">
<a href="#section-b.1" class="section-number selfRef">B.1. </a><a href="#name-motivation" class="section-name selfRef">Motivation</a>
</h2>
<p id="section-b.1-1">In existing video conferencing deployments, BFCP is used to manage the floor for the content sharing associated with the conference. For peer-to-peer scenarios, including business-to-business conferences and point-to-point conferences in general, it is frequently the case that one or both endpoints exist behind a NAT. BFCP roles are negotiated in the offer/answer exchange as specified in <span>[<a href="#RFC8856" class="xref">12</a>]</span>, resulting in one endpoint being responsible for opening the TCP connection used for the BFCP communication.<a href="#section-b.1-1" class="pilcrow">¶</a></p>
<span id="name-use-case"></span><div id="use_case">
<figure id="figure-50">
<div class="artwork art-text alignCenter" id="section-b.1-2.1">
<pre>
+---------+
| Network |
+---------+
+-----+ / \ +-----+
| NAT |/ \| NAT |
+-----+ +-----+
+----+ / \ +----+
|BFCP|/ \|BFCP|
| UA | | UA |
+----+ +----+</pre>
</div>
<figcaption><a href="#figure-50" class="selfRef">Figure 50</a>:
<a href="#name-use-case" class="selfRef">Use case</a>
</figcaption></figure>
</div>
<p id="section-b.1-3">The communication session between the video conferencing endpoints typically consists of a number of RTP over UDP media streams for audio and video and a BFCP connection for floor control. Existing deployments are most common in, but not limited to, enterprise networks. In existing deployments, NAT traversal for the RTP streams works using ICE and/or other methods, including those described in <span>[<a href="#I-D.ietf-mmusic-media-path-middleboxes" class="xref">36</a>]</span>.<a href="#section-b.1-3" class="pilcrow">¶</a></p>
<p id="section-b.1-4">When enhancing an existing SIP-based video conferencing deployment with support for content sharing, the BFCP connection often poses a problem. The reasons for this fall into two general classes. First, there may be a strong preference for UDP-based signaling in general. On high-capacity endpoints (e.g., Public Switched Telephone Network (PSTN) gateways or SIP/H.323 inter-working gateways), TCP can suffer from head-of-line blocking, and it uses many kernel buffers. Network operators view UDP as a way to avoid both of these. Second, the establishment and traversal of the TCP connection involving ephemeral ports, as is typically the case with BFCP over TCP, can be problematic, as described in <span><a href="https://www.rfc-editor.org/rfc/rfc6544#appendix-A" class="relref">Appendix A</a> of [<a href="#RFC6544" class="xref">34</a>]</span>. A broad study of NAT behavior and peer-to-peer TCP establishment for a comprehensive set of TCP NAT traversal techniques over a wide range of commercial NAT products concluded that it was not possible to establish a TCP connection in 11% of the cases <span>[<a href="#IMC05" class="xref">37</a>]</span>. The results are worse when focusing on enterprise NATs. A study of hole-punching as a NAT traversal technique across a wide variety of deployed NATs reported consistently higher success rates when using UDP than when using TCP <span>[<a href="#P2PNAT" class="xref">38</a>]</span>.<a href="#section-b.1-4" class="pilcrow">¶</a></p>
<p id="section-b.1-5">It is worth noting that BFCP over UDP is already being used in real deployments, underlining the necessity to specify a common way to exchange BFCP messages where TCP is not appropriate, to avoid a situation where multiple different and non-interoperable implementations would coexist in the market. The purpose of this document is to extend the standard specification to support unreliable transport in order to facilitate complete interoperability between implementations.<a href="#section-b.1-5" class="pilcrow">¶</a></p>
<div id="alternatives">
<section id="section-b.1.1">
<h3 id="name-alternatives-considered">
<a href="#section-b.1.1" class="section-number selfRef">B.1.1. </a><a href="#name-alternatives-considered" class="section-name selfRef">Alternatives Considered</a>
</h3>
<p id="section-b.1.1-1">In selecting the approach of defining UDP as an alternate transport for BFCP, several alternatives were considered and explored to some degree. Each of these is discussed briefly in the following subsections. In summary, while the alternatives that were not chosen work in a number of scenarios, they are not sufficient, in and of themselves, to address the use case targeted by this document. The last alternative, presented in <a href="#thisextension" class="xref">Appendix B.1.1.7</a>, was selected and is specified in this document.<a href="#section-b.1.1-1" class="pilcrow">¶</a></p>
<p id="section-b.1.1-2">It is also worth noting that the IETF Transport Area was asked for a way to tunnel TCP over UDP, but at that point there was no consensus on how to achieve that.<a href="#section-b.1.1-2" class="pilcrow">¶</a></p>
<div id="ice_tcp">
<section id="section-b.1.1.1">
<h4 id="name-ice-tcp">
<a href="#section-b.1.1.1" class="section-number selfRef">B.1.1.1. </a><a href="#name-ice-tcp" class="section-name selfRef">ICE TCP</a>
</h4>
<p id="section-b.1.1.1-1">ICE TCP <span>[<a href="#RFC6544" class="xref">34</a>]</span> extends ICE to TCP-based media, including the ability to offer a mix of TCP- and UDP-based candidates for a single stream. ICE TCP has, in general, a lower success probability for enabling TCP connectivity without a relay if both of the hosts are behind a NAT (see <span><a href="https://www.rfc-editor.org/rfc/rfc6544#appendix-A" class="relref">Appendix A</a> of [<a href="#RFC6544" class="xref">34</a>]</span>) than enabling UDP connectivity in the same scenarios. The happens because many of the currently deployed NATs in video conferencing networks do not support the flow of TCP handshake packets seen in the case of TCP simultaneous-open, either because they do not allow incoming TCP SYN packets from an address to which a SYN packet has been sent recently, or because they do not properly process the subsequent SYNACK. Implementing various techniques advocated for candidate collection in <span>[<a href="#RFC6544" class="xref">34</a>]</span> should increase the success probability, but many of these techniques require support from some network elements (e.g., from the NATs). Such support is not common in enterprise NATs.<a href="#section-b.1.1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="teredo">
<section id="section-b.1.1.2">
<h4 id="name-teredo">
<a href="#section-b.1.1.2" class="section-number selfRef">B.1.1.2. </a><a href="#name-teredo" class="section-name selfRef">Teredo</a>
</h4>
<p id="section-b.1.1.2-1">Teredo <span>[<a href="#RFC4380" class="xref">31</a>]</span> enables nodes located behind one or more IPv4 NATs to obtain IPv6 connectivity by tunneling packets over UDP. Teredo extensions <span>[<a href="#RFC6081" class="xref">32</a>]</span> provide additional capabilities to Teredo, including support for more types of NATs and support for more efficient communication.<a href="#section-b.1.1.2-1" class="pilcrow">¶</a></p>
<p id="section-b.1.1.2-2">As defined, Teredo could be used to make BFCP work for the video conferencing use cases addressed in this document. However, running the service requires the help of "Teredo servers" and "Teredo relays" <span>[<a href="#RFC4380" class="xref">31</a>]</span>. These servers and relays generally do not exist in current video conferencing deployments. It also requires IPv6 awareness on the endpoints. It should also be noted that ICMP6, as used with Teredo to complete an initial protocol exchange and confirm that the appropriate NAT bindings have been set up, is not a conventional feature of IPv4 or even IPv6, and some currently deployed IPv6 firewalls discard ICMP messages. As these networks continue to evolve and tackle the transaction to IPv6, Teredo servers and relays may be deployed, making Teredo available as a suitable alternative to BFCP over UDP.<a href="#section-b.1.1.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="gut">
<section id="section-b.1.1.3">
<h4 id="name-gut">
<a href="#section-b.1.1.3" class="section-number selfRef">B.1.1.3. </a><a href="#name-gut" class="section-name selfRef">GUT</a>
</h4>
<p id="section-b.1.1.3-1">GUT <span>[<a href="#I-D.manner-tsvwg-gut" class="xref">35</a>]</span>
attempts to facilitate tunneling over UDP by encapsulating the
native transport protocol and its payload (in general the whole IP
payload) within a UDP packet destined to the well-known port
GUT_P. Unfortunately, it requires user-space TCP, for which there
is not a readily available implementation, and creating one is a
large project in itself. This document has expired, and its future is still unclear as it has not yet been adopted by a working group.<a href="#section-b.1.1.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="upnp_igd">
<section id="section-b.1.1.4">
<h4 id="name-upnp-igd">
<a href="#section-b.1.1.4" class="section-number selfRef">B.1.1.4. </a><a href="#name-upnp-igd" class="section-name selfRef">UPnP IGD</a>
</h4>
<p id="section-b.1.1.4-1">Universal Plug and Play Internet Gateway Devices (UPnP IGD) sit on the edge of the network, providing connectivity to the Internet for computers internal to the LAN, but do not allow Internet devices to connect to computers on the internal LAN. IGDs enable a computer on an internal LAN to create port mappings on their NAT, through which hosts on the Internet can send data that will be forwarded to the computer on the internal LAN. IGDs may be self-contained hardware devices or may be software components provided within an operating system.<a href="#section-b.1.1.4-1" class="pilcrow">¶</a></p>
<p id="section-b.1.1.4-2">In considering UPnP IGD, several issues exist. Not all NATs support UPnP, and many that do support it are configured with it turned off by default. NATs are often multilayered, and UPnP does not work well with such NATs. For example, a typical DSL modem acts as a NAT, and the user plugs in a wireless access point behind that, which adds another layer of NAT. The client can discover the first layer of NAT using multicast, but it is harder to figure out how to discover and control NATs in the next layer up.<a href="#section-b.1.1.4-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="nat_pmp">
<section id="section-b.1.1.5">
<h4 id="name-nat-pmp">
<a href="#section-b.1.1.5" class="section-number selfRef">B.1.1.5. </a><a href="#name-nat-pmp" class="section-name selfRef">NAT PMP</a>
</h4>
<p id="section-b.1.1.5-1">The NAT Port Mapping Protocol (NAT PMP) allows a computer in a private network (behind a NAT router) to automatically configure the router to allow parties outside the private network to contact it. NAT PMP runs over UDP. It essentially automates the process of port forwarding. Included in the protocol is a method for retrieving the public IP address of a NAT gateway, thus allowing a client to make this public IP address and port number known to peers that may wish to communicate with it.<a href="#section-b.1.1.5-1" class="pilcrow">¶</a></p>
<p id="section-b.1.1.5-2">Many NATs do not support PMP. In those that do support it, it has similar issues with negotiation of multilayer NATs as UPnP. Video conferencing is used extensively in enterprise networks, and NAT PMP is not generally available in enterprise-class routers.<a href="#section-b.1.1.5-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="sctp_udp">
<section id="section-b.1.1.6">
<h4 id="name-sctp">
<a href="#section-b.1.1.6" class="section-number selfRef">B.1.1.6. </a><a href="#name-sctp" class="section-name selfRef">SCTP</a>
</h4>
<p id="section-b.1.1.6-1">It would be quite straightforward to specify a BFCP binding for Stream Control Transmission Protocol (SCTP) <span>[<a href="#RFC4960" class="xref">33</a>]</span>, and then tunnel SCTP over UDP in the use case described in <a href="#motivation" class="xref">Appendix B.1</a>. SCTP is gaining some momentum currently. There was ongoing discussion in the RTCWeb Working Group regarding this approach, which resulted in <span>[<a href="#RFC6951" class="xref">29</a>]</span>. However, this approach to tunneling over UDP was not mature enough when considered and was not even fully specified.<a href="#section-b.1.1.6-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="thisextension">
<section id="section-b.1.1.7">
<h4 id="name-bfcp-over-udp-transport">
<a href="#section-b.1.1.7" class="section-number selfRef">B.1.1.7. </a><a href="#name-bfcp-over-udp-transport" class="section-name selfRef">BFCP over UDP Transport</a>
</h4>
<p id="section-b.1.1.7-1">To overcome the problems with establishing TCP flows between BFCP entities, an alternative is to define UDP as an alternate transport for BFCP, leveraging the same mechanisms in place for the RTP over UDP media streams for the BFCP communication. When using UDP as the transport, following the guidelines provided in <span>[<a href="#RFC8085" class="xref">15</a>]</span> is recommended.<a href="#section-b.1.1.7-1" class="pilcrow">¶</a></p>
<p id="section-b.1.1.7-2">Minor changes to the transaction model have been introduced in that all requests now have an appropriate response to complete the transaction. The requests are sent with a retransmission timer associated with the response to achieve reliability. This alternative does not change the semantics of BFCP. It permits UDP as an alternate transport.<a href="#section-b.1.1.7-2" class="pilcrow">¶</a></p>
<p id="section-b.1.1.7-3">Existing implementations, in the spirit of the approach detailed in earlier draft versions of this document, have demonstrated that this approach is feasible. Initial compatibility among implementations has been achieved at previous interoperability events. The authors view this extension as a pragmatic solution to an existing deployment challenge. This is the chosen approach, and the extensions are specified in this document.<a href="#section-b.1.1.7-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="sec_acks">
<section id="section-appendix.c">
<h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="section-appendix.c-1">The XCON Working Group chairs, <span class="contact-name">Adam Roach</span> and <span class="contact-name">Alan Johnston</span>, provided useful ideas for RFC 4582 <span>[<a href="#RFC4582" class="xref">3</a>]</span>. Additionally, <span class="contact-name">Xiaotao Wu</span>, <span class="contact-name">Paul Kyzivat</span>, <span class="contact-name">Jonathan Rosenberg</span>, <span class="contact-name">Miguel A. Garcia-Martin</span>, <span class="contact-name">Mary Barnes</span>, <span class="contact-name">Ben Campbell</span>, <span class="contact-name">Dave Morgan</span>, and <span class="contact-name">Oscar Novo</span> provided useful comments during the work with RFC 4582. The authors also acknowledge contributions to the revision of BFCP for use over an unreliable transport from <span class="contact-name">Geir Arne Sandbakken</span> who had the initial idea, <span class="contact-name">Alfred E. Heggestad</span>, <span class="contact-name">Trond G. Andersen</span>, <span class="contact-name">Gonzalo Camarillo</span>, <span class="contact-name">Roni Even</span>, <span class="contact-name">Lorenzo Miniero</span>, <span class="contact-name">Jörg Ott</span>, <span class="contact-name">Eoin McLeod</span>, <span class="contact-name">Mark K. Thompson</span>, <span class="contact-name">Hadriel Kaplan</span>, <span class="contact-name">Dan Wing</span>, <span class="contact-name">Cullen Jennings</span>, <span class="contact-name">David Benham</span>, <span class="contact-name">Nivedita Melinkeri</span>, <span class="contact-name">Woo Johnman</span>, <span class="contact-name">Vijaya Mandava</span>, and <span class="contact-name">Alan Ford</span>. In the final phase, <span class="contact-name">Ernst Horvath</span> did a thorough review, revealing issues that needed clarification and changes. Useful and important final reviews were done by <span class="contact-name">Mary Barnes</span>. <span class="contact-name">Paul Jones</span> helped tremendously as editor for changes addressing IESG review comments.<a href="#section-appendix.c-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.d">
<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">Gonzalo Camarillo</span></div>
<div dir="auto" class="left"><span class="org">Ericsson</span></div>
<div dir="auto" class="left"><span class="street-address">Hirsalantie 11</span></div>
<div dir="auto" class="left">FI-<span class="postal-code">02420</span> <span class="locality">Jorvas</span>
</div>
<div dir="auto" class="left"><span class="country-name">Finland</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:gonzalo.camarillo@ericsson.com" class="email">gonzalo.camarillo@ericsson.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Keith Drage</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:drageke@ntlworld.com" class="email">drageke@ntlworld.com</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Tom Kristensen</span></div>
<div dir="auto" class="left"><span class="org">Jotron AS</span></div>
<div dir="auto" class="left"><span class="street-address">Ringdalskogen 8</span></div>
<div dir="auto" class="left">
<span class="postal-code">3270</span> <span class="locality">Larvik</span>
</div>
<div dir="auto" class="left"><span class="country-name">Norway</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:tom.kristensen@jotron.com,%20tomkri@ifi.uio.no" class="email">tom.kristensen@jotron.com, tomkri@ifi.uio.no</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Jörg Ott</span></div>
<div dir="auto" class="left"><span class="org">Technical University Munich</span></div>
<div dir="auto" class="left"><span class="street-address">Boltzmannstrasse 3</span></div>
<div dir="auto" class="left">
<span class="postal-code">85748</span> <span class="locality">Garching</span>
</div>
<div dir="auto" class="left"><span class="country-name">Germany</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ott@in.tum.de" class="email">ott@in.tum.de</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Charles Eckel</span></div>
<div dir="auto" class="left"><span class="org">Cisco</span></div>
<div dir="auto" class="left"><span class="street-address">707 Tasman Drive</span></div>
<div dir="auto" class="left">
<span class="locality">Milpitas</span>, <span class="region">California</span> <span class="postal-code">95035</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:eckelcu@cisco.com" class="email">eckelcu@cisco.com</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>
|