summaryrefslogtreecommitdiff
path: root/specs/fsproto.xml
blob: 5e802d9969f24b30368d83fdf46412da4091f05c (plain)
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
                   "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[
<!ENTITY % defs SYSTEM "defs.ent"> %defs;
]>


<book id="fsproto">

<bookinfo>
   <title>The X Font Service Protocol</title>
   <subtitle>X Consortium Standard</subtitle>
   <releaseinfo>X Version 11, Release &fullrelvers;</releaseinfo>
   <releaseinfo>Version 2.0</releaseinfo>
   <authorgroup>
      <author>
         <firstname>Jim</firstname><surname>Fulton</surname>
         <affiliation><orgname>Network Computing Devices, Inc.</orgname></affiliation>
      </author>
   </authorgroup>
   <edition>Revised May 2, 1994</edition>
   <copyright><year>1991</year><holder>Network Computing Devices, Inc.</holder></copyright>

<legalnotice>
<para>
Permission to use, copy, modify, distribute, and sell this
documentation for any purpose is hereby granted without fee,
provided that the above copyright notice and this permission
notice appear in all copies.  Network Computing Devices, Inc.
makes no representations about the suitability for any purpose
of the information in this document.  This documentation is
provided &ldquo;as is&rdquo; without express or implied warranty.
</para>
</legalnotice>

<legalnotice>
<para role="multiLicensing">Copyright © 1994 X Consortium</para>
<para>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the &ldquo;Software&rdquo;), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
</para>
<para>
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
</para>
<para>
THE SOFTWARE IS PROVIDED &ldquo;AS IS&rdquo;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</para>
<para>
Except as contained in this notice, the name of the X Consortium shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the X Consortium.
</para>
</legalnotice>
</bookinfo>

<chapter id='Introduction'>
<title>Introduction</title>
<para>
The management of fonts in large, heterogeneous environments is one of the
hardest aspects of using the X Window System
<footnote id='footnote1'><para>
<firstterm><trademark>X Window System</trademark></firstterm>
is a trademark of The Open Group.
</para></footnote>
.  Multiple formats and the lack of
a consistent mechanism for exporting font data to all displays on a network
prevent the transparent use of applications across different display platforms.
The X Font Service protocol is designed to address this and other issues, with
specific emphasis on the needs of the core X protocol.  Upward-compatible
changes (typically in the form of new requests) are expected as consensus is
reached on new features (particularly outline font support).
</para>
<para>
Currently, most X displays use network file protocols such as
<acronym>NFS</acronym> and <acronym>TFTP</acronym> to
obtain raw font data which they parse directly.  Since a common binary format
for this data doesn't exist, displays must be able to interpret a variety of
formats if they are to be used with different application hosts.  This leads to
wasted code and data space and a loss of interoperability as displays are used
in unforeseen environments.
</para>
<para>
By moving the interpretation of font data out of the X server into a separate
service on the network, these problems can be greatly reduced.  In addition,
new technologies, such as dynamically generating bitmaps from scaled or outline
fonts, can be provided to all displays transparently.  For horizontal text,
caching techniques and increased processor power can potentially make
rasterization more efficient on large, centralized hosts than on individual
displays.
</para>
<para>
Each font server provides sets of fonts that may be listed and queried for
header, property, glyph extents, and bitmap information.  This data is
transmitted over the network using a binary format (with variations to support
different bit- and byte-orders) designed to minimize the amount of processing
required by the display.  Since the font server, rather than the display, is
responsible for parsing the raw font data, new formats can be used by all
displays by modifying a single font server.
</para>
<para>
From the user's point of view, font servers are simply a new type of name in
the X font path.  Network name services allow descriptive names (such as
DEPARTMENT-FONTS or APPLICATION-FONTS) to be translated into proper network
addresses.  X displays send requests to and read replies from the font server
rather than reading directly from files.  Since the X Font Service protocol is
designed to allow subsets of the font data to be requested, displays may easily
implement a variety of strategies for fine-grained demand-loading of glyphs.
</para>
</chapter>

<chapter id='Architectural_Model'>
<title>Architectural Model</title>
<!-- .XS -->
<!-- (SN Architectural Model -->
<!-- .XE -->
<para>
<!-- .LP -->
In this document, the words <firstterm>client</firstterm> and
<firstterm>server</firstterm> refer to the consumer and
provider of a font, respectively, unless otherwise indicated.  It is important
to note that in this context, the X server is also a font client.
</para>
<para>
The X Font Service protocol does not require any changes to the core X protocol
or to any applications.  To the user, font servers are simply additional types
of font path elements.  As such, X servers may connect to multiple font
servers, as shown in Figure 2.1.  Although the font protocol is geared towards
the X Window System, it may be also used by other consumers of font data (such
as printer drivers).
</para>

<figure id="figure2.1" label="2.1"><title>Connecting to a Font Server</title>
<literallayout class="monospaced">
 ┌────────┐              ┌───────────────┐
 │   X1   ├──────────────┤               │
 │ Server │              │  Font Server  │
 └────────┘      ┌───────┤      1        │
                 │       └───────────────┘
 ┌────────┐      │
 │   X2   ├──────┘       ┌───────────────┐
 │ Server ├──────────────┤               │
 └────────┘              │  Font Server  │
                 ┌───────┤      2        │
┌─────────┐      │       └───────────────┘
│  other  │      │
│ clients ├──────┘
└─────────┘
</literallayout>
</figure>

<para>
<!-- .LP  -->
Clients communicate with the font server using the request/reply/event model
over any mutually-understood virtual stream connection (such as
<acronym>TCP/IP</acronym>, DECnet,
<footnote id='footnote2'><para>
<firstterm><trademark>DECnet</trademark></firstterm> is a trademark
of Digital Equipment Corporation.
</para></footnote>
etc.).  Font servers are responsible for providing data in the bit and byte
orders requested by the client.  The set of requests and events provided in the
first version of the X Font Service protocol is limited to supporting the needs
of the bitmap-oriented core X Window System protocol.  Extensions are expected
as new needs evolve.
</para>
<para>
<!-- .LP -->
A font server reads raw font data from a variety of sources (possibly
including other font servers) and converts it into a common format that is
transmitted to the client using the protocol described in
<link linkend='Protocol'>Section 4</link>.  New font
formats are handled by adding new converters to a font server, as shown in
Figure 2.2.
</para>

<figure id="figure2.2" label="2.2"><title>Where Font Data Comes From</title>
<literallayout class="monospaced">
                ┌────────────┐
                │   client   │
                │ (X server) │
                └─────┬──────┘
                      │
                   network
                      │
┌─────────────────────┴──────────────────────┐
│                                            │
│                font server 1               │
│                                            │
├─────┬─────┬─────┬─────┬────┬─────┬───┬─────┤
│ bdf │ snf │ pcf │ atm │ f3 │ dwf │ │ │ ... │
└─────┴─────┴─────┴─────┴────┴─────┴─│─┴─────┘
                                     │
                                  network
                                     │
                               ┌─────┴────┐
                               │   font   │
                               │ server 2 │
                               └──────────┘
</literallayout>
</figure>

<para>
The server may choose to provide named sets of fonts called
<firstterm>catalogues</firstterm>.
Clients may specify which of the sets should be used in listing or opening a
font.
</para>

<para>
An event mechanism similar to that used in the X protocol is provided for
asynchronous notification of clients by the server.
</para>

<para>
<!-- .LP -->
Clients may provide authorization data for the server to be used in determining
(according to the server's licensing policy) whether or not access should be
granted to particular fonts.  This is particularly useful for clients whose
authorization changes over time (such as an X server that can verify the
identity of the user).
</para>
<para>
<!-- .LP -->
Implementations that wish to provide additional requests or events may use the
extension mechanism.  Adding to the core font service protocol (with the
accompanying change in the major or minor version numbers) is reserved to the X
Consortium.
</para>
</chapter>

<chapter id='Font_Server_Naming'>
<title>Font Server Naming</title>
<!-- .XS -->
<!-- (SN Font Server Naming -->
<!-- .XE -->
<para>
Font clients that expose font server names to the user are encouraged to
provide ways of naming font servers symbolically (e.g. DEPARTMENT-FONTS).
However, for environments that lack appropriate name services
transport-specific names are necessary.  Since these names do occur in the
protocol, clients and servers should support at least the applicable formats
described below.  Formats for additional transports may be registered with the
X Consortium.
</para>

<section id='TCPIP_Names'>
<title>TCP/IP Names</title>
<!-- .XS -->
<!-- (SN TCP/IP Names -->
<!-- .XE -->
<para>
The following syntax should be used for TCP/IP names:

<literallayout class="monospaced">
    <replaceable>TCP name</replaceable>  ::=  <literal>tcp/</literal> <replaceable>hostname</replaceable> <literal>:</literal> <replaceable>ipportnumber</replaceable> <optional><literal>/</literal> <replaceable>cataloguelist</replaceable></optional>
</literallayout>

where <replaceable>hostname</replaceable> is either symbolic (such as
<systemitem class="systemname">expo.lcs.mit.edu</systemitem>) or numeric
decimal (such as <systemitem class="ipaddress">18.30.0.212</systemitem>).
The <replaceable>ipportnumber</replaceable> is the port on which the
font server is listening for connections.
The <replaceable>cataloguelist</replaceable> string at
the end is optional and specifies a plus-separated list of catalogues
that may be requested.  For example:
<literallayout class="monospaced">
     tcp/expo.lcs.mit.edu:8012/available+special
     tcp/18.30.0.212:7890
</literallayout>
</para>
</section>

<section id='DECnet_Names'>
<title>DECnet Names</title>
<!-- .XS -->
<!-- (SN DECnet Names -->
<!-- .XE -->
<para>
<!-- .LP -->
The following syntax should be used for DECnet names:

<literallayout class="monospaced">
    <replaceable>DECnet name</replaceable>  ::=  <literal>decnet/</literal> <replaceable>nodename</replaceable> <literal>::font$</literal> <replaceable>objname</replaceable> <optional><literal>/</literal> <replaceable>cataloguelist</replaceable></optional>
</literallayout>

where <replaceable>nodename</replaceable> is either symbolic (such as
<systemitem class="systemname">SRVNOD</systemitem>) or the
numeric decimal form of the DECnet address (such as
<systemitem class="ipaddress">44.70</systemitem>).
The <replaceable>objname</replaceable> is normal, case-insensitive DECnet
object name.  The <replaceable>cataloguelist</replaceable> string
at the end is
optional and specifies a plus-separated list of catalogues that may be
requested.  For example:

<literallayout class="monospaced">
     DECNET/SRVNOD::FONT$DEFAULT/AVAILABLE
     decnet/44.70::font$other
</literallayout>
</para>
</section>
</chapter>

<chapter id='Protocol'>
<title>Protocol</title>
<!-- .XS -->
<!-- (SN Protocol -->
<!-- .XE -->
<para>
<!-- .LP -->
The protocol described below uses the request/reply/error model and is
specified using the same conventions outlined in
<olink targetdoc='x11protocol' targetptr='Syntactic_Conventions'>Section 2
of the core X Window System protocol</olink>
<xref linkend="References:x11proto"/>:
</para>
<itemizedlist>
  <listitem>
    <para>
<!-- .IP \(bu 5 -->
Data type names are spelled in upper case with no word separators,
as in:  <type>FONTID</type>
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IP \(bu 5 -->
Alternate values are capitalized with no word separators,
as in:  <constant>MaxWidth</constant>
    </para>
  </listitem>
  <listitem>
    <para>
<!-- .IP \(bu 5 -->
Structure element declarations are in lower case with hyphens
as word separators, as in:  <structfield>byte-order-msb</structfield>
    </para>
    <note>
      <para>
Structure element names are referred to in
upper case (e.g. <structfield>BYTE-ORDER-MSB</structfield>) when used in
descriptions to set them off from the surrounding
text.  When this document is typeset they will be
printed in lower case in a distinct font.
      </para>
    </note>
  </listitem>
  <listitem>
    <para>
Type declarations have the form <quote><type>name</type>: type</quote>,
as in:  <type>CARD8</type>: 8-bit byte
    </para>
  </listitem>
  <listitem>
    <para>
Comma-separated lists of alternate values are enclosed in
braces, as in:  { <constant>Min</constant>, <constant>MaxWidth</constant>,
<constant>Max</constant> }
    </para>
  </listitem>
  <listitem>
    <para>
Comma-separated lists of structure elements are enclosed in
brackets, as in:  [ <structfield>byte1</structfield>: <type>CARD8</type>,
<structfield>byte2</structfield>: <type>CARD8</type> ]
    </para>
  </listitem>
</itemizedlist>

<para>
<!-- .LP -->
A type with a prefix <quote>LISTof</quote> represents a counted list of
elements of that type, as in:  <type>LISTofCARD8</type>
</para>

<section id='Data_Types'>
<title>Data Types</title>
<!-- .XS -->
<!-- (SN Data Types -->
<!-- .XE -->
<para>
The following data types are used in the core X Font Server protocol:
</para>

<section id="Data_Types:ACCESSCONTEXT">
  <title><type>ACCESSCONTEXT</type></title>
  <indexterm zone="Data_Types:ACCESSCONTEXT" significance="preferred"><primary>ACCESSCONTEXT</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>ACCESSCONTEXT</type>:</entry><entry><type>ID</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
This value is specified in the CreateAC request as the identifier
to be used when referring to a particular AccessContext resource
within the server.  These resources are used by the server to
store client-specified authorization information.  This
information may be used by the server to determine whether or not
the client should be granted access to particular font data.
</para>
<para>
In order to preserve the integrity of font licensing being performed by
the font server, care must be taken by a client to properly represent the
identity of the true user of the font.  Some font clients will in fact
be servers (for example, X servers) requesting fonts for their own clients.
Other font clients may be doing work on behalf of a number of different
users over time (for example, print spoolers).
</para>
<para>
<type>AccessContext</type>s
must be created (with
<function>CreateAC</function>)
and switched among (with
<function>SetAuthorization</function>)
to represent all of these <quote>font users</quote> properly.
    </para>
</section>

<section id="Data_Types:ALTERNATESERVER">
  <title><type>ALTERNATESERVER</type></title>
  <indexterm zone="Data_Types:ALTERNATESERVER" significance="preferred"><primary>ALTERNATESERVER</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows="1"><type>ALTERNATESERVER</type>:</entry>
          <entry> [ <structfield>name</structfield>:</entry><entry>  <type>STRING8</type>,</entry></row>
          <row><entry>&emsp;<structfield>subset</structfield>:</entry><entry>  <type>BOOL</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

    <para>
This structure specifies the <structfield>NAME</structfield>,
encoded in <acronym>ISO</acronym> 8859-1 according
to <link linkend='Font_Server_Naming'>Section 3</link>,
of another font server that may be useful as a
substitute for this font server.
The <structfield>SUBSET</structfield> field indicates
whether or not the alternate server is likely to only contain a
subset of the fonts available from this font server.  This
information is returned during the initial connection setup and
may be used by the client to find a backup server in case of
failure.
    </para>
</section>

<section id="Data_Types:AUTH">
  <title><type>AUTH</type></title>
  <indexterm zone="Data_Types:AUTH" significance="preferred"><primary>AUTH</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows="1"><type>AUTH</type>:</entry><entry>[ <structfield>name</structfield>:</entry><entry><type>STRING8</type>,</entry></row>
          <row><entry>&emsp;<structfield>data</structfield>:</entry><entry><type>LISTofBYTE</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This structure specifies the name of an authorization protocol and
initial data for that protocol.  It is used in the authorization
negotiation in the initial connection setup and in the CreateAC
request.
</para>
</section>

<section id="Data_Types:BITMAPFORMAT">
  <title><type>BITMAPFORMAT</type></title>
  <indexterm zone="Data_Types:BITMAPFORMAT" significance="preferred"><primary>BITMAPFORMAT</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>BITMAPFORMAT</type>:</entry><entry><type>CARD32</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

    <para>
   <type>CARD32</type> containing the following fields defined by the
   sets of values given further below
    </para>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
        <row><entry>[</entry></row>
          <row><entry>&emsp;<structfield>byte-order-msb</structfield>:</entry><entry>      1 bit,</entry></row>
          <row><entry>&emsp;<structfield>bit-order-msb</structfield>:</entry><entry>       1 bit,</entry></row>
          <row><entry>&emsp;<structfield>image-rect</structfield>:</entry><entry>          2 bits</entry><entry>{ <constant>Min</constant>,
                          <constant>MaxWidth</constant>,
                          <constant>Max</constant> },</entry></row>
          <row><entry>&emsp;<structfield>zero-pad</structfield>:</entry><entry>            4 bits,</entry></row>
          <row><entry>&emsp;<structfield>scanline-pad</structfield>:</entry><entry>        2 bits</entry><entry>{ <constant>ScanlinePad8</constant>,
                          <constant>ScanlinePad16</constant>,
                          <constant>ScanlinePad32</constant>,
                          <constant>ScanlinePad64</constant> },</entry></row>
          <row><entry>&emsp;<structfield>zero-pad</structfield>:</entry><entry>            2 bits,</entry></row>
          <row><entry>&emsp;<structfield>scanline-unit</structfield>:</entry><entry>       2 bits</entry><entry>{ <constant>ScanlineUnit8</constant>,
                          <constant>ScanlineUnit16</constant>,
                          <constant>ScanlineUnit32</constant>,
                          <constant>ScanlineUnit64</constant> },</entry></row>
          <row><entry>&emsp;<structfield>zero-pad</structfield>:</entry><entry>            2 bits,</entry></row>
          <row><entry>&emsp;<structfield>zero-pad</structfield>:</entry><entry>            16 bits,</entry></row>
          <row><entry>]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This structure specifies how glyph images are transmitted in
response to
<function>QueryXBitmaps8</function>
and
<function>QueryXBitmaps16</function>
requests.
</para>
<para>
If the <structfield>BYTE-ORDER-MSB</structfield> bit
<literal>(1 &lt;&lt; 0)</literal> is set, the Most Significant
Byte of each scanline unit is returned first.  Otherwise, the
Least Significant Byte is returned first.
</para>
<para>
If the <structfield>BIT-ORDER-MSB</structfield> bit
<literal>(1 &lt;&lt; 1)</literal> is set, the left-most bit in
each glyph scanline unit is stored in the Most Significant Bit of
each transmitted scanline unit.  Otherwise, the left-most bit is
stored in the Least Significant Bit.
</para>
<para>
The <structfield>IMAGE-RECT</structfield> field specifies a rectangle of
pixels within the
glyph image.  It contains one of the following alternate values:

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>ImageRectMin</constant></entry><entry><literal>(0 &lt;&lt; 2)</literal></entry></row>
          <row><entry><constant>ImageRectMaxWidth</constant></entry><entry><literal>(1 &lt;&lt; 2)</literal></entry></row>
          <row><entry><constant>ImageRectMax</constant></entry><entry><literal>(2 &lt;&lt; 2)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
For a glyph with extents <type>XCHARINFO</type> in a font with header
information <type>XFONTINFO</type>, the <structfield>IMAGE-RECT</structfield>
values have the following meanings:
<variablelist>
  <varlistentry id="Constant:ImageRectMin">
    <term><constant>ImageRectMin</constant></term>
    <listitem>
      <indexterm zone="Constant:ImageRectMin" significance="preferred"><primary>ImageRectMin</primary></indexterm>
      <para>
This refers to the minimal bounding rectangle
surrounding the inked pixels in the glyph.  This is the
most compact representation.  The edges of the rectangle
are:
<literallayout class="monospaced">
         left:     <structfield>XCHARINFO.LBEARING</structfield>
         right:    <structfield>XCHARINFO.RBEARING</structfield>
         top:      <structfield>XCHARINFO.ASCENT</structfield>
         bottom:   <structfield>XCHARINFO.DESCENT</structfield>
</literallayout>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:ImageRectMaxWidth">
    <term><constant>ImageRectMaxWidth</constant></term>
    <listitem>
      <indexterm zone="Constant:ImageRectMaxWidth" significance="preferred"><primary>ImageRectMaxWidth</primary></indexterm>
      <para>
This refers to the scanlines between the
glyph's ascent and descent, padded on the left to the minimum
left-bearing (or 0, whichever is less) and on the right to
the maximum right-bearing (or logical-width, whichever is
greater).  All glyph images share a common horizontal
origin.  This is a combination of <constant>ImageRectMax</constant> in the
horizontal direction and <constant>ImageRectMin</constant> in the vertical
direction.  The edges of the rectangle are:

<literallayout class="monospaced">
left:         min (<structfield>XFONTINFO.MIN-BOUNDS.LBEARING</structfield>, 0)
right:        max (<structfield>XFONTINFO.MAX-BOUNDS.RBEARING</structfield>,
                   <structfield>XFONTINFO.MAX-BOUNDS.WIDTH</structfield>)
top:               <structfield>XCHARINFO.ASCENT</structfield>
bottom:            <structfield>XCHARINFO.DESCENT</structfield>
</literallayout>
      </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:ImageRectMax">
    <term><constant>ImageRectMax</constant></term>
    <listitem>
      <indexterm zone="Constant:ImageRectMax" significance="preferred"><primary>ImageRectMax</primary></indexterm>
      <para>
This refers to all scanlines, from the maximum
ascent (or the font ascent, whichever is greater) to the
maximum descent (or the font descent, whichever is greater),
padded to the same horizontal extents as MaxWidth.
All glyph images have the same sized bitmap and share a
common origin.  This is the least compact representation,
but may be the easiest or most efficient (particularly for
character cell fonts) for some clients to use.  The edges of
the rectangle are:

<literallayout class="monospaced">
left:         min (<structfield>XFONTINFO.MIN-BOUNDS.LBEARING</structfield>, 0)
right:        max (<structfield>XFONTINFO.MAX-BOUNDS.RBEARING</structfield>,
                   <structfield>XFONTINFO.MAX-BOUNDS.WIDTH</structfield>)
top:          max (<structfield>XFONTINFO.FONT-ASCENT</structfield>,
                   <structfield>XFONTINFO.MAX-BOUNDS.ASCENT</structfield>)
bottom:       max (<structfield>XFONTINFO.FONT-DESCENT</structfield>,
                   <structfield>XFONTINFO.MAX-BOUNDS.DESCENT</structfield>)
</literallayout>
      </para>
    </listitem>
  </varlistentry>
</variablelist>
</para>
<para>
The <structfield>SCANLINE-PAD</structfield> field specifies the number of
bits (8, 16, 32,
or 64) to which each glyph scanline is padded before transmitting.
It contains one of the following alternate values:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>ScanlinePad8</constant></entry><entry><literal>(0 &lt;&lt; 8)</literal></entry></row>
          <row><entry><constant>ScanlinePad16</constant></entry><entry><literal>(1 &lt;&lt; 8)</literal></entry></row>
          <row><entry><constant>ScanlinePad32</constant></entry><entry><literal>(2 &lt;&lt; 8)</literal></entry></row>
          <row><entry><constant>ScanlinePad64</constant></entry><entry><literal>(3 &lt;&lt; 8)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The <structfield>SCANLINE-UNIT</structfield> field specifies the number of
bits (8, 16, 32, or 64) that should be treated as a unit for swapping.
This value must be less than or equal to the number of bits specified by the
<structfield>SCANLINE-PAD</structfield>.  It contains one of the following
alternate values:

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>ScanlineUnit8</constant></entry><entry><literal>(0 &lt;&lt; 12)</literal></entry></row>
          <row><entry><constant>ScanlineUnit16</constant></entry><entry><literal>(1 &lt;&lt; 12)</literal></entry></row>
          <row><entry><constant>ScanlineUnit32</constant></entry><entry><literal>(2 &lt;&lt; 12)</literal></entry></row>
          <row><entry><constant>ScanlineUnit64</constant></entry><entry><literal>(3 &lt;&lt; 12)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
<type>BITMAPFORMAT</type>s are byte-swapped as <type>CARD32</type>s.
All unspecified bits must be zero.
</para>
<para>
Use of an invalid <type>BITMAPFORMAT</type> causes a
<errorname>Format</errorname> error to be returned.
</para>
</section>

<section id="Data_Types:BITMAPFORMATMASK">
  <title><type>BITMAPFORMATMASK</type></title>
  <indexterm zone="Data_Types:BITMAPFORMATMASK" significance="preferred"><primary>BITMAPFORMATMASK</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>BITMAPFORMATMASK</type>:</entry><entry>     <type>CARD32</type> mask</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
This is a mask of bits representing the fields in a <type>BITMAPFORMAT</type>:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>ByteOrderMask</constant></entry><entry><literal>(1 &lt;&lt; 0)</literal></entry></row>
          <row><entry><constant>BitOrderMask</constant></entry><entry><literal>(1 &lt;&lt; 1)</literal></entry></row>
          <row><entry><constant>ImageRectMask</constant></entry><entry><literal>(1 &lt;&lt; 2)</literal></entry></row>
          <row><entry><constant>ScanlinePadMask</constant></entry><entry><literal>(1 &lt;&lt; 3)</literal></entry></row>
          <row><entry><constant>ScanlineUnitMask</constant></entry><entry><literal>(1 &lt;&lt; 4)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
Unspecified bits are required to be zero or else a
<errorname>Format</errorname> error is returned.
</para>
</section>

<section id="Data_Types:BOOL">
  <title><type>BOOL</type></title>
  <indexterm zone="Data_Types:BOOL" significance="preferred"><primary>BOOL</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>BOOL</type>:</entry><entry>  <type>CARD8</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
This is a boolean value containing one of the following alternate
values:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>False</constant></entry><entry><literal>0</literal></entry></row>
          <row><entry><constant>True</constant></entry><entry><literal>1</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
</section>

<section id="Data_Types:BYTE">
  <title><type>BYTE</type></title>
  <indexterm zone="Data_Types:BYTE" significance="preferred"><primary>BYTE</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>BYTE</type>:</entry><entry>  8-bit value</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This is an unsigned byte of data whose encoding
is determined by the context in which it is used.
</para>

</section>

<section id="Data_Types:CARDn">
  <title><type>CARD8</type>, <type>CARD16</type>, <type>CARD32</type></title>
  <indexterm zone="Data_Types:CARDn" significance="preferred"><primary>CARD8</primary></indexterm>
  <indexterm zone="Data_Types:CARDn" significance="preferred"><primary>CARD16</primary></indexterm>
  <indexterm zone="Data_Types:CARDn" significance="preferred"><primary>CARD32</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>CARD8</type>:</entry><entry>  8-bit unsigned integer</entry></row>
          <row><entry><type>CARD16</type>:</entry><entry>  16-bit unsigned integer</entry></row>
          <row><entry><type>CARD32</type>:</entry><entry>  32-bit unsigned integer</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
These are unsigned numbers.  The latter two are byte-swapped when
the server and client have different byte orders.
</para>

</section>

<section id="Data_Types:CHAR2B">
  <title><type>CHAR2B</type></title>
  <indexterm zone="Data_Types:CHAR2B" significance="preferred"><primary>CHAR2B</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>CHAR2B</type>:</entry><entry>[ <structfield>byte1</structfield>, <structfield>byte2</structfield>:</entry><entry><type>CARD8</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
This structure specifies an individual character code within
either a 2-dimensional matrix (using <structfield>BYTE1</structfield>
and <structfield>BYTE2</structfield> as the row and column indices,
respectively) or a vector (using <structfield>BYTE1</structfield> and
<structfield>BYTE2</structfield> as most- and least-significant bytes,
respectively).  This data type is treated as a pair of 8-bit values and
is never byte-swapped.  Therefore, the client should always transmit
<structfield>BYTE1</structfield> first.
</para>

</section>

<section id="Data_Types:EVENTMASK">
  <title><type>EVENTMASK</type></title>
  <indexterm zone="Data_Types:EVENTMASK" significance="preferred"><primary>EVENTMASK</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>EVENTMASK</type>:</entry><entry>  <type>CARD32</type> mask</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This is a mask of bits indicating which of an extension's (or the
core's) maskable events the client would like to receive.  Each
bit indicates one or more events, and a bit value of one indicates
interest in a corresponding set of events.  The following bits are
defined for event masks specified for the core protocol (i.e. an
<parameter>EXTENSION-OPCODE</parameter> of zero in
<function>SetEventMask</function>
and
<function>GetEventMask</function>
requests):

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>CatalogueListChangeMask</constant></entry><entry><literal>(1 &lt;&lt; 0)</literal></entry></row>
          <row><entry><constant>FontListChangeMask</constant></entry><entry><literal>(1 &lt;&lt; 1)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>

<para>
If
<constant>CatalogueListChangeMask</constant>
is set, client is interested in
receiving
<function>CatalogueListNotify</function>
events.  If
<constant>FontListChangeMask</constant>
is set, the client is interested in
receiving
<function>FontListNotify</function>
events.
</para>
<para>
Extensions that provide additional events may define their own
event masks.  These event masks have their own scope and may use
the same bit values as the core or other extensions.
    </para>
    <para>
All unused bits must be set to zero.  In
<function>SetEventMask</function>
requests, if
any bits are set that are not defined for the extension (or core)
for which this <type>EVENTMASK</type> is intended (according to the
<parameter>EXTENSION-OPCODE</parameter> given in the
<function>SetEventMask</function>
request), an
<errorname>EventMask</errorname>
error is generated.
    </para>
    <para>
This value is swapped as a <type>CARD32</type>.
    </para>

</section>

<section id="Data_Types:FONTID">
  <title><type>FONTID</type></title>
  <indexterm zone="Data_Types:FONTID" significance="preferred"><primary>FONTID</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>FONTID</type>:</entry><entry>     <type>ID</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This is specified by the client in the request
<function>OpenBitmapFont</function>
as the identifier to be used when referring to a particular open
font.
</para>

</section>

<section id="Data_Types:ID">
  <title><type>ID</type></title>
  <indexterm zone="Data_Types:ID" significance="preferred"><primary>ID</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>ID</type>:</entry><entry>  <type>CARD32</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
This is a 32-bit value in which the top 3 bits must be clear, and
at least 1 other bit must be set (yielding a range of 1 through
2<superscript>29</superscript>-1).
It is specified by the client to represent objects in
the server.  Identifiers are scoped according to their type are
private to the client; thus, the same identifier may be used for
both a <type>FONTID</type> and an <type>ACCESSCONTEXT</type>
as well as by multiple clients.
</para>
<para>
An <type>ID</type> of zero is referred to as <constant>None</constant>.
</para>
</section>

<section id="Data_Types:INTn">
  <title><type>INT8</type>, <type>INT16</type>, <type>INT32</type></title>
  <indexterm zone="Data_Types:INTn" significance="preferred"><primary>INT8</primary></indexterm>
  <indexterm zone="Data_Types:INTn" significance="preferred"><primary>INT16</primary></indexterm>
  <indexterm zone="Data_Types:INTn" significance="preferred"><primary>INT32</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>INT8</type>:</entry><entry>  8-bit signed integer</entry></row>
          <row><entry><type>INT16</type>:</entry><entry>  16-bit signed integer</entry></row>
          <row><entry><type>INT32</type>:</entry><entry>  32-bit signed integer</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

<para>
These are signed numbers.  The latter two are byte-swapped when
the client and server have different byte orders.
</para>
</section>

<section id="Data_Types:OFFSET32">
  <title><type>OFFSET32</type></title>
  <indexterm zone="Data_Types:OFFSET32" significance="preferred"><primary>OFFSET32</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='1'><type>OFFSET32</type>:</entry>
          <entry>[ <structfield>position</structfield>:</entry><entry><type>CARD32</type>,</entry></row>
          <row><entry>&emsp;<structfield>length</structfield>:</entry><entry><type>CARD32</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This structure indicates a position and length within a block of
data.
    </para>
</section>

<section id="Data_Types:PROPINFO">
  <title><type>PROPINFO</type></title>
  <indexterm zone="Data_Types:PROPINFO" significance="preferred"><primary>PROPINFO</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='1'><type>PROPINFO</type>:</entry>
          <entry>[ <structfield>offsets</structfield>:</entry><entry><type>LISTofPROPOFFSET</type>,</entry></row>
          <row><entry>&emsp;<structfield>data</structfield>:</entry><entry><type>LISTofBYTE</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

    <para>
This structure describes the list of properties provided by a
font.  Strings for all of the properties names and values are
stored within the data block and are located using a table of
offsets and lengths.
    </para>
    <para>
This structure is padded to 32-bit alignment.
    </para>

</section>

<section id="Data_Types:PROPOFFSET">
  <title><type>PROPOFFSET</type></title>
  <indexterm zone="Data_Types:PROPOFFSET" significance="preferred"><primary>PROPOFFSET</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='3'><type>PROPOFFSET</type>:</entry>
          <entry>[ <structfield>name</structfield>:</entry><entry><type>OFFSET32</type>,</entry></row>
          <row><entry>&emsp;<structfield>value</structfield>:</entry><entry><type>OFFSET32</type>,</entry></row>
          <row><entry>&emsp;<structfield>type</structfield>:</entry><entry><type>CARD8</type>,</entry></row>
          <row><entry>&emsp;<structfield>zero-pad3</structfield>:</entry><entry><type>BYTE</type>, <type>BYTE</type>, <type>BYTE</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

    <para>
This structure specifies the position, length, and type of
of data for a property.
    </para>
    <para>
The <structfield>NAME</structfield> field specifies the position and length
(which must be
greater than zero) of the property name relative to the beginning
of the <structfield>PROPINFO.DATA</structfield> block for this font.
The interpretation of
the position and length of the <structfield>VALUE</structfield> field is
determined by the <structfield>TYPE</structfield> field, which contains
one of the following alternate values:

     <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>String</constant></entry><entry><literal>0</literal></entry></row>
          <row><entry><constant>Unsigned</constant></entry><entry><literal>1</literal></entry></row>
          <row><entry><constant>Signed</constant></entry><entry><literal>2</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
which have the following meanings:
<variablelist>
  <varlistentry id="Constant:String">
    <term><constant>String</constant></term>
    <listitem>
      <indexterm zone="Constant:String" significance="preferred"><primary>String</primary></indexterm>
      <para>
This property contains a counted string of bytes.  The
data is stored in the <structfield>PROPINFO.DATA</structfield>
block beginning at
relative byte VALUE.POSITION (beginning with zero), extending
for VALUE.LENGTH (at least zero) bytes.
      </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:Unsigned">
    <term><constant>Unsigned</constant></term>
    <listitem>
      <indexterm zone="Constant:Unsigned" significance="preferred"><primary>Unsigned</primary></indexterm>
    <para>
This property contains a unsigned, 32-bit number stored
as a <type>CARD32</type> in VALUE.POSITION (VALUE.LENGTH is zero).
    </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:Signed">
    <term><constant>Signed</constant></term>
    <listitem>
      <indexterm zone="Constant:Signed" significance="preferred"><primary>Signed</primary></indexterm>
      <para>
This property contains a signed, 32-bit number stored as
an <type>INT32</type> in VALUE.POSITION (VALUE.LENGTH is zero).
      </para>
    </listitem>
  </varlistentry>
</variablelist>
This structure is zero-padded to 32-bit alignment.
</para>

</section>

<section id="Data_Types:RANGE">
  <title><type>RANGE</type></title>
  <indexterm zone="Data_Types:RANGE" significance="preferred"><primary>RANGE</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>RANGE</type>:</entry>
          <entry>[ <structfield>min-char</structfield>, <structfield>max-char</structfield>:</entry><entry><type>CHAR2B</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This structure specifies a range of character codes.  A single
character is represented by <structfield>MIN-CHAR</structfield> equals
<structfield>MAX-CHAR</structfield>.  If the linear interpretation of
<structfield>MAX-CHAR</structfield> is less than that of
<structfield>MIN-CHAR</structfield>, or if
<structfield>MIN-CHAR</structfield> is less than the font's
<structfield>XFONTINFO.CHAR-RANGE.MIN-CHAR</structfield>, or if
<structfield>MAX-CHAR</structfield> is greater than the
font's <structfield>XFONTINFO.CHAR-RANGE.MAX-CHAR</structfield>,
the range is invalid.
  </para>

</section>

<section id="Data_Types:RESOLUTION">
  <title><type>RESOLUTION</type></title>
  <indexterm zone="Data_Types:RESOLUTION" significance="preferred"><primary>RESOLUTION</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='2'><type>RESOLUTION</type>:</entry>
          <entry>[ <structfield>x-resolution</structfield>:</entry><entry><type>CARD16</type>,</entry></row>
          <row><entry>&emsp;<structfield>y-resolution</structfield>:</entry><entry><type>CARD16</type>,</entry></row>
          <row><entry>&emsp;<structfield>decipoint-size</structfield>:</entry><entry><type>CARD16</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This structure specifies resolution and point size to be used in
resolving partially-specified scaled font names.  The
<structfield>X-RESOLUTION</structfield> and
<structfield>Y-RESOLUTION</structfield> are measured in
pixels-per-inch and must be greater than zero.
The <structfield>DECIPOINT-SIZE</structfield> is the preferred font
size, measured in tenths of a point, and must be greater than zero.
  </para>

</section>

<section id="Data_Types:STRING8">
  <title><type>STRING8</type></title>
  <indexterm zone="Data_Types:STRING8" significance="preferred"><primary>STRING8</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>STRING8</type>:</entry><entry>          <type>LISTofCARD8</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This is a counted list of 1-byte character codes, typically
encoded in <acronym>ISO</acronym> 8859-1.  A character code
<quote><literal>c</literal></quote> is equivalent to a
<type>CHAR2B</type> structure whose <structfield>BYTE1</structfield>
is zero and whose <structfield>BYTE2</structfield> is
<quote><literal>c</literal></quote>.
  </para>

</section>

<section id="Data_Types:TIMESTAMP">
  <title><type>TIMESTAMP</type></title>
  <indexterm zone="Data_Types:TIMESTAMP" significance="preferred"><primary>TIMESTAMP</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><type>TIMESTAMP</type>:</entry><entry>     <type>CARD32</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This is the number of milliseconds that have passed since a
server-dependent origin.  It is provided in errors and events and is
permitted to wrap.
  </para>
</section>

<section id="Data_Types:XCHARINFO">
  <title><type>XCHARINFO</type></title>
  <indexterm zone="Data_Types:XCHARINFO" significance="preferred"><primary>XCHARINFO</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='3'><type>XCHARINFO</type>:</entry>
          <entry>[ <structfield>lbearing</structfield>, <structfield>rbearing</structfield>:</entry><entry><type>INT16</type>,</entry></row>
          <row><entry>&emsp;<structfield>width</structfield>:</entry><entry><type>INT16</type>,</entry></row>
          <row><entry>&emsp;<structfield>ascent</structfield>, <structfield>descent</structfield>:</entry><entry><type>INT16</type>,</entry></row>
          <row><entry>&emsp;<structfield>attributes</structfield>:</entry><entry><type>CARD16</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This structure specifies the ink extents and horizontal escapement
(also known as the set- or logical width) of an individual
character.  The first five values represent directed distances in
a coordinate system whose origin is aligned with the lower-left
edge of the left-most pixel of the glyph baseline (i.e. the
baseline falls between two pixels as shown in Figure 3-1 of the
<citetitle>Bitmap Distribution Format 2.1</citetitle> Consortium standard
<xref linkend="References:bdf-spec"/>).
  </para>
  <para>
The <structfield>LBEARING</structfield> field specifies the
directed distance measured to the
right from the origin to the left edge of the left-most inked
pixel in the glyph.
  </para>
  <para>
The <structfield>RBEARING</structfield> field specifies the
directed distance (measured to
the right) from the origin to the right edge of the right-most
inked pixel in the glyph.
  </para>
  <para>
The <structfield>WIDTH</structfield> field specifies the
directed distance (measured to the
right) from the origin to the position where the next character
should appear (called the <firstterm>escapement point</firstterm>). This
distance includes any whitespace used for intercharacter padding and is
also referred to as the <firstterm>logical width</firstterm> or
<firstterm>horizontal escapement</firstterm>.
<indexterm zone="Data_Types:XCHARINFO" significance="preferred"><primary>horizontal escapement</primary></indexterm>
  </para>
  <para>
The <structfield>ASCENT</structfield> field specifies the
directed distance (measured up)
from the baseline to the top edge of the top-most inked pixel
in the glyph.
  </para>
  <para>
The <structfield>DESCENT</structfield> field specifies the
directed distance (measured
down) from the baseline to the bottom edge of the bottom-most
inked pixel.
  </para>
  <para>
The <structfield>ATTRIBUTES</structfield> field specifies
glyph-specific information that
is passed through the application.  If this value is not being
used, it should be zero.
  </para>
  <para>
The ink bounding box of a glyph is defined to be the smallest
rectangle that encloses all of the inked pixels.  This box has
a width of
<structfield>RBEARING</structfield> &minus; <structfield>LBEARING</structfield>
pixels and a height of
<structfield>ASCENT</structfield> + <structfield>DESCENT</structfield> pixels.
  </para>
</section>

<section id="Data_Types:XFONTINFO">
  <title><type>XFONTINFO</type></title>
  <indexterm zone="Data_Types:XFONTINFO" significance="preferred"><primary>XFONTINFO</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry morerows='8'><type>XFONTINFO</type>:</entry>
          <entry>[ <structfield>flags</structfield>:</entry><entry><type>CARD32</type>,</entry></row>
          <row><entry>&emsp;<structfield>drawing-direction</structfield>:</entry><entry>{ <constant>LeftToRight</constant>, <constant>RightToLeft</constant> }</entry></row>
          <row><entry>&emsp;<structfield>char-range</structfield>:</entry><entry><type>RANGE</type>,</entry></row>
          <row><entry>&emsp;<structfield>default-char</structfield>:</entry><entry><type>CHAR2B</type>,</entry></row>
          <row><entry>&emsp;<structfield>min-bounds</structfield>:</entry><entry><type>XCHARINFO</type>,</entry></row>
          <row><entry>&emsp;<structfield>max-bounds</structfield>:</entry><entry><type>XCHARINFO</type>,</entry></row>
          <row><entry>&emsp;<structfield>font-ascent</structfield>:</entry><entry><type>INT16</type>,</entry></row>
          <row><entry>&emsp;<structfield>font-descent</structfield>:</entry><entry><type>INT16</type>,</entry></row>
          <row><entry>&emsp;<structfield>properties</structfield>:</entry><entry><type>PROPINFO</type> ]</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
  <para>
This structure specifies attributes related to the font as a
whole.
  </para>
  <para>
The <structfield>FLAGS</structfield> field is a bit mask containing zero
or more of the following boolean values (unspecified bits must be zero):

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>AllCharactersExist</constant></entry><entry><literal>(1 &lt;&lt; 0)</literal></entry></row>
          <row><entry><constant>InkInside</constant></entry><entry><literal>(1 &lt;&lt; 1)</literal></entry></row>
          <row><entry><constant>HorizontalOverlap</constant></entry><entry><literal>(1 &lt;&lt; 2)</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

which have the following meanings:
<variablelist>
  <varlistentry id="Constant:AllCharactersExist">
    <term><constant>AllCharactersExist</constant></term>
    <listitem>
      <indexterm zone="Constant:AllCharactersExist" significance="preferred"><primary>AllCharactersExist</primary></indexterm>
    <para>
If this bit is set, all of the characters in the range given by
<structfield>CHAR-RANGE</structfield> have glyphs encoded in
the font.  If this bit is clear, some of the characters
may not have encoded glyphs.
    </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:InkInside">
    <term><constant>InkInside</constant></term>
    <listitem>
      <indexterm zone="Constant:InkInside" significance="preferred"><primary>InkInside</primary></indexterm>
    <para>
If this bit is set, the inked pixels of each glyph
fall within the rectangle described by the font's ascent,
descent, origin, and the glyph's escapement point.  If
this bit is clear, there may be glyphs whose ink extends
outside this rectangle.
    </para>
    </listitem>
  </varlistentry>
  <varlistentry id="Constant:HorizontalOverlap">
    <term><constant>HorizontalOverlap</constant></term>
    <listitem>
      <indexterm zone="Constant:HorizontalOverlap" significance="preferred"><primary>HorizontalOverlap</primary></indexterm>
    <para>
If this bit is set, the two ink bounding
boxes (smallest rectangle enclosing the inked pixels) of
some pairs of glyphs in the font may overlap when displayed
side-by-side (i.e. the second character is imaged at the
escapement point of the first) on a common baseline.  If
this bit is clear, there are no pairs of glyphs whose ink
bounding boxes overlap.
    </para>
    </listitem>
  </varlistentry>
</variablelist>
</para>
<para id="Data_Types:XFONTINFO.DRAWING-DIRECTION">
  <indexterm zone="Data_Types:XFONTINFO.DRAWING-DIRECTION" significance="preferred"><primary>LeftToRight</primary></indexterm>
  <indexterm zone="Data_Types:XFONTINFO.DRAWING-DIRECTION" significance="preferred"><primary>RightToLeft</primary></indexterm>
The <structfield>DRAWING-DIRECTION</structfield> field contains a hint
indicating whether most of the character metrics have a positive (or
<quote><constant>LeftToRight</constant></quote>) logical width or a
negative (<quote><constant>RightToLeft</constant></quote>) logical width.  It
contains the following alternate values:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>LeftToRight</constant></entry><entry><literal>0</literal></entry></row>
          <row><entry><constant>RightToLeft</constant></entry><entry><literal>1</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The <structfield>CHAR-RANGE.MIN-CHAR</structfield>
and <structfield>CHAR-RANGE.MAX-CHAR</structfield> fields specify the
first and last character codes that have glyphs encoded in this font.
All fonts must have at least one encoded glyph (in which case the
<structfield>MIN-CHAR</structfield> and <structfield>MAX-CHAR</structfield>
are equal), but are not required to have glyphs
encoded at all positions between the first and last characters.
</para>
<para>
The <structfield>DEFAULT-CHAR</structfield> field specifies
the character code of the glyph
that the client should substitute for unencoded characters.  Requests
for extents or bitmaps for an unencoded character generate zero-filled
metrics and a zero-length glyph bitmap, respectively.
</para>
<para>
The <structfield>MIN-BOUNDS</structfield> and
<structfield>MAX-BOUNDS</structfield> fields contain the minimum and maximum
values of each of the extents field of all encoded characters in the
font (i.e. non-existent characters are ignored).
</para>
<para>
The <structfield>FONT-ASCENT</structfield> and
<structfield>FONT-DESCENT</structfield> fields specify the font designer's
logical height of the font, above and below the baseline,
respectively.  The sum of the two values is often used as the
vertical line spacing of the font.  Individual glyphs are permitted
to have ascents and descents that are greater than these values.
</para>
<para>
The <structfield>PROPERTIES</structfield> field contains the
property data associated with this font.
</para>
<para>
This structure is padded to 32-bit alignment.
</para>
</section>
</section>

<section id='Requests'>
<title>Requests</title>
<!-- .XS -->
<!-- (SN Requests -->
<!-- .XE -->
<para>
<!-- .LP -->
This section describes the requests that may be sent by the client and the
replies or errors that are generated in response.  Versions of the protocol
with the same major version are required to be upward-compatible.
</para>
<para>
<!-- .LP -->
Every request on a given connection is implicitly assigned a sequence number,
starting with 1, that is used in replies, error, and events.  Servers are
required to generate replies and errors in the order in which the corresponding
requests are received.  Servers are permitted to add or remove fonts to the
list visible to the client between any two requests, but requests must be
processed atomically.  Each request packet is at least 4 bytes long and
contains the following fields:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>major-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>minor-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>length</parameter>:</entry><entry><type>CARD16</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The MAJOR-OPCODE specifies which core request or extension package this packet
represents.  If the MAJOR-OPCODE corresponds to a core request, the
MINOR-OPCODE contains 8 bits of request-specific data.  Otherwise, the
MINOR-OPCODE specifies which extension request this packet represents.  The
LENGTH field specifies the number of 4-byte units contained within the packet
and must be at least one.  If this field contains a value greater than one it
is followed by (LENGTH - 1) * 4 bytes of request-specific data.  Unless
otherwise specified, unused bytes are not required to be zero.
</para>
<para>
<!-- .LP -->
If a request packet contains too little or too much data, the server returns
a <errorname>Length</errorname> error.  If the server runs out of internal
resources (such as memory) while processing a request, it returns an
<errorname>Alloc</errorname> error.  If a server is
deficient (and therefore non-compliant) and is unable to process a request, it
may return an <errorname>Implementation</errorname> error.
If a client uses an extension request without previously having issued a
<function>QueryExtension</function>
request for that extension, the server responds with a
<errorname>Request</errorname>
error.  If the server encounters a request
with an unknown MAJOR-OPCODE or MINOR-OPCODE, it responds with a
<errorname>Request</errorname>
error.
At most one error is generated per request.  If more than one error condition
is encountered in processing a requests, the choice of which error is returned
is server-dependent.
</para>
<para>
<!-- .LP -->
Core requests have MAJOR-OPCODE values between 0 and 127, inclusive.  Extension
requests have MAJOR-OPCODE values between 128 and 255, inclusive, that are
assigned by by the server.  All MINOR-OPCODE values in extension requests are
between 0 and 255, inclusive.
</para>
<para>
<!-- .LP -->
Each reply is at least 8 bytes long and contains the following fields:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>type</parameter>:</entry><entry><type>CARD8</type></entry><entry>value of 0</entry></row>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>sequence-number</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>length</parameter>:</entry><entry><type>CARD32</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The TYPE field has a value of zero.  The DATA-OR-UNUSED field may be used to
encode one byte of reply-specific data (see
<link linkend="Encoding::Requests">Section 5.2 on request encoding</link>).
The least-significant 16 bits of the sequence number of the request that
generated the reply are stored in the SEQUENCE-NUMBER field.  The LENGTH field
specifies the number of 4-byte units in this reply packet, including the fields
described above, and must be at least two.  If LENGTH is greater than two, the
fields described above are followed by (LENGTH - 2) * 4 bytes of additional
data.
</para>
<para>
<!-- .LP -->
Requests that have replies are described using the following syntax:
  <blockquote><para>
    <emphasis role="bold"><function>RequestName</function></emphasis>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>arg1</parameter>:</entry><entry><type>type1</type></entry></row>
          <row><entry><parameter>arg2</parameter>:</entry><entry><type>type2</type></entry></row>
          <row><entry> ...</entry></row>
          <row><entry><parameter>argN</parameter>:</entry><entry><type>typeN</type></entry></row>
          <row><entry> ▶</entry></row>
          <row><entry><parameter>result1</parameter>:</entry><entry><type>type1</type></entry></row>
          <row><entry><parameter>result2</parameter>:</entry><entry><type>type2</type></entry></row>
          <row><entry> ...</entry></row>
          <row rowsep="1"><entry><parameter>resultM</parameter>:</entry><entry><type>typeM</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>kind1</errorname>, <errorname>kind2</errorname> ..., <errorname>kindK</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    Description
  </para></blockquote>
</para>
<para>
If a request does not generate a reply, the ▶ and result lines are
omitted.  If a request may generate multiple replies, the ▶ is replaced by
a ▶+.  In the authorization data exchanges in the initial connection setup
and the CreateAC request, ◀ indicates data sent by the client in response
to data sent by the server.
</para>
<para>
<!-- .LP -->
The protocol begins with the establishment of a connection over a
mutually-understood virtual stream:
</para>

<section id="Requests:open_connection">
    <title>open connection</title>
    <indexterm zone="Requests:open_connection" significance="preferred"><primary>open connection</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='2.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>byte-order</parameter>:</entry><entry><type>BYTE</type></entry></row>
          <row><entry><parameter>client-major-protocol-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>client-minor-protocol-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>authorization-protocols</parameter>:</entry><entry><type>LISTofAUTH</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
The initial byte of the connection specifies the BYTE-ORDER in
which subsequent 16-bit and 32-bit numeric values are to be
transmitted.  The octal value <literal>102</literal>
(<acronym>ASCII</acronym> uppercase <quote><literal>B</literal></quote>)
indicates that the most-significant byte is to be transmitted
first; the octal value <literal>154</literal>
(<acronym>ASCII</acronym> lowercase <quote><literal>l</literal></quote>)
indicates that the least-significant byte is to be transmitted first.
If any other value is encountered the server closes the
connection without any response.
</para>
  <para>
The CLIENT-MAJOR-PROTOCOL-VERSION and
CLIENT-MINOR-PROTOCOL-VERSION specify which version of the
font service protocol the client would like to use.  If the
client can support multiple versions, the highest version
should be given.  This version of the protocol has a
major version of 2 and a minor version of 0.
  </para>
  <para>
The AUTHORIZATION-PROTOCOLS contains a list of protocol names and
optional initial data for which the client can provide
information.  The server may use this to determine which
protocol to use or as part of the initial exchange of
authorization data.
  </para>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='2.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>▶</entry></row>
          <row><entry><parameter>status</parameter>:</entry><entry>{ Success, Continue,
                                  Busy, Denied }</entry></row>
          <row><entry><parameter>server-major-protocol-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>server-minor-protocol-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>alternate-servers-hint</parameter>:</entry><entry><type>LISTofALTERNATESERVER</type></entry></row>
          <row><entry><parameter>authorization-index</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>authorization-data</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
  <para>
The SERVER-MAJOR-PROTOCOL-VERSION and
SERVER-MINOR-PROTOCOL-VERSION specify the version of the font
service protocol that the server expects from the client.  If
the server supports the version specified by the client, this
version number should be returned.  If the client has
requested a higher version than is supported by the server,
the server's highest version should be returned.  Otherwise,
if the client has requested a lower version than is supported
by the server, the server's lowest version should be returned.
It is the client's responsibility to decide whether or not it
can match this version of the protocol.
  </para>
  <para>
The ALTERNATE-SERVERS-HINT is a list of other font servers
that may have related sets of fonts (determined by means
outside this protocol, typically by the system administrator).
Clients may choose to contact these font servers if the
connection is rejected or lost.
  </para>
  <para>
The STATUS field indicates whether the server accepted,
rejected, or would like more information about the connection.
It has one of the following alternate values:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='2.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><constant>Success</constant></entry><entry><literal>0</literal></entry></row>
          <row><entry><constant>Continue</constant></entry><entry><literal>1</literal></entry></row>
          <row><entry><constant>Busy</constant></entry><entry><literal>2</literal></entry></row>
          <row><entry><constant>Denied</constant></entry><entry><literal>3</literal></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
  </para>
  <para>
If STATUS is Denied, the server has rejected the client's
authorization information.  If STATUS is Busy, the server has
simply decided that it cannot provide fonts to this client at
this time (it may be able to at a later time).  In both cases,
AUTHORIZATION-INDEX is set to zero, no authorization-data is
returned, and the server closes the connection after sending
the data described so far.
  </para>
  <para>
Otherwise the AUTHORIZATION-INDEX is set to the index
(beginning with 1) into the AUTHORIZATION-PROTOCOLS list of
the protocol that the server will use for this connection.  If
the server does not want to use any of the given protocols,
this value is set to zero.  The AUTHORIZATION-DATA field is
used to send back authorization protocol-dependent data to the
client (such as a challenge, authentication of the server,
etc.).
  </para>
<para>
<!-- .LP -->
If STATUS is Success, the following section of protocol is
omitted.  Otherwise, if STATUS is Continue, the server expects
more authorization data from the client (i.e. the connection
setup is not finished, so no requests or events may be sent):
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>◀</entry></row>
          <row><entry><parameter>more-authorization-data</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry>▶</entry></row>
          <row><entry><parameter>status</parameter>:</entry><entry>{ Success, Continue, Busy, Denied }</entry></row>
          <row><entry><parameter>more-authorization-data</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The values in STATUS have the same meanings as described
above.  This section of protocol is repeated until the server
either accepts (sets STATUS to Success) or rejects (sets
STATUS to Denied or Busy) the connection.
</para>
<para>
<!-- .LP -->
Once the connection has been accepted and STATUS is Success,
an implicit AccessContext is created for the authorization
data and the protocol continues with the following data sent
from the server:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>▶</entry></row>
          <row><entry><parameter>remaining-length</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>maximum-request-length</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>release-number</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>vendor</parameter>:</entry><entry><type>STRING8</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
The REMAINING-LENGTH specifies the length in 4-byte units of
the remaining data to be transmitted to the client.  The
MAXIMUM-REQUEST-LENGTH specifies the largest request size in
4-byte units that is accepted by the server and must have a
value of at least 4096.  Requests with a length field larger
than this value are ignored and a <errorname>Length</errorname>
error is returned.
The VENDOR string specifies the name of the manufacturer of
the font server.  The RELEASE-NUMBER specifies the particular
release of the server in a manufacturer-dependent manner.
</para>
</section>
<section><title />
<para>
<!-- .LP -->
After the connection is established and the setup information has been
exchanged, the client may issue any of requests described below:
</para>
</section>
<section id="Requests:NoOp">
    <title><function>NoOp</function></title>
    <indexterm zone="Requests:NoOp" significance="preferred"><primary>NoOp</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request does nothing.  It is typically used in response
to a
<function>KeepAlive</function>
event.
    </para>
</section>

<section id="Requests:ListExtensions">
    <title><function>ListExtensions</function></title>
    <indexterm zone="Requests:ListExtensions" significance="preferred"><primary>ListExtensions</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>names</parameter>:</entry><entry><type>LISTofSTRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>

  <para>
This request returns the names of the extension packages
that are supported by the server.  Extension names are
case-sensitive and are encoded in <acronym>ISO</acronym> 8859-1.
  </para>

</section>

<section id="Requests:QueryExtension">
    <title><function>QueryExtension</function></title>
    <indexterm zone="Requests:QueryExtension" significance="preferred"><primary>QueryExtension</primary></indexterm>

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>name</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry>▶</entry></row>
          <row><entry><parameter>present</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>major-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>minor-version</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>major-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>first-event</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>number-events</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>first-error</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row rowsep='1'><entry><parameter>number-errors</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
  <para>
This request determines whether or not the extension package
specified by NAME (encoded in <acronym>ISO</acronym> 8859-1) is supported by the
server and that there is sufficient number of major opcode,
event, and error codes available.  If so, then PRESENT is set
to True, MAJOR-VERSION and MINOR-VERSION are set to the
respective major and minor version numbers of the protocol
that the server would prefer; MAJOR-OPCODE is set to the value
to use in extension requests; FIRST-EVENT is set to the value
of the first extension-specific event code or zero if the
extension does not have any events; NUMBER-EVENTS is set to
the number of new events that the event defines; FIRST-ERROR
is set to the value of the first extension-specific error code
or zero if the extension does not define any new errors; and
NUMBER-ERRORS is set to the number of new errors the extension
defines.
  </para>
  <para>
Otherwise, PRESENT is set to False and the remaining fields are
set to zero.
  </para>
  <para>
The server is free to return different values to different
clients.  Therefore, clients must use this request before
issuing any of the requests in the named extension package or
using the
<function>SetEventMask</function> request to express interest in any of
this extension's events.  Otherwise, a
<errorname>Request</errorname>
error is returned.
  </para>
</section>

<section id="Requests:ListCatalogues">
    <title><function>ListCatalogues</function></title>
    <indexterm zone="Requests:ListCatalogues" significance="preferred"><primary>ListCatalogues</primary></indexterm>

    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>max-names</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry>▶+</entry></row>
          <row><entry><parameter>replies-following-hint</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row rowsep='1'><entry><parameter>names</parameter>:</entry><entry><type>LISTofSTRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns a list of at most MAX-NAMES names
of collections (called catalogues) of fonts that match
the specified PATTERN.  In the pattern (which is encoded
in <acronym>ISO</acronym> 8859-1), the
<quote><literal>?</literal></quote> character (octal <literal>77</literal>)
matches any single character; the
<quote><literal>*</literal></quote> character (octal <literal>52</literal>)
matches any series of zero or more characters; and alphabetic
characters match either upper- or lowercase.  The
returned NAMES are encoded in <acronym>ISO</acronym> 8859-1 and may contain
mixed character cases.
    </para>
    <para>
If PATTERN is of zero length or MAX-NAMES is equal to zero,
one reply containing a zero-length list of names is returned.
This may be used to synchronize the client with the server.
    </para>
    <para>
Servers are free to add or remove catalogues to the set returned by
<function>ListCatalogues</function>
between any two requests.  This request is not
cumulative; repeated uses are processed in isolation and do
result in an iteration through the list.
    </para>
    <para>
To reduce the amount of buffering needed by the server, the
list of names may be split across several reply packets, so
long as the names arrive in the same order that they would
have appeared had they been in a single packet.  The
REPLIES-FOLLOWING-HINT field in all but the last reply
contains a positive value that specifies the number of
replies that are likely, but not required, to follow.  In the
last reply, which may contain zero or more names, this field
is set to zero.
    </para>
</section>

<section id="Requests:SetCatalogues">
    <title><function>SetCatalogues</function></title>
    <indexterm zone="Requests:SetCatalogues" significance="preferred"><primary>SetCatalogues</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row rowsep='1'><entry><parameter>names</parameter>:</entry><entry><type>LISTofSTRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname>,
<errorname>Name</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request sets the list of catalogues whose fonts should be
visible to the client.  The union of the fonts provided by
each of the named catalogues forms the set of fonts whose
names match patterns in
<function>ListFonts</function>,
<function>ListFontsWithXInfo</function>,
and
<function>OpenBitmapFont</function>
requests.  The catalogue names are
case-insensitive and are encoded in <acronym>ISO</acronym> 8859-1.  A zero-length
list resets the client's catalogue list to the
server-dependent default.
    </para>
    <para>
If any of the catalogue names are invalid, a
<errorname>Name</errorname>
error is returned and the request is ignored.
    </para>
</section>

<section id="Requests:GetCatalogues">
    <title><function>GetCatalogues</function></title>
    <indexterm zone="Requests:GetCatalogues" significance="preferred"><primary>GetCatalogues</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>names</parameter>:</entry><entry><type>LISTofSTRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns the current list of catalogue names
(encoded in <acronym>ISO</acronym> 8859-1) associated with the client.  These
catalogues determine the set of fonts that are visible
to
<function>ListFonts</function>,
<function>ListFontsWithXInfo</function>,
and
<function>OpenBitmapFont</function>.
A zero-length list indicates the server's default set of
fonts.  Catalogue names are case-insensitive and may be
returned in mixed case.
    </para>
</section>

<section id="Requests:SetEventMask">
    <title><function>SetEventMask</function></title>
    <indexterm zone="Requests:SetEventMask" significance="preferred"><primary>SetEventMask</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>extension-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row rowsep='1'><entry><parameter>event-mask</parameter>:</entry><entry><type>EVENTMASK</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>EventMask</errorname>,
<errorname>Request</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request specifies the set of maskable events that the
extension indicated by EXTENSION-OPCODE (or zero for the core)
should generate for the client.  Event masks are limited in
scope to the extension (or core) for which they are defined,
so expressing interest in events from one or more extensions
requires multiple uses of this request.
    </para>
    <para>
The default event mask if
<function>SetEventMask</function>
has not been called
is zero, indicating no interest in any maskable events.
Some events are not maskable and cannot be blocked.
    </para>
    <para>
If EXTENSION-OPCODE is not a valid extension opcode previously
returned by
<function>QueryExtension</function>
or zero, a
<errorname>Request</errorname>
error is
returned.  If EVENT-MASK contains any bits that do not
correspond to valid events for the specified extension (or
core), an
<errorname>EventMask</errorname>
error is returned and the request is
ignored.
    </para>
</section>

<section id="Requests:GetEventMask">
    <title><function>GetEventMask</function></title>
    <indexterm zone="Requests:GetEventMask" significance="preferred"><primary>GetEventMask</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>extension-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>event-mask</parameter>:</entry><entry><type>EVENTMASK</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Request</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns the set of maskable core events the
extension indicated by EXTENSION-OPCODE (or the core if zero)
should generate for the client.  Non-maskable events are
always sent to the client.
    </para>
    <para>
If EXTENSION-OPCODE is not a valid extension opcode
previously returned by
<function>QueryExtension</function>
or zero, a
<errorname>Request</errorname>
error is returned.
    </para>
</section>

<section id="Requests:CreateAC">
    <title><function>CreateAC</function></title>
    <indexterm zone="Requests:CreateAC" significance="preferred"><primary>CreateAC</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>ac</parameter>:</entry><entry><type>ACCESSCONTEXT</type></entry></row>
          <row><entry><parameter>authorization-protocols</parameter>:</entry><entry><type>LISTofAUTH</type></entry></row>
          <row><entry>▶</entry></row>
          <row><entry><parameter>status</parameter>:</entry><entry>{ Success, Continue, Denied }</entry></row>
          <row><entry><parameter>authorization-index</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row rowsep='1'><entry><parameter>authorization-data</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>IDChoice</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request creates a new
<type>AccessContext</type>
object within the
server containing the specified authorization data.  When
this
<type>AccessContext</type>
is selected by the client using the
<function>SetAuthorization</function>
request, the data may be used by the server
to determine whether or not the client should be granted
access to particular font information.
    </para>
    <para>
If STATUS is Denied, the server rejects the client's
authorization information and does not associate AC with any
valid
<type>AccessContext</type>.
In this case, AUTHORIZATION-INDEX is set
to zero, and zero bytes of AUTHORIZATION-DATA is returned.
    </para>
    <para>
Otherwise, AUTHORIZATION-INDEX is set to the index (beginning
with 1) into the AUTHORIZATION-PROTOCOLS list of the protocol
that the server will use for this connection.  If the server
does not want to use any of the given protocols, this value is
set to zero.  The AUTHORIZATION-DATA field is used to send
back authorization protocol-dependent data to the client (such
as a challenge, authentication of the server, etc.).
    </para>
    <para>
If STATUS is Continue, the client is expected to continue
the request by sending the following protocol and receiving
the indicated response from the server.  This continues
until STATUS is set to either Success or Denied.
    </para>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>     ◀</entry></row>
          <row><entry><parameter>     more-authorization-data</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry>     ▶</entry></row>
          <row><entry><parameter>status</parameter>:</entry><entry>{ Success, Continue, Denied }</entry></row>
          <row><entry><parameter>    more-authorization-data</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
Once the connection has been accepted and STATUS is Success,
the request is complete.
    </para>
    <para>
If AC is not in the range
[1..2<superscript>29</superscript>-1] or is already associated
with an access context, an <errorname>IDChoice</errorname> error is returned.
    </para>
</section>

<section id="Requests:FreeAC">
    <title><function>FreeAC</function></title>
    <indexterm zone="Requests:FreeAC" significance="preferred"><primary>FreeAC</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>ac</parameter>:</entry><entry><type>ACCESSCONTEXT</type></entry></row>
          <row rowsep='1'><entry>Errors:</entry><entry><errorname>AccessContext</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request indicates that the specified AC should no longer
be associated with a valid access context.  If AC is also the
current
<type>AccessContext</type>
(as set by the
<function>SetAuthorization</function>
request), an implicit
<function>SetAuthorization</function>
of None is done to
restore the
<type>AccessContext</type>
established for the initial
connection setup.  Operations on fonts that were opened under
AC are not affected.  The client may reuse the value of AC in
a subsequent
<function>CreateAC</function>
request.
    </para>
    <para>
If AC isn't associated with any valid authorization previously
created by
<function>CreateAC</function>, an
<errorname>AccessContext</errorname>
error is returned.
    </para>
</section>

<section id="Requests:SetAuthorization">
    <title><function>SetAuthorization</function></title>
    <indexterm zone="Requests:SetAuthorization" significance="preferred"><primary>SetAuthorization</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>ac</parameter>:</entry><entry><type>ACCESSCONTEXT</type></entry></row>
          <row rowsep='1'><entry>Errors:</entry><entry><errorname>AccessContext</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request sets the
<type>AccessContext</type>
to be used for subsequent
requests (except for
<function>QueryXInfo</function>,
<function>QueryXExtents8</function>,
<function>QueryXExtents16</function>,
<function>QueryXBitmaps8</function>,
<function>QueryXBitmaps16</function>
and
<function>CloseFont</function>
which are done under the
<type>AccessContext</type>
of the
corresponding
<function>OpenBitmapFont</function>
).
An AC of None restores the
<type>AccessContext</type>
established for the initial connection setup.
    </para>
    <para>
If AC is neither None nor a value associated with a valid
<type>AccessContext</type>
previously created by
<function>CreateAC</function>,
an
<errorname>AccessContext</errorname>
error is returned.
    </para>
</section>

<section id="Requests:SetResolution">
    <title><function>SetResolution</function></title>
    <indexterm zone="Requests:SetResolution" significance="preferred"><primary>SetResolution</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row rowsep='1'><entry><parameter>resolutions</parameter>:</entry><entry><type>LISTofRESOLUTION</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Resolution</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request provides a hint as to the resolution and
preferred point size of the drawing surfaces for which the
client will be requesting fonts.  The server may use this
information to set the RESOLUTION_X and RESOLUTION_Y fields
of scalable <acronym>XLFD</acronym> font names, to order sets of names based on
their resolutions, and to choose the server-dependent
instance that is used when a partially-specified scalable
fontname is opened.
    </para>
    <para>
If a zero-length list of <type>RESOLUTION</type>s is given, the
server-dependent default value is restored.  Otherwise, if
elements of all of the specified <type>RESOLUTION</type>s are non-zero, the
default resolutions for this client are changed.
    </para>
    <para>
If a <type>RESOLUTION</type> entry contains a zero,
a <errorname>Resolution</errorname> error is
returned and the default resolutions are not changed.
    </para>
</section>

<section id="Requests:GetResolution">
    <title><function>GetResolution</function></title>
    <indexterm zone="Requests:GetResolution" significance="preferred"><primary>GetResolution</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>resolutions</parameter>:</entry><entry><type>LISTofRESOLUTION</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns the current list of default resolutions.
If a client has not performed a
<function>SetResolution</function>,
a server-dependent default value is returned.
    </para>
</section>

<section id="Requests:ListFonts">
    <title><function>ListFonts</function></title>
    <indexterm zone="Requests:ListFonts" significance="preferred"><primary>ListFonts</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>max-names</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry>▶+</entry></row>
          <row><entry><parameter>replies-following-hint</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row rowsep='1'><entry><parameter>names</parameter>:</entry><entry><type>LISTofSTRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns a list of at most MAX-NAMES font names
that match the specified PATTERN, according to matching rules
of the <olink targetdoc='xlfd' targetptr='xlfd'><citetitle>X Logical
Font Description Conventions</citetitle></olink>
<xref linkend="References:xlfd-spec"/>.
In the pattern (which is encoded in <acronym>ISO</acronym> 8859-1) the
<quote><literal>?</literal></quote> character (octal <literal>77</literal>)
matches any single character; the
<quote><literal>*</literal></quote> character (octal <literal>52</literal>)
matches any series of zero or more characters; and
alphabetic characters match either upper- or lowercase.  The
returned NAMES are encoded in <acronym>ISO</acronym> 8859-1 and may contain mixed
character cases.  Font names are not required to be in <acronym>XLFD</acronym>
format.
    </para>
    <para>
If PATTERN is of zero length or MAX-NAMES is equal to zero,
one reply containing a zero-length list of names is returned.
This may be used to synchronize the client with the server.
    </para>
    <para>
Servers are free to add or remove fonts to the set returned by
<function>ListFonts</function>
between any two requests.  This request is not
cumulative; repeated uses are processed in isolation and do
result in an iteration through the list.
    </para>
    <para>
To reduce the amount of buffering needed by the server, the
list of names may be split across several reply packets, so
long as the names arrive in the same order that they would
have appeared had they been in a single packet.  The
REPLIES-FOLLOWING-HINT field in all but the last reply
contains a positive value that specifies the number of
replies that are likely, but not required, to follow.  In the
last reply, which may contain zero or more names, this field
is set to zero.
    </para>
</section>

<section id="Requests:ListFontsWithXInfo">
    <title><function>ListFontsWithXInfo</function></title>
    <indexterm zone="Requests:ListFontsWithXInfo" significance="preferred"><primary>ListFontsWithXInfo</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>max-names</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry>▶+</entry></row>
          <row><entry><parameter>replies-following-hint</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>info</parameter>:</entry><entry><type>XFONTINFO</type></entry></row>
          <row rowsep='1'><entry><parameter>name</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request is similar to
<function>ListFonts</function>
except that a separate
reply containing the name, header, and property data is
generated for each matching font name.  Following these
replies, if any, a final reply containing a zero-length NAME
and no INFO is sent.
    </para>
    <para>
The REPLIES-FOLLOWING-HINT field in all but the last reply
contains a positive value that specifies the number of replies
that are likely, but not required, to follow.  In the last
reply, this field is set to zero.
    </para>
    <para>
If PATTERN is of zero length or if MAX-NAMES is equal to
zero, only the final reply containing a zero-length NAME and
no INFO is returned.  This may be used to synchronize the
client with the server.
    </para>
</section>

<section id="Requests:OpenBitmapFont">
    <title><function>OpenBitmapFont</function></title>
    <indexterm zone="Requests:OpenBitmapFont" significance="preferred"><primary>OpenBitmapFont</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry><parameter>pattern</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>format-mask</parameter>:</entry><entry><type>BITMAPFORMATMASK</type></entry></row>
          <row><entry><parameter>format-hint</parameter>:</entry><entry><type>BITMAPFORMAT</type></entry></row>
          <row><entry>▶</entry></row>
          <row><entry><parameter>otherid</parameter>:</entry><entry><type>FONTID</type> or None</entry></row>
          <row><entry><parameter>otherid-valid</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row rowsep='1'><entry><parameter>cachable</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry>Errors:</entry><entry>
<errorname>IDChoice</errorname>,
<errorname>Name</errorname>,
<errorname>Format</errorname>,
<errorname>AccessContext</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request looks for a server-dependent choice of the
font names that match the specified PATTERN according to the
rules described for
<function>ListFonts</function>.
If no matches are found, a
<errorname>Name</errorname>
error is returned.  Otherwise, the server attempts to
open the font associated with the chosen name.
    </para>
    <para>
Permission to access the font is determined by the server
according the licensing policy used for this font.  The server
may use the client's current
<type>AccessContext</type>
(as set by the most
recent
<function>SetAuthorization</function>
request or the original connection
setup) to determine any client-specific sets of permissions.
After the font has been opened, the client is allowed to
specify a new
<type>AccessContext</type>
with
<function>SetAuthorization</function>
or release
the
<type>AccessContext</type>
using
<function>FreeAC</function>
.  Subsequent
<function>QueryXInfo</function>,
<function>QueryXExtents8</function>,
<function>QueryXExtents16</function>,
<function>QueryXBitmaps8</function>,
<function>QueryXBitmaps16</function>
and
<function>CloseFont</function>
requests on this <type>FONTID</type> are
performed according to permissions granted at the time of the
<function>OpenBitmapFont</function>
request.
    </para>
    <para>
If the server is willing and able to detect that the client
has already opened the font successfully (possibly under a
different name), the OTHERID field may be set to one of the
identifiers previously used to open the font.  The
OTHERID-VALID field indicates whether or not OTHERID is
still associated with an open font: if it is True, the
client may use OTHERID as an alternative to FONTID.
Otherwise, if OTHERID-VALID is False, OTHERID is no longer
open but has not been reused by a subsequent
<function>OpenBitmapFont</function>
request.
    </para>
    <para>
If OTHERID is set to None, then OTHERID-VALID should be set
to False.
    </para>
    <para>
The FORMAT-MASK indicates which fields in FORMAT-HINT
the client is likely to use in subsequent
<function>GetXBitmaps8</function>
and
<function>GetXBitmaps16</function>
requests.  Servers may wish to use
this information to precompute certain values.
    </para>
    <para>
If CACHABLE is set to True, the client may cache the font
(so that redundant opens of the same font may be avoided)
and use it with all
<type>AccessContext</type>s
during the life of the
client without violating the font's licensing policy.  This
flag is typically set whenever a font is unlicensed or is
licensed on a per-display basis.  If CACHABLE is False, the
client should reopen the font for each
<type>AccessContext</type>.
    </para>
    <para>
The server is permitted to add to or remove from the set of
fonts returned by
<function>ListFonts</function>
between any two requests, though
mechanisms outside the protocol.  Therefore, it is possible
for this request (which is atomic) to return a different font
than would result from separate a
<function>ListFonts</function>
followed by an
<function>OpenBitmapFont</function>
with a non-wildcarded font name.
    </para>
    <para>
If FONTID is not in the range
[1..2<superscript>29</superscript>-1] or if it is already
associated with an open font, an
<errorname>IDChoice</errorname>
error is returned.
If no font is available that matches the specified PATTERN, a
<errorname>Name</errorname>
error is returned.  If the font is present but the client
is not permitted access, an
<errorname>AccessContext</errorname>
error is returned.
If FORMAT-MASK has any unspecified bits set or if any of the
fields in FORMAT-HINT indicated by FORMAT-MASK are invalid, a
<errorname>Format</errorname>
error is returned.
    </para>
</section>

<section id="Requests:QueryXInfo">
    <title><function>QueryXInfo</function></title>
    <indexterm zone="Requests:QueryXInfo" significance="preferred"><primary>QueryXInfo</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>info</parameter>:</entry><entry><type>XFONTINFO</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Font</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns the font header and property information
for the open font associated with FONTID.
    </para>
    <para>
If FONTID is not associated with any open fonts, a
<errorname>Font</errorname>
error
is returned.
    </para>
</section>

<section id="Requests:QueryXExtents8">
    <title><function>QueryXExtents8</function></title>
    <indexterm zone="Requests:QueryXExtents8" significance="preferred"><primary>QueryXExtents8</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry><parameter>range</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>chars</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>extents</parameter>:</entry><entry><type>LISTofXCHARINFO</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Font</errorname>,
<errorname>Range</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request is equivalent to
<function>QueryXExtents16</function>
except that it
uses 1-byte character codes.
    </para>
</section>

<section id="Requests:QueryXExtents16">
    <title><function>QueryXExtents16</function></title>
    <indexterm zone="Requests:QueryXExtents16" significance="preferred"><primary>QueryXExtents16</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry><parameter>range</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>chars</parameter>:</entry><entry><type>LISTofCHAR2B</type></entry></row>
          <row><entry>▶</entry></row>
          <row rowsep='1'><entry><parameter>extents</parameter>:</entry><entry><type>LISTofXCHARINFO</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Font</errorname>,
<errorname>Range</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns a list of glyph extents from the open
font associated with FONTID for the series of characters
specified by RANGE and CHARS.
    </para>
    <para>
If RANGE is True, each succeeding pair of elements in CHARS is
treated as a range of characters for which extents should be
returned.  If CHARS contains an odd number of elements, the
font's <structfield>XFONTINFO.CHAR-RANGE.MAX-CHAR</structfield>
is implicitly appended to
the list.  If CHARS contains no elements, the list is
implicitly replaced with the font's
<structfield>XFONTINFO.CHAR-RANGE.</structfield>  If
any of the resulting character ranges are invalid, a <errorname>Range</errorname>
error is returned.  Otherwise, the character ranges are
concatenated in the order given by CHARS to produce a set of
character codes for which extents are returned.
    </para>
    <para>
If RANGE is False, then CHARS specifies the set of character
codes for which extents are returned.  If CHARS is of
zero length, then a zero-length list of extents is returned.
    </para>
    <para>
The extents for each character code in the resulting set (which
may contain duplicates) are returned in the order in
which the character codes appear in the set.
At least one metric for each character shall be non-zero
unless the character is not encoded in the font, in which case
all-zero metrics are returned.
A blank, zero-width character can be encoded
with non-zero but equal left and right bearings.
    </para>
    <para>
If FONTID is not associated with any open fonts, a
<errorname>Font</errorname>
error is
returned.  If RANGE is True and CHARS contains any invalid
ranges, a
<errorname>Range</errorname>
error is returned.
    </para>
</section>

<section id="Requests:QueryXBitmaps8">
    <title><function>QueryXBitmaps8</function></title>
    <indexterm zone="Requests:QueryXBitmaps8" significance="preferred"><primary>QueryXBitmaps8</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry><parameter>range</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>chars</parameter>:</entry><entry><type>STRING8</type></entry></row>
          <row><entry><parameter>format</parameter>:</entry><entry><type>BITMAPFORMAT</type></entry></row>
          <row><entry>▶+</entry></row>
          <row><entry><parameter>replies-following-hint</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>offsets</parameter>:</entry><entry><type>LISTofOFFSET32</type></entry></row>
          <row><entry><parameter>bitmaps</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
          <row rowsep='1'><entry>Errors:</entry><entry><errorname>Font</errorname>,
<errorname>Range</errorname>,
<errorname>Format</errorname>,
<errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request is equivalent to
<function>QueryXBitmaps16</function>
except that it
uses 1-byte character codes.
    </para>
</section>

<section id="Requests:QueryXBitmaps16">
    <title><function>QueryXBitmaps16</function></title>
    <indexterm zone="Requests:QueryXBitmaps16" significance="preferred"><primary>QueryXBitmaps16</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry><parameter>range</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>chars</parameter>:</entry><entry><type>LISTofCHAR2B</type></entry></row>
          <row><entry><parameter>format</parameter>:</entry><entry><type>BITMAPFORMAT</type></entry></row>
          <row><entry>▶+</entry></row>
          <row><entry><parameter>replies-following-hint</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>offsets</parameter>:</entry><entry><type>LISTofOFFSET32</type></entry></row>
          <row rowsep='1'><entry><parameter>bitmaps</parameter>:</entry><entry><type>LISTofBYTE</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Font</errorname>,
          <errorname>Range</errorname>,
          <errorname>Format</errorname>,
          <errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request returns a list of glyph bitmaps from the open
font associated with FONTID for the series of characters
specified by RANGE and CHARS.
    </para>
    <para>
If RANGE is True, each succeeding pair of elements in CHARS is
treated as a range of characters for which bitmaps should be
returned.  If CHARS contains an odd number of elements, the
font's <structfield>XFONTINFO.CHAR-RANGE.MAX-CHAR</structfield>
is implicitly appended to
the list.  If CHARS contains no elements, the list is
implicitly replaced with the font's
<structfield>XFONTINFO.CHAR-RANGE.</structfield>  If
any of the resulting character ranges are invalid, a <errorname>Range</errorname>
error is returned.  Otherwise, the character ranges are
concatenated in the order given by CHARS to produce a set of
character codes for which bitmaps are returned.
    </para>
    <para>
If RANGE is False, then CHARS specifies the set of character
codes for which bitmaps are returned.  If CHARS is of zero
length, then a single reply containing a zero-length list of
offsets and bitmaps is returned.
    </para>
    <para>
If any of the resulting character ranges are invalid, a <errorname>Range</errorname>
error is returned.  Otherwise, the resulting character ranges
are concatenated in the order given by CHARS to produce a set
of character codes for which bitmaps are returned.
    </para>
    <para>
The server is free to return the glyph bitmaps in multiple
replies to reduce the amount of buffering that is necessary.
In this situation, the set of characters obtained above is
partitioned into an implementation-dependent number of
ordered, non-overlapping subsets containing runs of one or
more consecutive characters.  The global ordering of
characters must be maintained such that concatenating the
subsets in order that they were produced yields the original
set.  A reply is generated for each subset, in the order that
it was produced.
    </para>
    <para>
For each character in a subset, an image of that character's
glyph is described by a rectangle of bits corresponding to the
pixels specified by FORMAT.IMAGE-RECT.  Within the image, set
and clear bits represent inked and non-inked pixels,
respectively.
    </para>
    <para>
Each scanline of a glyph image, from top to bottom, is zero-padded
on the right to a multiple of the number of bits specified by
FORMAT.SCANLINE-PAD.  The scanline is then divided from left
to right into a sequence of FORMAT.SCANLINE-UNIT bits.  The
bits of each unit are then arranged such that the left-most
pixel is stored in the most- or least-significant bit,
according to FORMAT.BIT-ORDER-MSB.  The bytes of each unit are
then arranged such that the most- or least-significant byte,
according to FORMAT.BYTE-ORDER-MSB, is transmitted first.
Finally, the units are arranged such that the left-most is
transmitted first and the right-most is transmitted last.
    </para>
    <para>
The individual images within a subset are then concatenated in
a server-dependent order to form the BITMAPS data of the
reply.  If a glyph image is duplicated within a reply, the
server is free to return fewer (but at least one) copies of
the image.  If a character is not encoded within the font, a
zero-length bitmap is substituted for this character.  Each
glyph image must begin at a bit position that is a multiple of
the FORMAT.SCANLINE-UNIT.
    </para>
    <para>
The OFFSETS array in a reply contains one entry for each
character in the subset being returned, in the order that the
characters appear in the subset.  Each entry specifies the
starting location in bytes and size in bytes of the
corresponding glyph image in the BITMAPS data of that reply
(i.e. an offset may not refer to data in another reply).
    </para>
    <para>
The REPLIES-FOLLOWING-HINT field in all but the last reply
contains a positive value that specifies the number of replies
that are likely, but not required, to follow.  In the last
reply, which may contain data for zero or more characters,
this field is set to zero.
    </para>
    <para>
If FONTID is not associated with any open fonts, a <errorname>Font</errorname>
error is returned.  If RANGE is True and CHARS contains any invalid
ranges, a <errorname>Range</errorname> error is returned.
If FORMAT is invalid, a <errorname>Format</errorname> error is returned.
    </para>
</section>

<section id="Requests:CloseFont">
    <title><function>CloseFont</function></title>
    <indexterm zone="Requests:CloseFont" significance="preferred"><primary>CloseFont</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row rowsep='1'><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry></row>
          <row><entry>Errors:</entry><entry><errorname>Font</errorname>, <errorname>Alloc</errorname></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This request indicates that the specified FONTID should no
longer be associated with an open font.  The server is free to
release any client-specific storage or licenses allocated for
the font.  The client may reuse the value of FONTID in a
subsequent
<function>OpenBitmapFont</function>
request.
    </para>
    <para>
If FONTID is not associated with any open fonts, a
<errorname>Font</errorname>
error is returned.
    </para>
</section>

<section id="Requests:close_connection">
    <title>close connection</title>
    <indexterm zone="Requests:close_connection" significance="preferred"><primary>close connection</primary></indexterm>

    <para>
When a connection is closed, a
<function>CloseFont</function>
is done on all fonts
that are open on the connection.  In addition, the server is
free to release any storage or licenses allocated on behalf of
the client that made the connection.
    </para>
</section>
</section>

<section id='Errors'>
<title>Errors</title>
<!-- .XS -->
<!-- (SN Errors -->
<!-- .XE -->
<para>
All errors are at least 16 bytes long and contain the following fields:
</para>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>type</parameter>:</entry><entry><type>CARD8</type></entry><entry>value of 1</entry></row>
          <row><entry><parameter>error-code</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>sequence-number</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>length</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>timestamp</parameter>:</entry><entry><type>TIMESTAMP</type></entry></row>
          <row><entry><parameter>major-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>minor-opcode</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
<para>
<!-- .LP -->
The TYPE field has a value of one.  The ERROR-CODE field specifies which error
occurred.  Core errors codes are in the range 0 through 127, extension error
codes are in the range 128 through 255.  The SEQUENCE-NUMBER field contains the
least significant 16 bits of the sequence number of the request that caused the
error.  The LENGTH field specifies the length of the error packet in 4-byte
units and must have a value of at least 4.  The TIMESTAMP specifies the server
time when the error occurred.  The MAJOR-OPCODE and MINOR-OPCODE (zero for core
requests) fields specify the type of request that generated the error.  The
DATA-OR-UNUSED field may be used for 16 bits of error-specific information.  If
LENGTH is greater than four, these fields are followed by (LENGTH - 4) * 4
bytes of extra data.
</para>
<para>
<!-- .LP -->
The following errors are defined for the core protocol:
</para>

<section id="Errors:Request">
    <title><errorname>Request</errorname></title>
    <indexterm zone="Errors:Request" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Request</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by any request that has an unknown
combination of major and minor request numbers, or by any
extension request that is issued before a
<function>QueryExtension</function>
of that extension.
    </para>
</section>

<section id="Errors:Format">
    <title><errorname>Format</errorname></title>
    <indexterm zone="Errors:Format" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Format</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>format</parameter>:</entry><entry><type>BITMAPFORMAT</type></entry><entry>bad format value</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by the use of an invalid <type>BITMAPFORMAT</type>
in the
<function>OpenBitmapFont</function>,
<function>QueryXBitmaps8</function>, and
<function>QueryXBitmaps16</function>
requests.
The value that caused the error is included as extra data.
    </para>
</section>

<section id="Errors:Font">
    <title><errorname>Font</errorname></title>
    <indexterm zone="Errors:Font" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Font</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>fontid</parameter>:</entry><entry><type>FONTID</type></entry><entry>bad font identifier</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by an invalid <type>FONTID</type> in the
<function>QueryXInfo</function>,
<function>QueryXExtents8</function>,
<function>QueryXExtents16</function>,
<function>QueryXBitmaps8</function>,
<function>QueryXBitmaps16</function>
and
<function>CloseFont</function>
requests.  The value that caused
the error is included as extra data.
    </para>
</section>

<section id="Errors:Range">
    <title><errorname>Range</errorname></title>
    <indexterm zone="Errors:Range" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Range</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>range</parameter>:</entry><entry><type>RANGE</type></entry><entry>bad range</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by an invalid <type>RANGE</type> in the
<function>QueryXExtents8</function>,
<function>QueryXExtents16</function>,
<function>QueryXBitmaps8</function>
and
<function>QueryXBitmaps16</function>
requests.  The
value that caused the error is included as extra data.
    </para>
</section>

<section id="Errors:EventMask">
    <title><errorname>EventMask</errorname></title>
    <indexterm zone="Errors:EventMask" significance="preferred"><primary>Error Codes</primary><secondary><errorname>EventMask</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>event-mask</parameter>:</entry><entry><type>EVENTMASK</type></entry><entry>bad event mask</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by an invalid <type>EVENTMASK</type> in the
<function>SetEventMask</function>
request.  The value that caused the error is
included as extra data.
    </para>
</section>

<section id="Errors:AccessContext">
    <title><errorname>AccessContext</errorname></title>
    <indexterm zone="Errors:AccessContext" significance="preferred"><primary>Error Codes</primary><secondary><errorname>AccessContext</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>ac</parameter>:</entry><entry><type>ACCESSCONTEXT</type></entry><entry>unaccepted <type>AccessContext</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by an invalid <type>ACCESSCONTEXT</type> in the
<function>FreeAC</function>
or
<function>SetAuthorization</function>
request or by an
<function>OpenBitmapFont</function>
request performed without sufficient authorization.  In the
first two cases, the <type>ACCESSCONTEXT</type> of the errant request is
returned as extra data.  In the third case, the current
<type>ACCESSCONTEXT</type> is returned as extra data.
    </para>
</section>

<section id="Errors:IDChoice">
    <title><errorname>IDChoice</errorname></title>
    <indexterm zone="Errors:IDChoice" significance="preferred"><primary>Error Codes</primary><secondary><errorname>IDChoice</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>id</parameter>:</entry><entry><type>ID</type></entry><entry>bad identifier</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by an invalid or already associated
<type>ACCESSCONTEXT</type> identifier in a
<function>CreateAC</function>
request or <type>FONTID</type> identifier
in an
<function>OpenBitmapFont</function>
request.  The value that caused the error
is included as extra data.
    </para>
</section>

<section id="Errors:Name">
    <title><errorname>Name</errorname></title>
    <indexterm zone="Errors:Name" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Name</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by a font name pattern that matches
no fonts in an
<function>OpenBitmapFont</function>
request or no catalogue names in a
<function>SetCatalogues</function>
request.
    </para>
</section>

<section id="Errors:Resolution">
    <title><errorname>Resolution</errorname></title>
    <indexterm zone="Errors:Resolution" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Resolution</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>X value of errant resolution</entry></row>
          <row><entry><parameter>y-resolution</parameter>:</entry><entry><type>CARD16</type></entry><entry>Y value of errant resolution</entry></row>
          <row><entry><parameter>point-size</parameter>:</entry><entry><type>CARD16</type></entry><entry>point size of errant resolution</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated in response to an invalid <type>RESOLUTION</type>
structure in a
<function>SetResolution</function>
request.  The value that caused the
error is included in the DATA-OR-UNUSED field and as extra data.
    </para>
</section>

<section id="Errors:Alloc">
    <title><errorname>Alloc</errorname></title>
    <indexterm zone="Errors:Length" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Alloc</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by any request for which the server
lacks sufficient resources (especially memory).
    </para>
</section>

<section id="Errors:Length">
    <title><errorname>Length</errorname></title>
    <indexterm zone="Errors:Length" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Length</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
          <row><entry><parameter>length</parameter>:</entry><entry><type>CARD32</type></entry><entry>bad length value</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error is generated by any request that has a length field
greater than (MAXIMUM-REQUEST-LENGTH * 4) bytes.  The value that
caused the error is included as extra data.
    </para>
</section>

<section id="Errors:Implementation">
    <title><errorname>Implementation</errorname></title>
    <indexterm zone="Errors:Implementation" significance="preferred"><primary>Error Codes</primary><secondary><errorname>Implementation</errorname></secondary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>data-or-unused</parameter>:</entry><entry><type>CARD16</type></entry><entry>unused</entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This error may be generated in response to any request that
the server is unable to process because it is deficient.  Use
of this error is highly discouraged and indicates lack of
conformance to the protocol.
    </para>
</section>
<section id="Errors:Extensions">
  <title>Extensions</title>
    <para>
Additional errors may be defined by extensions.
    </para>
</section>
</section>

<section id='Events'>
<title>Events</title>
<!-- .XS -->
<!-- (SN Events -->
<!-- .XE -->
<para>
<!-- .LP -->
Events may be generated in response to requests or at the server's discretion
after the initial connection setup information has been exchanged.  Each event
is at least 12 bytes long and contains the following fields:
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='3' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <colspec colname='c3' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>type</parameter>:</entry><entry><type>CARD8</type></entry><entry>value of 2</entry></row>
          <row><entry><parameter>event-code</parameter>:</entry><entry><type>CARD8</type></entry></row>
          <row><entry><parameter>sequence-number</parameter>:</entry><entry><type>CARD16</type></entry></row>
          <row><entry><parameter>length</parameter>:</entry><entry><type>CARD32</type></entry></row>
          <row><entry><parameter>timestamp</parameter>:</entry><entry><type>TIMESTAMP</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
</para>
<para>
<!-- .LP -->
The TYPE field contains the value 2.  The EVENT-CODE field specifies the number
of the event and is in the range 0-127 for core events or the range 128-255 for
extensions.  The SEQUENCE-NUMBER field specifies the least significant 16 bits
of the sequence number of the last request to have been processed by the
server.  The LENGTH field specifies the number of 4-byte units in this event
packet and must always have a value of at least 3.  The <type>TIMESTAMP</type> field
specifies the server time when the event occurred.  If LENGTH is greater than
three, these fields are followed by (LENGTH - 3) * 4 bytes of additional data.
</para>
<para>
<!-- .LP -->
Events are described using the following syntax:
  <blockquote><para>
    <emphasis role="bold"><function>EventName</function></emphasis>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>arg1</parameter>:</entry><entry><type>type1</type></entry></row>
          <row><entry> ...</entry></row>
          <row><entry><parameter>argN</parameter>:</entry><entry><type>typeN</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    Description
  </para></blockquote>
</para>
<para>
If an event does not provide any extra arguments, the
<parameter>arg1</parameter>...<parameter>argN</parameter>
lines are omitted from the description.
</para>
<para>
<!-- .LP -->
The core X Font Service protocol defines the following events:
</para>

<section id="Events:KeepAlive">
    <title><function>KeepAlive</function></title>
    <indexterm zone="Events:KeepAlive" significance="preferred"><primary>KeepAlive</primary></indexterm>
    <para>
This unsolicited, nonmaskable event may be sent by the
server to verify that the connection has not been broken
(for transports that do not provide this information).
Clients should acknowledge receipt of this request
by sending any request (such as
<function>NoOp</function>
).
    </para>
</section>

<section id="Events:CatalogueListNotify">
    <title><function>CatalogueListNotify</function></title>
    <indexterm zone="Events:CatalogueListNotify" significance="preferred"><primary>CatalogueListNotify</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>added</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>deleted</parameter>:</entry><entry><type>BOOL</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This event is sent to clients that have included
<function>CatalogueListChangeMask</function>
in their core event mask
whenever the list of catalogues that are available has
changed.  The ADDED field is True if new catalogues have
been added to the server, otherwise it is False.  The
DELETED field is True if any existing catalogues have
been removed from the server, otherwise it is False.
    </para>
</section>

<section id="Events:FontListNotify">
    <title><function>FontListNotify</function></title>
    <indexterm zone="Events:FontListNotify" significance="preferred"><primary>FontListNotify</primary></indexterm>
    <informaltable frame='none'>
      <?dbfo keep-together="always" ?>
      <tgroup cols='2' align='left' colsep='0' rowsep='0'>
        <colspec colname='c1' colwidth='1.0*'/>
        <colspec colname='c2' colwidth='1.0*'/>
        <tbody>
          <row><entry><parameter>added</parameter>:</entry><entry><type>BOOL</type></entry></row>
          <row><entry><parameter>deleted</parameter>:</entry><entry><type>BOOL</type></entry></row>
        </tbody>
      </tgroup>
    </informaltable>
    <para>
This event is sent to clients that have included
<function>FontListChangeMask</function>
in their event mask whenever the
list of fonts that are provided by the currently selected
catalogues has changed.  The ADDED field is True if new
fonts have been added to any of the catalogues currently
used by the client, otherwise it is False.  The DELETED
field is True if any existing fonts have been removed
from any of catalogues used by the client, otherwise it
is False.
    </para>
</section>
<section id="Events:Extensions">
  <title>Extensions</title>
    <para>
Additional events may be defined by extensions.
    </para>
</section>
</section>
</chapter>

<chapter id='Protocol_Encoding'>
<title>Protocol Encoding</title>
<!-- .XS -->
<!-- (SN Protocol Encoding -->
<!-- .XE -->
<para>
<!-- .LP -->
Numbers that are prefixed with <quote><literal>#x</literal></quote>
are in hexadecimal (base 16).  All other
numbers are in decimal.  Requests, replies, errors, events, and compound types
are described using the syntax:
</para>
<!-- .RS -->
<literallayout class="monospaced">

    Name
     <emphasis remap='I'>count</emphasis>          <emphasis remap='I'>contents</emphasis>     <emphasis remap='I'>name</emphasis>
     ...
     <emphasis remap='I'>count</emphasis>          <emphasis remap='I'>contents</emphasis>     <emphasis remap='I'>name</emphasis>
</literallayout>

<!-- .RE -->
<para>
where COUNT is the number of bytes in the data stream occupied by this
field, CONTENTS is the name of the type as given in
<link linkend='Data_Types'>Section 4</link> or the value if
this field contains a constant, and NAME is a description of this field.
</para>
<para>
<!-- .LP -->
Objects containing counted lists use a lowercase single-letter variable (whose
scope is limited to the request, reply, event, or error in which it is found)
to represent the number of objects in the list.  These variables, and any
expressions in which they are used, should be treated as unsigned integers.
Multiple copies of an object are indicated by CONTENTS prefix
<quote>LISTof</quote>.
</para>
<para>
<!-- .LP -->
Unused bytes (whose value is undefined) will have a blank CONTENTS field and a
NAME field of <quote>unused</quote>.  Zeroed bytes (whose value must be zero)
will have a blank CONTENTS field and a NAME field of <quote>zero</quote>.
The expression pad(e) refers to the number of bytes
needed to round a value <quote>e</quote> up to the closed
multiple of four:
</para>
<!-- .RS -->
<literallayout class="monospaced">

     pad(e) = (4 - (e mod 4)) mod 4
</literallayout>

<section id='Encoding::Data_Types'>
<title>Data Types</title>
<!-- .XS -->
<!-- (SN Data Types -->
<!-- .XE -->
<literallayout class="monospaced">
<type>ACCESSCONTEXT</type>

4 <type>CARD32</type> access context with at least one of the following bits set:

#x1fffffff

but none of the following bits set:

#xe0000000               zero


<type>ALTERNATESERVER</type>
1     <type>BOOL</type>               subset
1     n                  length of name
n     <type>STRING8</type>            name
p                        unused, p=pad(n+2)

<type>AUTH</type>

2     n                  length of name
2     d                  length of data
n     <type>STRING8</type>            name
p                        unused, p=pad(n)
d     <type>STRING8</type>            data
q                        unused, q=pad(d)


<type>BITMAPFORMAT</type>

4 <type>CARD32</type> value, union of the following bits:
     #x00000001           ByteOrderMSB
     #x00000002           BitOrderMSB
     #x00000000           ImageRectMin
     #x00000004           ImageRectMaxWidth
     #x00000008           ImageRectMax
     #x00000000           ScanlinePad8
     #x00000100           ScanlinePad16
     #x00000200           ScanlinePad32
     #x00000300           ScanlinePad64
     #x00000000           ScanlineUnit8
     #x00001000           ScanlineUnit16
     #x00002000           ScanlineUnit32
     #x00003000           ScanlineUnit64

except for the following bits which must be zero:

     #xffffccf0           zero

and the following of which at most one bit may be set:

     #x0000000c at most one bit can be set


<type>BITMAPFORMATMASK</type>

4 <type>CARD32</type> value, mask of the following bits:

     #x00000001           ByteOrderMask
     #x00000002           BitOrderMask
     #x00000004           ImageRectMask
     #x00000008           ScanlinePadMask
     #x00000010           ScanlineUnitMask

except for the following bits which must be zero:

     #xffffffe0           zero

<type>BOOL</type>

1    <type>BOOL</type>       boolean, one of the following values:
0    False
1    True

<type>BYTE</type>
1    <type>BYTE</type>       unsigned byte of data

<type>CARD8</type>
1    <type>CARD8</type>       8-bit unsigned integer

<type>CARD16</type>
2    <type>CARD16</type>      16-bit unsigned integer

<type>CARD32</type>
4    <type>CARD32</type>      32-bit unsigned integer

<type>CHAR2B</type>
1    <type>CARD8</type>       byte1
1    <type>CARD8</type>       byte2

<type>EVENTMASK</type>
4    <type>CARD32</type> event mask
     for core events, this is union of the following bits:

     #00000001   CatalogueListChangeMask
     #00000002   FontListChangeMask

but none of the following bits set:

     #fffffffc

extensions define their own sets of bits

<type>FONTID</type>

4 <type>CARD32</type> font identifier with at least one of
the following bits set:

     #x1fffffff

but none of the following bits set:

     #xe0000000   zero

<type>INT8</type>
1    <type>INT8</type>         8-bit signed integer

<type>INT16</type>
2    <type>INT16</type>         16-bit signed integer

<type>INT32</type>
4    <type>INT32</type>         32-bit signed integer

<type>OFFSET32</type>
4    <type>CARD32</type>         position (or integer value)
4    <type>CARD32</type>         length

<type>PROPINFO</type>
4    n                 number of <type>PROPOFFSET</type> components
4    m                 number of bytes of property data
20*n <type>PROPOFFSET</type>         property offsets into data block
m    <type>LISTofBYTE</type>         property data block

<type>PROPOFFSET</type>
8    <type>OFFSET32</type>         name in data block
8    <type>OFFSET32</type>         value in data block

1 <type>CARD8</type> type, one of the following values:
0    String
1    Unsigned
2    Signed
3    zero

<type>RANGE</type>
2    <type>CHAR2B</type>                 minimum character code
2    <type>CHAR2B</type>         maximum character code

<type>RESOLUTION</type>
2    <type>CARD16</type> x resolution in pixels per inch
2    <type>CARD16</type> y resolution in pixels per inch
2    <type>CARD16</type> point size in decipoints

STRNAME
1    n length of name
n    <type>STRING8</type> name

<type>STRING8</type>
n    <type>LISTofBYTE</type>         array of 8-bit character values

<type>TIMESTAMP</type>
4    <type>CARD32</type>         milliseconds since server time origin

<type>XCHARINFO</type>
2    <type>INT16</type>         left bearing
2    <type>INT16</type>         right bearing
2    <type>INT16</type>         width
2    <type>INT16</type>         ascent
2    <type>INT16</type>         descent
2    <type>CARD16</type>         attributes

<type>XFONTINFO</type>
4 <type>CARD32</type> flags, union of the following bits:
     #x00000001         AllCharactersExist
     #x00000002         InkInside
     #x00000004         HorizontalOverlap

but none of the following bits set:

     #xfffffff8         zero
4    <type>RANGE</type>              range of characters in font
1    <type>CARD8</type>              drawing direction
     0             LeftToRight
     1             RightToLeft
1                       unused
2    <type>CHAR2B</type>             default character
12   <type>XCHARINFO</type>          minimum bounds
12   <type>XCHARINFO</type>          maximum bounds
2    <type>INT16</type>              font ascent
2    <type>INT16</type>              font descent
n    <type>PROPINFO</type>           property data
</literallayout>
</section>

<section id='Encoding::Requests'>
<title>Requests</title>
<para><link linkend="Requests:open_connection"><emphasis role="bold">open connection</emphasis></link></para>
<literallayout class="monospaced">
1     <type>BYTE</type>                   byteorder, one of the values:
      #x42                   MostSignificant Byte first
      #x6c                   LeastSignificant Byte first
1     <type>CARD8</type>                  numberof auth in auth-data
2     2                      client-major-protocol-version
2     0                      client-minor-protocol-version
2     a/4 lengthof           auth-data
a     <type>LISTofAUTH</type>             auth-data
▶
2     <type>CARD16</type>                 status
0                            Success
1                            Continue
2                            Busy
3                            Denied
2     2                      major version
2     0                      version
1     <type>CARD8</type>                  numberof alternate-servers-hint
1     <type>CARD8</type>                  authorization-index
2     a/4                    lengthof alternate-servers-hint
2     (d+q)/4                lengthof authorization-data
a     <type>LISTofALTERNATESERVER</type>  alternate-servers-hint
d     <type>LISTofBYTE</type>             authorization-data
q                            unused, q=pad(d)
</literallayout>

<para>
If STATUS is Busy or Denied, the protocol stops and the connection is
closed. If STATUS is Continue, the client is expected to respond with
additional data, to which the server responds with
a new status value and more data. This dialog continues until the status
is set to Success, or until the server sets STATUS to Busy or Denied
and closes the connection:
</para>

<literallayout class="monospaced">
◀
4     1+(d+q)/4              length
d     <type>LISTofBYTE</type>             more-authorization-data
q                            unused, q=pad(d)
▶
4     2+(d+q)/4              length
2     <type>CARD16</type>                 status
        0                    Success
      1                      Continue
      2                      Busy
      3                      Denied
      2                      unused
d     <type>LISTofBYTE</type>             more-authorization-data
q                            unused, q=pad(d)
</literallayout>
<para>
When STATUS is Success, the protocol resumes with the following
sent by the server:
</para>

<literallayout class="monospaced">
4     3+(v+w)/4              length of rest of data
2     <type>CARD16</type>                 maximum-request-length
2     v                      length of vendor string
4     <type>CARD32</type>                 release-number
v     <type>STRING8</type>                vendor-string
w                            unused, w=pad(v)
</literallayout>
<para>
Once the connection has been established, the client may send the
following requests:
</para>

<literallayout class="monospaced">
<link linkend="Requests:NoOp"><emphasis role="bold"><function>NoOp</function></emphasis></link>
1   0                        major-opcode
1                            unused
2   1                        length

<link linkend="Requests:ListExtensions"><emphasis role="bold"><function>ListExtensions</function></emphasis></link>
1   1                        major-opcode
1                            unused
2   1                        length
▶
1   0                        type reply
1   <type>CARD8</type>                    numberof names
2   <type>CARD16</type>                   sequence-number
4   2+(n+p)/4                length
n   LISTofSTRNAME            names
p                            unused, p=pad(n)

<link linkend="Requests:QueryExtension"><emphasis role="bold"><function>QueryExtension</function></emphasis></link>
1   2                        major-opcode
1   n                        length of name
2   1+(n+p)/4                length
n   <type>STRING8</type>                  name
p                            unused, p=pad(n)
▶
1   0                        type reply
1   <type>BOOL</type>                     present
2   <type>CARD16</type>                   sequence-number
4   5                        length
2   <type>CARD16</type>                   major-version
2   <type>CARD16</type>                   minor-version
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    first-event
1   <type>CARD8</type>                    number-events
1   <type>CARD8</type>                    first-error
1   <type>CARD8</type>                    number-errors
3                            unused

<link linkend="Requests:ListCatalogues"><emphasis role="bold"><function>ListCatalogues</function></emphasis></link>
1   3                        major-opcode
1                            unused
2   3+(n+p)/4                length
4   <type>CARD32</type>                   max-names
2   n                        length of pattern
2                            unused
n   <type>STRING8</type>                  pattern
p                            unused, p=pad(n)
▶+
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   4+(n+p)/4                length
4   <type>CARD32</type>                   replies-following-hint
4   <type>CARD32</type>                   numberof catalogue-names
n   LISTofSTRNAME            catalogue-names
p                            unused, p=pad(n)

<link linkend="Requests:SetCatalogues"><emphasis role="bold"><function>SetCatalogues</function></emphasis></link>
1   4                        major-opcode
1   <type>CARD8</type>                    numberof catalogue-names
2   1+(n+p)/4                length
n   LISTofSTRNAME            catalogue-names
p                            unused, p=pad(n)

<link linkend="Requests:GetCatalogues"><emphasis role="bold"><function>GetCatalogues</function></emphasis></link>
1   5                        major-opcode
1                            unused
2   1                        length
▶
1   0                        type reply
1   <type>CARD8</type>                    numberof catalogue-names
2   <type>CARD16</type>                   sequence-number
4   2+(n+p)/4                length
n   LISTofSTRNAME            catalogue-names
p                            unused, p=pad(n)

<link linkend="Requests:SetEventMask"><emphasis role="bold"><function>SetEventMask</function></emphasis></link>
1   6                        major-opcode
1   <type>CARD8</type>                    extension-opcode
2   2                        length
4   <type>EVENTMASK</type>                event-mask

<link linkend="Requests:GetEventMask"><emphasis role="bold"><function>GetEventMask</function></emphasis></link>
1   7                        major-opcode
1   <type>CARD8</type>                    extension-opcode
2   1                        length
▶
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   3                        length
4   <type>EVENTMASK</type>                event-mask

<link linkend="Requests:CreateAC"><emphasis role="bold"><function>CreateAC</function></emphasis></link>
1   8                        major-opcode
1   <type>CARD8</type>                    numberof authorization-protocols
2   2+a/4                    length
4   <type>ACCESSCONTEXT</type>            ac
a   <type>LISTofAUTH</type>               authorization-protocols
▶
1   0                        type reply
1   <type>CARD8</type>                    authorization-index
2   <type>CARD16</type>                   sequence-number
4   3+(d+q)/4                length
2   <type>CARD16</type>                   status
    0 Success
    1 Continue
    2 Busy
    3 Denied
2                            unused
d   <type>LISTofBYTE</type>               authorization-data
q                            unused, q=pad(d)
</literallayout>

<para>
If STATUS is Continue, the client is expected to respond with additional
data, to which the server
responds with a new status value and more data. This dialog continues
until the status is set to
Success, Busy, or Denied at which point the request is finished.
</para>

<literallayout class="monospaced">
◀
4   1+(d+q)/4                length
d   <type>LISTofBYTE</type>               more-authorization-data
q                            unused, q=pad(d)
▶
4   2+(d+q)/4                length
2   <type>CARD16</type>                   status
    0 Success
    1 Continue
    2 Busy
    3 Denied
2                            unused
d   <type>LISTofBYTE</type>               authorization-data
q                            unused, q=pad(d)

<link linkend="Requests:FreeAC"><emphasis role="bold"><function>FreeAC</function></emphasis></link>
1   9                        major-opcode
1                            unused
2   2                        length
4   <type>ACCESSCONTEXT</type>            ac

<link linkend="Requests:SetAuthorization"><emphasis role="bold"><function>SetAuthorization</function></emphasis></link>
1   10                       major-opcode
1                            unused
2   2                        length
4   <type>ACCESSCONTEXT</type>            ac

<link linkend="Requests:SetResolution"><emphasis role="bold"><function>SetResolution</function></emphasis></link>
1   11                       major-opcode
1   n                        number of resolutions
2   1+(6*n+p)/4              length
6*n <type>LISTofRESOLUTION</type>         resolutions
p   p=pad(6*n)

<link linkend="Requests:GetResolution"><emphasis role="bold"><function>GetResolution</function></emphasis></link>
1   12                       major-opcode
1                            unused
2   1                        length
▶
1   0                        type reply
1   n                        number of resolutions
2   <type>CARD16</type>                   sequence-number
4   2+(6*n+p)/4              length
6*n <type>LISTofRESOLUTION</type>         resolutions
p   p=pad(6*n)

<link linkend="Requests:ListFonts"><emphasis role="bold"><function>ListFonts</function></emphasis></link>
1   13                       major-opcode
1                            unused
2   3+(n+p)/4                length
4   <type>CARD32</type>                   max-names
2   n                        length of pattern
2                            unused
n   <type>STRING8</type>                  pattern
p                            unused, p=pad(n)
▶+
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   4+(n+p)/4                length
4   <type>CARD32</type>                   replies-following-hint
4   <type>CARD32</type>                   numberof font-names
n   LISTofSTRNAME            font-names
p                            unused, p=pad(n)

<link linkend="Requests:ListFontsWithXInfo"><emphasis role="bold"><function>ListFontsWithXInfo</function></emphasis></link>
1   14                       major-opcode
1                            unused
2   3+(n+p)/4                length
4   <type>CARD32</type>                   max-names
2   n                        length of pattern
2                            unused
n   <type>STRING8</type>                  pattern
p                            unused, p=pad(n)
▶+ (except for last in series)
1   0                        type reply
1   n                        length of name
2   <type>CARD16</type>                   sequence-number
4   3+(n+p+f)/4              length
4   <type>CARD32</type>                   replies-hint
f   <type>XFONTINFO</type>                fontinfo
n   <type>STRING8</type>                  name
p                            unused, p=pad(n)
▶ (last in series)
1   0                        type reply
1   0                        last-reply indicator
2   <type>CARD16</type>                   sequence-number
4   2                        reply length

<link linkend="Requests:OpenBitmapFont"><emphasis role="bold"><function>OpenBitmapFont</function></emphasis></link>
1   15                       major-opcode
1                            unused
2   4+(n+p)/4                length
4   <type>FONTID</type>                   fontid
4   <type>BITMAPFORMATMASK</type>         format-mask
4   <type>BITMAPFORMAT</type>             format
n   STRNAME                  pattern
p                            unused, p=pad(n)
▶
1   0                        type reply
1   <type>BOOL</type>                     otherid-valid
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>FONTID</type>                   otherid
1   <type>BOOL</type>                     cachable
3                            unused

<link linkend="Requests:QueryXInfo"><emphasis role="bold"><function>QueryXInfo</function></emphasis></link>
1   16                       major-opcode
1                            unused
2   2                        length
4   <type>FONTID</type>                   fontid
▶
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   2+f/4                    length
f   <type>XFONTINFO</type>                fontinfo
p                            unused, p=pad(f)

<link linkend="Requests:QueryXExtents8"><emphasis role="bold"><function>QueryXExtents8</function></emphasis></link>
1   17                       major-opcode
1   <type>BOOL</type>                     range
2   3+(n+p)/4                length
4   <type>FONTID</type>                   fontid
4   n                        number chars entries
n   <type>STRING8</type>                  chars
p                            unused, p=pad(n)
▶
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   3+3*n                    length
4   n                        number of extents
12*n <type>LISTofXCHARINFO</type>         extents

<link linkend="Requests:QueryXExtents16"><emphasis role="bold"><function>QueryXExtents16</function></emphasis></link>
1   18                       major-opcode
1   <type>BOOL</type>                     range
2   3+(2*n+p)/4              length
4   <type>FONTID</type>                   fontid
4   n                        number chars entries
2*n                          <type>LISTofCHAR2B</type> chars
p                            unused, p=pad(2*n)
▶
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   3+3*n                    length
4   n                        number of extents
12*n <type>LISTofXCHARINFO</type>         extents

<link linkend="Requests:QueryXBitmaps8"><emphasis role="bold"><function>QueryXBitmaps8</function></emphasis></link>
1   19                       major-opcode
1   <type>BOOL</type>                     range
2   4+(n+p)/4                length
4   <type>FONTID</type>                   fontid
4   <type>BITMAPFORMAT</type>             format
4   n                        number of chars entries
n   <type>STRING8</type>                  chars
p                            unused, p=pad(n)
▶+
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   5+2*n+(m+p)/4            length
4   <type>CARD32</type>                   replies-following-hint
4   n                        number of offsets
4   m                        number of bytes of glyph images
8*n <type>LISTofOFFSET32</type>           offsets
m   <type>LISTofBYTE</type>               glyphimages
p                            unused, p=pad(m)

<link linkend="Requests:QueryXBitmaps16"><emphasis role="bold"><function>QueryXBitmaps16</function></emphasis></link>
1   20                       major-opcode
1   <type>BOOL</type>                     range
2   4+(2*n+p)/4              length
4   <type>FONTID</type>                   fontid
4   <type>BITMAPFORMAT</type>             format
4   n                        number of chars entries
2*n <type>LISTofCHAR2B</type>             chars
p                            unused, p=pad(2*n)
▶
1   0                        type reply
1                            unused
2   <type>CARD16</type>                   sequence-number
4   5+2*n+(m+p)/4            length
4   <type>CARD32</type>                   replies-following-hint
4   n                        number of offsets
4   m                        number of bytes of glyph images
8*n <type>LISTofOFFSET32</type>           offsets
m   <type>LISTofBYTE</type>               glyphimages
p                            unused, p=pad(m)

<link linkend="Requests:CloseFont"><emphasis role="bold"><function>CloseFont</function></emphasis></link>
1   21                       major-opcode
1                            unused
2   2                        length
4   <type>FONTID</type>                   fontid
</literallayout>
</section>

<section id='Encoding::Errors'>
<title>Errors</title>
<literallayout class="monospaced">

<link linkend="Errors:Request"><emphasis role="bold"><errorname>Request</errorname></emphasis></link>
1   1                        type error
1   0                        <errorname>Request</errorname>
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused

<link linkend="Errors:Format"><emphasis role="bold"><errorname>Format</errorname></emphasis></link>
1   1                        type error
1   1                        <errorname>Format</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>BITMAPFORMAT</type>             bad-format

<link linkend="Errors:Font"><emphasis role="bold"><errorname>Font</errorname></emphasis></link>
1   1                        type error
1   2                        <errorname>Font</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>FONTID</type> bad-fontid

<link linkend="Errors:Range"><emphasis role="bold"><errorname>Range</errorname></emphasis></link>
1   1                        type error
1   3                        <errorname>Range</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>RANGE</type>                    bad-range

<link linkend="Errors:EventMask"><emphasis role="bold"><errorname>EventMask</errorname></emphasis></link>
1   1                        type error
1   4                        <errorname>EventMask</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>EVENTMASK</type>                event-mask

<link linkend="Errors:AccessContext"><emphasis role="bold"><errorname>AccessContext</errorname></emphasis></link>
1   1                        type error
1   5                        <errorname>AccessContext</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>ACCESSCONTEXT</type>            access context

<link linkend="Errors:IDChoice"><emphasis role="bold"><errorname>IDChoice</errorname></emphasis></link>
1   1                        type error
1   6                        <errorname>IDChoice</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>FONTID</type>                   bad-fontid

<link linkend="Errors:Name"><emphasis role="bold"><errorname>Name</errorname></emphasis></link>
1   1                        type error
1   7                        <errorname>Name</errorname>
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused

<link linkend="Errors:Resolution"><emphasis role="bold"><errorname>Resolution</errorname></emphasis></link>
1   1                        type error
1   8                        <errorname>Resolution</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
6   <type>RESOLUTION</type>               resolution

<link linkend="Errors:Alloc"><emphasis role="bold"><errorname>Alloc</errorname></emphasis></link>
1   1                        type error
1   9                        <errorname>Alloc</errorname>
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused

<link linkend="Errors:Length"><emphasis role="bold"><errorname>Length</errorname></emphasis></link>
1   1                        type error
1   10                       <errorname>Length</errorname>
2   <type>CARD16</type>                   sequence-number
4   5                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused
4   <type>CARD32</type>                   bad-length

<link linkend="Errors:Implementation"><emphasis role="bold"><errorname>Implementation</errorname></emphasis></link>
1   1                        type error
1   11                       <errorname>Implementation</errorname>
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>CARD8</type>                    major-opcode
1   <type>CARD8</type>                    minor-opcode
2                            unused

</literallayout>
</section>

<section id='Encoding::Events'>
<title>Events</title>
<literallayout class="monospaced">
<link linkend="Events:KeepAlive"><emphasis role="bold"><function>KeepAlive</function></emphasis></link>
1   2                        type event
1   0                        event KeepAlive
2   <type>CARD16</type>                   sequence-number
4   3                        length
4   <type>TIMESTAMP</type>                timestamp

<link linkend="Events:CatalogueListNotify"><emphasis role="bold"><function>CatalogueListNotify</function></emphasis></link>
1   2                        type event
1   1                        event CatalogueListNotify
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>BOOL</type>                     added
1   <type>BOOL</type>                     deleted
2                            unused

<link linkend="Events:FontListNotify"><emphasis role="bold"><function>FontListNotify</function></emphasis></link>
1   2                        type event
1   2                        event FontListNotify
2   <type>CARD16</type>                   sequence-number
4   4                        length
4   <type>TIMESTAMP</type>                timestamp
1   <type>BOOL</type>                     added
1   <type>BOOL</type>                     deleted
2                            unused

</literallayout>
</section>
</chapter>

<chapter id='Acknowledgements'>
<title>Acknowledgements</title>
<!-- .XS -->
<!-- (SN Acknowledgements -->
<!-- .XE -->
<para>
This document represents the culmination of several years of debate and
experiments done under the auspices of the
<orgname class="consortium">MIT X Consortium</orgname> font working group.
Although this was a group effort, the author remains responsible for any errors
or omissions.  The protocol presented here was primarily designed by
<personname><firstname>Jim</firstname><surname>Fulton</surname></personname>,
<personname><firstname>Keith</firstname><surname>Packard</surname></personname>,
and
<personname><firstname>Bob</firstname><surname>Scheifler</surname></personname>.
Special thanks goes to
<personname><firstname>Ned</firstname><surname>Batchelder</surname></personname>,
<personname><firstname>Jim</firstname><surname>Flowers</surname></personname>,
and
<personname><firstname>Axel</firstname><surname>Deininger</surname></personname>
for their invigorating comments
which never failed to make this a better document.
<personname><firstname>Stephen</firstname><surname>Gildea</surname></personname>
edited version 2 of this document.  Finally,
<personname><firstname>David</firstname><surname>Lemke</surname></personname>
deserves great credit for designing and coding the sample implementation.
</para>
</chapter>

<bibliography id='References'>
<title>References</title>
<para>
All of the following documents are X Consortium standards available from
the X Consortium.
</para>
<biblioentry id='References:x11proto'>
  <abbrev>1</abbrev>
  <title><olink targetdoc='x11protocol' targetptr='x11protocol'>X Window System Protocol Version 11</olink></title>
  <author><firstname>Robert W.</firstname><surname>Scheifler</surname></author>
</biblioentry>

<biblioentry id='References:bdf-spec'>
  <abbrev>2</abbrev>
  <corpauthor>Adobe Systems</corpauthor>
  <title>Bitmap Distribution Format 2.1</title>
</biblioentry>

<biblioentry id='References:xlfd-spec'>
  <abbrev>3</abbrev>
  <corpauthor>X Consortium</corpauthor>
  <title><olink targetdoc='xlfd' targetptr='xlfd'>X Logical Font
  Description Conventions, Version 1.5</olink></title>
</biblioentry>

</bibliography>

<appendix id="suggested_licensing_policies">
<title>Suggested Licensing Policies</title>
<para>
The authorization data passed by the client in the initial connection
setup information may be used by the font server to implement restrictions
on which fonts may be accessed.  Furthermore, the font server is free to
refuse new connections at any time.
</para>
<para>
Configuration or management of the license restrictions is outside the scope of
the font service protocol and is done in a server-dependent manner.  Possible
policies might include, but are not limited to, combinations of the following:

<variablelist>
  <?dbhtml list-presentation="list"?>
  <varlistentry>
    <term>No restrictions</term>
  <listitem>
    <para>
anyone may access any fonts.  The server neither refuses any connections
nor generates <errorname>AccessContext</errorname> errors on any
fonts.  For environments without specially-licensed fonts, this is
sufficient.
    </para>
  </listitem>
  </varlistentry>
  <varlistentry>
    <term>Per-machine</term>
  <listitem>
    <para>
only those clients connecting from a known set of
machines are permitted access.  The server could get the address
of the connection and look in a list of allowed machines.
    </para>
  </listitem>
  </varlistentry>
  <varlistentry>
    <term>Per-user</term>
  <listitem>
    <para>
only a known set of users may access the fonts.  The
server can use the authorization data (such as a Kerberos ticket
or a Secure RPC credential) to verify the identity of the user
and then look in a list of allowed users.
    </para>
  </listitem>
  </varlistentry>
  <varlistentry>
    <term>Simultaneous Use</term>
  <listitem>
    <para>
only a certain number of clients may use a given font at any one time.
Additional clients would receive <errorname>AccessContext</errorname>
errors if they attempt to open the font.  This is only effective if
the initial clients keep the font open for the entire time that it
is being used (even if all of the data has been transmitted and is
being cached).
    </para>
  </listitem>
  </varlistentry>
  <varlistentry>
    <term>Postage Meter</term>
  <listitem>
    <para>
a particular font may only be accessed a limited
number of times before its license must be renewed.  Each time
the font is opened, the server decrements a counter.  When the
counter reaches zero, all further attempts to open the font
return an <errorname>AccessContext</errorname> error.
    </para>
  </listitem>
  </varlistentry>
</variablelist>
</para>

<para>
It should be noted that chaining of font servers (obtaining font data from
other font servers) may conflict with certain license policies.
</para>
</appendix>

<appendix id="implementation_suggestions">
<title>Implementation Suggestions</title>
<para>
<!-- .LP -->
Font server implementations will probably wish to use techniques such as the
following to avoid limits on the number of simultaneous connections:
</para>
<itemizedlist>
  <listitem>
    <para>
The initial connection information returned by the font
server contains the names of other font servers that
may be used as substitutes.  A font server may refuse to
accept a connection, indicating that the client should
try one of the alternatives instead.
    </para>
  </listitem>
  <listitem>
    <para>
On operating systems that support processing forking, font
servers might choose to fork so that the child can continue
processing the existing connections and the parent can accept
new connections.  Such implementations are encouraged to use
shared memory so that in-memory font databases can be shared.
    </para>
  </listitem>
  <listitem>
    <para>
On operating systems that support passing stream file descriptors
between processes, cooperating font servers could collect
connections in a single process when there are few connections
and spread them among several processes as the load increases.
    </para>
  </listitem>
  <listitem>
    <para>
If a font client is unable to connect to a server (as opposed
to having the connection terminated), it should retry for an
implementation-dependent length of time (see Xlib's
handling of ECONNREFUSED in XConnDis.c).
    </para>
  </listitem>
</itemizedlist>
</appendix>
<index id="index" />
</book>